Sort:  

These are the current liquid balances and not the airdrop amount.
this file was put through the following code.

function airdrop(state, aird, source) {
                                    var src = source || 'rm'
                                    for (a in aird){
                                        if (parseInt(aird[a].amount) > 0){
                                            var drop = parseInt(parseInt(aird[a].amount) / 1883359298) //vest to HP
                                            if(drop>10000){drop=10000}
                                            if(drop){
                                                state.balances[a] += drop
                                                if(!state.balances[a]){
                                                    state.balances[a] = drop
                                                }
                                                console.log(a,state.balances[a])
                                                state.balances[src] -= drop
                                            }
                                        }
                                    }
                                    return state
                                }

So any amounts higher than 10 DLUX were OG holders.

ohh, ok. state.balances[a] += drop... I didn't read the post properly, and thought it was just the airdrop.

Thanks for the clarification!