var w = { _sample: "abcdefgh234lmntuwxyz", _convertScale: function(t){ t = Math.floor(t); var e = this._sample.charAt(t % 20); t = Math.floor(t / 20); var n = this._sample.charAt(t % 20) , i = Math.floor(t / 20); return "" + ((i = i ? this._sample[i] : "_") || "_") + (n || "_") + (e || "_") }, assemblyCoordData: function(t){ for(var e = [], n = [], i = [], r = 0, s = t; r < s.length; r++){ var a = s[r]; e.push(this._convertScale(a.x)), n.push(this._convertScale(a.y)), i.push(this._convertScale(a.time)) } return e.join("") + n.join("") + i.join("") } }; function test(x){ return w.assemblyCoordData(x); }