 Below are a few highlights of the Hive-related programming issues worked on by the BlockTrades team since my last report. Originally, I thought we would be able to release updates for a bunch of different tools by now, but everything took longer than expected, although in some cases the delays weren't always for bad reasons: we discovered several ways to dramatically improve performance of HAF, so we decided to delay the release to incorporate those changes and continue to add features to hived and HAF apps in the meantime. As for the "bad reasons", we've basically been overhauling the entire approach to deployment of HAF and HAF apps to make it super simple, and we ran into lots of issues along the way as we determined the best practices for what I'm now calling HAF 2.0. # What is HAF 2.0? HAF is a library and service for developing specialized Hive-based APIs and applications. It acts as a backend server for web-based applications that want to utilize the Hive blockchain network. We started working on HAF more than 2 years ago, and released the first production version about a year ago. Since then we've steadily been making incremental improvements, but in the past year we've been steadily increasing the number of developers working on HAF and HAF apps as it is the foundation for all our future apps including our layer 2 smart contract processing engine. ### HAF 2.0: Completely overhauling deployment and maintenance With HAF 2.0, one key focus has been on easing deployment and maintenance of HAF servers and HAF apps. The recommended deployment method has completely changed with 2.0, as our goal is to create an ecosystem where any API node operator can quickly and easily install or uninstall any selection of HAF apps they want to support on their server(s). Perhaps the best analogy (well, for programmers) is we're building something like a packaging system for HAF and HAF apps. Another way to look at is we're making HAF apps available as appliances that can easily interact with each other. Another deployment improvement has been to standardize on a ZFS dataset layout as a method of delivering "operation ready" snapshots of HAF servers that don't require a replay of the entire blockchain at setup. This is also extremely beneficial during development of HAF apps: you can take snapshots of your server at any point in time and then later rollback to that same state again, making it easy to: recover from database corruptions that occur while developing your app, reproduce bugs, etc. I've found the ability to easily reproduce bugs and performance problems to be especially useful in my work (in one case I rolled back to the same snapshot about 20 times while analyzing a performance problem that occurred in a specific block range). ### HAF 2.0 uses docker compose scripts to deploy the entire stack for an API node HAF 2.0 also includes a full deployment stack with all the apps needed to run an API node. Previously an API node operator had to not only setup a HAF server, they also had to deploy various other apps such as nginx, jussi, varnish, haproxy, caddy, etc to setup an efficient server that caches API responses, allow re-routing of traffic to different services in the stack, and manage rate-limiting to prevent DDOS attacks. Varnish is a "newcomer" to our stack and is used to provide caching for the new REST-based APIs offered by our new HAF apps such as balance_tracker and the block_explorer. In practice, we've found these offered better performance than the older json-rpc based APIs (these are still cached by jussi). With HAF 2.0, you can deploy and manage all these services with docker compose scripts all configured by a single .env file. More about this setup can be found at https://gitlab.syncad.com/hive/haf_api_node ### HAF 2.0: improving performance and decreasing hardware requirements In the past few weeks, we improved massive sync replay time by 33% and live sync update performance by 45%. And looking at benchmarks over the past three months, a full replay of HAF used to take around 30 hours to process the entire 80 million blocks of the Hive blockchain and it is now down to 17.5 hours (14 hours for replay, 3.5 hours for creating HAF indexes). At the same time, we recently cut CPU usage by 10x (this doesn't show up as a 10x speedup because the code is heavily multi-threaded, but it does mean HAF can be run on a cheaper computers with fewer cores and consumes less energy or alternatively those extra cores can be used for running other processes like nginx, jussi, haproxy, varnish, more hived nodes, etc). Disk space storage has also dramatically been reduced. First by storing blockchain operations as binary data, and second by using lz4 compression via ZFS. These methods allowed us to cut database storage requirements by more than 2x. HAF servers also require much less memory to operate now. Databases almost always like more memory, and HAF was originally targeted towards servers with 64GB memory, but by keeping hived's shared_memory.bin statefile on an NVME drive, we've found that a HAF server can quite comfortably operate as a production server with 32GB of RAM. It is worth mentioning we're not yet done with performance improvements for HAF: during our recent work we came up with a few more ideas for speedups, but we just ran out of time to fit those improvements into the upcoming release. # Other projects We're also working on a host of other tools (some of our devs have already made posts about [Clive](https://hive.blog/@thebeedevs), for example) and it has gotten to the point that I think it makes more sense if I post about the projects I spend the most time on and leave posts about the other projects to the devs involved in them (otherwise my posts would start to get really long nowadays given the number of devs involved on different projects). So I'll leave it to them (hopefully) to make posts after the holidays about some of the other projects such as the block explorer, Denser, Helpy, WAX, Clive, beekeeper, etc. # Final testing started for HAF 2.0 We started full replays of HAF servers with the latest code a couple of days ago. Although HAF only takes 17 hours to replay, hivemind takes considerably longer (something on the order of 80 hours I think) as we haven't had any time to further optimize its performance yet. We should have several servers fully replayed by Tuesday, at which time we'll start directing production traffic from api.hive.blog to some of these servers as a final test of performance under real world conditions. Barring any problems, we'll tag passing versions as final releases and setup downloadable snapshots for api node operators who don't want to wait on replays. [UPDATE] Sharing one more benchmark from our new fastest system: "speed king" s16 (AMD 7950X with 64GB DDR5 6400Mhz and 2x4T CT4000T700 nvmes) full replay with ramdisk reached livesync in 11.1h, built indexes in 3.2h, and ready to serve up data after 11.1+3.2=14.3 hours!
author | blocktrades |
---|---|
permlink | 7th-update-of-2023-final-testing-of-haf-2-0-and-associated-apps |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"image":["https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png"],"links":["https://gitlab.syncad.com/hive/haf_api_node"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2023-12-24 04:43:21 |
last_update | 2023-12-24 20:13:15 |
depth | 0 |
children | 34 |
last_payout | 2023-12-31 04:43:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 142.096 HBD |
curator_payout_value | 141.905 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,155 |
author_reputation | 1,285,463,103,525,913 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,940,785 |
net_rshares | 577,109,628,328,814 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 98,723,940,839,100 | 100% | ||
boatymcboatface | 0 | 579,009,248,787 | 30% | ||
kingscrown | 0 | 70,906,360,657 | 30% | ||
flemingfarm | 0 | 553,189,271,895 | 80% | ||
acidyo | 0 | 11,569,331,775,433 | 100% | ||
kevinwong | 0 | 278,255,235,719 | 50% | ||
leprechaun | 0 | 967,801,683 | 13% | ||
theshell | 0 | 155,041,783,256 | 30% | ||
churdtzu | 0 | 23,717,621,266 | 33% | ||
paradise-paradox | 0 | 1,228,882,259 | 100% | ||
kennyskitchen | 0 | 37,631,989,506 | 100% | ||
gtg | 0 | 39,087,245,744,438 | 100% | ||
gerber | 0 | 183,775,036,629 | 72% | ||
roelandp | 0 | 430,023,391,291 | 50% | ||
daan | 0 | 53,138,573,138 | 8% | ||
ezzy | 0 | 11,575,518,115 | 72% | ||
bryanj4 | 0 | 600,008,521 | 25% | ||
marsresident | 0 | 528,080,472 | 25% | ||
ausbitbank | 0 | 2,680,480,007,281 | 100% | ||
mrwang | 0 | 844,414,918 | 25% | ||
fulltimegeek | 0 | 683,910,620,707 | 100% | ||
ssjsasha | 0 | 28,200,927,152 | 100% | ||
cloh76 | 0 | 143,723,776,548 | 100% | ||
jeffjagoe | 0 | 2,298,029,481 | 0.5% | ||
diana.catherine | 0 | 2,836,689,613 | 25% | ||
kendewitt | 0 | 178,436,529,316 | 100% | ||
arcange | 0 | 1,059,401,132,292 | 5% | ||
lichtblick | 0 | 178,471,773,377 | 100% | ||
demotruk | 0 | 1,262,316,117,881 | 100% | ||
deanliu | 0 | 3,747,013,241,779 | 100% | ||
exyle | 0 | 660,778,246,186 | 72% | ||
ace108 | 0 | 566,531,840,036 | 14% | ||
kiraxoy | 0 | 6,486,825,904 | 100% | ||
akipponn | 0 | 40,707,450,713 | 100% | ||
magicmonk | 0 | 5,111,153,886,073 | 100% | ||
timcliff | 0 | 118,882,767,340 | 100% | ||
josepimpo | 0 | 21,498,294,302 | 100% | ||
joele | 0 | 36,840,875,869 | 100% | ||
oflyhigh | 0 | 4,567,581,770,868 | 100% | ||
shanghaipreneur | 0 | 23,920,299,281 | 100% | ||
borran | 0 | 1,112,691,180,979 | 100% | ||
treaphort | 0 | 679,170,346 | 15% | ||
rmach | 0 | 42,760,785,812 | 100% | ||
lemouth | 0 | 2,597,675,808,315 | 100% | ||
elamental | 0 | 4,839,958,901 | 13% | ||
stevescoins | 0 | 2,046,133,745 | 20% | ||
catherinebleish | 0 | 11,075,423,774 | 50% | ||
steevc | 0 | 661,018,869,701 | 25% | ||
jlufer | 0 | 14,240,423,321 | 100% | ||
dannyshine | 0 | 30,135,907,336 | 35% | ||
esecholo | 0 | 7,189,431,845 | 100% | ||
brightstar | 0 | 5,422,041,059 | 15% | ||
penguinpablo | 0 | 214,793,955,817 | 14% | ||
uwelang | 0 | 3,274,516,255 | 20% | ||
wakeupnd | 0 | 126,454,030,658 | 50% | ||
tftproject | 0 | 1,033,649,063 | 6% | ||
dbroze | 0 | 4,112,673,333 | 40% | ||
jimbobbill | 0 | 2,291,357,585 | 15% | ||
canadian-coconut | 0 | 4,822,234,363,601 | 31% | ||
fraenk | 0 | 69,901,438,803 | 100% | ||
cornerstone | 0 | 1,254,944,158,596 | 50% | ||
petrvl | 0 | 216,771,594,030 | 20% | ||
seckorama | 0 | 189,181,073,048 | 61% | ||
funnyman | 0 | 1,406,201,951 | 5.6% | ||
disregardfiat | 0 | 1,936,220,862,149 | 100% | ||
michelle.gent | 0 | 310,443,636,573 | 100% | ||
jang | 0 | 126,897,083,416 | 100% | ||
lloyddavis | 0 | 22,570,573,864 | 75% | ||
ssekulji | 0 | 33,539,281,332 | 100% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
ura-soul | 0 | 66,057,212,649 | 40% | ||
moretea | 0 | 13,124,667,550 | 50% | ||
techslut | 0 | 332,221,942,189 | 50% | ||
makinstuff | 0 | 65,133,731,318 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,728,543,034 | 100% | ||
jaybird | 0 | 7,643,691,329 | 100% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
mangos | 0 | 2,705,866,515,497 | 47% | ||
builderofcastles | 0 | 54,509,451,158 | 32% | ||
ancolie | 0 | 514,785,662 | 1.13% | ||
edb | 0 | 31,140,816,359 | 40% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
mow | 0 | 1,972,322,189 | 100% | ||
justinw | 0 | 162,647,923,257 | 33% | ||
walterjay | 0 | 22,025,142,581 | 1.62% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
v4vapid | 0 | 3,528,427,298,626 | 22% | ||
delso | 0 | 50,271,751,038 | 100% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
askari | 0 | 25,968,965,348 | 20% | ||
bxt | 0 | 279,498,821,209 | 100% | ||
tarazkp | 0 | 1,178,674,758,142 | 50% | ||
privex | 0 | 44,699,604,712 | 72% | ||
sudutpandang | 0 | 489,350,996 | 40% | ||
thereikiforest | 0 | 721,756,308 | 10% | ||
evildeathcore | 0 | 11,252,869,589 | 100% | ||
diggndeeper.com | 0 | 6,773,180,647,601 | 100% | ||
oneshot | 0 | 45,908,511,287 | 100% | ||
fronttowardenemy | 0 | 126,518,881,420 | 50% | ||
trafalgar | 0 | 33,508,566,305,161 | 67% | ||
itinerantph | 0 | 1,109,543,391 | 33.5% | ||
lordneroo | 0 | 22,226,213,750 | 100% | ||
daniel.dalo | 0 | 1,888,150,686 | 25% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
preparedwombat | 0 | 1,294,288,977,358 | 100% | ||
freebornsociety | 0 | 4,435,956,316 | 10% | ||
detlev | 0 | 44,078,203,881 | 5% | ||
haileyscomet | 0 | 765,367,595 | 20% | ||
miniature-tiger | 0 | 1,664,490,561 | 100% | ||
dickturpin | 0 | 67,469,289,063 | 100% | ||
lizanomadsoul | 0 | 4,730,889,988 | 2% | ||
raindrop | 0 | 518,671,419,299 | 67% | ||
l337m45732 | 0 | 2,267,563,870 | 5% | ||
passion-fruit | 0 | 10,432,052,736 | 92% | ||
fortune-master | 0 | 10,182,539,095 | 92% | ||
smasssh | 0 | 1,384,259,933,182 | 30% | ||
tamaralovelace | 0 | 89,793,651,706 | 100% | ||
mes | 0 | 448,267,412,614 | 100% | ||
dreamon | 0 | 512,601,048 | 11.1% | ||
kingkinslow | 0 | 1,092,555,084 | 100% | ||
andyjaypowell | 0 | 722,301,933,363 | 99% | ||
grider123 | 0 | 32,747,455,305 | 100% | ||
iansart | 0 | 167,310,070,493 | 100% | ||
whatamidoing | 0 | 2,220,957,326 | 4% | ||
schlees | 0 | 417,284,259,314 | 20% | ||
forykw | 0 | 494,814,107,269 | 100% | ||
mobbs | 0 | 289,952,754,244 | 100% | ||
jerrybanfield | 0 | 110,916,717,543 | 31% | ||
rt395 | 0 | 13,659,551,244 | 10% | ||
uruiamme | 0 | 6,244,421,197 | 55% | ||
bitrocker2020 | 0 | 1,075,759,415,316 | 100% | ||
bigram13 | 0 | 28,632,849,609 | 100% | ||
drag33 | 0 | 37,395,847,677 | 100% | ||
newsflash | 0 | 108,098,726,752 | 5.5% | ||
fredrikaa | 0 | 2,466,786,243,737 | 100% | ||
trumpikas | 0 | 11,769,108,786 | 80% | ||
joechiappetta | 0 | 134,741,610,882 | 100% | ||
cryptoknight12 | 0 | 760,952,544 | 2.3% | ||
masterthematrix | 0 | 32,660,619,836 | 100% | ||
taitux | 0 | 1,816,104,709 | 100% | ||
belahejna | 0 | 37,325,772,588 | 20% | ||
alphacore | 0 | 7,738,219,736 | 7.76% | ||
galenkp | 0 | 2,963,975,987,533 | 100% | ||
enjar | 0 | 933,703,731,127 | 100% | ||
firstamendment | 0 | 187,107,604,760 | 100% | ||
paulag | 0 | 11,386,296,932 | 10% | ||
jingdol | 0 | 420,076,507,319 | 100% | ||
hellene8 | 0 | 1,692,109,759 | 100% | ||
spectrumecons | 0 | 3,204,589,759,135 | 50% | ||
jayna | 0 | 35,492,412,787 | 5% | ||
colinhoward | 0 | 6,241,503,121 | 13% | ||
guchtere | 0 | 494,900,214 | 4% | ||
vieanna | 0 | 24,849,640,127 | 100% | ||
joeyarnoldvn | 0 | 35,573,004,621 | 100% | ||
heyitshaas | 0 | 11,598,900,761 | 100% | ||
offgridlife | 0 | 4,677,098,969 | 100% | ||
papilloncharity | 0 | 2,056,182,505,103 | 80.41% | ||
gniksivart | 0 | 52,696,932,492 | 25% | ||
bluemist | 0 | 23,879,030,853 | 10% | ||
eturnerx | 0 | 1,054,928,329,847 | 100% | ||
dksart | 0 | 408,369,890,124 | 100% | ||
tattoodjay | 0 | 407,722,633,993 | 15% | ||
rafalski | 0 | 1,007,622,929 | 64.8% | ||
theguruasia | 0 | 6,725,598,496 | 100% | ||
howo | 0 | 3,326,836,706,300 | 100% | ||
heart-to-heart | 0 | 12,644,209,576 | 20% | ||
shitsignals | 0 | 2,515,886,254 | 72% | ||
appreciator | 0 | 38,146,580,870,972 | 10% | ||
hairyfairy | 0 | 1,985,049,224 | 2.5% | ||
themarkymark | 0 | 55,270,114,920,862 | 100% | ||
wargof | 0 | 1,199,242,598 | 65% | ||
stayoutoftherz | 0 | 2,904,798,610,048 | 25% | ||
vikisecrets | 0 | 619,722,098,008 | 30% | ||
shasta | 0 | 335,616,814,911 | 100% | ||
resiliencia | 0 | 31,522,651,020 | 100% | ||
pocketrocket | 0 | 21,462,659,710 | 100% | ||
kharrazi | 0 | 4,441,382,755 | 100% | ||
yacobh | 0 | 11,777,839,432 | 70% | ||
lizelle | 0 | 271,193,442,341 | 100% | ||
jeanlucsr | 0 | 4,286,611,013 | 7.2% | ||
holisticmom | 0 | 1,375,848,668 | 3% | ||
horpey | 0 | 63,864,321,768 | 100% | ||
ahlawat | 0 | 11,553,753,899 | 22.4% | ||
shanibeer | 0 | 255,501,771,492 | 17.5% | ||
chrisparis | 0 | 61,730,190,407 | 100% | ||
authors.leage | 0 | 839,087,953 | 25% | ||
shogo | 0 | 5,039,953,031 | 100% | ||
fionasfavourites | 0 | 151,193,768,892 | 100% | ||
aafeng | 0 | 226,220,076,283 | 25% | ||
zyx066 | 0 | 87,039,515,204 | 30% | ||
tribesteemup | 0 | 172,016,222,985 | 100% | ||
herosujin | 0 | 1,075,003,380 | 45% | ||
felander | 0 | 352,382,658,581 | 72% | ||
santigs | 0 | 420,563,552,717 | 100% | ||
floatinglin | 0 | 6,898,897,380 | 100% | ||
marketinggeek | 0 | 3,524,564,397 | 100% | ||
zirochka | 0 | 633,018,751,771 | 80% | ||
ekkah | 0 | 877,658,368 | 100% | ||
nurhayati | 0 | 2,341,815,774 | 50% | ||
buildawhale | 0 | 80,791,200,234,911 | 100% | ||
holbein81 | 0 | 2,728,271,613,330 | 100% | ||
aidefr | 0 | 513,427,221 | 2.6% | ||
cconn | 0 | 9,055,636,763 | 72% | ||
eastmael | 0 | 61,666,873,869 | 100% | ||
solarsupermama | 0 | 2,193,080,883 | 11% | ||
calatorulmiop | 0 | 73,616,389,093 | 50% | ||
yogacoach | 0 | 16,392,985,213 | 72% | ||
artlover | 0 | 2,404,409,561 | 100% | ||
drax | 0 | 446,141,187,321 | 100% | ||
sorin.cristescu | 0 | 64,560,757,565 | 12.5% | ||
tomwafula | 0 | 2,632,788,068 | 72% | ||
taskmaster4450 | 0 | 617,408,384,228 | 25% | ||
roleerob | 0 | 438,335,708,156 | 100% | ||
deathwing | 0 | 2,195,669,105,881 | 72% | ||
revisesociology | 0 | 255,437,532,162 | 30% | ||
silversaver888 | 0 | 376,051,687,125 | 100% | ||
ligayagardener | 0 | 78,800,071,964 | 100% | ||
benainouna | 0 | 21,158,881,799 | 100% | ||
dilimunanzar | 0 | 14,165,088,669 | 100% | ||
insanityisfree | 0 | 790,616,197 | 40% | ||
diosarich | 0 | 14,557,335,834 | 100% | ||
omra-sky | 0 | 54,147,902,813 | 50% | ||
jlsplatts | 0 | 22,959,323,389 | 2% | ||
risemultiversity | 0 | 2,954,323,481 | 20% | ||
makerhacks | 0 | 140,096,181,259 | 100% | ||
ecotrain | 0 | 94,059,899,845 | 31% | ||
meno | 0 | 34,310,909,078 | 4% | ||
canadianrenegade | 0 | 10,474,058,216 | 5% | ||
steemseph | 0 | 79,353,290,281 | 50% | ||
harpreetmaan | 0 | 1,150,527,721 | 85% | ||
technicalside | 0 | 26,871,422,751 | 25% | ||
m-san | 0 | 6,009,727,106 | 100% | ||
vegoutt-travel | 0 | 49,855,208,513 | 50% | ||
kieranpearson | 0 | 1,742,590,458 | 33% | ||
zoidsoft | 0 | 74,877,159,571 | 100% | ||
minnowspower | 0 | 692,328,791 | 90% | ||
spacesheep | 0 | 4,782,131,618 | 100% | ||
afterglow | 0 | 4,497,632,932 | 50% | ||
marleyn | 0 | 2,945,734,323 | 10% | ||
fulcrumleader | 0 | 7,414,370,500 | 100% | ||
seareader1 | 0 | 613,373,828 | 5% | ||
petrolinivideo | 0 | 5,140,570,910 | 50% | ||
dejan.vuckovic | 0 | 11,859,937,469 | 15% | ||
informationwar | 0 | 166,087,981,375 | 40% | ||
coolguy123 | 0 | 90,173,884,281 | 50% | ||
ybanezkim26 | 0 | 205,756,108,012 | 100% | ||
socent | 0 | 957,981,682 | 15% | ||
familyprotection | 0 | 743,824,041,370 | 48% | ||
mightpossibly | 0 | 42,742,682,120 | 12.5% | ||
mrhill | 0 | 949,756,024 | 2.5% | ||
blockbrothers | 0 | 1,254,862,967 | 36% | ||
sunsea | 0 | 4,955,432,409 | 5% | ||
steemflow | 0 | 233,066,103,180 | 53% | ||
emrebeyler | 0 | 1,296,730,058,036 | 64.8% | ||
bluefinstudios | 0 | 847,763,158 | 0.4% | ||
steveconnor | 0 | 89,701,541,151 | 50% | ||
libertyepodcast | 0 | 587,308,645 | 50% | ||
paulmoon410 | 0 | 1,733,296,073 | 10% | ||
trucklife-family | 0 | 148,993,938,670 | 30% | ||
fredkese | 0 | 2,058,459,179 | 16.5% | ||
travoved | 0 | 19,295,301,614 | 100% | ||
belleamie | 0 | 5,499,696,902 | 25% | ||
mytechtrail | 0 | 17,537,064,840 | 15% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
mhm-philippines | 0 | 1,157,108,001 | 50% | ||
traf | 0 | 2,815,477,832,279 | 67% | ||
sunnyali | 0 | 521,974,522 | 12.5% | ||
tazi | 0 | 83,009,396,592 | 49% | ||
ahmetay | 0 | 106,746,545,260 | 100% | ||
helpie | 0 | 9,772,914,352 | 8% | ||
elderson | 0 | 632,755,561 | 25% | ||
prometehum | 0 | 1,041,370,202 | 100% | ||
nathen007 | 0 | 192,828,322,470 | 100% | ||
alexandraioana26 | 0 | 4,976,754,987 | 12.5% | ||
fjcalduch | 0 | 439,258,899,751 | 100% | ||
rezoanulvibes | 0 | 17,385,235,695 | 100% | ||
robotics101 | 0 | 966,624,386 | 3.25% | ||
breelikeatree | 0 | 223,735,868,269 | 100% | ||
sneakyninja | 0 | 750,883,049 | 1.15% | ||
markaustin | 0 | 791,615,750 | 5% | ||
spiritabsolute | 0 | 37,591,463,247 | 100% | ||
dmwh | 0 | 55,216,177,097 | 20% | ||
stepshotfoto | 0 | 7,905,524,963 | 100% | ||
wiseagent | 0 | 71,289,712,916 | 100% | ||
cryptonized | 0 | 236,838,638 | 14% | ||
fourfourfun | 0 | 849,772,372 | 2.75% | ||
soulturtle | 0 | 474,189,909 | 1.6% | ||
peter.goki | 0 | 171,120,847,521 | 100% | ||
upmyvote | 0 | 33,893,255,636 | 100% | ||
kirazay | 0 | 17,543,819,654 | 100% | ||
dechastre | 0 | 1,595,748,414 | 70% | ||
eaglespirit | 0 | 9,714,519,079 | 5% | ||
anikekirsten | 0 | 567,917,072 | 100% | ||
phortun | 0 | 156,881,656,462 | 25% | ||
daltono | 0 | 863,457,159,415 | 50% | ||
sagescrub | 0 | 1,413,391,880 | 25% | ||
gabrielatravels | 0 | 50,909,471,355 | 50% | ||
thedrewshow | 0 | 815,394,323 | 100% | ||
alexanderfluke | 0 | 19,432,162,514 | 100% | ||
jude.villarta | 0 | 1,365,756,247 | 100% | ||
dudeontheweb | 0 | 1,863,128,988 | 1.75% | ||
branbello | 0 | 1,319,015,355 | 25% | ||
edwardstobia | 0 | 14,814,760,984 | 50% | ||
slacktmusic | 0 | 726,730,679 | 4% | ||
moxieme | 0 | 1,391,765,980 | 20% | ||
roadstories | 0 | 7,911,629,534 | 20% | ||
topchuqs | 0 | 474,415,413 | 25% | ||
smjn | 0 | 954,374,285,097 | 100% | ||
bennettitalia | 0 | 2,955,863,248 | 4% | ||
socialmediaseo | 0 | 3,175,866,870 | 100% | ||
criptomaster | 0 | 3,901,105,704 | 100% | ||
leslierevales | 0 | 6,732,579,216 | 50% | ||
manncpt | 0 | 3,322,746,950 | 2% | ||
soyrosa | 0 | 176,235,312,204 | 50% | ||
dragibusss | 0 | 1,411,156,077 | 50% | ||
empress-eremmy | 0 | 16,584,724,562 | 20% | ||
aagabriel | 0 | 2,499,900,858 | 65% | ||
dynamicrypto | 0 | 1,527,659,695 | 1% | ||
jnmarteau | 0 | 807,219,621 | 2% | ||
a-quarius | 0 | 168,957,690,144 | 100% | ||
philnewton | 0 | 513,950,531 | 7.5% | ||
roger.remix | 0 | 1,127,436,242 | 72% | ||
thetroublenotes | 0 | 222,239,120,310 | 100% | ||
fieryfootprints | 0 | 94,899,031,041 | 40% | ||
krommus | 0 | 1,100,548,355 | 50% | ||
lunaticpandora | 0 | 2,936,779,699 | 50% | ||
lanzjoseg | 0 | 16,875,336,774 | 25% | ||
jazzhero | 0 | 30,391,003,305 | 37.5% | ||
beautifulfield | 0 | 1,021,440,443 | 40% | ||
warpedpoetic | 0 | 3,016,419,974 | 8% | ||
unconditionalove | 0 | 9,684,723,008 | 36% | ||
mastergerund | 0 | 792,272,365 | 2.3% | ||
cryptosharon | 0 | 3,642,711,090 | 100% | ||
minerspost | 0 | 1,627,316,018 | 36% | ||
green77 | 0 | 21,121,367,463 | 95% | ||
hempress | 0 | 1,011,079,333 | 11% | ||
robertbira | 0 | 1,038,657,767 | 2.5% | ||
condeas | 0 | 369,202,087,252 | 20% | ||
rubelynmacion | 0 | 39,523,114,075 | 100% | ||
kirito-freud | 0 | 5,522,976,948 | 50% | ||
darkpylon | 0 | 3,078,969,191 | 72% | ||
nataboo | 0 | 1,318,106,793 | 50% | ||
onlavu | 0 | 127,362,094,978 | 100% | ||
illuminaticongo | 0 | 2,210,993,120 | 100% | ||
alexdory | 0 | 3,765,501,403 | 25% | ||
asgarth | 0 | 127,396,982,443 | 100% | ||
vegan.niinja | 0 | 4,462,732,743 | 22% | ||
cyprianj | 0 | 34,294,786,240 | 31% | ||
bertrayo | 0 | 4,696,122,858 | 5% | ||
cst90 | 0 | 342,573,468,848 | 100% | ||
eugenekul | 0 | 913,538,772 | 22% | ||
rachelssi | 0 | 31,295,008,187 | 100% | ||
movement19 | 0 | 3,783,682,653 | 25% | ||
lisfabian | 0 | 11,773,376,769 | 50% | ||
homestead-guru | 0 | 38,983,164,929 | 50% | ||
russellstockley | 0 | 119,816,682,074 | 100% | ||
g4fun | 0 | 11,485,813,200 | 25% | ||
putu300 | 0 | 4,166,877,397 | 50% | ||
cryptictruth | 0 | 2,036,466,985 | 0.5% | ||
jagoe | 0 | 40,283,322,464 | 24% | ||
wildarms65 | 0 | 8,053,378,719 | 100% | ||
zipporah | 0 | 3,955,098,437 | 1.6% | ||
almi | 0 | 628,267,640,952 | 100% | ||
harvestmoon299 | 0 | 1,110,858,782 | 100% | ||
homeginkit | 0 | 3,177,502,028 | 100% | ||
honeymoon-1611 | 0 | 597,088,969 | 20% | ||
didutza | 0 | 798,332,952 | 50% | ||
richatvns | 0 | 561,367,567 | 0.5% | ||
mind-blowing | 0 | 1,360,443,421 | 100% | ||
properfraction | 0 | 59,839,523,623 | 100% | ||
jonmylestan | 0 | 1,538,498,602 | 25% | ||
bonzopoe | 0 | 55,189,438,990 | 40% | ||
miosha | 0 | 539,203,544,903 | 100% | ||
cryptozdk | 0 | 497,318,938 | 25% | ||
asimo | 0 | 7,711,474,386 | 90% | ||
mima2606 | 0 | 14,169,910,769 | 35% | ||
greendo | 0 | 865,365,635 | 50% | ||
jeronimorubio | 0 | 827,313,150 | 8% | ||
sunshinebear | 0 | 1,779,591,748 | 50% | ||
steemitcolombia | 0 | 4,767,833,235 | 100% | ||
grzyb77 | 0 | 680,040,161 | 7.5% | ||
silverd510 | 0 | 31,956,156,053 | 100% | ||
immanuel94 | 0 | 439,693,725,042 | 100% | ||
andablackwidow | 0 | 57,079,483,043 | 100% | ||
bdlatif | 0 | 1,128,021,473 | 25% | ||
bestboom | 0 | 10,336,195,518 | 72% | ||
uyobong | 0 | 32,634,433,736 | 100% | ||
celestialcow | 0 | 5,226,232,510 | 22% | ||
ravenmus1c | 0 | 10,670,741,111 | 0.5% | ||
botefarm | 0 | 5,868,206,466 | 50% | ||
sanderjansenart | 0 | 10,878,702,178 | 5% | ||
manniman | 0 | 45,939,236,858 | 11% | ||
adamada | 0 | 148,813,758,355 | 50% | ||
louis88 | 0 | 2,345,183,662,491 | 100% | ||
d-zero | 0 | 519,709,306 | 14.9% | ||
reversehitler88 | 0 | 14,274,845,877 | 100% | ||
kanrat | 0 | 1,048,526,409 | 1.62% | ||
paragism | 0 | 3,215,981,152 | 100% | ||
franciscopr | 0 | 21,737,062,177 | 100% | ||
flaxz | 0 | 9,866,692,649 | 13.5% | ||
pelin | 0 | 1,010,343,028 | 100% | ||
wolfhart | 0 | 16,258,470,092 | 40% | ||
m2nnari | 0 | 8,246,211,403 | 100% | ||
laviniatherapist | 0 | 1,011,600,551 | 21.25% | ||
yameen | 0 | 677,067,106,002 | 100% | ||
braaiboy | 0 | 18,932,356,572 | 5% | ||
abdulmath | 0 | 13,474,071,138 | 50% | ||
jemmanuel | 0 | 6,381,022,801 | 20% | ||
jungch98 | 0 | 221,775,680 | 100% | ||
gadrian | 0 | 437,952,882,269 | 50% | ||
fotogruppemunich | 0 | 162,185,573,171 | 80% | ||
inciter | 0 | 6,862,623,073 | 10% | ||
memepress | 0 | 1,670,958,062 | 50% | ||
xchng | 0 | 29,627,431,234 | 80% | ||
michellpiala | 0 | 2,996,619,061 | 50% | ||
gogreenbuddy | 0 | 379,769,777,355 | 100% | ||
springlining | 0 | 37,802,747,653 | 100% | ||
tsnaks | 0 | 2,878,535,080 | 100% | ||
quochuy | 0 | 5,988,642,238,832 | 100% | ||
kgakakillerg | 0 | 18,553,127,027 | 10% | ||
flyinghigher | 0 | 69,421,926,503 | 100% | ||
steemer-x | 0 | 537,177,545 | 50% | ||
el-dee-are-es | 0 | 6,031,888,499 | 10% | ||
kendallron | 0 | 1,043,945,281 | 50% | ||
thomaskatan | 0 | 1,619,802,547 | 70% | ||
steemromania | 0 | 7,517,383,549 | 25% | ||
indigoocean | 0 | 22,506,438,726 | 50% | ||
retard-gamer-de | 0 | 506,817,044 | 20% | ||
bubtforhad | 0 | 1,983,294,156 | 50% | ||
yaraha | 0 | 3,693,249,290 | 20% | ||
promobot | 0 | 2,981,537,138 | 100% | ||
beco132 | 0 | 14,917,859,593 | 100% | ||
superlao | 0 | 1,256,568,826 | 2.5% | ||
veteranforcrypto | 0 | 4,091,586,210 | 20% | ||
fitnessgourmet | 0 | 764,615,894 | 100% | ||
jancharlest | 0 | 5,234,356,252 | 100% | ||
leomolina | 0 | 782,406,750 | 9% | ||
fw206 | 0 | 3,320,720,859,980 | 49.7% | ||
techcoderx | 0 | 118,095,968,123 | 100% | ||
cryptomaniacsgr | 0 | 102,907,729,848 | 50% | ||
delishtreats | 0 | 3,446,261,512,352 | 100% | ||
pladozero | 0 | 29,342,211,683 | 10% | ||
crimo | 0 | 546,298,480 | 10% | ||
nateaguila | 0 | 197,912,246,118 | 12% | ||
crypticat | 0 | 179,720,696,197 | 50% | ||
free-reign | 0 | 1,417,510,084 | 1.2% | ||
steem-tube | 0 | 7,215,428,379 | 100% | ||
annemariemay | 0 | 488,945,811 | 50% | ||
alfrednoyed | 0 | 13,286,483,709 | 100% | ||
pinas | 0 | 662,849,856 | 50% | ||
steemxp | 0 | 6,291,747,009 | 100% | ||
cambridgeport90 | 0 | 12,991,541,687 | 50% | ||
worldwildflora | 0 | 987,059,662 | 50% | ||
steddyman | 0 | 2,241,908,993 | 100% | ||
commonlaw | 0 | 5,378,969,946 | 35% | ||
cryptoandcoffee | 0 | 314,624,381,267 | 10% | ||
solarwarrior | 0 | 99,821,687,206 | 100% | ||
gregorypatrick | 0 | 588,318,787 | 33% | ||
sgbonus | 0 | 43,701,611,660 | 15% | ||
the.rocket.panda | 0 | 2,738,356,518 | 25% | ||
smarmy | 0 | 884,953,819 | 50% | ||
ronibarua | 0 | 78,565,686,552 | 100% | ||
digital.mine | 0 | 73,201,162,871 | 60% | ||
marblely | 0 | 32,545,838,575 | 30% | ||
haccolong | 0 | 770,862,978 | 10% | ||
bjornb | 0 | 767,599,478 | 25% | ||
cheese4ead | 0 | 17,431,789,925 | 10% | ||
apshamilton | 0 | 1,011,130,367,518 | 50% | ||
newsnownorthwest | 0 | 751,430,252 | 6% | ||
gaottantacinque | 0 | 439,618,071 | 100% | ||
mannacurrency | 0 | 20,315,410,466 | 10% | ||
scrawly | 0 | 2,570,573,288 | 100% | ||
kwilley | 0 | 19,911,619,740 | 25% | ||
drsensor | 0 | 2,269,559,034 | 80% | ||
hemo | 0 | 3,653,609,271 | 100% | ||
roozeec | 0 | 499,819,444 | 10% | ||
steemulant | 0 | 2,290,661,115 | 100% | ||
xves | 0 | 19,555,026,113 | 50% | ||
mrnightmare89 | 0 | 3,510,562,775 | 20% | ||
thedailysneak | 0 | 1,034,999,068 | 1.15% | ||
bflanagin | 0 | 7,287,609,519 | 4% | ||
zaibkang | 0 | 2,955,452,945 | 100% | ||
schlunior | 0 | 22,388,045,946 | 20% | ||
phillyc | 0 | 1,674,742,987 | 50% | ||
rilo | 0 | 7,146,168,206 | 100% | ||
melor9 | 0 | 696,662,477 | 4% | ||
sadbear | 0 | 483,624,269 | 5% | ||
lillywilton | 0 | 2,018,714,492 | 20% | ||
bestofph | 0 | 6,256,795,612 | 50% | ||
steem.craft | 0 | 625,101,815 | 100% | ||
yestermorrow | 0 | 12,265,785,446 | 31% | ||
hamismsf | 0 | 335,271,381,864 | 50% | ||
thehive | 0 | 43,692,789,332 | 83% | ||
lux-witness | 0 | 2,158,474,259 | 18.75% | ||
liberlandpress | 0 | 59,473,145,709 | 100% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
light-hearted | 0 | 9,197,976,245 | 100% | ||
hoaithu | 0 | 2,320,386,123 | 8.5% | ||
yaelg | 0 | 33,807,490,564 | 45% | ||
aconsciousness | 0 | 2,597,848,780 | 95% | ||
deepdives | 0 | 207,506,970,023 | 40% | ||
gasaeightyfive | 0 | 782,707,267 | 100% | ||
goingbonkers | 0 | 67,818,121,826 | 100% | ||
themanny | 0 | 76,520,565,518 | 100% | ||
dlike | 0 | 208,055,938,423 | 72% | ||
mr-hades | 0 | 3,836,831,332 | 100% | ||
voxmortis | 0 | 37,519,207,500 | 20% | ||
anhvu | 0 | 1,486,096,570 | 8% | ||
mobi72 | 0 | 582,357,100 | 5% | ||
ataliba | 0 | 13,591,411,142 | 50% | ||
tipsybosphorus | 0 | 5,785,020,298 | 90% | ||
gubbatv | 0 | 254,735,190,108 | 100% | ||
pboulet | 0 | 249,905,221,546 | 100% | ||
chike4545 | 0 | 959,549,824 | 100% | ||
marcocasario | 0 | 51,283,879,212 | 10.92% | ||
steemituplife | 0 | 645,257,193 | 25% | ||
vimm | 0 | 58,120,980,125 | 5% | ||
actifit | 0 | 4,111,568,043,622 | 50% | ||
cribbio | 0 | 1,763,449,638 | 100% | ||
steemwhalepower | 0 | 966,516,944 | 100% | ||
pocketjs | 0 | 2,186,144,722 | 100% | ||
sbi8 | 0 | 284,814,427,636 | 58.81% | ||
thevil | 0 | 1,092,461,807,646 | 100% | ||
riskneutral | 0 | 4,739,886,551 | 40% | ||
jacobpeacock | 0 | 4,092,241,104 | 100% | ||
merlin7 | 0 | 51,834,649,657 | 25.92% | ||
besheda | 0 | 1,316,274,505 | 50% | ||
thrasher666 | 0 | 2,512,975,358 | 60% | ||
brianoflondon | 0 | 5,876,584,137,958 | 100% | ||
vasigo | 0 | 20,867,496,819 | 100% | ||
kingsofa | 0 | 11,128,746,959 | 50% | ||
nmcdougal94 | 0 | 1,456,331,030 | 10% | ||
geeklania | 0 | 720,671,438 | 100% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
carbodexkim | 0 | 812,881,374 | 100% | ||
michealb | 0 | 380,010,187,468 | 100% | ||
iovoccae | 0 | 4,671,149,966 | 100% | ||
glastar | 0 | 642,192,335 | 100% | ||
sorin.lite | 0 | 2,305,338,994 | 25% | ||
keket | 0 | 671,207,880 | 50% | ||
bia.birch | 0 | 7,071,486,100 | 50% | ||
steemlandia | 0 | 4,648,341,551 | 100% | ||
francescomai | 0 | 96,021,779,325 | 100% | ||
maajaanaa | 0 | 1,084,887,198 | 20% | ||
tamito0201 | 0 | 1,692,390,361 | 100% | ||
starrouge | 0 | 994,362,898 | 50% | ||
vladu | 0 | 479,133,712 | 100% | ||
jpbliberty | 0 | 612,005,749,928 | 100% | ||
wherein | 0 | 37,407,998,008 | 100% | ||
verticallife2 | 0 | 971,252,777 | 25% | ||
shainemata | 0 | 13,598,236,678 | 5% | ||
zerofive | 0 | 849,451,613 | 50% | ||
kork75 | 0 | 5,954,222,772 | 100% | ||
jacuzzi | 0 | 2,798,284,018 | 1.4% | ||
tombramycin | 0 | 11,254,397,082 | 100% | ||
ragnarhewins90 | 0 | 475,844,249 | 10% | ||
determine | 0 | 4,542,895,812 | 72% | ||
cnstm | 0 | 139,204,609,482 | 100% | ||
permaculturedude | 0 | 4,113,288,313 | 72% | ||
likuang007 | 0 | 637,101,671 | 100% | ||
birdwatcher | 0 | 4,458,908,823,370 | 100% | ||
elikast | 0 | 52,031,466,731 | 100% | ||
vickyguevara | 0 | 3,289,605,585 | 100% | ||
brancarosamel | 0 | 1,035,661,612 | 25% | ||
miguelmederico | 0 | 2,204,467,808 | 40% | ||
caribehub | 0 | 1,381,469,491 | 100% | ||
helpie-caster | 0 | 1,401,204,065 | 3.25% | ||
baasdebeer | 0 | 771,600,502 | 5% | ||
fusion.lover | 0 | 31,860,855,452 | 90% | ||
lianjingmedia | 0 | 931,885,572 | 100% | ||
broxi | 0 | 9,547,698,993 | 50% | ||
steemtelly | 0 | 33,719,785,480 | 100% | ||
goodcontentbot | 0 | 807,367,106 | 15% | ||
breadbakers | 0 | 3,107,918,565 | 100% | ||
steemitmonsters | 0 | 773,837,185 | 100% | ||
creacioneslelys | 0 | 42,539,212,993 | 100% | ||
cooperfelix | 0 | 747,770,317 | 40% | ||
kokadi | 0 | 4,349,157,261 | 80% | ||
hungrybear | 0 | 622,582,113 | 14% | ||
haikusailor | 0 | 2,239,045,625 | 72% | ||
afternoondrinks | 0 | 825,959,491 | 5% | ||
ond | 0 | 513,054,227 | 100% | ||
freevoluntarist | 0 | 0 | 100% | ||
denizcakmak | 0 | 482,693,564 | 32.4% | ||
hungryharish | 0 | 4,256,441,630 | 18% | ||
newton666 | 0 | 2,209,639,403 | 50% | ||
sophieandhenrik | 0 | 15,252,519,886 | 100% | ||
src3 | 0 | 6,033,902,638 | 5% | ||
kggymlife | 0 | 9,244,997,148 | 50% | ||
androshchuk | 0 | 607,426,437 | 25% | ||
zeero22 | 0 | 9,508,629,310 | 51% | ||
ilanisnapshots | 0 | 511,900,657 | 5% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
guysellars | 0 | 2,366,195,560 | 100% | ||
alenox | 0 | 719,328,728 | 5% | ||
maxsieg | 0 | 5,884,832,017 | 40% | ||
hungryanu | 0 | 1,179,187,311 | 18% | ||
engrsayful | 0 | 1,585,653,167 | 17.5% | ||
photographercr | 0 | 48,879,681,408 | 20% | ||
szf | 0 | 685,671,496 | 50% | ||
wallvater | 0 | 1,237,381,492 | 20% | ||
steelborne | 0 | 2,797,713,515 | 20% | ||
bigmoneyman | 0 | 636,010,306 | 36% | ||
helgalubevi | 0 | 11,470,554,060 | 25% | ||
imagenius | 0 | 614,389,550 | 72% | ||
deeanndmathews | 0 | 27,797,206,107 | 100% | ||
beerlover | 0 | 6,852,697,198 | 5% | ||
huntforsteem | 0 | 14,271,295,305 | 100% | ||
likwid | 0 | 1,806,254,452 | 100% | ||
agmoore2 | 0 | 9,372,638,474 | 100% | ||
tinyhousecryptos | 0 | 473,919,151 | 5% | ||
clownworld | 0 | 1,859,707,072 | 20% | ||
leighscotford | 0 | 2,686,279,775 | 3.75% | ||
xyz004 | 0 | 49,098,184,310 | 25% | ||
steemindian | 0 | 1,458,434,938 | 36% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
waraira777 | 0 | 3,864,888,018 | 100% | ||
denisdenis | 0 | 83,823,635,200 | 100% | ||
edipascal | 0 | 628,843,813 | 79% | ||
allics | 0 | 524,039,801 | 80% | ||
imbartley | 0 | 791,888,692 | 25% | ||
kgswallet | 0 | 1,371,465,133 | 25% | ||
milu-the-dog | 0 | 906,585,325 | 72% | ||
softwarelibre | 0 | 163,448,113 | 100% | ||
triplea.bot | 0 | 15,575,294,987 | 72% | ||
steem.leo | 0 | 89,664,063,358 | 72% | ||
reggaesteem | 0 | 3,068,472,285 | 29.75% | ||
nichemarket | 0 | 1,328,674,231 | 100% | ||
empoderat | 0 | 1,728,689,396,605 | 100% | ||
farm1 | 0 | 891,987,789,697 | 100% | ||
splines | 0 | 620,670,168 | 50% | ||
freedomring | 0 | 4,851,059,779 | 100% | ||
amico.sports | 0 | 10,708,542,881 | 25% | ||
ali-h | 0 | 1,434,175,017 | 90% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
freddio.sport | 0 | 2,610,799,623 | 100% | ||
binodkatuwal | 0 | 2,168,806,293 | 100% | ||
babytarazkp | 0 | 1,784,851,627 | 50% | ||
trendovoter | 0 | 4,244,222,753 | 90% | ||
eulymer | 0 | 1,124,582,366 | 100% | ||
soyunasantacruz | 0 | 25,474,583,238 | 100% | ||
botefarm.sport | 0 | 633,455,904 | 70% | ||
sbi-tokens | 0 | 3,202,835,928 | 2.3% | ||
leo.syndication | 0 | 1,391,373,000 | 72% | ||
one.life | 0 | 1,425,434,248 | 71.85% | ||
successchar | 0 | 3,010,604,685 | 25% | ||
janaveda | 0 | 4,150,744,792 | 100% | ||
lynds | 0 | 553,514,771,078 | 100% | ||
acta | 0 | 4,941,333,907 | 100% | ||
urun | 0 | 30,407,257,462 | 100% | ||
the-table | 0 | 8,093,060,516 | 100% | ||
lividseagulls | 0 | 1,542,833,769 | 50.4% | ||
bilpcoinbot | 0 | 3,702,649,660 | 100% | ||
man60360 | 0 | 964,589,128 | 25% | ||
fixie | 0 | 41,025,588,277 | 100% | ||
emeka4 | 0 | 455,464,331 | 5% | ||
trendobounty | 0 | 20,231,790 | 90% | ||
oratione | 0 | 926,796,384 | 100% | ||
dpoll.witness | 0 | 5,887,497,142 | 64.8% | ||
gigel2 | 0 | 1,077,729,037,881 | 100% | ||
dappstats | 0 | 4,641,090,248 | 15% | ||
ibelin | 0 | 26,699,105,693 | 70% | ||
silverquest | 0 | 6,318,018,478 | 100% | ||
therealyme | 0 | 3,035,906,192 | 10.8% | ||
blocktvnews | 0 | 1,314,633,720 | 72% | ||
bilpcoin.pay | 0 | 541,249,360 | 10% | ||
tobago | 0 | 675,901,834 | 35% | ||
tatiana21 | 0 | 4,714,321,560 | 100% | ||
efathenub | 0 | 476,179,329 | 100% | ||
honeychip | 0 | 6,654,643,356 | 90% | ||
unpopular | 0 | 1,295,635,977,153 | 100% | ||
rockface | 0 | 5,468,417,302 | 100% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
cultofsteem | 0 | 556,015,824 | 100% | ||
invest2learn | 0 | 1,915,072,745 | 72% | ||
lachg89 | 0 | 883,601,024 | 100% | ||
bpcvoter1 | 0 | 1,004,274,497 | 99% | ||
abachon | 0 | 36,543,440,638 | 100% | ||
gmlrecordz | 0 | 731,132,106 | 50% | ||
bpcvoter3 | 0 | 888,494,897 | 50% | ||
veryanprime | 0 | 934,661,048 | 18% | ||
journeyofanomad | 0 | 5,707,569,382 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
ribary | 0 | 26,983,383,092 | 36% | ||
inigo-montoya-jr | 0 | 979,969,612 | 34% | ||
awah | 0 | 227,799,449,852 | 30% | ||
gloriaolar | 0 | 31,006,686,816 | 30% | ||
garlet | 0 | 50,950,500,675 | 100% | ||
onestop | 0 | 11,291,273,433 | 100% | ||
kgsupport | 0 | 1,771,792,441 | 36% | ||
marblesz | 0 | 2,126,935,742 | 30% | ||
bilpcoinbpc | 0 | 818,308,960 | 5% | ||
mice-k | 0 | 6,570,640,312 | 72% | ||
julesquirin | 0 | 17,218,794,410 | 50% | ||
keys-defender | 0 | 3,715,818,185 | 100% | ||
kamilla19 | 0 | 67,122,922,064 | 20% | ||
alexa.art | 0 | 47,384,436,980 | 100% | ||
tommys.shop | 0 | 2,236,049,710 | 62.25% | ||
dpend.active | 0 | 5,512,259,965 | 14.4% | ||
peakd | 0 | 2,055,711,297,235 | 100% | ||
hivebuzz | 0 | 9,064,471,065 | 2% | ||
hivewatchers | 0 | 932,549,719 | 55% | ||
tht | 0 | 21,107,542,236 | 100% | ||
laruche | 0 | 6,990,921,207 | 3.25% | ||
ykretz | 0 | 473,868,665 | 5% | ||
abundance.tribe | 0 | 6,635,109,648 | 100% | ||
reggaejahm | 0 | 58,198,008,163 | 35% | ||
softworld | 0 | 376,404,403,589 | 100% | ||
captainhive | 0 | 1,214,643,117,726 | 50% | ||
velinov86 | 0 | 11,438,000,268 | 12.5% | ||
dcityrewards | 0 | 2,960,302,072,315 | 72% | ||
ciderjunkie | 0 | 1,547,770,771 | 2.43% | ||
andrewmusic | 0 | 733,338,195 | 10% | ||
sketching | 0 | 5,196,632,204 | 36% | ||
ninnu | 0 | 1,398,514,700 | 50% | ||
invest4free | 0 | 4,248,493,034 | 29% | ||
hiveupme | 0 | 1,968,973,882,330 | 90% | ||
hivecurator | 0 | 1,992,769,977 | 90% | ||
aquarius.academy | 0 | 1,996,202,918 | 100% | ||
ghaazi | 0 | 6,385,888,853 | 100% | ||
discoveringarni | 0 | 49,273,839,357 | 15% | ||
noelyss | 0 | 3,575,440,799 | 5% | ||
forkyishere | 0 | 17,305,612,586 | 100% | ||
balvinder294 | 0 | 2,372,432,577 | 10% | ||
profgabs05 | 0 | 1,053,514,025 | 50% | ||
daniky | 0 | 3,583,024,890 | 100% | ||
jagged71 | 0 | 1,745,761,748 | 20% | ||
lucianav | 0 | 50,433,637,728 | 100% | ||
patronpass | 0 | 5,007,361,090 | 72% | ||
jelly13 | 0 | 1,914,685,272 | 21.25% | ||
reza-shamim | 0 | 787,324,112 | 40% | ||
plusvault | 0 | 1,611,514,545 | 72% | ||
teesart | 0 | 102,024,331,486 | 100% | ||
gabilan55 | 0 | 655,262,645 | 5% | ||
syberia | 0 | 460,354,067 | 5% | ||
olaunlimited | 0 | 4,373,909,211 | 100% | ||
coretoken | 0 | 405,678,783 | 90% | ||
patriciaurbaneja | 0 | 532,306,992 | 25% | ||
zhoten | 0 | 3,272,565,884 | 100% | ||
dayerlis | 0 | 505,586,377 | 100% | ||
recoveryinc | 0 | 33,014,532,590 | 50% | ||
vaulttoken | 0 | 1,846,459,828 | 90% | ||
hive-108278 | 0 | 884,805,686 | 50% | ||
sunitahive | 0 | 25,910,629,071 | 100% | ||
rafaelgreen | 0 | 1,021,617,138 | 100% | ||
sevenoh-fiveoh | 0 | 34,380,721,368 | 100% | ||
hrcl.art | 0 | 3,891,064,082 | 100% | ||
damoclesart | 0 | 38,232,922,287 | 100% | ||
liz.writes | 0 | 1,060,059,566 | 50% | ||
sylmarill | 0 | 206,788,596 | 100% | ||
camplife | 0 | 692,319,574 | 100% | ||
kraken99 | 0 | 11,994,027,567 | 100% | ||
tschuri | 0 | 82,233,253 | 100% | ||
aurauramagic | 0 | 12,993,897,620 | 100% | ||
dying | 0 | 1,884,114,603 | 50% | ||
r-nyn | 0 | 123,090,557,375 | 100% | ||
briight | 0 | 1,139,375,542 | 100% | ||
usainvote | 0 | 12,685,270,039,703 | 50% | ||
magnolia-maggie | 0 | 482,757,698 | 100% | ||
idea-make-rich | 0 | 54,972,195,468 | 100% | ||
arrrds | 0 | 839,950,731 | 36% | ||
borbolet | 0 | 15,275,590,927 | 30% | ||
ph1102.sports | 0 | 823,161,073 | 90% | ||
noalys | 0 | 2,212,505,888 | 5% | ||
iamfarhad | 0 | 786,889,082 | 50% | ||
hive-168869 | 0 | 23,664,765,298 | 100% | ||
omarcitorojas | 0 | 5,712,146,299 | 10% | ||
sportsburn | 0 | 735,341,833 | 80% | ||
rima11 | 0 | 108,117,955,067 | 3% | ||
rohansuares | 0 | 1,465,266,605 | 25% | ||
dineandwine | 0 | 242,310,722 | 100% | ||
wine-token | 0 | 1,988,398,147 | 90% | ||
kattycrochet | 0 | 9,507,796,021 | 5% | ||
esecholito | 0 | 54,864,353,973 | 100% | ||
alex-rourke | 0 | 1,694,733,069,114 | 100% | ||
tamiapt6 | 0 | 1,112,965,088 | 100% | ||
thesimguru | 0 | 0 | 90% | ||
tan.stake | 0 | 724,044,216 | 90% | ||
hivechat | 0 | 3,893,870,864 | 36% | ||
wine.bot | 0 | 6,886,459,501 | 90% | ||
chrono88 | 0 | 474,907,479 | 100% | ||
dcrops | 0 | 458,395,688,860 | 36% | ||
maksu | 0 | 11,386,467,401 | 100% | ||
druckado | 0 | 689,618,996 | 20% | ||
completewind | 0 | 5,757,863,543 | 100% | ||
ykretz.sports | 0 | 2,703,456,465 | 75% | ||
rondonshneezy | 0 | 5,148,363,917 | 25% | ||
vihan | 0 | 0 | 90% | ||
cielitorojo | 0 | 2,904,833,527 | 7% | ||
hykss.leo | 0 | 143,370,470,292 | 14.4% | ||
samrisso | 0 | 35,525,709,067 | 50% | ||
trostparadox | 0 | 4,259,923,559,102 | 100% | ||
onemoretea | 0 | 1,389,326,004 | 50% | ||
cookaiss | 0 | 5,148,754,964 | 15% | ||
zarwelius | 0 | 475,095,658 | 25% | ||
haitch | 0 | 3,033,454,505 | 100% | ||
xrayman | 0 | 14,392,029,345 | 100% | ||
lingkar-photo | 0 | 4,976,769,638 | 100% | ||
ausbit.dev | 0 | 20,947,142,851 | 100% | ||
bananass | 0 | 4,327,969,692 | 100% | ||
firinmahlazer | 0 | 1,411,899,095 | 100% | ||
retaliatorr | 0 | 2,792,448,601 | 100% | ||
elgatoshawua | 0 | 1,257,569,669 | 5% | ||
abisag | 0 | 4,387,536,779 | 100% | ||
xyba | 0 | 47,890,280,064 | 100% | ||
star-sports | 0 | 1,644,891,340 | 45% | ||
wynella | 0 | 2,029,094,395 | 5% | ||
wine-ico | 0 | 300,692,078 | 90% | ||
nyxlabs | 0 | 703,475,415 | 2.5% | ||
mapetoke | 0 | 75,106,121,127 | 100% | ||
wend1go | 0 | 22,981,596,630 | 100% | ||
creodas | 0 | 1,523,122,764 | 37.5% | ||
core.voter | 0 | 188,889,931 | 90% | ||
drricksanchez | 0 | 28,378,691,105 | 5.4% | ||
rendrianarma | 0 | 2,173,072,305 | 50% | ||
hexagono6 | 0 | 792,780,095 | 5% | ||
trouvaille | 0 | 1,366,069,670 | 5% | ||
emstone | 0 | 4,578,409,002 | 50% | ||
aswita | 0 | 17,138,294,647 | 53.2% | ||
leveluplifestyle | 0 | 27,671,160,507 | 50% | ||
zarnoex | 0 | 496,626,180 | 100% | ||
hive-defender | 0 | 597,486,243 | 100% | ||
dendendenden | 0 | 6,719,810,174 | 100% | ||
power-kappe | 0 | 709,066,266 | 10% | ||
key-defender.shh | 0 | 108,003,098 | 100% | ||
okluvmee | 0 | 19,711,072,456 | 20% | ||
olebulls | 0 | 224,490,439,676 | 100% | ||
photo-hive-five | 0 | 1,212,440,022 | 72% | ||
louis.pay | 0 | 1,773,234,467 | 100% | ||
bulgaria-sports | 0 | 1,757,551,739 | 50% | ||
hive.friends | 0 | 853,836,791 | 50% | ||
egistar | 0 | 531,509,995 | 2.5% | ||
kellyane | 0 | 45,230,553,787 | 100% | ||
farpetrad | 0 | 70,901,220,515 | 100% | ||
shanhenry | 0 | 4,838,203,407 | 100% | ||
aichel | 0 | 754,069,763 | 10% | ||
mariaser | 0 | 2,877,401,059 | 7% | ||
seryi13 | 0 | 1,162,585,998 | 7% | ||
jorge234nv | 0 | 3,515,287,997 | 100% | ||
lordb | 0 | 8,868,565,854 | 100% | ||
hivehydra | 0 | 886,643,032 | 90% | ||
podping | 0 | 594,981,391,221 | 100% | ||
estebandido1983 | 0 | 2,526,823,719 | 80% | ||
vault.burn | 0 | 5,016,562,344 | 90% | ||
jessicaossom | 0 | 16,886,394,602 | 50% | ||
aprasad2325 | 0 | 1,865,082,184 | 5% | ||
pinkfloyd878 | 0 | 4,178,877,616 | 100% | ||
yoieuqudniram | 0 | 604,457,788 | 5% | ||
john9inch | 0 | 1,362,353,340 | 25% | ||
dungeondog | 0 | 14,792,736,931 | 20% | ||
theguru.photos | 0 | 166,303,314 | 90% | ||
ischmieregal | 0 | 7,383,862,513 | 20% | ||
celeste413 | 0 | 1,172,163,802 | 100% | ||
delver | 0 | 18,769,402,196 | 40% | ||
chuyster | 0 | 609,202,189 | 100% | ||
r0nny | 0 | 17,503,752,565 | 20% | ||
apeminingclub | 0 | 117,895,558,371 | 100% | ||
trezzahn | 0 | 30,334,450,865 | 100% | ||
cryptoccshow | 0 | 6,784,852,493 | 50% | ||
bilgin70 | 0 | 31,001,907,405 | 50% | ||
politeumico | 0 | 26,192,204,976 | 100% | ||
tanzil2024 | 0 | 12,363,561,143 | 100% | ||
mozzie5 | 0 | 8,859,366,366 | 50% | ||
blackman15 | 0 | 1,239,193,505 | 100% | ||
elderdark | 0 | 940,219,895 | 1.25% | ||
speko | 0 | 15,917,487,813 | 25% | ||
kitsuki | 0 | 11,679,212,891 | 100% | ||
alovely088 | 0 | 3,597,307,394 | 10% | ||
acantoni | 0 | 17,024,481,355 | 50% | ||
dml28 | 0 | 2,184,705,406 | 100% | ||
migka | 0 | 4,345,988,097 | 90% | ||
rushi1983 | 0 | 612,468,964 | 100% | ||
astrocat-3663 | 0 | 921,548,463 | 50% | ||
marsupia | 0 | 915,413,961 | 25% | ||
trasto | 0 | 5,173,714,681 | 50% | ||
blockheadgames | 0 | 25,995,315,829 | 100% | ||
gejzep | 0 | 526,067,212 | 100% | ||
jkp.nisha | 0 | 4,216,021,909 | 100% | ||
dawan | 0 | 2,234,936,601 | 100% | ||
michupa | 0 | 7,138,451,905 | 2.5% | ||
zestimony | 0 | 821,342,429 | 100% | ||
innfauno12 | 0 | 4,542,591,153 | 100% | ||
tonton23 | 0 | 1,344,742,581 | 25% | ||
mengao | 0 | 295,044,783,197 | 100% | ||
kavii | 0 | 136,103,186 | 90% | ||
tillmea | 0 | 560,968,088 | 100% | ||
leodis | 0 | 1,709,653,128 | 61.2% | ||
gaposchkin | 0 | 14,643,038,896 | 100% | ||
meltysquid | 0 | 12,661,539,380 | 100% | ||
kqaosphreak | 0 | 3,510,021,091 | 50% | ||
mcookies | 0 | 605,080,498 | 5% | ||
hungryfortacos | 0 | 4,682,468,811 | 100% | ||
ssebasv | 0 | 640,706,564 | 100% | ||
abeerhunter | 0 | 39,857,502,682 | 100% | ||
violator101 | 0 | 32,683,763,185 | 100% | ||
kriang3teejoe | 0 | 209,098,920,772 | 100% | ||
hotspotitaly | 0 | 74,030,013,254 | 100% | ||
privatblog | 0 | 536,628,812,691 | 100% | ||
jimbaro.park | 0 | 2,221,904,350 | 45% | ||
kaibagt | 0 | 24,250,827,518 | 100% | ||
crypto-shots | 0 | 0 | 50% | ||
lovemessages | 0 | 2,025,874,386 | 100% | ||
crypt0gnome | 0 | 468,950,614,830 | 50% | ||
owl001 | 0 | 11,839,837,858 | 100% | ||
albiro2050 | 0 | 9,045,589,991 | 100% | ||
hoffmeister84 | 0 | 9,728,622,646 | 72% | ||
hucksbucks | 0 | 15,869,279,131 | 100% | ||
zuun.net | 0 | 3,659,625,454 | 26% | ||
ishaoathania | 0 | 2,533,221,530 | 100% | ||
netvalar | 0 | 6,177,318,082 | 50% | ||
hislab | 0 | 1,525,224,178 | 100% | ||
allentaylor | 0 | 5,475,652,794 | 12.5% | ||
annabeth | 0 | 1,495,049,496 | 10% | ||
diehardknocks | 0 | 27,319,075,501 | 100% | ||
adalathu | 0 | 2,042,897,353 | 5% | ||
killerwot | 0 | 273,530,129,355 | 100% | ||
alex2alex | 0 | 1,236,718,652 | 10% | ||
investinfreedom | 0 | 25,779,246,020 | 40% | ||
claraxmas | 0 | 601,343,627 | 50% | ||
giovannixmas | 0 | 601,343,616 | 50% | ||
der.merlin | 0 | 875,205,553 | 20% | ||
henrietta27 | 0 | 6,850,781,677 | 50% | ||
amakauz | 0 | 6,419,215,463 | 50% | ||
cryptoshots.nft | 0 | 1,026,054,426 | 100% | ||
fredhill | 0 | 1,333,892,054 | 12.5% | ||
donigarten | 0 | 2,492,977,799 | 100% | ||
doobetterhive | 0 | 4,168,305,583 | 100% | ||
archangel21 | 0 | 62,997,611,373 | 100% | ||
hiveormani | 0 | 869,195,133 | 50% | ||
mima.sports | 0 | 1,576,483,817 | 100% | ||
mannimanccadm | 0 | 7,807,542,505 | 100% | ||
serpent7776 | 0 | 0 | 100% | ||
amafable07 | 0 | 703,657,309 | 25% | ||
mdasein | 0 | 4,817,787,583 | 50% | ||
oceanfit | 0 | 624,139,416 | 100% | ||
resonator | 0 | 14,003,286,053,868 | 40% | ||
rukien | 0 | 0 | 100% | ||
abouttodie | 0 | 2,073,923,467 | 50% | ||
caelum1infernum | 0 | 1,680,447,322 | 10% | ||
hivewp | 0 | 10,936,678,589 | 100% | ||
bilginselcuk | 0 | 34,346,171,147 | 100% | ||
franzpaulie | 0 | 40,057,393,615 | 100% | ||
mryoung1979 | 0 | 14,554,637,183 | 100% | ||
panosdada.tip | 0 | 653,245,294 | 50% | ||
cryptoshots.play | 0 | 0 | 10% | ||
mukadder | 0 | 85,341,999,698 | 100% | ||
saranegi | 0 | 3,763,034,799 | 100% | ||
tzae | 0 | 1,785,172,862 | 100% | ||
rocco-maloney | 0 | 7,724,692,981 | 100% | ||
lyamalfonzo23 | 0 | 1,593,912,426 | 67% | ||
inibless | 0 | 1,466,435,290 | 25% | ||
ctptips | 0 | 0 | 15% | ||
osamabinhamid13 | 0 | 3,257,864,187 | 100% | ||
big.whale | 0 | 1,617,849,620 | 100% | ||
cindynancy | 0 | 5,459,719,172 | 100% | ||
etselec23 | 0 | 1,080,311,598 | 25% | ||
the13anarchist | 0 | 1,597,485,888 | 12.5% | ||
brutus22 | 0 | 299,040,256 | 100% | ||
glimpsytips.dex | 0 | 3,002,090,149 | 7% | ||
idksamad78699 | 0 | 3,142,001,640 | 5% | ||
bgmoha | 0 | 3,674,911,442 | 55% | ||
xerox94 | 0 | 14,189,257,848 | 100% | ||
thoth442 | 0 | 2,614,954,472 | 25% | ||
jagjnr | 0 | 687,929,360 | 20% | ||
canellov | 0 | 1,695,509,978 | 25% | ||
pinkchic | 0 | 1,880,736,476 | 2% | ||
queercoin | 0 | 93,635,416,747 | 100% | ||
roronoa46 | 0 | 9,666,537,573 | 100% | ||
dewamke44 | 0 | 5,932,942,628 | 100% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
micheal87 | 0 | 572,089,484 | 10% | ||
celestegray | 0 | 56,432,370,472 | 50% | ||
artefactoestudio | 0 | 1,807,309,271 | 67% | ||
brain71 | 0 | 1,474,629,685 | 20% | ||
bananzell | 0 | 22,082,071,098 | 100% | ||
aprilgillian | 0 | 2,064,962,700 | 10% | ||
tekraze | 0 | 1,040,174,318 | 40% | ||
workaholic666 | 0 | 2,517,082,319 | 100% | ||
fizz0 | 0 | 33,752,480,991 | 100% | ||
crypt0holics | 0 | 604,029,521 | 5% | ||
awildovasquez | 0 | 27,499,855,942 | 100% | ||
treefrognada | 0 | 1,849,631,387 | 10% | ||
bitphoto | 0 | 26,148,424 | 100% | ||
actordontee | 0 | 602,538,570 | 5% | ||
fotlala | 0 | 6,396,245,585 | 100% | ||
jesus-son | 0 | 18,703,325,444 | 70% | ||
beauty197 | 0 | 919,227,876 | 5% | ||
denisda | 0 | 9,325,850,898 | 50% | ||
whitneyalexx | 0 | 4,264,941,801 | 25% | ||
hbcpt | 0 | 30,093,811,551 | 100% | ||
chidistickz | 0 | 6,254,426,081 | 50% | ||
ecencypoints | 0 | 4,349,186,973 | 25% | ||
lu1sa | 0 | 11,509,566,720 | 10% | ||
thiskava | 0 | 1,875,934,637 | 100% | ||
gollumkp | 0 | 2,328,562,874 | 20% | ||
faniaviera | 0 | 7,492,281,143 | 100% | ||
ilmaffeiano78 | 0 | 21,933,971,649 | 100% | ||
skiptvads | 0 | 35,983,985,319 | 11% | ||
pit3r | 0 | 3,664,085,421 | 20% |
Thanks for the post! I need to study some of the terminology and learn more about the blockchain. I love the fact that we are updated about what is going on and the projects that are coming.
author | awildovasquez |
---|---|
permlink | re-blocktrades-20231224t8931706z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-12-24 07:09:33 |
last_update | 2023-12-24 07:09:33 |
depth | 1 |
children | 0 |
last_payout | 2023-12-31 07:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 50,318,877,353,334 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,943,355 |
net_rshares | 0 |
I cannot post anything from the hive blog due to continuously downvoting by @themarkymark @buildawhale @thevil @punkteam @gogreembuddy @freebornsociety It's bad enough that I've been maliciously excluded from airdrops only because I'm Korean, so I'm not sure what the point of mass downgrading is. Is Hive a racist organization? 
author | cancerdoctor |
---|---|
permlink | s6lzxy |
category | hive-139531 |
json_metadata | {"users":["themarkymark","buildawhale","thevil","punkteam","gogreembuddy","freebornsociety"],"image":["https://images.hive.blog/DQmP8NZR2p3EaYPnn7oL2t4rPs4LCxP2aVuNEkBWLLckP2p/image.png"],"app":"hiveblog/0.1"} |
created | 2024-01-02 00:56:21 |
last_update | 2024-01-02 00:56:21 |
depth | 1 |
children | 11 |
last_payout | 2024-01-09 00:56:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 426 |
author_reputation | 123,208,551,167,415 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,151,874 |
net_rshares | 0 |
I'm sorry that people are still downvoting your account, but I guess even after all this time there are people that are still upset about what happened and not willing to forgive the misguided. You could try to contact the downvoters and discuss it with them, but your tone is a bit aggressive, so I'm not sure you would get very far with them. Worst case, you could always create a new account and avoid linking it to your old one in your posts. You would essentially have a "fresh start" with a new identity.
author | blocktrades |
---|---|
permlink | s6nlxk |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-01-02 21:48:57 |
last_update | 2024-01-02 21:49:21 |
depth | 2 |
children | 1 |
last_payout | 2024-01-09 21:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 510 |
author_reputation | 1,285,463,103,525,913 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,174,258 |
net_rshares | 0 |
I am not that aggressive, I am just saying that I am treated wrong, I never blamed those people. I just reports what they are doing. I am not describing those badly as well. Also, do you think I can just use and write articles and communicate with others with zero HIVE power? That must be the main reason prior STEEM members moved to HIVE with 1:1 HIVE airdop, but I am one of the few members who didn't get it. As you know after the several disccusions, I never supported Justin Sun and never supported the main Korean members who were against you guys, but I was excluded without any immediate recognition at that time. I think HIVE blockchain is super fast and so convenient for using as one of blog users, but still I cannot use it without HIVE powers. I can make a lot with pennies spending my time and efforts, but still your people not allowing it. That's why I bore shame to writing a reply again to your article.
author | cancerdoctor |
---|---|
permlink | s6w1et |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-01-07 11:04:06 |
last_update | 2024-01-07 11:04:06 |
depth | 3 |
children | 0 |
last_payout | 2024-01-14 11:04:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 922 |
author_reputation | 123,208,551,167,415 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,289,762 |
net_rshares | 0 |
This account does not originate flags. The flag from this account is a dust amount. I recommend ignoring it.
author | freebornsociety |
---|---|
permlink | re-cancerdoctor-s6urv8 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-06 18:40:24 |
last_update | 2024-01-06 18:40:24 |
depth | 2 |
children | 6 |
last_payout | 2024-01-13 18:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | -62,383,255,458 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,272,781 |
net_rshares | -63,853,549,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
indextrader24 | 0 | -23,585,875,406 | -50% | ||
janasilver | 0 | -38,014,657,603 | -100% | ||
spaceye | 0 | -134,442,005 | -100% | ||
usms | 0 | -714,999,051 | -100% | ||
it24.new | 0 | -126,552,805 | -100% | ||
janalovesilver | 0 | 0 | -100% | ||
ghs06 | 0 | -1,277,022,157 | -100% |
I cannot ignoring @themarkymark @buildawhale @thevil @punkteam @gogreembuddy because they just delete all of my rewards. Also, before ignoring your downvotes, I want to ask what is the reason of your action? Since only one that I can assume is just because I am one of the Korean community members, I used the word 'racist'.
author | cancerdoctor |
---|---|
permlink | s6w133 |
category | hive-139531 |
json_metadata | {"users":["themarkymark","buildawhale","thevil","punkteam","gogreembuddy"],"app":"hiveblog/0.1"} |
created | 2024-01-07 10:57:03 |
last_update | 2024-01-07 10:57:03 |
depth | 3 |
children | 5 |
last_payout | 2024-01-14 10:57:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 324 |
author_reputation | 123,208,551,167,415 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,289,635 |
net_rshares | 0 |
> It's bad enough that I've been maliciously excluded from airdrops only because I'm Korean, so I'm not sure what the point of mass downgrading is. Your actions are why you were excluded from the air drop, not your race. Those who voted to support Justin Sun's hostile take over were excluded from the air drop, it was a very specific action that determined this that was determined programatically.
author | themarkymark |
---|---|
permlink | re-cancerdoctor-s6mote |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-02 09:53:39 |
last_update | 2024-01-02 09:53:39 |
depth | 2 |
children | 1 |
last_payout | 2024-01-09 09:53:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 402 |
author_reputation | 1,779,993,241,050,037 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,159,413 |
net_rshares | 111,086,931 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 51,104,873 | 100% | ||
bilpcoinbot2 | 0 | 59,982,058 | 100% |
I didn't do anything. I didn't support Justin Sun and even didn't know what happened at that time. Stop shadow-boxing
author | cancerdoctor |
---|---|
permlink | s6ptuu |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-01-04 02:35:18 |
last_update | 2024-01-04 02:35:18 |
depth | 3 |
children | 0 |
last_payout | 2024-01-11 02:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 123,208,551,167,415 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,206,780 |
net_rshares | 0 |
Appreciate what you are doing and hope this ultimately makes it easier for people to use Hive. Have tried onboarding dozens of people and most get confused and just give up.
author | crypticat |
---|---|
permlink | re-blocktrades-s65nby |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-24 05:02:24 |
last_update | 2023-12-24 05:02:24 |
depth | 1 |
children | 4 |
last_payout | 2023-12-31 05:02:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 333,748,620,059,718 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,941,436 |
net_rshares | 71,304,657,696 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
daveks | 0 | 71,304,657,696 | 1% |
Sometimes I think we are destined to be only a niche community, but maybe thats ok.
author | daveks |
---|---|
permlink | re-crypticat-s66i02 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-24 16:04:51 |
last_update | 2023-12-24 16:06:45 |
depth | 2 |
children | 2 |
last_payout | 2023-12-31 16:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 2,349,208,951,669,936 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,952,138 |
net_rshares | 0 |
It's ok to be a niche community, but it isn't OK to have poor UI/UX, definitely something to be improved, especially when it comes to the onboarding process. That's however a task for the front ends.
author | gtg |
---|---|
permlink | s6qm1s |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-01-04 12:44:15 |
last_update | 2024-01-04 12:44:15 |
depth | 3 |
children | 1 |
last_payout | 2024-01-11 12:44:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 461,833,023,867,897 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,215,378 |
net_rshares | 0 |
Truth. I've set up accounts for people and they just walk.
author | paulmoon410 |
---|---|
permlink | re-crypticat-20231224t0184262z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-12-24 05:18:45 |
last_update | 2023-12-24 05:18:45 |
depth | 2 |
children | 0 |
last_payout | 2023-12-31 05:18:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 41,105,494,328,987 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,941,627 |
net_rshares | 0 |
> Live sync of 11.1h damn... Memory speed does really make a huge impact... But nice to see that rebuilding indexes got way faster. I am soon going to try HAF 2.0 finally on my new mobo! Then once I am satisfied, I will grab more NVMes to speed it up.
author | forykw |
---|---|
permlink | re-blocktrades-20231225t115934423z |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-12-24 22:59:39 |
last_update | 2023-12-24 22:59:39 |
depth | 1 |
children | 7 |
last_payout | 2023-12-31 22:59:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 253 |
author_reputation | 93,667,879,493,556 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,961,156 |
net_rshares | 0 |
It's probably not the memory speed, so much as the next generation AMD processor (7950 vs our "normal" 5940s) plus those CT4000s (those are the super-fast PCI 5 gen nvmes). This was also run using Ubuntu 23.10, which has higher performance mitigations of CPU vulnerabilities.
author | blocktrades |
---|---|
permlink | s6752g |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-12-25 00:23:03 |
last_update | 2023-12-25 00:23:03 |
depth | 2 |
children | 6 |
last_payout | 2024-01-01 00:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 1,285,463,103,525,913 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,962,245 |
net_rshares | 0 |
Hummm, good point about ubuntu 23, will give it a try! Here in NZ, the 990 PROs (samsung) are more cost effective, price/capacity wise, but lets see (waiting for the gen5 to stabilize the prices here, and then making the choice, for a 4 to 5 NVMe ZFS setup. My aim is to run everything HIVE+HAF+HE on the NVMes and then snapshot to my disk array, for regular "backup" solution.
author | forykw |
---|---|
permlink | re-blocktrades-20231225t13505990z |
category | hive-139531 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-12-25 00:50:09 |
last_update | 2023-12-25 00:50:48 |
depth | 3 |
children | 5 |
last_payout | 2024-01-01 00:50:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 377 |
author_reputation | 93,667,879,493,556 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,962,680 |
net_rshares | 0 |
Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hivebuzz/@hivebuzz/christmas-2023"><img src="https://images.hive.blog/64x128/https://files.peakd.com/file/peakd-hive/hivebuzz/48PxLszsgqS1gaev6FeBYEsrt9sKNhKtddSS32hKnvM3Xam6KCMs3rza5BPR7AQNaF.png"></a></td><td><a href="/hivebuzz/@hivebuzz/christmas-2023">It's the Christmas season: give your friends a gift</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-blocktrades-20231225t003648 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-12-25 00:36:48 |
last_update | 2023-12-25 00:36:48 |
depth | 1 |
children | 0 |
last_payout | 2024-01-01 00:36:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 963 |
author_reputation | 369,852,918,711,944 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,962,382 |
net_rshares | 0 |
Although I don't fully understand what you mean by HAF but I feel you guys are doing great to take hive to greater heights. Thanks for your hardwork. However, if yiu wouldn't mind ,I wish to understand the whole concept of HAF
author | jesus-son |
---|---|
permlink | re-blocktrades-s65w6n |
category | hive-139531 |
json_metadata | {"tags":"hive-139531"} |
created | 2023-12-24 08:13:36 |
last_update | 2023-12-24 08:13:54 |
depth | 1 |
children | 0 |
last_payout | 2023-12-31 08:13:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 226 |
author_reputation | 288,086,162,975,933 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,944,369 |
net_rshares | 0 |
great!
author | lemooljiang |
---|---|
permlink | j5o98swq |
category | hive-139531 |
json_metadata | {"tags":["cn","larkBlog"],"dapp":"larkBlog","format":"markdown"} |
created | 2023-12-26 12:28:15 |
last_update | 2023-12-26 12:28:15 |
depth | 1 |
children | 0 |
last_payout | 2024-01-02 12:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 438,608,506,193,732 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,995,835 |
net_rshares | 0 |
Wow, thank you so much for this blog. We can really gain a lot from reading your blog. Please continue with what you're doing, and you'll teach many more bloggers through your posts. Very informative.
author | mswhimsical |
---|---|
permlink | re-blocktrades-s65p0n |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-24 05:38:51 |
last_update | 2023-12-24 05:38:51 |
depth | 1 |
children | 0 |
last_payout | 2023-12-31 05:38:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 201 |
author_reputation | 11,383,730,539,507 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,942,202 |
net_rshares | 0 |
Great work!
author | navidad46 |
---|---|
permlink | re-blocktrades-20231225t1145357z |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-12-25 06:41:03 |
last_update | 2023-12-25 06:41:03 |
depth | 1 |
children | 0 |
last_payout | 2024-01-01 06:41:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | -4,638,036,625 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,968,699 |
net_rshares | 0 |
Great work! @blocktrades
author | rak7 |
---|---|
permlink | re-blocktrades-s65yc5 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-24 09:00:03 |
last_update | 2023-12-24 09:00:03 |
depth | 1 |
children | 0 |
last_payout | 2023-12-31 09:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 152,719,142,321,873 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,944,929 |
net_rshares | 0 |
Thanks for all your work this year. I look forward to great things from Hive in 2024.
author | steevc |
---|---|
permlink | re-blocktrades-s680vt |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-25 11:50:18 |
last_update | 2023-12-25 11:50:18 |
depth | 1 |
children | 0 |
last_payout | 2024-01-01 11:50:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 1,391,337,318,247,626 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,972,673 |
net_rshares | 16,836,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter1 | 0 | 16,836,133 | 100% |
$WINE
author | theguruasia |
---|---|
permlink | re-blocktrades-s67hrg |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2023-12-25 04:57:15 |
last_update | 2023-12-25 04:57:15 |
depth | 1 |
children | 0 |
last_payout | 2024-01-01 04:57:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 72,582,528,957,478 |
root_title | "7th update of 2023: Final testing of HAF 2.0 and associated apps" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,966,631 |
net_rshares | 0 |