Write a function process_space_data(n, words) that receives an integer n (the number of mission days) and a list of strings words (names of celestial objects). Return a tuple of three lists:
- squares – the squares of every integer from 1 to
ninclusive. - evens – all even numbers from 1 to
ninclusive. - transformed – each word converted to uppercase and prefixed with the space‑emoji "🌌 ".
Example:
process_space_data(3, ["moon", "star"])
# returns ([1, 4, 9], [2], ["🌌 MOON", "🌌 STAR"])