Updated 2023-10-14
    SELECT
    distinct a.TO_ADDRESS
    /*distinct a.tx_hash*/
    FROM
    polygon.core.fact_transactions as a,
    polygon.core.fact_traces as b,
    polygon.core.fact_token_transfers as c
    WHERE
    DATE(a.BLOCK_TIMESTAMP) = '2023-10-13'
    and DATE(b.BLOCK_TIMESTAMP) = '2023-10-13'
    and a.TX_HASH = b.TX_HASH
    and b.TX_HASH = c.TX_HASH
    and substring(b.input, 3, 8) != substring(a.INPUT_DATA, 3, 8)
    and substring(b.input, 3, 8) != '00000000'
    and substring(a.INPUT_DATA, 3, 8) != 'b7d5e564'
    and substring(a.INPUT_DATA, 3, 8) != '5e935362'
    and substring(a.INPUT_DATA, 3, 8) != '3bc33417'
    and substring(a.INPUT_DATA, 3, 8) != '9d55b53f'
    and substring(a.INPUT_DATA, 3, 8) != '6a761202'
    and substring(a.INPUT_DATA, 3, 8) != '7a9a1628'
    and substring(a.INPUT_DATA, 3, 8) != 'b88d4fde'
    and substring(a.INPUT_DATA, 3, 8) != '1cff79cd'
    and substring(a.INPUT_DATA, 3, 8) != '3f801f91'
    and substring(a.INPUT_DATA, 3, 8) != 'f242432a'
    and substring(a.INPUT_DATA, 3, 8) != '59a4c24e'
    and substring(a.INPUT_DATA, 3, 8) != '91aeeedc'
    and substring(a.INPUT_DATA, 3, 8) != '26aa4655'
    and substring(a.INPUT_DATA, 3, 8) != '59a4c24e'
    and substring(a.INPUT_DATA, 3, 8) != 'ab4ed83e'
    and substring(a.INPUT_DATA, 3, 8) != '7ae7cfb5'
    and substring(a.INPUT_DATA, 3, 8) != 'e6f9dfb3'
    and substring(a.INPUT_DATA, 3, 8) != '1f931c1c'
    and substring(a.INPUT_DATA, 3, 8) != 'dfec09e1'
    and substring(a.INPUT_DATA, 3, 8) != 'ec9c7b17'
    and substring(a.INPUT_DATA, 3, 8) != '2ca9e7d0'
    and substring(a.INPUT_DATA, 3, 8) != '0ceff6f1'
    Run a query to Download Data