SELECT allocation_category, allocation_percentage FROM
(VALUES
('DAO Treasury', 42.87),
('Team and Advisors', 26.94),
('Investors', 17.53),
('User Airdrop', 11.62),
('Arbitrum Ecosystem DAOs', 1.13)
) AS token_allocation(allocation_category, allocation_percentage)