function duration(o){return o<60?o.toFixed(o<10?2:1)+"s":(o=Math.round(o),Math.floor(o/60)+"m"+("0"+Math.floor(o%60)).slice(-2)+"s")}