static String doubleToString(double value) { int v = value.toInt(); return value < 10 ? "0$v" : v.toString(); }