Time operator+(Time time, int64 secs) { time.Set(time.Get() + secs); return time; }
int64 operator-(Time a, Time b) { return a.Get() - b.Get(); }