select proposal_id,
case when proposal_id = '82' then 'Proposal 82' else 'Other Proposals' end as proposals,
count (distinct tx_id) as votes, count (distinct voter) as voters
from osmosis.core.fact_governance_votes
where proposal_id::numeric >= '70' and proposal_id::numeric < 85
and tx_status = 'SUCCEEDED'
group by 1,2