struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
uint32_t time = getValue<input_IN>(ctx);
emitValue<output_SEC>(ctx, time % 60);
time /= 60;
emitValue<output_MIN>(ctx, time % 60);
time /= 60;
emitValue<output_HOUR>(ctx, time % 24);
time /= 24;
}