export const easeInOutCubic = defEasing((x) => [
    ret(
        ternary(
            lt(x, FLOAT05),
            mul(float(4), pow(x, float(3))),