python import funcy as fc def add(x, y): return x + y def square(x): return x * x def is_even(x): return x % 2 == 0 new_func = fc.compose(add, square, is_even) data = [1, 2, 3, 4, 5] result = fc.map(new_func, data)