export const goalsByName: { [key: string]: Goal } = goals.reduce((acc, c) => {
  acc[c.name] = c
  return acc
}, {})