exceptions = {
let exceptions = { total: 0, sections: [], items: [] };
if (true in summary)
for (let [k, v] of Object.entries(summary[true])) {
exceptions.total += v.length;
exceptions.sections.push.apply(exceptions.sections, [k]);
exceptions.items.push.apply(exceptions.items, v);
}
return exceptions;
}