boomer77top 100 wallet luna own
    Updated 2022-01-26
    with raw as (select address, sum(balance) as total, currency, ROW_NUMBER() OVER(ORDER BY total desc) AS Rank
    from terra.daily_balances
    where currency in ('LUNA')
    and address not in ('terra1fl48vsnmsdzcv85q5d2q4z5ajdha8yu3nln0mh', 'terra1dp0taj85ruc299rkdvzp4z5pfg6z6swaed74e6',
    'terra1mtwph2juhj0rvjz7dy92gvl6xvukaxu8rfv8ts', 'terra1jgp27m8fykex4e4jtt0l7ze8q528ux2lh4zh0f', 'terra1n6txvxn6cf02nn5slra57vs22mdsdy27kv2kuc',
    'terra1swggaf7nw9p680q4lngs340ar24g3lecr7x9ed', 'terra13u66u4knssnws7n7w0n38mzyyqak5ygp807gyl')
    and date = CURRENT_DATE - 1 and balance > 0
    group by 1,3
    order by total desc),

    top100 as (select sum(total) as balance, count(distinct address) as Holder, 'x' as ass
    from raw
    where rank < 101),

    total as (select sum(total) as balance, count(distinct address) as Holder, 'x' as ass
    from raw)

    select a.balance as Top100, (b.balance - top100) as total_luna, (top100/b.balance)*100 as percentage
    from top100 a
    left join total b on a.ass = b.ass