create account

How much 'available' SP is there for Steemit.com content? by abh12345

View this thread on: hive.blogpeakd.comecency.com
· @abh12345 · (edited)
$82.38
How much 'available' SP is there for Steemit.com content?
This analysis is an attempt to uncover the amount of 'available' Steem Power that is there to potentially vote for Steemit.com based content.

**Contents**

General / Assumptions

1. Finding the active Steem Power

2. Removing 'dedicated' Steem Power

3. Further account exclusions

4. Summary

5. Tools used to gather data and compile report
## 

-----------------------
<center>
![seek.jpg](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521759470/igqzymad8q4jdgds4aee.jpg)
<sub><b>[pixabay source](https://pixabay.com/en/kitty-cat-hide-and-seek-kitty-cat-1785032/)</b></sub></center>

---------------------

## General / Assumptions
## 

Firstly, it should be stated that the account names that appear in the analysis **are free to do as they wish (within their delgators 'rules', if any) with their stake.**

For this report, the following criteria has been used to gain a base set of data: 

**The total Steem Power (including delegated to) is the amount held by every account that has made at least 1 vote in the past 7 days.**

The word 'available' is to be used to describe the amount of Steem Power (SP) that is available **for free** to vote on Steemit.com content.

---------------------------
## 1. Finding the active Steem Power
## 

The following query was use to list the active voters (voted at least once in the past 7 days) and their available Steem Power.

7 days was chosen as a guide for active voters, and removed accounts such as 'steemit'.  If the date was changed assess the previous 31 days the total would be 99,101,480.61 with 'ned' owning 1.8 million of this total.

```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in (select distinct voter from txvotes with (nolock) where timestamp > getdate()-7)
```

The total is: **93,242,469.69 Steem Power** (7 days)

-------------------

## 2 Removing 'dedicated' Steem Power
## 

This section is an attempt to remove the Steem Power that is 'assigned' to the various 'projects' on the Steem Blockchain.

Let's start with the easy one.

### utopian-io
### 
```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('utopian-io')
```
Total SP: **3,870,935.88**

This account has been excluded as votes are given for content produced outside of the steemit.com condenser.

------------

### The 'd-apps'
### 
```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('dlive',
'dtube',
'dmania',
'dsound')
```

Total SP: **5,804,473.75**

These accounts have been excluded as votes are given for content produced outside of the steemit.com condenser.

---------------

### Other popular blogging condensers
### 
```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('esteemapp',
'busy.pay',
'busy.org')
```

Total SP: **1,223,248.50**

These accounts have been excluded as votes are given for content produced outside of the steemit.com condenser.

----------

### The 'cleaners'
###

```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('steemcleaners',
'spaminator',
'blacklist-a',
'guard')
```

Total SP: **2,832,872.82**

These accounts have been excluded as they almost exclusively tackle spam/plagiarism with a negative vote.

-----------

### 'Self-service'
### 
```
select  sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('ranchorelaxo',
'haejin',
'starjuno')
```

Total SP: **1,417,692.13**

These accounts have been excluded due to self-vote percentages above 90%.

-------------

### The Bid-bots (direct delegations)
###

The list of accounts used in this query can be found here: https://hackmd.io/s/rygQEFZqG

The syntax of the query below excludes this list for viewing ease.

```
select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+
(cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)-
(cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000))
from accounts with (nolock)
where name in ('BOT LIST GOES HERE')
```

Total SP: **18,529,234.84**

These accounts have been excluded due to the necessity to send a transfer amount for a vote.

-------------------------

### What is left available so far?
###

Excluding the accounts in the set of queries above:

Total Steem Power available: **59,551,529.90**

The following Pie chart represents the figures above, which are also listed in the table below.

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753323/r8qgdik15xnqw70c6xpb.png)

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753333/f8n3kxt7v2ccze5kvw7o.png)

This is an initial attempt to display Steem Power that is both taken, and free for use on Steemit.com.

However, the analyst would like to look at excluding more accounts and Steem Power to try and give a clearer picture of what Steem Power could actually be available.

--------------------------
<br>

## 3. Further account exclusions
##

There are additional 'pay for vote' services offered by 'randowhale', 'smartmarket', 'minnowbooster', and 'booster' that can access owned Steem Power (not delegated to these accounts) to provide a vote for content when a transfer is made to one of them.

A true reflection of the scale of this is difficult as the owners of this Steem Power can also cast manual 'non-paid' votes when they wish.  Therefore it could be argued that the following SP exclusion is unwarranted, and inaccurate.  But let's have a look anyway..

A look into the Wallets of the aforementioned accounts shows a number of different payments out to accounts with various default memos.

The following query represents a best guess at the memo used to send to accounts that have made their vested Steem Power available to be used in a 'pay for vote' system.

```
select distinct [to] from TxTransfers where [from] = 'minnowbooster'
and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018')
and (memo like ('%You withdrew%'))
union
select distinct [to] from TxTransfers where [from] = 'smartsteem'
and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018')
and memo like '%Automatic%'
union
select distinct [to] from TxTransfers where [from] = 'randowhale'
and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018')
and memo like '%[randowhale]%'
union
select distinct [to] from TxTransfers where [from] = 'booster'
and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018')
and memo like '%Payment for%'
```

The memo's analysed are from the previous 7 days and the total Steem Power of the 1794 unique accounts returned is: 

Total SP: **6,096,223.49**

Again, this is a best guess for purpose of this analysis.  At least some of this Steem Power is being used to vote manually and for 'free'.

### A look at the top accounts left
###

If we exclude the accounts in the first section (bid-bots, cleaners, etc) and the accounts in the previous section, who are the accounts left holding the most available Steem Power?  And can we exclude any of these also?

The following is a list of the 25 accounts that were not excluded during the analysis above.  Notes are given on the decision to include/exclude their Steem Power or not.

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756825/kdgytkhp4z86m9uxuted.png)

-----------
###
**Fig 1:**

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521755750/tzutkpte8topzuwzy2hf.png)
### 
**Fig 2:**

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756591/ax3vah9bu17macp3wswz.png)
### 

From: http://www.steemreports.com/votes-graph
### 
---------------
### 
And so, if we remove the Steem Power of the accounts with an 'N' in the list above, the total 'available' Steem Power is:

## 48,671,915.529
## 

Following the additional removal of 'available' Steem Power as explained in this section, the chart now looks like this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757725/fkr3i6mifsiyeqxvdpdo.png)
###
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757764/ziwxgiheb7qrwe6d8osm.png)

With additional accounts removed totalling over 11 million Steem Power, there is still over half of the pool remaining.

-------------------------

## 4. Summary
## 

The amount of active, free and available Steem Power in this analysis sits at almost 50 million.

Using https://www.steemnow.com/upvotecalc.html to test how much this vote is worth at 100%, and entering the maximum of 10 million SP,  the figure returned is $1426.73.

Multiply that by 5 (rounding 48,671,915.529 up)  and this is **$7133.65**

Multiply that by 10 (votes), and ignore the reduction in Steem Power each time for simplicity, and this totals **$71,336**

There is virtually no accounting for 'high' self voting %'s or direct payment for votes in this analysis, and so one would assume the actual free Steem Power and the above figure is highly likely to be lower.

Thanks for reading, the analyst is ~~not~~ looking forward to questions, but is keen on viewing future work by others in this area.

---------------------
## 5. Tools used to gather this data and compile report
##

The data is sourced from SteemSQL - A [publicly available SQL database](https://steemit.com/steemit/@arcange/steemsql-com-a-public-sql-server-database-with-all-steemit-blockchain-data) with all the blockchain data held within.

The SQL queries to extra to the data have been produced in both SQL Server Personal Edition and LINQPAD 5.  Some of the code used for these results is as follows:

The charts used to present the data were produced using MS Excel.

<sub>This data was compiled on the 22nd March 2018 at 6pm (UCT)</sub>

---------------------
<br>

Thanks

Asher @abh12345


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@abh12345/how-much-available-sp-is-there-for-steemit-com-content">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 235 others
properties (23)
authorabh12345
permlinkhow-much-available-sp-is-there-for-steemit-com-content
categoryutopian-io
json_metadata"{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":54517947,"name":"steem","full_name":"steemit/steem","html_url":"https://github.com/steemit/steem","fork":false,"owner":{"login":"steemit"}},"pullRequests":[],"platform":"github","type":"analysis","tags":["utopian-io","steemit","steempower","bidbot","payforvote"],"users":["abh12345"],"links":["https://pixabay.com/en/kitty-cat-hide-and-seek-kitty-cat-1785032/","https://hackmd.io/s/rygQEFZqG","http://www.steemreports.com/votes-graph","https://www.steemnow.com/upvotecalc.html","https://steemit.com/steemit/@arcange/steemsql-com-a-public-sql-server-database-with-all-steemit-blockchain-data","https://utopian.io/utopian-io/@abh12345/how-much-available-sp-is-there-for-steemit-com-content"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1521759470/igqzymad8q4jdgds4aee.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753323/r8qgdik15xnqw70c6xpb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753333/f8n3kxt7v2ccze5kvw7o.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756825/kdgytkhp4z86m9uxuted.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521755750/tzutkpte8topzuwzy2hf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756591/ax3vah9bu17macp3wswz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757725/fkr3i6mifsiyeqxvdpdo.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757764/ziwxgiheb7qrwe6d8osm.png"],"moderator":{"account":"crokkon","time":"2018-03-23T07:39:25.466Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes it’s straight to the point"},{"score":5,"selected":false,"value":"Need more description "},{"score":0,"selected":false,"value":"Not too descriptive"}],"question":"Is the project description formal?"},{"selected":0,"answers":[{"score":20,"selected":true,"value":"Yes"},{"score":10,"selected":false,"value":"A few mistakes"},{"score":0,"selected":false,"value":"It's pretty bad"}],"question":"Is the language / grammar correct?"},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes, it was explained well why the analysis was created"},{"score":0,"selected":false,"value":"No, it is not"}],"question":"Were the reasons for creating the analysis explained enough?"},{"selected":0,"answers":[{"score":20,"selected":true,"value":"No, it is a new analysis"},{"score":12,"selected":false,"value":"Yes but the data are well processed and presented."},{"score":4,"selected":false,"value":"Yes, it is a recurring analysis with different time period"}],"question":"Is it a recurring analysis?"},{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes, both tools and scripts were included"},{"score":5,"selected":false,"value":"No, the query script was not included in the contribution."},{"score":0,"selected":false,"value":"No"}],"question":"Where the tools and query scripts used included in the contribution?"}],"score":75}"
created2018-03-22 23:00:12
last_update2019-01-07 06:42:33
depth0
children60
last_payout2018-03-29 23:00:12
cashout_time1969-12-31 23:59:59
total_payout_value59.117 HBD
curator_payout_value23.262 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,524
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,037,430
net_rshares35,600,112,141,692
author_curate_reward""
vote details (299)
@anomadsoul · (edited)
$0.09
I guess the pond keeps getting smaller and smaller for us fishes to swim around. To that final percentage I believe we still need to consider that even the good whales and dolphins selfvote some times (understandable) so perhaps a fair 10% less of that total amount must be used for whale self vote thus making it unavailable for the community.

"Self service" XD my sides
πŸ‘  
properties (23)
authoranomadsoul
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t235811066z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:58:09
last_update2018-03-22 23:58:42
depth1
children1
last_payout2018-03-29 23:58:09
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length372
author_reputation1,681,171,138,068,684
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,044,496
net_rshares30,577,406,577
author_curate_reward""
vote details (1)
@abh12345 ·
:D haha

I had to give it some sort of title!

And yeah you are right about taking more out for 'reasonable' self voting. 10% more and we are down to less than 50 cents a post :/
properties (22)
authorabh12345
permlinkre-anomadsoul-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001406682z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:14:06
last_update2018-03-23 00:14:06
depth2
children0
last_payout2018-03-30 00:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,046,419
net_rshares0
@bagindooo ·
Distributing justice is truly our most challenging problem. Competition, survival, rules of the game, competency are some of mixture already put in it.
πŸ‘  
properties (23)
authorbagindooo
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t004257018z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:42:42
last_update2018-03-23 00:42:42
depth1
children0
last_payout2018-03-30 00:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation97,115,803,368
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,049,841
net_rshares3,822,363,156
author_curate_reward""
vote details (1)
@bashadow ·
$0.05
And that $0.530 is only if every remaining vote is used. A lot of people do not vote. Not sure why, but I have seen people that only vote 2 or 3 times a day, and sit at 100% vote power for multiple days, and not just new users either, minnows on up to whales. 

So as you said at "least 1 vote" in a seven day period. I think it is likely higher than that, but is certainly does not even come close to the real total number of votes available per day per account. Can you imagine the conniption fit the self serving whales would have if every non-self serving voter all voted for someone on a Tuesday, and used ten 100% powered votes. The reward pool is based on % after all. And just imagine all the smiles on the newusers, minnows, and dolphins that received those votes .
πŸ‘  
properties (23)
authorbashadow
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t042535520z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 04:25:27
last_update2018-03-23 04:25:27
depth1
children0
last_payout2018-03-30 04:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length774
author_reputation100,388,692,638,882
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,078,285
net_rshares17,202,206,311
author_curate_reward""
vote details (1)
@beeyou ·
$0.04
Perhaps my simple mind is knowledgeable enough to understand the graphs, for Fig. 1 and 2. If I find this interesting, imagine Mello's reaction (teammate). He will be looking at those SQL queries with supreme delight. It's another language to me Asher, but I understand the gist of your analysis.

Thank you for sharing.
πŸ‘  
properties (23)
authorbeeyou
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t233449298z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:34:48
last_update2018-03-22 23:34:48
depth1
children1
last_payout2018-03-29 23:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length320
author_reputation6,318,116,736,784
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,041,743
net_rshares15,288,703,288
author_curate_reward""
vote details (1)
@abh12345 ·
:) Thanks @beeyou! I tried to put some Pies in there to see, but yeah not one for the community engagers perhaps!
properties (22)
authorabh12345
permlinkre-beeyou-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000047771z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["beeyou"],"app":"steemit/0.1"}
created2018-03-23 00:00:48
last_update2018-03-23 00:00:48
depth2
children0
last_payout2018-03-30 00:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,044,821
net_rshares0
@blazing ·
so much power in one post i wonder they all use it for each other
properties (22)
authorblazing
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t071831295z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 07:18:36
last_update2018-03-23 07:18:36
depth1
children0
last_payout2018-03-30 07:18:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation117,662,220,860,076
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,097,973
net_rshares0
@crokkon · (edited)
$0.02
.
.
πŸ‘  
properties (23)
authorcrokkon
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t073929564z
categoryutopian-io
json_metadata"{"app": ""}"
created2018-03-23 07:39:39
last_update2022-09-18 12:09:24
depth1
children0
last_payout2018-03-30 07:39:39
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,100,683
net_rshares7,645,425,027
author_curate_reward""
vote details (1)
@crokkon · (edited)
$0.05
.
.
πŸ‘  
properties (23)
authorcrokkon
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t074355364z
categoryutopian-io
json_metadata"{"app": ""}"
created2018-03-23 07:43:54
last_update2022-09-18 12:09:18
depth1
children0
last_payout2018-03-30 07:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,101,188
net_rshares17,200,634,203
author_curate_reward""
vote details (1)
@emonrahman ·
$0.02
Really
πŸ‘  
properties (23)
authoremonrahman
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t050151861z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 05:01:57
last_update2018-03-23 05:01:57
depth1
children0
last_payout2018-03-30 05:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation1,324,326,450,594
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,082,686
net_rshares9,027,545,998
author_curate_reward""
vote details (1)
@enjar ·
$0.05
Will be interesting to see in a year from now how this looks. I have a feeling that pie is going get even smaller for the little guy trying make it on his own. 

Community and other platform usage are very important these days to try and get ahead of the curve. It is a bit concerning the amount the bid bots total even more so when you think of the kind of growth they could have in a year from the sales and curation rewards.  


That really does not seem like much when you think of all the active users who post a few times a week or more. Mix in with everyone auto upvote and the like.
πŸ‘  
properties (23)
authorenjar
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t003514036z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:35:18
last_update2018-03-23 00:35:18
depth1
children0
last_payout2018-03-30 00:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation1,183,907,855,963,922
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,048,981
net_rshares17,202,206,311
author_curate_reward""
vote details (1)
@ervinneb ·
$0.04
Very well written article ! I really like the work you have put into this article :)  I also should do something to use my SP, as sometimes I don't have the time to manually curate.
πŸ‘  
properties (23)
authorervinneb
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231123544z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:11:24
last_update2018-03-22 23:11:24
depth1
children0
last_payout2018-03-29 23:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation12,382,839,226,241
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,038,884
net_rshares15,288,703,288
author_curate_reward""
vote details (1)
@eyelashe ·
the major big platform have to use power in a much greater way now
properties (22)
authoreyelashe
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t142921643z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 14:29:33
last_update2018-03-23 14:29:33
depth1
children0
last_payout2018-03-30 14:29:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation1,214,852,621,713
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,160,014
net_rshares0
@freebornangel ·
$0.06
So, at .5sbd available per post do you understand why i rail so hard against those voted to the trending page several times a week?

Ten voters take ~30% of the reward pool and bestow it on their favorites each day, every day, day after day after day.
And nobody cares.
[Source](@statsmonkey)
πŸ‘  ,
properties (23)
authorfreebornangel
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t005322612z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["@statsmonkey"],"app":"steemit/0.1"}
created2018-03-23 00:53:00
last_update2018-03-23 00:53:00
depth1
children3
last_payout2018-03-30 00:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation171,005,551,503,977
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,051,108
net_rshares21,580,078,332
author_curate_reward""
vote details (2)
@abh12345 ·
$0.03
Yes, but there is not really much we can do about it is there?  Get paid for ranting/analysing it I guess?
πŸ‘  
properties (23)
authorabh12345
permlinkre-freebornangel-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t095253182z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 09:52:51
last_update2018-03-23 09:52:51
depth2
children2
last_payout2018-03-30 09:52:51
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,118,130
net_rshares11,249,555,097
author_curate_reward""
vote details (1)
@freebornangel ·
$0.03
Doesnt look like we can do much else, they have no shame.
Too many folks on the 'its your stake' bandwagon.
And it is their stake.
I just prefer a world where i dont get kicked by folks wrapped up in their impunity.
πŸ‘  
properties (23)
authorfreebornangel
permlinkre-abh12345-re-freebornangel-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t140702139z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 14:06:39
last_update2018-03-23 14:06:39
depth3
children1
last_payout2018-03-30 14:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation171,005,551,503,977
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,155,838
net_rshares11,468,137,541
author_curate_reward""
vote details (1)
@gduran ·
$0.04
So basically most of us are competing for about $71,000.00 every day.
πŸ‘  
properties (23)
authorgduran
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232757693z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:28:00
last_update2018-03-22 23:28:00
depth1
children1
last_payout2018-03-29 23:28:00
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation58,010,811,372,625
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,907
net_rshares15,288,703,288
author_curate_reward""
vote details (1)
@abh12345 ·
Something like that, perhaps even less when you throw in the impossible to gauge stuff too...
properties (22)
authorabh12345
permlinkre-gduran-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000917340z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:09:18
last_update2018-03-23 00:09:18
depth2
children0
last_payout2018-03-30 00:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,045,896
net_rshares0
@gillianpearce ·
$0.05
I'm not really sure what all this means @abh12345 but two things jump out at me. One is the size of SP held by bid bots. That's just plain depressing! &#128546;

The other thing I'm wondering about is what Figures 1 and 2 mean. For example, is Figure 2 a hub deliberately set up to feed yoo1900? And if so, do the other accounts in the hub take a cut?
πŸ‘  
properties (23)
authorgillianpearce
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231736518z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-03-22 23:17:39
last_update2018-03-22 23:17:39
depth1
children2
last_payout2018-03-29 23:17:39
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length351
author_reputation59,760,385,526,644
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,039,631
net_rshares17,199,791,199
author_curate_reward""
vote details (1)
@abh12345 ·
Depressing indeed.

And yes, you could say that about Figures 1 and 2 to some extent :)
πŸ‘  
properties (23)
authorabh12345
permlinkre-gillianpearce-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000547921z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:05:48
last_update2018-03-23 00:05:48
depth2
children1
last_payout2018-03-30 00:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,045,439
net_rshares484,868,889
author_curate_reward""
vote details (1)
@gillianpearce ·
Hmmm. This type of thing really highlights the downside of decentralisation for me. It's a nice idea but I'm beginning to wonder whether it can ever really be any different when humans and money are involved. And power of course. In the end it seems to come down to that. Maybe that would be the solution. Build a platform where power was consistently equalised.

I bet that would have challenges all of it's own. Maybe it would be like living in a terminable committee meeting. Would be fun to see though. &#128522;

Maybe the true successes of the block chain will lie elsewhere entirely, outside the realms of "money".

Ultimately the blockchain is only going to be as good as the humans who use it. Perhaps we're hoping for technology to do what can't be done. And until we change inside, nothing will change outside. And if we change inside we won't need the technology to do it for us! &#128522;

I am not necessarily including you in the "we" I talk of. It is just a general unfocused "we". &#128513;

Anyhoo . . . let me move on from my musings and respond to the other comments that have been made overnight . . . 

Wishing you  a fun filled day @abh12345!
properties (22)
authorgillianpearce
permlinkre-abh12345-re-gillianpearce-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t081530414z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-03-23 08:15:33
last_update2018-03-23 08:15:33
depth3
children0
last_payout2018-03-30 08:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,165
author_reputation59,760,385,526,644
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,105,279
net_rshares0
@herbertholmes ·
$0.04
Awesome work! Thanks for helping with my seemingly endless struggle to understand Steemit. I gotta say, although I understand why some might see it as disappointing, 64% is actually a much higher percentage than I expected. 

Also, thanks a ton for the step by step. Like I said before, I'm trying to gain as much knowledge about the platform as possible, and nothing helps more than insight from users such as yourself :)
πŸ‘  
properties (23)
authorherbertholmes
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t233109198z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:31:00
last_update2018-03-22 23:31:00
depth1
children0
last_payout2018-03-29 23:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length422
author_reputation2,799,689,471,843
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,041,270
net_rshares15,288,703,288
author_curate_reward""
vote details (1)
@jeffjagoe ·
$0.05
As more and more dApps are created it seems their slice of the pie will continue to shrink.
πŸ‘  
properties (23)
authorjeffjagoe
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t133055797z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 13:30:57
last_update2018-03-23 13:30:57
depth1
children0
last_payout2018-03-30 13:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation605,469,215,331,371
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,150,152
net_rshares19,113,562,568
author_curate_reward""
vote details (1)
@jlordc ·
$0.05
Lol at "self-service"

Also can you make an analysis on how many steemians actually read other peoples post? Is that doable? How many people are just relying on trail votes, etc. I've seen some posts with over 500+votes but with only 30 views. It would be interesting to see how many people took an effort in going someone elses post :)
πŸ‘  ,
properties (23)
authorjlordc
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232049000z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:20:54
last_update2018-03-22 23:20:54
depth1
children2
last_payout2018-03-29 23:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation149,979,503,281,370
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,047
net_rshares19,315,296,944
author_curate_reward""
vote details (2)
@abh12345 ·
:D

Views are hard to tally - they don't count across the front ends (busy/esteem/steem etc), and if i refresh this page, another view is added?!
properties (22)
authorabh12345
permlinkre-jlordc-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000408726z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:04:09
last_update2018-03-23 00:04:09
depth2
children0
last_payout2018-03-30 00:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,045,203
net_rshares0
@r00sj3 ·
+1
πŸ‘  
properties (23)
authorr00sj3
permlinkre-jlordc-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t234103257z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:41:03
last_update2018-03-22 23:41:03
depth2
children0
last_payout2018-03-29 23:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation37,745,070,875,728
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,042,519
net_rshares3,822,175,822
author_curate_reward""
vote details (1)
@lynncoyle1 ·
$0.05
>Thanks for reading, the analyst is not is looking forward to questions

Well Asher, you should have tagged me in here somewhere and told me *not* to read it ;)

I actually understood it haha although I skim past this kind of stuff*(select sum((cast(left(vesting_shares*), and skip to the explanation and analysis:)  Geez, how are bid bots even allowed?  I know there's really no one in charge, that's the beauty of it all, but I'm wondering if their purpose was a bit more altruistic in the beginning, or was it always a clever money making scheme masked in helping others?  That's pretty harsh, I know, but I'm trying to make a point;)

Also, I think *self service* should have a way bigger percentage ;)
(yes, that's a joke!)

Cheers!  I guess this was the "monster post" you were referring to earlier!
πŸ‘  
properties (23)
authorlynncoyle1
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t010255166z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 01:03:00
last_update2018-03-23 01:03:00
depth1
children0
last_payout2018-03-30 01:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length805
author_reputation19,836,520,086,359
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,052,393
net_rshares19,113,562,568
author_curate_reward""
vote details (1)
@mariannewest ·
Hmm, this is actually quite depressing. And puts an even harsher light on those big accounts only serving themselves. Oh well. What is that going to look like if more users come onboard? Even less per post?
πŸ‘  
properties (23)
authormariannewest
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t043530055z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-26 04:35:30
last_update2018-03-26 04:35:30
depth1
children1
last_payout2018-04-02 04:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation379,187,281,148,634
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,623,695
net_rshares7,263,380,748
author_curate_reward""
vote details (1)
@abh12345 ·
Quite possibly yes...

Check out @paulag's latest for further analysis.
properties (22)
authorabh12345
permlinkre-mariannewest-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t090542072z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["paulag"],"app":"steemit/0.1"}
created2018-03-26 09:05:39
last_update2018-03-26 09:05:39
depth2
children0
last_payout2018-04-02 09:05:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,657,153
net_rshares0
@maverickinvictus ·
$0.05
I am not surprised to see bidbots have a large chunk of the SP because of how many whales, dolphins and even minnows delegate to bidbot owners because of up to 95% earnings there.

I used to think that bid bots are evil but in a way I change my thinking that there should be a healthy mix of content creators, curators and investors. 

Not everyone has the time to  be in the community but the money they invest would make the platform sustainable. So do I condone bots, i do on a certain degree only because if you them as a crutch to earn then you are only deluding yourself because without other votes, without engaging the community and getting influence then you are just operating at a lost. 

A lot of the other high SP there are either upvoting a few of their circle of family, friends or selling their votes but there are some individuals who build communities and make it better. 

When I made my post on the voting behaviour using the new tool steemocean you clearly the number of votes they do. 

I am particularly surprised that major curation guilds like curie and OCD does not delegation when they do so much in raising the quality of the content here. Thank God they have whale benefactors that follow on their trail.
πŸ‘  
properties (23)
authormaverickinvictus
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t023935464z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 02:39:33
last_update2018-03-23 02:39:33
depth1
children0
last_payout2018-03-30 02:39:33
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,233
author_reputation49,891,081,291,888
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,065,035
net_rshares19,113,562,568
author_curate_reward""
vote details (1)
@mgood ·
$0.03
That is a great analysis. I get a very positive feeling from it - there are so many up-votes that one get receive. 

The somewhat disappointing aspect are the figures #1 and #2. If I understand them correctly, the circles represent whales with a lot of SP and the figures show who they up-vote the most.  Is that correct?

If correct then a bunch of whales have gotten together to help each other make a lot of money.  The platform would benefit more if they spread their votes around to other people. Building up a strong "middle class" will ensure the continuity of the platform.

What about ranchorelaxo? He has 1.3 million SP but only up-votes 1 person.
πŸ‘  
properties (23)
authormgood
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001506586z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:15:00
last_update2018-03-23 00:15:00
depth1
children2
last_payout2018-03-30 00:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length657
author_reputation1,309,342,498,884
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,046,519
net_rshares11,466,616,848
author_curate_reward""
vote details (1)
@abh12345 ·
Yes you are correct regarding F1 and F2: http://www.steemreports.com/account-votes/ - Votes graph.

rancho and friend are there yes, and excluded :)
πŸ‘  
properties (23)
authorabh12345
permlinkre-mgood-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001729152z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["http://www.steemreports.com/account-votes/"],"app":"steemit/0.1"}
created2018-03-23 00:17:30
last_update2018-03-23 00:17:30
depth2
children1
last_payout2018-03-30 00:17:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,046,828
net_rshares7,165,790,397
author_curate_reward""
vote details (1)
@mgood · (edited)
Thanks for the understanding and all of the charts.  It gives me a view of my own voting as well which is very illuminating.
properties (22)
authormgood
permlinkre-abh12345-re-mgood-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t102856775z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 10:28:48
last_update2018-03-23 10:36:42
depth3
children0
last_payout2018-03-30 10:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation1,309,342,498,884
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,123,004
net_rshares0
@mikepm74 ·
$0.05
What I learned today... Find a whale and offer to be slave forever for a good circle jerking.  Sooo top-heavy around here.

Also didn't realize Sweet still had massive SP. Is that still from Ned? Or has she just been powering up all the thank you sbd she got along the way?
πŸ‘  
properties (23)
authormikepm74
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t031328720z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 03:13:30
last_update2018-03-23 03:13:30
depth1
children0
last_payout2018-03-30 03:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation50,476,601,169,361
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,069,291
net_rshares17,202,206,311
author_curate_reward""
vote details (1)
@paulag · (edited)
$0.13
so I have taken your figures and added a little.  Below is the SBD and VEST payments claimed on the 1st March.  Using http://www.steemdollar.com I have converted these values to STEEM.

Based on this, the available STEEM is 72% of payment claims accepted.  A lot higher than I expected
![](https://steemitimages.com/DQmQXq9gedDTFmR38uS1WCywxvu3xjaaba8Vo9qDMyDoRBi/image.png).

I did a report too and got a value very similar to your first chart above where you have 64% available I have 62% for organic votes.
πŸ‘  ,
properties (23)
authorpaulag
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232554507z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://steemitimages.com/DQmQXq9gedDTFmR38uS1WCywxvu3xjaaba8Vo9qDMyDoRBi/image.png"],"links":["http://www.steemdollar.com"],"app":"steemit/0.1"}
created2018-03-22 23:25:51
last_update2018-03-22 23:32:03
depth1
children0
last_payout2018-03-29 23:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length509
author_reputation274,264,287,951,003
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,652
net_rshares44,873,857,014
author_curate_reward""
vote details (2)
@r00sj3 ·
$0.05
This is great work! Would be good to put that against the number of posts created per week so you can see the average too. Or can I find that somewhere else?
πŸ‘  
properties (23)
authorr00sj3
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232003259z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:20:03
last_update2018-03-22 23:20:03
depth1
children3
last_payout2018-03-29 23:20:03
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation37,745,070,875,728
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,039,932
net_rshares17,199,791,199
author_curate_reward""
vote details (1)
@abh12345 ·
Thank you :)

Posts last 7 days: 268,889
Comments last 7 days: 920413

Safely over a million items to comment on, and so 71,336 x 7 is $500k  

Spread that around all the posts and you have about 53 cents - bummer!
properties (22)
authorabh12345
permlinkre-r00sj3-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232552576z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:25:51
last_update2018-03-22 23:25:51
depth2
children2
last_payout2018-03-29 23:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,651
net_rshares0
@r00sj3 ·
your post is doing well then ;) I think it would be fair to at some point split between the comments and the posts, but that would be worth another post! 
Thanks!! #analyticsftw
properties (22)
authorr00sj3
permlinkre-abh12345-re-r00sj3-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232828099z
categoryutopian-io
json_metadata{"tags":["utopian-io","analyticsftw"],"app":"steemit/0.1"}
created2018-03-22 23:28:30
last_update2018-03-22 23:28:30
depth3
children1
last_payout2018-03-29 23:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation37,745,070,875,728
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,965
net_rshares0
@sagor5828 ·
Sir, You sell the upvotes?
properties (22)
authorsagor5828
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230630257z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:06:30
last_update2018-03-22 23:06:30
depth1
children6
last_payout2018-03-29 23:06:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,940,629,677,748
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,038,235
net_rshares0
@abh12345 ·
$0.03
hahaha

No, I give them away :)
πŸ‘  , , ,
properties (23)
authorabh12345
permlinkre-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231021629z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:10:21
last_update2018-03-22 23:10:21
depth2
children5
last_payout2018-03-29 23:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,038,749
net_rshares11,255,032,385
author_curate_reward""
vote details (4)
@beeyou ·
$0.02
This post is above my brain cell power, but I will confirm that @abh12345 does indeed give away his upvotes. Along with his SP @sagor5828. What world is he living in, right?! ;)
πŸ‘  
properties (23)
authorbeeyou
permlinkre-abh12345-re-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232230138z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["abh12345","sagor5828"],"app":"steemit/0.1"}
created2018-03-22 23:22:30
last_update2018-03-22 23:22:30
depth3
children1
last_payout2018-03-29 23:22:30
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation6,318,116,736,784
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,040,246
net_rshares7,644,351,644
author_curate_reward""
vote details (1)
@sagor5828 ·
Really?
properties (22)
authorsagor5828
permlinkre-abh12345-re-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231330450z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:13:30
last_update2018-03-22 23:13:30
depth3
children2
last_payout2018-03-29 23:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation2,940,629,677,748
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,039,143
net_rshares0
@spiritualmax ·
$0.05
@broncnutz is one everyone circle... Bronc I wanna be you when I grow up! Should have seen this before that card :P
πŸ‘  
properties (23)
authorspiritualmax
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t234831206z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["broncnutz"],"app":"steemit/0.1"}
created2018-03-22 23:48:30
last_update2018-03-22 23:48:30
depth1
children0
last_payout2018-03-29 23:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation25,078,515,289,162
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,043,385
net_rshares17,199,791,199
author_curate_reward""
vote details (1)
@starboye ·
if they use it for others only a small fraction percentage they could make this platform amazing
properties (22)
authorstarboye
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t075650442z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 07:56:57
last_update2018-03-23 07:56:57
depth1
children0
last_payout2018-03-30 07:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation1,548,341,121,513
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,102,877
net_rshares0
@starving ·
Liked the pattern where votes flows no one would have came to know that interesting
properties (22)
authorstarving
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t103419263z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 10:34:24
last_update2018-03-23 10:34:24
depth1
children0
last_payout2018-03-30 10:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation2,607,819,348,850
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,123,789
net_rshares0
@tetas08 · (edited)
Fabulous written about something special, great to see you article.
πŸ‘Ž  
properties (23)
authortetas08
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230253799z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:02:57
last_update2018-03-22 23:12:42
depth1
children2
last_payout2018-03-29 23:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation351,599,705,020
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,037,804
net_rshares-3,818,634,806
author_curate_reward""
vote details (1)
@abh12345 ·
Unrelated.
properties (22)
authorabh12345
permlinkre-tetas08-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230609971z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-22 23:06:09
last_update2018-03-22 23:06:09
depth2
children0
last_payout2018-03-29 23:06:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,038,199
net_rshares0
@abh12345 ·
well now you've changed your comment!
properties (22)
authorabh12345
permlinkre-tetas08-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001521998z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 00:15:21
last_update2018-03-23 00:15:21
depth2
children0
last_payout2018-03-30 00:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,046,562
net_rshares0
@thedarkhorse ·
The imbalance towards vote bots is actually higher then you can report due to the fact that regular users sometimes sit at 100% voting power for hours or even day or they votes down to 80%. Either way they are not casting their votes in the absolute most efficient manner like vote bots do.

This means that the weight of the SP held in Vote Bots is used in a way that they are capturing even more of the total reward pool then an equal amount of SP held by real people.
πŸ‘  
properties (23)
authorthedarkhorse
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180325t174733064z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-25 17:47:30
last_update2018-03-25 17:47:30
depth1
children2
last_payout2018-04-01 17:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length470
author_reputation64,296,958,099,922
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,544,531
net_rshares7,263,380,748
author_curate_reward""
vote details (1)
@abh12345 ·
Indeed.  Check out @paulag's latest for further analysis.
πŸ‘  
properties (23)
authorabh12345
permlinkre-thedarkhorse-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t090513784z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["paulag"],"app":"steemit/0.1"}
created2018-03-26 09:05:12
last_update2018-03-26 09:05:12
depth2
children1
last_payout2018-04-02 09:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,657,090
net_rshares5,667,786,025
author_curate_reward""
vote details (1)
@thedarkhorse ·
Just looked at it. Crazy numbers.
properties (22)
authorthedarkhorse
permlinkre-abh12345-re-thedarkhorse-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t143004014z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-26 14:30:03
last_update2018-03-26 14:30:03
depth3
children0
last_payout2018-04-02 14:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation64,296,958,099,922
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,706,401
net_rshares0
@utopian-io ·
$0.02
### Hey @abh12345 I am @utopian-io. I have just upvoted you!
#### Achievements
- WOW WOW WOW People loved what you did here. GREAT JOB!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
πŸ‘  
properties (23)
authorutopian-io
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t143755077z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-23 14:37:57
last_update2018-03-23 14:37:57
depth1
children0
last_payout2018-03-30 14:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,063
author_reputation152,955,367,999,756
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,161,520
net_rshares7,645,425,027
author_curate_reward""
vote details (1)
@wandering ·
only few gives to everyone out there even on average that is good i think it motivates a lot
properties (22)
authorwandering
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t122822007z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-23 12:28:27
last_update2018-03-23 12:28:27
depth1
children0
last_payout2018-03-30 12:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation702,148,075,192
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,140,192
net_rshares0
@wizardave ·
$0.03
Thanks for the analysis @abh12345!
You are a very powerful math and database wizard, indeed!!!
&#128540; I must be confused on something.
  + Where does the reward payouts come from?
I thought those were the built in inflation factor of Steemit.
    + You don't actually spend your Steem Power to make a vote,
you spend your Voting Power, which rebuilds all the time,
so upvotes are basically free. 
+ Example: My vote currently is worth about 1 penny.
  + When I upvote this post 1 penny is added to the Pending Payout.
    + Where did that penny come from?
It didn't come out of my wallet...
+ I realize the answer may be in the FAQ. Perhaps I should go back and read it again...
  + NOPE I checked before posting this and it really doesn't explain it.

ps a suggestion for your wizardry.
Perhaps it's already been figured out and I missed the post, 
but it would be interesting to know...
How much value leaves the platform daily?
πŸ‘  
properties (23)
authorwizardave
permlinkre-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t144431413z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["abh12345"],"app":"steemit/0.1"}
created2018-03-23 14:45:54
last_update2018-03-23 14:45:54
depth1
children1
last_payout2018-03-30 14:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length933
author_reputation8,924,945,173,015
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,162,905
net_rshares11,479,613,621
author_curate_reward""
vote details (1)
@abh12345 ·
Hey :)

I'm a level 1 mage at Math, and not much better with DBs.

You are right that its Voting Power that is reduced, and Steem Power gives you the size of the vote.

Inflation yes :)

I think someone covers transfers out, maybe @arcange or @penguinpablo (they both do daily reports)

Cheers!
properties (22)
authorabh12345
permlinkre-wizardave-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t204515842z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["arcange","penguinpablo"],"app":"steemit/0.1"}
created2018-03-23 20:45:15
last_update2018-03-23 20:45:15
depth2
children0
last_payout2018-03-30 20:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation1,401,181,767,850,181
root_title"How much 'available' SP is there for Steemit.com content?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,217,940
net_rshares0