PapasotListed Wushu Tiger Chi
    Updated 2023-01-03
    with Tigers as (

    select *
    from algorand.asset
    where ASSET_NAME like '%Wushu Chi #%'
    and ASSET_DELETED= false
    and creator_address= '4UK5324YGP3UFLUK64E7ZPS6FQYKUC2ESF23TI5DZALTZVYD5PZG3J6BBY'
    order by asset_name)

    select
    distinct(address),
    balance,
    asset_name,
    asset_id,
    amount


    from algorand.account_asset
    left join Tigers b using (asset_name)
    left join algorand.account c using (address)
    where ASSET_NAME like '%Wushu Chi #%'
    and amount = '1'
    and b.creator_address= '4UK5324YGP3UFLUK64E7ZPS6FQYKUC2ESF23TI5DZALTZVYD5PZG3J6BBY'
    and balance < 0.4
    and asset_id is not null
    and asset_name is not null
    order by balance desc
    --group by Buckets
    --order by Buckets
    Run a query to Download Data