<div class="text-justify"> <center><h2>My Coding Quiz #6 馃懆鈥嶐煉火煕狅笍馃З</h2></center> <p>Welcome to the new installment of my series of <b>Coding Quizzes</b>, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit <a href="/@eniolw">my blog</a> here on Hive and the <a href="/@eniolw/my-coding-quiz-1">first post</a> where I introduced it.</p> <h3>Without further ado, here's the riddle...</h3> <br><center><img src="https://images.hive.blog/DQmYouqt7twx5iK9yizb6RHk1aXdhZNntwRSYekbJf7EW5P/quiz-img-en.png" alt="Quiz"></center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-5">previous quiz</a>:</b> <b>-5.0 <class 'float'></b>. Lines 1, 2 and 3 describe the annotation of variables <code>a</code>, <code>b</code>, <code>c</code>. <i>Variable annotation</i> (AKA <i>Type hints</i>) consists of associating a data type to a variable. In this case we are associating <code>a</code> with the type <code>float</code>, and <code>b</code> and <code>c</code> with the type <code>int</code>. The emphasis is on the word associate, which <i>does not mean to create or declare</i> and its purpose is mainly to help in the description and documentation of the code.</p> <p>That means that those variables don't actually possess a type, but that the value they will possess is "expected" to be of that type with which it was associated. As described by @edb in the previous post:</p> <blockquote>While values have a type, variables don't. They're just references to a value object.</blockquote> <p>This variable annotation in the code block of the quiz is unnecessary, as it makes more sense to use it when writing function parameters. However, the statements are still valid and serve to test your knowledge, especially in light of the following lines.</p> <p>So, line 4 is creating a variable <code>a</code> and assigning it the value <b>-2.5</b> which is intrinsically of type <b>float</b>. Line 5 creates a variable <code>b</code> and references variable <code>a</code>. Line 6 creates a variable <code>c</code> and assigns the value of the sum of the values of <code>a</code> and <code>b</code> to it.</p> <p>The point is that the types noted in lines 1, 2, and 3 have nothing to do with the following lines; it is as if they did not exist or were comments. Therefore, what is printed in line 7 is <b>-5.0 <class 'float'></b>, since <b>-5.0</b> is the sum of <b>-2.5</b> and <b>-2.5</b>, which are <b>float</b>.</p> <p>PS: I noticed that the quiz options had a couple of typos. I have fixed them. If you find them, feel free to let me know. On this occasion, @rafaelaquino has come up with the correct answer. Very good!</p> <hr> <p>If you want to blog about computer science and programming content, I invite you to join <a href="/">Hive</a> and participate in its communities, such as <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a>, <a href="/created/hive-153850">Hive Learners</a> and others.</p> <hr> <center><h2>Mi Quiz de Programaci贸n #6 馃懆鈥嶐煉火煕狅笍馃З</h2></center> <p>Bienvenido a mi nueva serie de <b>Quizzes de Programaci贸n</b>, en la cual podr谩s poner a prueba tus conocimientos y habilidades sobre programaci贸n y desarrollo de software de una manera sencilla y divertida. Si quieres aprender m谩s sobre ella visita <a href="/@eniolw">mi blog</a> aqu铆 en Hive y el <a href="/@eniolw/my-coding-quiz-1">primer post</a> donde la present茅.</p> <h3>Sin m谩s pre谩mbulos, he aqu铆 el acertijo...</h3> <br><center><img src="https://images.hive.blog/DQmcpHBZtvieqs6dRJ6qq1dHGtW8PJjtHihzE36vuBfwodb/quiz-img-es.png" alt="Quiz"></center> <br><center><h3>驴Cu谩l es tu elecci贸n?</h3></center> <p><b>Soluci贸n al <a href="/@eniolw/my-coding-quiz-5">quiz anterior</a>:</b> <b>-5.0 <class 'float'></b>. Las l铆neas 1, 2 y 3 describen la anotaci贸n de las variables <code>a</code>, <code>b</code>, <code>c</code>. La <i>anotaci贸n de variable</i> (tambi茅n conocida como <i>sugerencias de tipo</i>) consiste en asociar un tipo de datos a una variable. En este caso estamos asociando <code>a</code> con el tipo <code>float</code>, y <code>b</code> y <code>c</code> con el tipo <code> int</code>. El 茅nfasis est谩 en la palabra asociar, que <i>no significa crear o declarar</i> y su prop贸sito es principalmente ayudar en la descripci贸n y documentaci贸n del c贸digo.</p> <p>Eso significa que esas variables en realidad no poseen un tipo, pero que se "espera" que el valor que poseer谩n sea del tipo con el que se asoci贸. Como lo describe @edb en la publicaci贸n anterior:</p> <blockquote>Mientras que los valores tienen un tipo, las variables no. Son solo referencias a un objeto de valor.</blockquote> <p>Esta anotaci贸n de variable en el bloque de c贸digo del quiz es innecesaria, ya que tiene m谩s sentido usarla al escribir par谩metros de funciones. Sin embargo, las declaraciones siguen siendo v谩lidas y sirven para probar tus conocimientos, especialmente a la luz de las siguientes l铆neas.</p> <p>Entonces, la l铆nea 4 crea una variable <code>a</code> y le asigna el valor <b>-2.5</b> que es intr铆nsecamente de tipo <b>float</b>. La l铆nea 5 crea una variable <code>b</code> y hace referencia a la variable <code>a</code>. La l铆nea 6 crea una variable <code>c</code> y le asigna el valor de la suma de los valores de <code>a</code> y <code>b</code>.</p> <p>El punto es que los tipos anotados en las l铆neas 1, 2 y 3 no tienen nada que ver con las siguientes l铆neas; es como si no existieran o fueran comentarios. Por lo tanto, lo que se imprime en la l铆nea 7 es <b>-5.0 <class 'float'></b>, ya que <b>-5.0</b> es la suma de <b>-2.5</b> y <b>-2.5</b>, que son <b>flotantes</b>.</p> <p>PD: not茅 que las opciones del quiz anterior ten铆an un par de errores tipogr谩ficos. Los correg铆. Si los encuentras, no dudes en hac茅rmelo saber. En esta ocasi贸n, @rafaelaquino ha dado con la respuesta correcta. 隆Muy bien!</p> <hr> <p>Si quieres bloguear sobre contenido inform谩tico y de programaci贸n, te invito a unirte a <a href="/">Hive</a> y participar en sus comunidades, tales como <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a>, <a href="/created/hive-153850">Hive Learners</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-6 |
category | hive-153850 |
json_metadata | "{"image": ["https://images.hive.blog/DQmYouqt7twx5iK9yizb6RHk1aXdhZNntwRSYekbJf7EW5P/quiz-img-en.png", "https://images.hive.blog/DQmcpHBZtvieqs6dRJ6qq1dHGtW8PJjtHihzE36vuBfwodb/quiz-img-es.png"], "thumbnails": ["https://images.hive.blog/DQmYouqt7twx5iK9yizb6RHk1aXdhZNntwRSYekbJf7EW5P/quiz-img-en.png", "https://images.hive.blog/DQmcpHBZtvieqs6dRJ6qq1dHGtW8PJjtHihzE36vuBfwodb/quiz-img-es.png"], "tags": ["hive-153850", "python", "coding", "programming", "quiz", "neoxian", "proofofbrain", "waivio", "stemsocial", "spanish"], "description": "Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way.", "app": "ecency/3.0.33-vision", "format": "markdown+html"}" |
created | 2023-07-08 08:30:18 |
last_update | 2023-07-08 08:30:18 |
depth | 0 |
children | 3 |
last_payout | 2023-07-15 08:30:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.888 HBD |
curator_payout_value | 5.773 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,539 |
author_reputation | 253,497,817,786,909 |
root_title | "My Coding Quiz #6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,145,818 |
net_rshares | 24,758,443,892,726 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,026,217,355 | 2.8% | ||
kevinwong | 0 | 2,898,753,804 | 0.42% | ||
justtryme90 | 0 | 1,378,967,349 | 70% | ||
eric-boucher | 0 | 14,843,724,865 | 2.8% | ||
juanmiguelsalas | 0 | 786,940,068 | 1.68% | ||
thecryptodrive | 0 | 5,881,614,036 | 1.12% | ||
roelandp | 0 | 309,878,023,873 | 35% | ||
cloh76 | 0 | 3,986,754,438 | 2.8% | ||
arcange | 0 | 1,102,791,631,933 | 5% | ||
stea90 | 0 | 1,132,735,435 | 1% | ||
joshglen | 0 | 737,351,899 | 5.6% | ||
pipokinha | 0 | 63,701,212,328 | 100% | ||
akipponn | 0 | 5,055,131,971 | 35% | ||
lordvader | 0 | 45,458,169,116 | 5.6% | ||
lemouth | 0 | 2,119,712,728,974 | 70% | ||
alaqrab | 0 | 525,831,856 | 2.8% | ||
lamouthe | 0 | 5,546,413,281 | 70% | ||
tfeldman | 0 | 5,498,562,168 | 2.8% | ||
sergiomendes | 0 | 2,519,564,166 | 2.8% | ||
metabs | 0 | 7,725,206,561 | 70% | ||
mcsvi | 0 | 119,100,080,465 | 50% | ||
lk666 | 0 | 1,745,983,194 | 2.8% | ||
cnfund | 0 | 11,064,304,328 | 5.6% | ||
justyy | 0 | 34,204,831,626 | 5.6% | ||
michelle.gent | 0 | 3,338,731,819 | 1.12% | ||
curie | 0 | 430,055,787,276 | 5.6% | ||
modernzorker | 0 | 3,214,808,140 | 3.92% | ||
techslut | 0 | 168,948,214,363 | 28% | ||
steemstem | 0 | 1,318,612,772,425 | 70% | ||
dashfit | 0 | 499,824,859 | 2.8% | ||
tristancarax | 0 | 692,336,289 | 2.8% | ||
edb | 0 | 7,314,390,692 | 7% | ||
yadamaniart | 0 | 3,091,486,702 | 2.8% | ||
bigtakosensei | 0 | 1,333,159,113 | 1.4% | ||
walterjay | 0 | 438,646,951,753 | 35% | ||
valth | 0 | 11,867,674,516 | 35% | ||
metroair | 0 | 23,886,835,306 | 5.6% | ||
driptorchpress | 0 | 2,103,342,764 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
steemitboard | 0 | 13,178,840,329 | 5% | ||
mariaalmeida | 0 | 17,341,466,821 | 100% | ||
privex | 0 | 6,861,790,108 | 5.6% | ||
boynashruddin | 0 | 909,487,256 | 5.6% | ||
gifmaster | 0 | 53,380,387,180 | 100% | ||
steemiteducation | 0 | 1,220,665,894 | 2.8% | ||
dhimmel | 0 | 363,834,260,720 | 17.5% | ||
oluwatobiloba | 0 | 3,084,736,772 | 70% | ||
detlev | 0 | 21,676,749,087 | 1.68% | ||
chasmic-cosm | 0 | 863,312,999 | 2.8% | ||
pastzam | 0 | 242,105,027,938 | 30% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,878,312,326 | 2.8% | ||
amberyooper | 0 | 550,933,873 | 2.8% | ||
gamersclassified | 0 | 4,171,480,247 | 2.8% | ||
iansart | 0 | 11,435,988,353 | 2.8% | ||
forykw | 0 | 15,032,032,732 | 2.8% | ||
mobbs | 0 | 108,745,289,762 | 35% | ||
eliel | 0 | 7,907,990,196 | 2.8% | ||
jerrybanfield | 0 | 18,183,715,995 | 5.6% | ||
rt395 | 0 | 1,975,029,125 | 1.5% | ||
bitrocker2020 | 0 | 9,962,092,881 | 0.84% | ||
jga | 0 | 51,830,711,815 | 100% | ||
sustainablyyours | 0 | 30,101,685,958 | 35% | ||
helo | 0 | 1,342,131,915 | 35% | ||
arunava | 0 | 24,113,155,744 | 2.24% | ||
schoolforsdg4 | 0 | 1,074,081,415 | 5% | ||
samminator | 0 | 51,903,284,124 | 35% | ||
zerotoone | 0 | 1,123,369,029 | 2.8% | ||
enjar | 0 | 40,808,860,318 | 5.04% | ||
mahdiyari | 0 | 1,887,941,378,464 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 86,785,692,068 | 50% | ||
sam99 | 0 | 13,663,720,577 | 21% | ||
aboutyourbiz | 0 | 1,000,792,329 | 5.6% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
professorbromide | 0 | 110,218,123,297 | 100% | ||
dandesign86 | 0 | 15,622,604,160 | 8% | ||
jayna | 0 | 7,443,221,507 | 1.12% | ||
hhayweaver | 0 | 1,019,948,931 | 1.4% | ||
techken | 0 | 13,278,395,401 | 16.5% | ||
princessmewmew | 0 | 7,609,215,549 | 2.8% | ||
grapthar | 0 | 2,117,354,433 | 4.2% | ||
joeyarnoldvn | 0 | 480,902,316 | 1.47% | ||
diabolika | 0 | 931,206,909 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 74,884,022,106 | 1.4% | ||
pipiczech | 0 | 2,340,299,039 | 5.6% | ||
empath | 0 | 4,160,529,165 | 2.8% | ||
eturnerx | 0 | 95,316,756,136 | 4.9% | ||
flatman | 0 | 2,793,985,285 | 5.6% | ||
simonpeter35 | 0 | 1,268,614,219 | 100% | ||
minnowbooster | 0 | 1,086,729,183,547 | 20% | ||
lenasveganliving | 0 | 947,520,301 | 2.8% | ||
howo | 0 | 2,298,591,226,831 | 70% | ||
tsoldovieri | 0 | 7,373,838,536 | 35% | ||
steemwizards | 0 | 3,958,367,284 | 5.6% | ||
neumannsalva | 0 | 4,748,677,830 | 2.8% | ||
stayoutoftherz | 0 | 148,402,489,223 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,886,901,752 | 4.48% | ||
zonguin | 0 | 3,016,460,703 | 17.5% | ||
investingpennies | 0 | 21,071,608,569 | 5.6% | ||
prapanth | 0 | 1,027,697,029 | 2.8% | ||
martibis | 0 | 2,444,708,953 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
travelingmercies | 0 | 704,946,351 | 5.6% | ||
redrica | 0 | 2,044,610,822 | 2.8% | ||
pepskaram | 0 | 594,251,943 | 2.8% | ||
iamphysical | 0 | 791,069,080 | 90% | ||
hdmed | 0 | 709,198,966 | 5.6% | ||
sunisa | 0 | 1,369,120,259 | 2.8% | ||
dipom98 | 0 | 1,184,642,934 | 2.8% | ||
zest | 0 | 1,003,920,540 | 35% | ||
aaronleang | 0 | 7,903,914,326 | 25% | ||
zyx066 | 0 | 5,720,562,560 | 1.68% | ||
chrisdavidphoto | 0 | 1,089,024,025 | 1.68% | ||
revo | 0 | 11,133,490,549 | 5.6% | ||
htotoo | 0 | 3,523,111,520 | 100% | ||
azulear | 0 | 1,287,857,451 | 100% | ||
djlethalskillz | 0 | 1,948,388,723 | 5% | ||
psicoluigi | 0 | 798,826,053 | 50% | ||
nerdnews | 0 | 948,225,784 | 5.6% | ||
rafaelaquino | 0 | 21,130,767,042 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 780,205,386,979 | 0.84% | ||
stickchumpion | 0 | 723,675,145 | 2.8% | ||
noloafing | 0 | 643,541,641 | 17.5% | ||
thelordsharvest | 0 | 5,157,804,331 | 5.6% | ||
vera-vaders-ea | 0 | 509,350,534 | 5.6% | ||
sumant | 0 | 12,480,106,893 | 2.8% | ||
aidefr | 0 | 7,600,161,944 | 35% | ||
torico | 0 | 1,491,844,444 | 1.84% | ||
sorin.cristescu | 0 | 196,143,857,242 | 35% | ||
procryptix | 0 | 32,823,844,937 | 100% | ||
therealwolf | 0 | 35,477,302,168 | 2.8% | ||
inthenow | 0 | 18,717,039,962 | 20% | ||
minnowpowerup | 0 | 883,079,474 | 2.8% | ||
yangyanje | 0 | 1,624,987,311 | 2.8% | ||
splash-of-angs63 | 0 | 3,564,871,386 | 70% | ||
cryptononymous | 0 | 1,939,951,487 | 2.8% | ||
rubia.michelle | 0 | 951,006,608 | 100% | ||
meno | 0 | 25,610,536,057 | 2.8% | ||
bigdizzle91 | 0 | 797,105,303 | 2.8% | ||
gregan | 0 | 6,033,487,792 | 100% | ||
toocurious | 0 | 535,303,844 | 2.8% | ||
helyorsini | 0 | 615,674,528 | 2.8% | ||
technicalside | 0 | 24,741,887,059 | 24% | ||
steemed-proxy | 0 | 1,021,300,019,351 | 5.6% | ||
fatkat | 0 | 1,463,491,202 | 2.79% | ||
doifeellucky | 0 | 17,592,144,474 | 2.8% | ||
peaceandwar | 0 | 881,593,823 | 2.8% | ||
enzor | 0 | 2,249,388,698 | 35% | ||
marcoriccardi | 0 | 1,021,807,173 | 5.6% | ||
bartosz546 | 0 | 4,561,905,379 | 2.8% | ||
tazbaz | 0 | 559,501,215 | 2.8% | ||
florian-glechner | 0 | 4,997,739,106 | 0.56% | ||
dandays | 0 | 16,515,153,042 | 1.4% | ||
battebilly | 0 | 787,067,732 | 2.8% | ||
notb4mycoffee | 0 | 3,107,451,068 | 5.6% | ||
silverwhale | 0 | 1,406,033,114 | 5.04% | ||
dejan.vuckovic | 0 | 866,974,412 | 2.8% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 764,912,152 | 4.48% | ||
sunsea | 0 | 4,286,062,323 | 2.8% | ||
postpromoter | 0 | 1,478,750,074,436 | 70% | ||
omstavan | 0 | 3,548,979,047 | 50% | ||
bluefinstudios | 0 | 3,482,367,263 | 1.68% | ||
steveconnor | 0 | 4,861,616,935 | 2.8% | ||
sankysanket18 | 0 | 1,676,977,592 | 35% | ||
dbddv01 | 0 | 2,571,128,111 | 17.5% | ||
dranren | 0 | 1,994,802,591 | 100% | ||
feltoxxx | 0 | 8,316,395,403 | 100% | ||
zmx | 0 | 559,908,320 | 2.8% | ||
gazbaz4000 | 0 | 74,071,250,254 | 100% | ||
skippyza | 0 | 481,995,114 | 5.6% | ||
nicole-st | 0 | 2,803,776,890 | 2.8% | ||
smartsteem | 0 | 138,066,302,384 | 2.8% | ||
aboutcoolscience | 0 | 887,708,083 | 70% | ||
afifa | 0 | 592,780,399 | 10% | ||
sandracarrascal | 0 | 505,387,621 | 50% | ||
skycae | 0 | 718,436,882 | 5.6% | ||
sgt-dan | 0 | 29,371,302,294 | 50% | ||
kenadis | 0 | 19,239,997,170 | 70% | ||
madridbg | 0 | 27,424,227,324 | 70% | ||
marcolino76 | 0 | 585,312,256 | 2.8% | ||
onemedia | 0 | 1,147,015,158 | 5.6% | ||
lpv | 0 | 3,002,516,978 | 8.75% | ||
iptrucs | 0 | 9,175,357,740 | 25% | ||
elex17 | 0 | 1,317,031,606 | 100% | ||
punchline | 0 | 15,383,631,094 | 5.6% | ||
howiemac | 0 | 633,986,173 | 2.8% | ||
ahmadmangazap | 0 | 4,925,176,210 | 2.8% | ||
apon318 | 0 | 492,214,238 | 5.6% | ||
straykat | 0 | 826,401,940 | 2.8% | ||
tomatom | 0 | 536,839,363 | 2.8% | ||
duke77 | 0 | 838,283,988 | 33% | ||
danaedwards | 0 | 730,443,707 | 5.6% | ||
r00sj3 | 0 | 170,945,182,492 | 35% | ||
sco | 0 | 19,203,818,977 | 70% | ||
anikekirsten | 0 | 1,733,311,921 | 35% | ||
phgnomo | 0 | 836,359,622 | 2.8% | ||
ennyta | 0 | 976,773,887 | 50% | ||
juecoree | 0 | 6,362,925,648 | 49% | ||
gordon92 | 0 | 862,001,915 | 2.8% | ||
stahlberg | 0 | 1,290,047,478 | 2.8% | ||
cordeta | 0 | 1,028,680,449 | 5.6% | ||
reizak | 0 | 498,030,165 | 2.24% | ||
carn | 0 | 3,537,489,766 | 5.04% | ||
branbello | 0 | 2,594,477,570 | 35% | ||
hetty-rowan | 0 | 1,863,167,997 | 2.8% | ||
ydavgonzalez | 0 | 2,200,880,735 | 10% | ||
young-boss-karin | 0 | 483,052,980 | 2.8% | ||
intrepidphotos | 0 | 347,545,280,954 | 52.5% | ||
fineartnow | 0 | 4,014,556,897 | 2.8% | ||
hijosdelhombre | 0 | 41,092,944,001 | 40% | ||
mathowl | 0 | 45,029,169,168 | 100% | ||
yoghurt | 0 | 1,655,768,518 | 5.6% | ||
steemvault | 0 | 2,180,768,375 | 5.6% | ||
steem4all | 0 | 1,297,402,249 | 2.8% | ||
shinedojo | 0 | 704,939,376 | 5.6% | ||
fragmentarion | 0 | 18,855,602,914 | 70% | ||
utube | 0 | 4,860,632,932 | 5.6% | ||
jigstrike | 0 | 899,088,977 | 2.8% | ||
baycan | 0 | 852,844,059 | 2.8% | ||
m1alsan | 0 | 963,457,201 | 2.8% | ||
dynamicrypto | 0 | 2,893,652,805 | 1% | ||
neneandy | 0 | 6,485,040,901 | 5.6% | ||
pab.ink | 0 | 47,454,278,877 | 35% | ||
goldrooster | 0 | 5,810,276,825 | 100% | ||
real2josh | 0 | 661,181,182 | 35% | ||
soufiani | 0 | 790,411,819 | 2.24% | ||
sportscontest | 0 | 5,938,504,403 | 5.6% | ||
videosteemit | 0 | 1,286,274,542 | 5.6% | ||
gribouille | 0 | 1,653,417,719 | 35% | ||
itharagaian | 0 | 3,042,926,581 | 33% | ||
pandasquad | 0 | 12,758,991,635 | 5.6% | ||
kingabesh | 0 | 1,422,254,685 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,033,272,117 | 2.8% | ||
didic | 0 | 1,940,579,127 | 2.8% | ||
careassaktart | 0 | 1,251,535,693 | 1.68% | ||
emiliomoron | 0 | 10,577,638,418 | 35% | ||
galam | 0 | 968,172,865 | 35% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 850,348,051 | 5.6% | ||
themonkeyzuelans | 0 | 397,552,038 | 2.8% | ||
photohunt | 0 | 3,804,752,937 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 779,673,098 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 2,420,998,004 | 1.4% | ||
alexdory | 0 | 11,196,952,140 | 70% | ||
takowi | 0 | 106,434,741,114 | 5.6% | ||
irgendwo | 0 | 18,689,790,790 | 5.6% | ||
vegan.niinja | 0 | 521,819,055 | 2.8% | ||
flugschwein | 0 | 3,669,947,811 | 59.5% | ||
charitybot | 0 | 5,057,942,360 | 100% | ||
cyprianj | 0 | 81,489,865,023 | 70% | ||
kieranstone | 0 | 1,569,460,199 | 1.84% | ||
movement19 | 0 | 643,218,547 | 2.5% | ||
melvin7 | 0 | 43,949,913,390 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,565,937,917 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
chrislybear | 0 | 15,046,986,336 | 50% | ||
steempampanga | 0 | 614,808,768 | 2.8% | ||
croctopus | 0 | 1,490,899,570 | 100% | ||
jjerryhan | 0 | 2,049,506,776 | 2.8% | ||
zipporah | 0 | 2,754,096,232 | 1.12% | ||
leomarylm | 0 | 1,742,376,414 | 2.8% | ||
randumb | 0 | 1,246,079,719 | 5.6% | ||
superlotto | 0 | 16,560,097,114 | 5.6% | ||
positiveninja | 0 | 1,119,937,400 | 2.8% | ||
miroslavrc | 0 | 654,577,625 | 1.4% | ||
foxyspirit | 0 | 568,305,433 | 2.8% | ||
vonaurolacu | 0 | 1,826,161,517 | 2.8% | ||
evepontes | 0 | 747,117,433 | 100% | ||
movingman | 0 | 614,444,284 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 543,416,543 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,490,954,663 | 0.28% | ||
elvigia | 0 | 11,215,576,001 | 50% | ||
sanderjansenart | 0 | 5,229,816,859 | 2.8% | ||
vittoriozuccala | 0 | 2,090,322,966 | 2.8% | ||
laxam | 0 | 5,350,429,554 | 100% | ||
qberry | 0 | 3,830,778,040 | 2.8% | ||
strosalia | 0 | 10,298,632,731 | 80% | ||
frissonsteemit | 0 | 1,254,117,943 | 2.8% | ||
broncofan99 | 0 | 8,275,399,361 | 20% | ||
rambutan.art | 0 | 1,826,287,326 | 5.6% | ||
greddyforce | 0 | 3,705,336,068 | 2.07% | ||
flyerchen | 0 | 647,915,725 | 2.8% | ||
braaiboy | 0 | 10,635,583,440 | 2.8% | ||
ryenneleow | 0 | 6,316,995,965 | 90% | ||
gadrian | 0 | 403,093,490,143 | 52.5% | ||
c0wtschpotato | 0 | 590,526,740 | 2.8% | ||
fotogruppemunich | 0 | 4,233,397,753 | 1.4% | ||
therising | 0 | 97,493,151,390 | 5.6% | ||
cryptocoinkb | 0 | 2,185,377,996 | 2.8% | ||
gifty-e | 0 | 587,154,400 | 80% | ||
scruffy23 | 0 | 20,002,551,176 | 50% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
imcore | 0 | 863,504,789 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
gogreenbuddy | 0 | 164,416,887,456 | 5.6% | ||
josedelacruz | 0 | 4,798,922,507 | 50% | ||
lorenzopistolesi | 0 | 10,665,898,806 | 2.8% | ||
kgakakillerg | 0 | 18,311,264,521 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 730,421,813 | 2.24% | ||
outtheshellvlog | 0 | 883,802,675 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
petertag | 0 | 542,846,784 | 4.2% | ||
erickyoussif | 0 | 634,327,681 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,281,177,607 | 2.8% | ||
primersion | 0 | 309,813,083,491 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
solominer | 0 | 955,090,776,024 | 10% | ||
robmolecule | 0 | 21,727,973,207 | 10% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
celinavisaez | 0 | 9,886,728,700 | 30% | ||
steem.services | 0 | 1,066,990,848 | 1.12% | ||
netzisde | 0 | 1,014,985,319 | 2.8% | ||
diabonua | 0 | 5,634,907,985 | 2.8% | ||
bushradio | 0 | 649,356,220 | 5.6% | ||
pladozero | 0 | 33,270,867,456 | 10% | ||
minerthreat | 0 | 3,473,585,891 | 2.8% | ||
nateaguila | 0 | 142,456,753,178 | 5% | ||
stevenwood | 0 | 3,037,519,294 | 1.86% | ||
temitayo-pelumi | 0 | 6,420,967,559 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 55,938,329,543 | 70% | ||
dailyspam | 0 | 8,161,918,356 | 20% | ||
trisolaran | 0 | 1,572,879,057 | 2.8% | ||
musicvoter2 | 0 | 417,704,662 | 1% | ||
marcuz | 0 | 2,458,587,749 | 35% | ||
cooltivar | 0 | 1,420,644,626 | 1.12% | ||
acont | 0 | 11,684,346,586 | 50% | ||
uche-nna | 0 | 6,060,947,320 | 4.48% | ||
vietthuy | 0 | 812,456,456 | 50% | ||
barbz | 0 | 102,261,005,652 | 100% | ||
letenebreux | 0 | 1,427,504,544 | 33% | ||
cheese4ead | 0 | 4,296,017,936 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
gaottantacinque | 0 | 382,393,865 | 100% | ||
carolinaelly | 0 | 2,657,380,404 | 100% | ||
nathyortiz | 0 | 873,566,101 | 2.8% | ||
nattybongo | 0 | 35,797,451,924 | 70% | ||
drsensor | 0 | 1,576,700,665 | 56% | ||
revueh | 0 | 1,968,558,993 | 35% | ||
ilovecryptopl | 0 | 926,188,044 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 7,232,912,303 | 2.8% | ||
ubaldonet | 0 | 1,515,653,902 | 80% | ||
armandosodano | 0 | 12,361,420,017 | 2.8% | ||
csy | 0 | 585,452,008 | 2.8% | ||
acousticguitar | 0 | 14,150,003,582 | 50% | ||
marivic10 | 0 | 922,056,168 | 2.5% | ||
acidtiger | 0 | 1,265,058,020 | 2.8% | ||
goblinknackers | 0 | 72,294,673,314 | 7% | ||
bambinaacida | 0 | 2,366,329,418 | 50% | ||
reinaseq | 0 | 7,499,517,547 | 100% | ||
vixmemon | 0 | 1,677,394,774 | 4.2% | ||
honeycup-waters | 0 | 624,721,783 | 2.8% | ||
yaelg | 0 | 1,186,626,490 | 1.68% | ||
kylealex | 0 | 4,621,036,290 | 10% | ||
gasaeightyfive | 0 | 726,757,314 | 100% | ||
cubapl | 0 | 4,169,729,804 | 35% | ||
orlandogonzalez | 0 | 3,131,816,214 | 25% | ||
cleanplanet | 0 | 36,447,724,159 | 1.68% | ||
otp-one | 0 | 3,008,229,401 | 35% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,163,165,125 | 68.6% | ||
hanshotfirst-sm | 0 | 495,967,963 | 5.6% | ||
thelittlebank | 0 | 21,480,007,157 | 2.8% | ||
pboulet | 0 | 158,469,310,044 | 56% | ||
javyeslava.photo | 0 | 627,033,522 | 2.24% | ||
cercle | 0 | 1,125,313,497 | 33% | ||
marcocasario | 0 | 190,845,745,667 | 100% | ||
josesalazar200 | 0 | 608,144,290 | 5.6% | ||
stem-espanol | 0 | 19,272,686,028 | 100% | ||
cribbio | 0 | 1,388,879,813 | 100% | ||
cliffagreen | 0 | 4,753,955,673 | 10% | ||
aleestra | 0 | 12,456,426,785 | 80% | ||
palasatenea | 0 | 3,150,451,961 | 2.8% | ||
the.success.club | 0 | 3,402,293,362 | 2.8% | ||
javier.dejuan | 0 | 540,507,211 | 70% | ||
l-singclear | 0 | 1,857,996,782 | 100% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
sincensura | 0 | 1,033,685,019 | 100% | ||
meanroosterfarm | 0 | 1,404,915,382 | 35% | ||
tommyl33 | 0 | 889,920,048 | 2.8% | ||
brianoflondon | 0 | 73,090,729,689 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 4,676,306,534 | 60% | ||
pauliinasoilu | 0 | 502,746,205 | 2.8% | ||
kristall97 | 0 | 26,543,088,855 | 100% | ||
steemcryptosicko | 0 | 10,262,162,601 | 1.12% | ||
certain | 0 | 1,405,578,681 | 0.67% | ||
alvin0617 | 0 | 493,755,376 | 2.8% | ||
multifacetas | 0 | 1,246,578,170 | 2.8% | ||
cakemonster | 0 | 3,805,379,452 | 5.6% | ||
themightysquid | 0 | 3,770,821,802 | 100% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 982,628,499 | 2.8% | ||
chipdip | 0 | 780,905,655 | 10% | ||
autobodhi | 0 | 1,008,402,170 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,176,797,695 | 50% | ||
robmojo | 0 | 805,148,293 | 7% | ||
double-negative | 0 | 524,726,550 | 20% | ||
shainemata | 0 | 11,498,494,310 | 5% | ||
tigerrkg | 0 | 48,644,547,263 | 100% | ||
vaultec | 0 | 5,045,775,897 | 12% | ||
steemstorage | 0 | 7,115,927,425 | 5.6% | ||
aqua.nano | 0 | 963,454,604 | 100% | ||
ragnarhewins90 | 0 | 485,585,681 | 10% | ||
jtm.support | 0 | 5,311,257,053 | 70% | ||
edithbdraw | 0 | 806,504,641 | 2.8% | ||
crowdwitness | 0 | 86,954,840,646 | 35% | ||
apokruphos | 0 | 19,298,940,966 | 3% | ||
stevieboyes | 0 | 19,026,227,829 | 90% | ||
hairgistix | 0 | 3,217,562,835 | 2.8% | ||
goodcontentbot | 0 | 807,352,996 | 15% | ||
peter-bot | 0 | 691,419,694 | 100% | ||
dfacademy | 0 | 2,498,932,199 | 2.8% | ||
bluemaskman | 0 | 633,676,477 | 2.8% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
proxy-pal | 0 | 1,215,696,858 | 5.6% | ||
quentinvb | 0 | 482,371,562 | 100% | ||
deriyon | 0 | 483,810,765 | 100% | ||
newton666 | 0 | 666,623,924 | 35% | ||
pedrobrito2004 | 0 | 13,135,260,027 | 15% | ||
cryptofiloz | 0 | 9,172,887,066 | 5.6% | ||
dawnoner | 0 | 1,674,025,871 | 0.56% | ||
jackramsey | 0 | 887,463,373 | 3.92% | ||
filosof103 | 0 | 1,030,991,519 | 2.8% | ||
photographercr | 0 | 2,620,962,959 | 1.12% | ||
eliana-art | 0 | 1,063,692,018 | 100% | ||
epicdice | 0 | 1,902,842,273 | 1.68% | ||
iamsaray | 0 | 1,268,328,765 | 2.8% | ||
lammbock | 0 | 4,825,938,918 | 100% | ||
edencourage | 0 | 6,326,720,040 | 50% | ||
robibasa | 0 | 28,083,122,517 | 10% | ||
justlee87 | 0 | 2,231,804,340 | 100% | ||
banvie | 0 | 57,502,487,971 | 100% | ||
beerlover | 0 | 2,010,201,114 | 1.68% | ||
newtrailers | 0 | 1,074,545,598 | 5.6% | ||
tinyhousecryptos | 0 | 486,837,378 | 5% | ||
rtron86 | 0 | 4,641,473,301 | 50% | ||
tggr | 0 | 1,334,369,088 | 2.8% | ||
aicu | 0 | 1,397,112,967 | 5.6% | ||
walterprofe | 0 | 42,514,597,275 | 35% | ||
zeruxanime | 0 | 12,156,079,029 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
imbartley | 0 | 830,383,148 | 26.25% | ||
mind.force | 0 | 1,222,883,865 | 1.4% | ||
aicoding | 0 | 582,513,674 | 2.8% | ||
dechuck | 0 | 18,188,275,665 | 50% | ||
knightsunited | 0 | 1,035,380,761 | 5.6% | ||
bastionpm | 0 | 508,046,529 | 33% | ||
nazer | 0 | 2,723,360,210 | 35% | ||
whangster79 | 0 | 167,943,312,910 | 5% | ||
entrepreneur.one | 0 | 3,726,756,652 | 100% | ||
steemstem-trig | 0 | 5,770,821,236 | 70% | ||
baltai | 0 | 6,184,935,091 | 2.8% | ||
dmoonfire | 0 | 30,882,694,777 | 71% | ||
sandymeyer | 0 | 25,883,224,306 | 0.7% | ||
atheistrepublic | 0 | 6,208,993,419 | 2.8% | ||
ibt-survival | 0 | 36,199,083,646 | 10% | ||
darthsauron | 0 | 1,492,792,653 | 10% | ||
sarahandsam | 0 | 15,338,527,590 | 100% | ||
hjmarseille | 0 | 2,119,156,740 | 49% | ||
steemdiamond | 0 | 729,705,707 | 5.6% | ||
abachon | 0 | 933,933,542 | 5.6% | ||
zirky | 0 | 2,486,254,903 | 4.76% | ||
gloriaolar | 0 | 1,566,297,995 | 1.68% | ||
manic.calm | 0 | 10,235,011,876 | 100% | ||
lightpaintershub | 0 | 661,620,268 | 1% | ||
bilpcoinbpc | 0 | 769,872,715 | 5% | ||
davidlionfish | 0 | 11,466,585,431 | 50% | ||
peterale | 0 | 3,654,913,469 | 2.8% | ||
hive-127039 | 0 | 483,342,423 | 25% | ||
andreina57 | 0 | 686,631,479 | 35% | ||
fsm-core | 0 | 11,682,742,592 | 50% | ||
educationhive | 0 | 1,744,062,412 | 2.8% | ||
laruche | 0 | 575,861,555 | 0.16% | ||
stemsocial | 0 | 570,733,132,060 | 70% | ||
peterpanpan | 0 | 753,413,142 | 1.12% | ||
veeart | 0 | 591,475,098 | 50% | ||
holoferncro | 0 | 4,446,753,713 | 10% | ||
the100 | 0 | 5,045,319,098 | 2.8% | ||
hiveonboard | 0 | 4,574,803,959 | 2.8% | ||
hive-143869 | 0 | 165,843,425,859 | 33% | ||
noelyss | 0 | 24,003,310,279 | 35% | ||
jsalvage | 0 | 2,256,254,965 | 35% | ||
quinnertronics | 0 | 16,124,501,750 | 7% | ||
buildahouse | 0 | 896,891,898 | 33% | ||
anafae | 0 | 598,831,463 | 1.12% | ||
hivecoffee | 0 | 694,580,292 | 5.6% | ||
mercurial9 | 0 | 71,146,365,635 | 100% | ||
portsundries | 0 | 3,576,253,736 | 100% | ||
recoveryinc | 0 | 3,259,462,020 | 5% | ||
gohive | 0 | 14,815,308,737 | 100% | ||
sevenoh-fiveoh | 0 | 947,481,518 | 2.8% | ||
treefiddybruh | 0 | 1,703,064,078 | 2.8% | ||
aabcent | 0 | 12,817,764,624 | 4.48% | ||
altleft | 0 | 23,399,316,523 | 0.05% | ||
omarrojas | 0 | 2,599,281,510 | 2.8% | ||
noalys | 0 | 954,372,593 | 2.8% | ||
borniet | 0 | 1,095,011,636 | 2.8% | ||
evagavilan2 | 0 | 906,047,768 | 2.8% | ||
gonklavez9 | 0 | 1,317,680,527 | 70% | ||
apendix1994 | 0 | 3,752,752,226 | 90% | ||
chubb149 | 0 | 1,691,450,999 | 8.4% | ||
cosplay.hadr | 0 | 1,258,546,297 | 5.6% | ||
hadrgames | 0 | 1,295,985,622 | 5.6% | ||
rawecz | 0 | 700,805,042 | 5.6% | ||
maar | 0 | 667,170,753 | 70% | ||
bubblegif | 0 | 2,049,988,111 | 2.8% | ||
emeraldtiger | 0 | 2,037,564,017 | 16.5% | ||
meritocracy | 0 | 63,425,003,216 | 0.56% | ||
dcrops | 0 | 41,821,601,888 | 2.8% | ||
samrisso | 0 | 3,510,808,176 | 5% | ||
entraide.rewards | 0 | 1,067,661,050 | 33% | ||
traderhive | 0 | 13,633,877,611 | 5.6% | ||
tawadak24 | 0 | 2,631,720,195 | 2.8% | ||
eturnerx-honey | 0 | 236,399,375 | 0.8% | ||
ausbit.dev | 0 | 532,318,273 | 2.8% | ||
limn | 0 | 934,876,944 | 2.8% | ||
wynella | 0 | 1,097,922,101 | 2.8% | ||
tomtothetom | 0 | 1,515,482,415 | 10% | ||
nyxlabs | 0 | 816,129,846 | 3.5% | ||
dodovietnam | 0 | 3,182,293,538 | 2.8% | ||
mayorkeys | 0 | 22,992,908,415 | 30% | ||
oahb132 | 0 | 1,247,885,223 | 35% | ||
failingforwards | 0 | 3,207,202,176 | 2.8% | ||
medch | 0 | 630,748,495 | 1.68% | ||
drricksanchez | 0 | 14,208,534,970 | 2.8% | ||
trouvaille | 0 | 648,172,663 | 2.8% | ||
wendyburger | 0 | 6,329,570,856 | 5% | ||
joseluis91 | 0 | 845,164,677 | 5.6% | ||
miroslaviv | 0 | 2,254,183,738 | 2.8% | ||
maxelitereturned | 0 | 867,082,177 | 35% | ||
mayllerlys | 0 | 482,913,812 | 50% | ||
trippymane | 0 | 1,766,917,535 | 5.6% | ||
nfttunz | 0 | 8,855,785,279 | 0.56% | ||
hive-defender | 0 | 1,876,028,312 | 100% | ||
key-defender.shh | 0 | 385,190,506 | 100% | ||
okluvmee | 0 | 2,627,505,886 | 2.8% | ||
atexoras.pub | 0 | 1,317,231,872 | 2.8% | ||
krrizjos18 | 0 | 3,107,315,220 | 35% | ||
hubeyma | 0 | 965,250,451 | 2.8% | ||
mirteg | 0 | 1,420,610,028 | 5.6% | ||
sarashew | 0 | 3,914,489,480 | 5.6% | ||
podping | 0 | 7,983,194,553 | 1.4% | ||
jessicaossom | 0 | 1,090,091,083 | 2.8% | ||
drhueso | 0 | 1,384,687,956 | 2.8% | ||
pinkfloyd878 | 0 | 5,008,877,300 | 100% | ||
lycanskiss | 0 | 2,115,621,923 | 100% | ||
mayberlys | 0 | 2,128,878,336 | 50% | ||
miko67 | 0 | 498,154,641 | 2.8% | ||
jaydr | 0 | 1,724,635,910 | 2.8% | ||
menzo | 0 | 875,319,694 | 10% | ||
danokoroafor | 0 | 520,022,841 | 2.8% | ||
tanzil2024 | 0 | 745,221,438 | 1% | ||
sidalim88 | 0 | 2,914,522,683 | 2.8% | ||
lexansky | 0 | 1,173,608,294 | 100% | ||
aries90 | 0 | 44,833,542,470 | 5.6% | ||
rencongland | 0 | 582,403,606 | 2.8% | ||
cugel | 0 | 3,410,609,716 | 5% | ||
martinthemass | 0 | 597,025,081 | 100% | ||
acantoni | 0 | 1,668,738,220 | 5% | ||
migka | 0 | 4,309,866,770 | 90% | ||
pogier | 0 | 4,088,131,643 | 100% | ||
iradeorum | 0 | 539,962,499 | 100% | ||
michupa | 0 | 697,050,602 | 2.5% | ||
h3m4n7 | 0 | 580,596,005 | 2.8% | ||
mistural | 0 | 745,941,622 | 5.6% | ||
jude9 | 0 | 3,526,881,190 | 17.5% | ||
yixn | 0 | 47,617,395,761 | 2.8% | ||
alt3r | 0 | 1,362,704,849 | 4.31% | ||
mcookies | 0 | 493,639,208 | 2.8% | ||
waivio.curator | 0 | 1,633,582,779 | 3.05% | ||
pompeylad | 0 | 6,024,059,965 | 100% | ||
ledgar | 0 | 5,839,559,940 | 100% | ||
simsahas | 0 | 2,585,245,770 | 5.6% | ||
iumac03 | 0 | 573,448,724 | 2.8% | ||
ehizgabriel | 0 | 701,181,912 | 35% | ||
zerothree | 0 | 50,321,847,799 | 100% | ||
vickoly | 0 | 1,545,972,645 | 2.8% | ||
crypt0gnome | 0 | 1,107,052,106 | 1.12% | ||
zerofour | 0 | 34,141,524,026 | 100% | ||
zzz.accounting | 0 | 2,833,674,260 | 100% | ||
deadleaf | 0 | 4,224,698,239 | 100% | ||
albuslucimus | 0 | 1,354,119,214 | 2.8% | ||
marynn | 0 | 11,047,974,697 | 100% | ||
lukasbachofner | 0 | 1,997,713,547 | 2.8% | ||
zerozerozero | 0 | 65,155,903,198 | 100% | ||
zerozeroone | 0 | 18,449,253,264 | 100% | ||
benwickenton | 0 | 2,692,156,849 | 5.6% | ||
dyptre | 0 | 663,956,093 | 2.8% | ||
blackdaisyft | 0 | 16,990,711,981 | 50% | ||
dondido | 0 | 15,575,304,529 | 5.6% | ||
doodleaday | 0 | 36,061,929,192 | 50% | ||
balabambuz | 0 | 702,738,453 | 2.8% | ||
archangel21 | 0 | 723,709,863 | 5.6% | ||
street.curator | 0 | 948,546,357 | 50% | ||
independance | 0 | 1,056,425,802 | 33% | ||
mugueto2022 | 0 | 558,152,553 | 20% | ||
anomadsoul.vyb | 0 | 296,897,492 | 100% | ||
windail1 | 0 | 2,058,799,132 | 100% | ||
jaylatour | 0 | 585,814,752 | 5.6% | ||
nazom | 0 | 784,446,052 | 35% | ||
baboz | 0 | 1,276,706,998 | 1.4% | ||
kryptofire | 0 | 1,726,350,474 | 8% | ||
mr-rent | 0 | 4,023,200,794 | 75% | ||
sbtofficial | 0 | 4,606,070,320 | 2.8% | ||
mukadder | 0 | 513,210,271 | 2.8% | ||
vagabond42069 | 0 | 1,515,582,166 | 35% | ||
inibless | 0 | 3,399,409,504 | 35% | ||
myegoandmyself | 0 | 192,275,459,610 | 10% | ||
vragolana | 0 | 793,067,688 | 2.8% | ||
cindynancy | 0 | 1,428,233,310 | 35% | ||
daje10 | 0 | 16,921,230,218 | 50% | ||
jasedmf | 0 | 557,484,968 | 100% | ||
cleanyourcity | 0 | 12,339,815,249 | 1.68% | ||
sc000 | 0 | 1,375,271,214 | 5.6% | ||
minava.museum | 0 | 1,094,640,972 | 33% | ||
quotidien | 0 | 1,181,731,385 | 33% | ||
vankushfamily | 0 | 669,997,228 | 35% | ||
jijisaurart | 0 | 1,252,196,548 | 2.8% | ||
cryptoshotsdoom | 0 | 13,026,283 | 10% | ||
minas-glory | 0 | 3,657,884,145 | 2.8% | ||
clpacksperiment | 0 | 3,106,736,015 | 2.8% | ||
the-grandmaster | 0 | 3,658,942,206 | 2.8% | ||
the-burn | 0 | 3,662,356,424 | 2.8% | ||
hive-195880 | 0 | 1,876,279,464 | 5% | ||
doniczkowazielen | 0 | 32,524,649,700 | 100% | ||
sapphireleopard | 0 | 704,585,465 | 33% | ||
thepeoplesguild | 0 | 1,124,142,532 | 2.8% | ||
abu78 | 0 | 5,164,913,309 | 24.5% | ||
reverio | 0 | 1,128,226,016 | 5% | ||
lettinggotech | 0 | 1,302,987,094 | 2.8% | ||
les90 | 0 | 790,749,205 | 2.8% | ||
scamforest | 0 | 1,447,300,388 | 2.5% | ||
hive-fr-engine | 0 | 3,086,925,103 | 33% | ||
samuraiscam | 0 | 7,123,170,430 | 2.5% |
Saludos. Contento estoy con mi participaci贸n en el Quiz anterior. --- En esta oportunidad la soluci贸n es: 4 [ ] --- Excelente tu aporte! Saludos
author | rafaelaquino |
---|---|
permlink | re-eniolw-rxi3lk |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"peakd/2023.7.1"} |
created | 2023-07-08 23:22:33 |
last_update | 2023-07-08 23:22:33 |
depth | 1 |
children | 1 |
last_payout | 2023-07-15 23:22: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 | 150 |
author_reputation | 109,092,615,438,486 |
root_title | "My Coding Quiz #6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,162,908 |
net_rshares | 0 |
Seguro! Ya veremos. Gracias por participar. Sure! We'll see. Thanks for participating.
author | eniolw |
---|---|
permlink | re-rafaelaquino-202379t02857362z |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"ecency/3.0.34-vision","format":"markdown+html"} |
created | 2023-07-09 04:28:57 |
last_update | 2023-07-09 04:28:57 |
depth | 2 |
children | 0 |
last_payout | 2023-07-16 04:28: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 | 86 |
author_reputation | 253,497,817,786,909 |
root_title | "My Coding Quiz #6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,167,573 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-eniolw-my-coding-quiz-6-20230709t042937959z |
category | hive-153850 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-07-09 04:29:36 |
last_update | 2023-07-09 04:29:36 |
depth | 1 |
children | 0 |
last_payout | 2023-07-16 04:29: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 | 565 |
author_reputation | 22,903,711,652,468 |
root_title | "My Coding Quiz #6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,167,576 |
net_rshares | 0 |