Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Sketchometry.activity/3dparty
diff options
context:
space:
mode:
authorMartin Putzlocher <mputzi@gmx.de>2013-08-10 10:27:12 (GMT)
committer Martin Putzlocher <mputzi@gmx.de>2013-08-10 10:27:12 (GMT)
commit9a3abec319e8ec66194979f414bf30abbe4642df (patch)
treea381ee771e5d81a3d7eabedf59a1e25b070cbf8c /Sketchometry.activity/3dparty
parentf48f45a891970b73a8705214c64d97c4af929d1f (diff)
Sketchometry-3HEADmaster
based on Sketchometry 0.4.5 Signed-off-by: Martin Putzlocher <mputzi@gmx.de>
Diffstat (limited to 'Sketchometry.activity/3dparty')
-rw-r--r--Sketchometry.activity/3dparty/hwr/handwriting.js854
-rw-r--r--Sketchometry.activity/3dparty/hwr/hwrstrokes.js28
-rw-r--r--Sketchometry.activity/3dparty/hwr/ndollar.js499
-rw-r--r--Sketchometry.activity/3dparty/hwr/pdollar.js312
-rw-r--r--Sketchometry.activity/3dparty/jQuery/jquery-1.7.1.min.js4
-rw-r--r--Sketchometry.activity/3dparty/jQuery/jquery.jsonp.js285
-rw-r--r--Sketchometry.activity/3dparty/jszip/jszip-deflate.min.js1
-rw-r--r--Sketchometry.activity/3dparty/jszip/jszip.min.js1
8 files changed, 1984 insertions, 0 deletions
diff --git a/Sketchometry.activity/3dparty/hwr/handwriting.js b/Sketchometry.activity/3dparty/hwr/handwriting.js
new file mode 100644
index 0000000..3ec56a1
--- /dev/null
+++ b/Sketchometry.activity/3dparty/hwr/handwriting.js
@@ -0,0 +1,854 @@
+var JXGHWR = {
+
+ strokes: [],
+ points: [],
+ pointsRaw: [],
+ pointCloudsRaw: [],
+
+ strokeID: 0,
+ lastDate: 0,
+ startDate: 0,
+ minTimeDiff: 30,
+ minStrokeLength: 5,
+ maxDistance: 20,
+
+ types: {
+ 'D': ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
+ 'Sep': [',', '.'],
+ 'L': ['x', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'l', 'n', 'o', 's', 't'],
+ 'Op': ['+', '-', '*', '/', '^'],
+ 'K': ['(', ')','|'],
+ 'Ot': ['sqrt', '='],
+ 'V': ['x', 'y']
+ },
+
+ recognizerP: null,
+ recognizerN: null,
+
+ /**
+ * Canvas variables
+ */
+
+ canvas: null,
+ g: null,
+ rc: null,
+ timeout: null,
+
+ /**
+ *
+ */
+
+ needsClear: false,
+ isDown: false,
+
+ init: function(cv, tb) {
+
+ this.strokes = [];
+ this.points = [];
+ this.pointsRaw = [];
+
+ this.strokeID = 0;
+
+ this.canvas = cv;
+ this.textbox = tb;
+
+ this.initCanvas();
+
+ this.lastDate = new Date();
+
+ this.recognizerP = new JXGHWR_PDollarRecognizer();
+ this.recognizerN = new JXGHWR_NDollarRecognizer(true);
+
+ this.readGesturesFromLocalStorage();
+ },
+
+ readGesturesFromLocalStorage: function() {
+ var pointCloudsRaw, i, le;
+
+ if (localStorage) // otherwise IE 10 complains
+ pointCloudsRaw = JSON.parse(localStorage.getItem('JXGPointClouds'));
+
+ if (pointCloudsRaw!=null) {
+
+ this.pointCloudsRaw = pointCloudsRaw;
+ for (i = 0; i < pointCloudsRaw.length; ++i) {
+ this.recognizerP.AddGesture(
+ pointCloudsRaw[i].Name,
+ this.convertPoints(pointCloudsRaw[i].Points, 'p')
+ );
+
+ le = pointCloudsRaw[i].Points.length;
+ if (pointCloudsRaw[i].Points[le - 1][2] === 1) { // unistroke gesture
+ this.recognizerN.AddGesture(
+ pointCloudsRaw[i].Name,
+ true,
+ [this.convertPoints(pointCloudsRaw[i].Points)]
+ );
+ }
+ }
+ }
+
+ for (i = 0; i < this.recognizerP.PointClouds.length; ++i) {
+ le = this.recognizerP.PointClouds[i].Points.length;
+ this.recognizerP.PointClouds[i].NrStrokes = this.recognizerP.PointClouds[i].Points[le - 1].ID;
+ }
+ },
+
+ addGestureRaw: function(name, points) {
+ this.pointCloudsRaw.push({
+ Name: name,
+ Points: points.slice(0)
+ });
+ },
+
+ convertPoints: function(pointsRaw, type) {
+ var i, le, points, p;
+
+ points = [];
+ le = pointsRaw.length;
+ for (i = 0; i < le; ++i) {
+ p = {
+ X: pointsRaw[i][0],
+ Y: pointsRaw[i][1]
+ };
+
+ if (type === 'p') {
+ p.ID = pointsRaw[i][2] ;
+ }
+ points.push(p);
+ }
+ return points;
+ },
+
+ convertPointsN: function(pcRaw) {
+ var i, pc, le, name, points, p;
+
+ name = pcRaw.Name;
+ points = [];
+ le = pcRaw.Points.length;
+ for (i = 0; i < le; ++i) {
+ p = {
+ X: pcRaw.Points[i][0],
+ Y: pcRaw.Points[i][1]
+ };
+ points.push(p);
+ }
+ pc = new this.recognizerN.AddMultistroke(name, true, [points]);
+
+ return pc;
+ },
+
+ getBBox: function(stroke) {
+ var i, le = stroke.length, bb = [Infinity, Infinity, 0, 0];
+
+ for(i = 0; i < le; i++) {
+ bb[0] = (stroke[i].X < bb[0]) ? stroke[i].X : bb[0];
+ bb[1] = (stroke[i].Y < bb[1]) ? stroke[i].Y : bb[1];
+ bb[2] = (stroke[i].X > bb[2]) ? stroke[i].X : bb[2];
+ bb[3] = (stroke[i].Y > bb[3]) ? stroke[i].Y : bb[3];
+ }
+ return bb;
+ },
+
+ getType: function(c) {
+ var item, i, le;
+
+ for (item in this.types) {
+ le = this.types[item].length;
+ for (i = 0; i < le; i++) {
+ if (c === this.types[item][i]) {
+ return item;
+ }
+ }
+ }
+ return '';
+ },
+
+ getStrokeNr: function(stroke) {
+ return stroke[stroke.length - 1].ID;
+ },
+
+ makeGoodlist: function(c, txt, lastbb, actbb) {
+ var list = [], t, last2 = '',
+ height = lastbb[3] - lastbb[1];
+
+ if (height > 1) {
+ height *= 0.5;
+ }
+
+ if (txt.length > 1) {
+ last2 = txt.slice(-2);
+ }
+
+ t = this.getType(c);
+ if (c === '') {
+ list = list.concat(['+', '-']);
+ list = list.concat(this.types['D']);
+ list = list.concat(['(']);
+ list = list.concat(this.types['L']);
+ list = list.concat(this.types['V']);
+ list = list.concat(this.types['Ot']);
+ } else if (c !== '(' && c !== '|' && c !== '/' &&
+ actbb[3] - actbb[1] < 40 &&
+ lastbb[1] + 30 < actbb[1] && // if char is roughly in the middle of the previous it is - or +.
+ lastbb[3] - 30 > actbb[3]) {
+ list = list.concat(['+', '-']);
+ } else if (t === 'V') {
+ list = list.concat(this.types['Op']);
+ list = list.concat(this.types['K']);
+ } else if (t === 'D') {
+ list = list.concat(this.types['D']);
+ list = list.concat(this.types['V']);
+ list = list.concat(['sqrt']);
+
+ if (lastbb[3] + 5 < actbb[3] && // char has to be reach slichtly below last char
+ lastbb[3] - height < actbb[1]) { // char may reach at most to the middle of last char
+ list = list.concat([',']);
+ // Don't allow (e)l.
+ list = list.concat(['x', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'n', 'o', 's', 't']);
+ } else {
+ list = list.concat(this.types['Op']);
+ list = list.concat(this.types['K']);
+ list = list.concat(this.types['L']);
+ }
+
+ } else if (t === 'Op') {
+ list = list.concat(this.types['D']);
+ list = list.concat(['(']);
+ //list = list.concat(this.types['L']);
+ list = list.concat(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'l', 's', 't']);
+ list = list.concat(this.types['V']);
+ list = list.concat(['sqrt']);
+ } else if (c === '(') {
+ list = list.concat(this.types['D']);
+ list = list.concat(['(']);
+ list = list.concat(this.types['L']);
+ list = list.concat(this.types['V']);
+ list = list.concat(['sqrt']);
+ } else if (c === ')') {
+ list = list.concat(this.types['Op']);
+ list = list.concat(')');
+
+ //list = list.concat(this.types['D']);
+ //list = list.concat(this.types['L']);
+ //list = list.concat(this.types['V']);
+
+ } else if (last2 === 'si' || last2 === 'ta') {
+ list = list.concat(['n']);
+ } else if (last2 === 'co') {
+ list = list.concat(['s']);
+ } else if (last2 === 'lo') {
+ list = list.concat(['g']);
+ } else if (t === 'L') {
+ list = list.concat(this.types['V']);
+ list = list.concat(this.types['Op']);
+ list = list.concat(this.types['K']);
+ if (c === 's') {
+ list = list.concat(['i']); // sin
+ } else if (c === 'c') {
+ list = list.concat(['o']); // cos
+ } else if (c === 'l') {
+ list = list.concat(['o', 'n']); // log, ln
+ } else if (c === 't') {
+ list = list.concat(['a']); // ta
+ }
+ } else {
+ list = list.concat(this.types['D']);
+ list = list.concat(this.types['Op']);
+ list = list.concat(this.types['K']);
+ list = list.concat(this.types['L']);
+ list = list.concat(this.types['V']);
+ list = list.concat(this.types['Ot']);
+ }
+
+ return list;
+ },
+
+ /**
+ * Sort strokes from left to right
+ */
+ sortStrokes: function() {
+ var that = this;
+ this.strokes.sort(function(a,b){
+ var bba = that.getBBox(a), bbb = that.getBBox(b);
+ return bba[0]-bbb[0];
+ });
+ },
+
+ /**
+ * Collect left-over stroke before starting recognizerP.
+ */
+ collectStroke: function() {
+ if (this.strokeID !== 0) {
+ this.startDate = new Date();
+ if (this.startDate.getTime() - this.lastDate.getTime() > this.minTimeDiff) {
+ // Copy points for dollar p algorithm
+ this.strokes.push( this.points.slice(0) );
+ this.strokeID = 0;
+ }
+ }
+ },
+
+ /**
+ * Combine strokes which intersect each other or which are connected
+ * into single strokes.
+ */
+ recombineStrokes: function() {
+ var i, j, sid, le;
+
+
+ if (this.strokes.length > 1) {
+ for (i = 1; i < this.strokes.length; i++) {
+ if (this.isConnected(this.strokes[i-1], this.strokes[i]) ||
+ this.isCrossing(this.strokes[i-1], this.strokes[i])) {
+
+ // Adapt strokeID
+ le = this.strokes[i-1].length;
+ sid = this.strokes[i-1][le-1].ID;
+
+ le = this.strokes[i].length;
+ for (j = 0; j < le; j++) {
+ this.strokes[i][j].ID += sid;
+ }
+
+ // Copy stroke from stroke[i] to stroke[i-1]
+ this.strokes[i-1] = this.strokes[i-1].concat( this.strokes[i].slice(0) );
+ this.strokes.splice(i, 1);
+ }
+ }
+ }
+ },
+
+ /**
+ * Input: last char and two bounding boxes.
+ */
+ isExponent: function(last, lastbb, actbb) {
+ var height = lastbb[3] - lastbb[1];
+
+ if (height > 1) {
+ height *= 0.5;
+ }
+
+ if (last !== '.' && last !== ',' && last !== '-' &&
+ // top of char is slightly above top of last char
+ lastbb[1] > actbb[1] + 5 &&
+ // bottom of char is above middle height of last char
+ lastbb[3] - height > actbb[3]
+ ) {
+
+ return true;
+ }
+
+ return false;
+ },
+
+ /**
+ * Input: last bounding box and actual bounding box.
+ */
+ isEndExponent: function(lastbb, actbb) {
+ var height = lastbb[3] - lastbb[1];
+
+ if (height > 1) {
+ height *= 2.0/3.0;
+ }
+
+ if (
+ // bottom of char is below two third of height of last char
+ lastbb[3] - height < actbb[1] &&
+ lastbb[3] < actbb[3]
+ ) {
+
+ return true;
+ }
+
+ return false;
+ },
+
+ recognize: function() {
+ var txt = '',
+ result,
+ quality = '',
+ last = '',
+ i, list,
+ lastbb = [0,0,0,0], bb,
+ expLevel = 0,
+ botLine = [],
+ sqrtLevel = 0,
+ sqrtLine = [],
+ sqrtEnd = [],
+ st;
+
+ //st = new Date();
+
+ this.collectStroke();
+ this.sortStrokes();
+ this.recombineStrokes();
+
+ /**
+ * Apply $P or $N to every stroke.
+ */
+ for (i = 0; i < this.strokes.length; i++) {
+
+ // this.paintBBox(this.strokes[i]);
+ bb = this.getBBox(this.strokes[i]);
+
+
+ // Detect end of square roots
+ while (sqrtLevel > 0 && bb[2] > sqrtEnd[sqrtLevel]) {
+ last = ')';
+ txt += last;
+ lastbb[3] = sqrtLine[expLevel];
+ --sqrtLevel;
+ }
+ // Detect end of exponent
+ while (expLevel > 0 && this.isEndExponent(lastbb, bb)) {
+ last = ')';
+ txt += last;
+ --expLevel;
+ lastbb[3] = botLine[expLevel];
+ }
+
+ if (this.strokes[i].length >= this.minStrokeLength) {
+ // Detect exponents.
+ // This is needed before calling makeGoodlist(), because
+ // it influences the possible choices for the next symbol.
+ if (i>0 && this.isExponent(last, lastbb, bb)) {
+ last = '^';
+ txt += last;
+ last = '(';
+ txt += last;
+ botLine[expLevel] = lastbb[3];
+ ++expLevel;
+ }
+
+ list = this.makeGoodlist(last, txt, lastbb, bb);
+ this.strokes[i].NrStrokes = this.getStrokeNr(this.strokes[i]); // Determine number of strokes
+
+ if (this.strokes[i].NrStrokes === 1) {
+ result = this.recognizerN.Recognize([this.strokes[i]], true, false, true, list);
+ } else {
+ result = this.recognizerP.Recognize(this.strokes[i], list);
+ }
+
+ if (result.Name === '|' && bb[2] - bb[0] > 30) {
+ result.Name = '/';
+ }
+ quality += result.Score.toFixed(2) + ' ';
+
+ } else {
+ // We have a dot.
+ // There are three possibilities: ., i, or *
+ bb = this.getBBox(this.strokes[i]);
+ result = { Name:'' };
+
+ // If last symbol is digit and the dot is close to the baseline, it is a separator
+ if (last.match(/\d/) && bb[1] > lastbb[3] - 30 && bb[3] < lastbb[3] + 30) { // .
+ result.Name = '.';
+
+ // If the dot is close to the topline the last symbol is an "i"
+ } else if (bb[2] < lastbb[2] + 20 &&
+ bb[3] < lastbb[1] && bb[3] < lastbb[3]) { // i (only backward recognition)
+ result.Name = 'i';
+ txt = txt.slice(0, -1);
+ } else { // *
+ result.Name = '*';
+ }
+ // lastbb = [0,0,0,0];
+ quality += '1.0 ';
+ }
+
+ // Handle square root stretches
+ if (result.Name === 'sqrt') {
+ result.Name += '(';
+ ++sqrtLevel;
+ sqrtLine[sqrtLevel] = bb[3];
+ sqrtEnd[sqrtLevel] = bb[2];
+ }
+
+ last = result.Name;
+ lastbb = bb.slice(0);
+ txt += last;
+
+ /**
+ * Post processing. Better do it after each step.
+ */
+ // Handle '='
+ txt = txt.replace(/--/g, '=');
+ txt = txt.replace(/-\^-/g, '=');
+
+ // Handle i
+ txt = txt.replace(/,\*/g, 'i');
+ txt = txt.replace(/\|\*/g, 'i');
+ txt = txt.replace(/\(\*/g, 'i');
+ txt = txt.replace(/i\*/g, 'i');
+
+ // Handle the case 3.a which is probably 3*a
+ txt = txt.replace(/(\d)\.([a-z])/g, '$1*$2');
+
+ // Handle log, sin, cos
+ txt = txt.replace(/l0g/g, 'log');
+ txt = txt.replace(/\wi\D{1}/g, 'sin');
+ txt = txt.replace(/sin\*/g, 'sin');
+ txt = txt.replace(/co./g, 'cos');
+ txt = txt.replace(/c0s/g, 'cos');
+ }
+
+ // Add closing parenthesis for exponents and square roots
+ while (expLevel > 0) {
+ txt += ')';
+ --expLevel;
+ }
+ while (sqrtLevel > 0) {
+ txt += ')';
+ --sqrtLevel;
+ }
+
+ /**
+ * Finalize recognition
+ */
+ this.strokeID = 0; // signal to begin new gesture on next mouse-down
+
+ //txt += '\ntime:' + ((new Date()).getTime() - st.getTime());
+
+ return {
+ str: txt,
+ quality: quality
+ };
+ },
+
+ /**
+ * Euclidean distance between two "D points.
+ */
+ dist: function(a, b) {
+ return Math.sqrt((a.X - b.X) * (a.X - b.X) + (a.Y - b.Y) * (a.Y - b.Y));
+ },
+
+ rand: function(low, high) {
+ return Math.floor((high - low + 1) * Math.random()) + low;
+ },
+
+ /**
+ * Detect if two strokes are connected
+ */
+ isConnected: function(s1, s2) {
+ var thresh = this.maxDistance, isC = false;
+
+ if (this.dist(s1[0], s2[0]) <= thresh) {
+ isC = true;
+ } else if (this.dist(s1[0], s2[s2.length - 1]) <= thresh) {
+ isC = true;
+ } else if (this.dist(s1[s1.length - 1], s2[0]) <= thresh) {
+ isC = true;
+ } else if (this.dist(s1[s1.length - 1], s2[s2.length - 1]) <= thresh) {
+ isC = true;
+ }
+
+ return isC;
+ },
+
+ /**
+ * Detect if two strokes cross each other,
+ */
+ isCrossing: function(s1, s2) {
+ var i, j, le1 = s1.length, le2 = s2.length, isC = false,
+ a1, a2, b1, b2,
+ bb1, bb2, c1, c2;
+
+ if (le1 < 2 || le2 < 2) {
+ return isC;
+ }
+
+ for (i = 1; i < le1; i++) {
+ a1 = s1[i - 1];
+ a2 = s1[i];
+ bb1 = [Math.min(a1.X, a2.X), Math.min(a1.Y, a2.Y),
+ Math.max(a1.X, a2.X), Math.max(a1.Y, a2.Y)];
+
+ for (j = 1; j < le2; j++) {
+ b1 = s2[j - 1];
+ b2 = s2[j];
+ bb2 = [Math.min(b1.X, b2.X), Math.min(b1.Y, b2.Y),
+ Math.max(b1.X, b2.X), Math.max(b1.Y, b2.Y)];
+
+ if (bb1[2] >= bb2[0] && bb1[0] <= bb2[2] && bb1[1] <= bb2[3] && bb1[3] >= bb2[1]) {
+ c1 = (b1.X - a1.X) * (a2.Y - a1.Y) - (b1.Y - a1.Y) * (a2.X - a1.X);
+ c2 = (b2.X - a1.X) * (a2.Y - a1.Y) - (b2.Y - a1.Y) * (a2.X - a1.X);
+ if (c1 * c2 <= 0.0) {
+ isC = true;
+ return isC;
+ }
+ }
+ }
+ }
+
+ return isC;
+ },
+
+ initCanvas: function() {
+
+ this.g = this.canvas.getContext('2d');
+ this.g.lineWidth = 3;
+ this.g.font = "14px Arial";
+/*
+ // Draw top bar
+ var col = "rgb(" + this.rand(0,200) + "," + this.rand(0,200) + "," + this.rand(0,200) + ")";
+
+ this.g.fillStyle = col;
+ this.g.fillRect(0, 0, this.canvas.width, 20);
+*/
+ },
+
+ /**
+ * Get dimensions and upper left corner of the canvas element.
+
+ getCanvasRect: function() {
+ var canvas = this.canvas,
+ w = canvas.width,
+ h = canvas.height,
+ cx = canvas.offsetLeft,
+ cy = canvas.offsetTop;
+
+ while (canvas.offsetParent != null) {
+ canvas = canvas.offsetParent;
+ cx += canvas.offsetLeft;
+ cy += canvas.offsetTop;
+ }
+ return {x: cx, y: cy, width: w, height: h};
+ },
+ */
+
+ getScrollY: function() {
+ //var scrollY = 0, os;
+
+ // os = $(this.canvas).position();
+ // scrollY = os.top;
+
+
+ // if (typeof(document.body.parentElement) != 'undefined') {
+ // scrollY = document.body.parentElement.scrollTop; // IE
+ // } else if (typeof(window.pageYOffset) != 'undefined') {
+ // scrollY = window.pageYOffset; // FF
+ // }
+
+ //return scrollY;
+ return 0;
+ },
+
+ clearStrokes: function() {
+ this.points.length = 0;
+ this.pointsRaw.length = 0;
+ this.strokeID = 0;
+ this.strokes.length = 0;
+
+ this.g.clearRect(0, 0, this.canvas.width, this.canvas.height);
+ //this.drawText("Canvas cleared.");
+ this.needsClear = false;
+
+ if (this.textbox !== null) {
+ this.textbox.value = "";
+ }
+ },
+
+ downEvent: function(evt) {
+ var x = evt.pageX,
+ y = evt.pageY,
+ button = evt.button,
+ t = evt.targetTouches,
+ col;
+
+ if (t) {
+ button = 0;
+ x = t[0].pageX;
+ y = t[0].pageY;
+ }
+
+ if (this.needsClear) {
+ this.clearStrokes();
+ }
+
+ if (button <= 1 || typeof button === 'undefined') {
+ this.isDown = true;
+
+ x -= this.offsetX;
+ y -= this.offsetY;
+
+ //x -= this.rc.x;
+ //y -= this.rc.y; // - this.getScrollY();
+
+ if (this.strokeID !== 0) {
+ this.startDate = new Date();
+ if (this.startDate.getTime() - this.lastDate.getTime() > this.minTimeDiff) {
+
+ // Copy points for dollar p recognition
+ this.strokes.push( this.points.slice(0) );
+ this.strokeID = 0;
+ } else {
+ clearTimeout(this.timeout);
+ }
+ }
+
+ if (this.strokeID === 0) { // starting a new gesture
+ this.points.length = 0;
+ this.pointsRaw.length = 0;
+
+ // set random color
+ //col = "rgb(" + this.rand(0,200) + "," + this.rand(0,200) + "," + this.rand(0,200) + ")";
+ col = "rgb(20, 30, 200)";
+
+ this.g.fillStyle = col;
+ this.g.strokeStyle = col;
+ }
+
+ // Rectangle to mark the beginning of a stroke
+ //this.g.fillRect(x - 4, y - 3, 9, 9);
+ this.g.beginPath();
+ this.g.arc(x, y, 2, 0, 2 * Math.PI, false);
+ this.g.closePath();
+ this.g.fill();
+
+ // Start new stroke
+ ++this.strokeID;
+ this.points[this.points.length] = {
+ X: x,
+ Y: y,
+ ID: this.strokeID
+ };
+ this.pointsRaw.push([x, y, this.strokeID]);
+ }
+
+ if (evt && evt.preventDefault) {
+ evt.preventDefault();
+ } else if (window.event) {
+ window.event.returnValue = false;
+ }
+ },
+
+ moveEvent: function(evt) {
+ var x = evt.pageX,
+ y = evt.pageY,
+ t = evt.targetTouches;
+
+ if (t) {
+ x = t[0].pageX;
+ y = t[0].pageY;
+ }
+
+ if (this.isDown) {
+
+ x -= this.offsetX;
+ y -= this.offsetY;
+
+ //x -= this.rc.x;
+ //y -= this.rc.y; // - this.getScrollY();
+
+ // Append point
+ this.points[this.points.length] = {
+ X: x,
+ Y: y,
+ ID: this.strokeID
+ };
+ this.pointsRaw.push([x, y, this.strokeID]);
+
+ this.drawConnectedPoint(this.pointsRaw.length - 2, this.pointsRaw.length - 1);
+ }
+ },
+
+ upEvent: function() {
+ if (this.isDown) {
+ this.isDown = false;
+ this.lastDate = new Date();
+ }
+ },
+
+ drawConnectedPoint: function(from, to) {
+ this.g.beginPath();
+ this.g.moveTo(this.pointsRaw[from][0], this.pointsRaw[from][1]);
+ this.g.lineTo(this.pointsRaw[to][0], this.pointsRaw[to][1]);
+ this.g.closePath();
+ this.g.stroke();
+ },
+
+ drawText: function(str) {
+ this.g.fillStyle = "rgb(255,255,136)";
+ this.g.fillRect(0, 0, this.canvas.width, 20);
+ this.g.fillStyle = "rgb(0,0,255)";
+ this.g.fillText(str, 1, 14);
+ },
+
+ paintBBox: function(stroke) {
+ var bb = this.getBBox(stroke),
+ col = "rgb(100,100,100)";
+
+ bb[0] -= 3;
+ bb[1] -= 3;
+ bb[2] += 3;
+ bb[3] += 3;
+
+ this.g.lineWidth = 1;
+ this.g.strokeStyle = col;
+ this.g.beginPath();
+ this.g.moveTo(bb[0], bb[1]);
+ this.g.lineTo(bb[2], bb[1]);
+ this.g.lineTo(bb[2], bb[3]);
+ this.g.lineTo(bb[0], bb[3]);
+ this.g.closePath();
+ this.g.stroke();
+ this.g.lineWidth = 3;
+ },
+
+ /**
+ * Manage gestures
+ */
+
+ onAddGesture: function(name) {
+ if (this.pointsRaw.length >= this.minStrokeLength && name.length > 0) {
+ this.addGestureRaw(name, this.pointsRaw);
+ }
+ this.clearStrokes();
+ },
+
+ onSave: function() {
+ localStorage.removeItem('JXGPointClouds');
+ localStorage.setItem('JXGPointClouds', JSON.stringify(this.pointCloudsRaw));
+ if (this.textbox !== null) {
+ this.textbox.value = this.pointCloudsRaw.length + " gestures saved";
+ }
+ },
+
+ onDeleteAll: function() {
+ localStorage.removeItem('JXGPointClouds');
+ this.pointCloudsRaw = [];
+ if (this.textbox !== null) {
+ this.textbox.value = JSON.stringify(this.pointCloudsRaw);
+ }
+ },
+
+ /**
+ * 'pointcloud' has to be a (hidden) input element of the form.
+ */
+
+ onSubmit: function() {
+ GUI.getId('pointcloud').value = JSON.stringify(this.pointCloudsRaw);
+ GUI.getId('SEND').submit();
+ },
+
+ printStats: function() {
+ var stat = {}, i, t = '';
+
+ for (i = 0; i < this.pointCloudsRaw.length; ++i) {
+ if (stat[this.pointCloudsRaw[i].Name]) {
+ stat[this.pointCloudsRaw[i].Name]++;
+ } else {
+ stat[this.pointCloudsRaw[i].Name] = 1;
+ }
+ }
+
+ for (i in stat) {
+ t += '"' + i + '": ' + stat[i] + '\n';
+ }
+
+ if (this.textbox !== null) {
+ this.textbox.value = t;
+ }
+ }
+};
diff --git a/Sketchometry.activity/3dparty/hwr/hwrstrokes.js b/Sketchometry.activity/3dparty/hwr/hwrstrokes.js
new file mode 100644
index 0000000..d6a1319
--- /dev/null
+++ b/Sketchometry.activity/3dparty/hwr/hwrstrokes.js
@@ -0,0 +1,28 @@
+JXGHWR.loadStrokes = function() {
+ var le, i, pointCloudsRaw = JSON.parse('[{\"Name\":\"0\",\"Points\":[[230,137,1],[218,133,1],[211,133,1],[203,133,1],[192,141,1],[181,149,1],[171,160,1],[162,171,1],[158,181,1],[153,194,1],[151,206,1],[151,218,1],[152,230,1],[155,240,1],[161,248,1],[170,253,1],[179,254,1],[191,254,1],[204,247,1],[216,235,1],[226,223,1],[231,209,1],[236,198,1],[238,185,1],[239,176,1],[239,167,1],[236,161,1],[232,155,1],[228,151,1],[225,147,1],[223,145,1],[220,144,1],[220,143,1],[220,142,1],[223,142,1],[231,142,1]]},{\"Name\":\"0\",\"Points\":[[231,135,1],[220,126,1],[214,126,1],[208,126,1],[199,130,1],[189,138,1],[181,147,1],[171,157,1],[165,169,1],[158,181,1],[154,193,1],[152,206,1],[151,218,1],[151,231,1],[153,243,1],[158,254,1],[163,263,1],[171,268,1],[178,273,1],[186,273,1],[197,273,1],[206,270,1],[216,262,1],[225,253,1],[231,240,1],[237,229,1],[241,218,1],[244,208,1],[245,198,1],[245,187,1],[245,176,1],[241,166,1],[236,157,1],[232,148,1],[228,142,1],[226,139,1],[225,136,1],[223,133,1]]},{\"Name\":\"0\",\"Points\":[[199,147,1],[186,148,1],[180,152,1],[171,161,1],[164,171,1],[159,181,1],[154,194,1],[152,206,1],[151,218,1],[151,231,1],[152,244,1],[156,255,1],[161,267,1],[169,275,1],[178,282,1],[187,286,1],[196,287,1],[208,286,1],[220,279,1],[229,271,1],[237,259,1],[242,251,1],[248,240,1],[250,228,1],[252,217,1],[252,208,1],[252,198,1],[248,188,1],[243,180,1],[236,172,1],[228,165,1],[223,162,1],[216,157,1],[211,154,1],[205,151,1],[202,149,1],[199,148,1],[196,147,1],[195,147,1],[195,148,1],[195,154,1]]},{\"Name\":\"1\",\"Points\":[[129,223,1],[129,213,1],[134,207,1],[144,195,1],[156,183,1],[169,167,1],[179,157,1],[189,144,1],[198,134,1],[204,128,1],[208,124,1],[211,121,1],[213,120,1],[214,123,1],[214,131,1],[214,141,1],[212,152,1],[209,164,1],[206,177,1],[204,194,1],[203,210,1],[200,227,1],[198,244,1],[196,259,1],[194,273,1],[193,287,1],[192,297,1],[191,304,1],[191,310,1],[191,314,1],[191,317,1],[190,318,1]]},{\"Name\":\"1\",\"Points\":[[153,204,1],[159,190,1],[166,185,1],[179,176,1],[188,167,1],[199,159,1],[206,151,1],[213,143,1],[218,139,1],[221,137,1],[223,135,1],[225,134,1],[226,134,1],[226,136,1],[226,141,1],[226,147,1],[226,157,1],[224,165,1],[223,176,1],[221,188,1],[220,201,1],[219,215,1],[218,229,1],[218,242,1],[217,255,1],[216,268,1],[214,280,1],[213,292,1],[213,300,1],[213,307,1],[212,315,1],[211,320,1],[211,323,1],[211,324,1],[211,325,1],[211,324,1],[210,324,1]]},{\"Name\":\"1\",\"Points\":[[208,162,1],[212,152,1],[217,147,1],[222,142,1],[226,141,1],[226,139,1],[229,138,1],[231,138,1],[231,139,1],[232,142,1],[232,149,1],[232,156,1],[232,164,1],[232,172,1],[232,181,1],[232,189,1],[232,199,1],[232,210,1],[232,221,1],[232,231,1],[232,243,1],[232,253,1],[232,262,1],[231,272,1],[230,279,1],[229,288,1],[228,295,1],[227,300,1],[227,305,1],[226,310,1],[226,312,1],[226,315,1],[226,316,1],[226,318,1],[226,319,1]]},{\"Name\":\"2\",\"Points\":[[148,142,1],[147,130,1],[150,122,1],[159,115,1],[171,106,1],[183,100,1],[194,97,1],[206,94,1],[216,93,1],[226,93,1],[235,96,1],[244,100,1],[251,110,1],[259,120,1],[264,133,1],[269,146,1],[270,159,1],[271,173,1],[272,188,1],[272,204,1],[269,219,1],[264,234,1],[256,249,1],[248,264,1],[237,277,1],[225,292,1],[213,301,1],[199,312,1],[184,320,1],[172,323,1],[161,324,1],[152,324,1],[144,324,1],[140,321,1],[138,318,1],[138,311,1],[138,305,1],[142,299,1],[148,296,1],[153,293,1],[159,292,1],[167,292,1],[175,296,1],[181,299,1],[187,305,1],[195,311,1],[203,316,1],[210,320,1],[220,324,1],[230,328,1],[243,330,1],[257,330,1],[273,330,1],[289,328,1],[303,324,1],[316,319,1],[329,313,1],[338,310,1],[348,307,1]]},{\"Name\":\"2\",\"Points\":[[134,138,1],[131,126,1],[132,120,1],[137,113,1],[148,104,1],[160,97,1],[174,91,1],[187,86,1],[199,83,1],[208,82,1],[222,82,1],[231,87,1],[241,94,1],[250,102,1],[257,115,1],[263,126,1],[267,141,1],[269,154,1],[270,170,1],[270,188,1],[270,204,1],[266,222,1],[260,240,1],[252,257,1],[241,275,1],[230,292,1],[218,306,1],[205,317,1],[192,326,1],[179,333,1],[167,338,1],[158,339,1],[149,339,1],[143,339,1],[139,338,1],[137,336,1],[137,333,1],[137,330,1],[137,329,1],[140,327,1],[146,326,1],[154,326,1],[161,326,1],[171,327,1],[183,329,1],[195,331,1],[208,332,1],[223,332,1],[236,332,1],[250,332,1],[263,331,1],[275,330,1],[284,329,1],[293,329,1],[299,328,1],[304,327,1],[308,326,1],[311,326,1],[312,326,1],[312,327,1]]},{\"Name\":\"2\",\"Points\":[[167,156,1],[161,146,1],[161,141,1],[164,132,1],[171,124,1],[181,114,1],[189,106,1],[199,101,1],[209,97,1],[222,96,1],[231,95,1],[244,95,1],[254,97,1],[264,101,1],[271,108,1],[277,117,1],[281,124,1],[283,138,1],[284,149,1],[284,163,1],[281,179,1],[275,194,1],[269,209,1],[260,226,1],[250,244,1],[239,259,1],[227,274,1],[215,288,1],[204,300,1],[192,311,1],[181,320,1],[173,324,1],[166,328,1],[162,329,1],[160,330,1],[159,330,1],[161,329,1],[167,329,1],[176,328,1],[185,327,1],[195,326,1],[207,325,1],[219,324,1],[231,324,1],[244,322,1],[256,321,1],[268,320,1],[277,320,1],[286,320,1],[294,319,1],[300,318,1],[306,317,1],[310,316,1],[313,316,1],[315,316,1],[315,316,1],[315,316,1]]},{\"Name\":\"3\",\"Points\":[[137,86,1],[144,80,1],[157,80,1],[171,80,1],[185,81,1],[204,83,1],[218,87,1],[231,92,1],[242,98,1],[251,108,1],[258,116,1],[262,125,1],[263,135,1],[263,145,1],[259,154,1],[249,163,1],[241,169,1],[230,175,1],[219,180,1],[212,183,1],[205,185,1],[202,185,1],[199,186,1],[202,186,1],[209,189,1],[221,192,1],[231,197,1],[242,202,1],[252,208,1],[261,216,1],[269,224,1],[274,232,1],[278,240,1],[279,250,1],[279,258,1],[279,266,1],[273,275,1],[262,282,1],[248,290,1],[231,297,1],[213,300,1],[192,304,1],[172,305,1],[154,306,1],[139,306,1],[127,305,1],[119,303,1],[114,301,1],[111,299,1],[110,297,1]]},{\"Name\":\"3\",\"Points\":[[138,97,1],[143,89,1],[153,89,1],[166,89,1],[183,89,1],[199,92,1],[215,96,1],[228,100,1],[241,105,1],[251,113,1],[261,121,1],[268,130,1],[271,140,1],[273,150,1],[273,162,1],[269,171,1],[262,180,1],[252,187,1],[243,192,1],[236,195,1],[228,198,1],[224,198,1],[220,198,1],[218,198,1],[223,198,1],[229,201,1],[239,204,1],[248,209,1],[257,217,1],[265,225,1],[272,233,1],[277,243,1],[280,253,1],[282,261,1],[283,271,1],[283,279,1],[279,290,1],[272,298,1],[260,309,1],[246,317,1],[228,324,1],[211,329,1],[191,332,1],[173,333,1],[159,333,1],[145,333,1],[137,332,1],[132,331,1],[129,329,1],[128,326,1]]},{\"Name\":\"3\",\"Points\":[[178,97,1],[183,96,1],[189,96,1],[195,96,1],[203,97,1],[210,97,1],[217,100,1],[224,104,1],[228,109,1],[234,115,1],[238,122,1],[241,129,1],[244,138,1],[245,144,1],[246,152,1],[246,160,1],[243,165,1],[239,171,1],[235,176,1],[230,180,1],[224,182,1],[218,184,1],[213,184,1],[208,184,1],[204,184,1],[200,184,1],[198,184,1],[197,183,1],[198,182,1],[199,182,1],[204,182,1],[208,182,1],[215,185,1],[221,188,1],[226,191,1],[233,194,1],[240,198,1],[246,202,1],[250,206,1],[255,210,1],[259,214,1],[262,219,1],[264,225,1],[266,230,1],[267,235,1],[268,241,1],[268,245,1],[267,251,1],[264,255,1],[259,260,1],[252,265,1],[245,268,1],[235,273,1],[226,275,1],[215,277,1],[204,279,1],[194,281,1],[185,282,1],[175,283,1],[167,284,1],[160,284,1],[155,284,1],[150,284,1],[148,284,1],[145,284,1],[144,285,1],[143,285,1],[143,286,1],[143,288,1],[145,291,1]]},{\"Name\":\"4\",\"Points\":[[236,96,1],[227,106,1],[220,119,1],[212,136,1],[201,155,1],[191,172,1],[181,188,1],[174,201,1],[166,214,1],[161,223,1],[158,230,1],[157,236,1],[157,241,1],[157,245,1],[159,249,1],[167,250,1],[180,253,1],[194,253,1],[213,253,1],[233,253,1],[254,253,1],[273,252,1],[289,252,1],[304,252,1],[315,252,1],[325,252,1],[334,253,1],[338,254,1],[340,254,1],[248,214,2],[241,222,2],[239,231,2],[236,241,2],[233,253,2],[231,266,2],[229,278,2],[228,291,2],[226,299,2],[226,310,2],[224,319,2]]},{\"Name\":\"4\",\"Points\":[[226,87,1],[219,92,1],[214,99,1],[209,108,1],[204,119,1],[198,129,1],[192,139,1],[186,149,1],[180,162,1],[173,173,1],[165,185,1],[158,197,1],[152,208,1],[147,217,1],[142,222,1],[138,228,1],[137,231,1],[136,233,1],[136,235,1],[137,235,1],[141,235,1],[148,235,1],[159,235,1],[173,235,1],[186,235,1],[201,235,1],[214,235,1],[226,235,1],[240,234,1],[250,233,1],[260,232,1],[269,231,1],[275,231,1],[280,230,1],[283,230,1],[286,230,1],[287,230,1],[288,230,1],[287,230,1],[216,183,2],[211,187,2],[211,193,2],[211,200,2],[211,208,2],[211,219,2],[211,230,2],[210,244,2],[210,256,2],[208,269,2],[207,282,2],[204,296,2],[203,308,2],[200,319,2],[197,328,2],[194,336,2],[193,342,2]]},{\"Name\":\"4\",\"Points\":[[209,96,1],[204,96,1],[201,104,1],[193,118,1],[185,130,1],[175,145,1],[165,160,1],[156,175,1],[147,189,1],[139,202,1],[135,214,1],[133,223,1],[133,230,1],[133,235,1],[135,240,1],[141,244,1],[152,246,1],[165,247,1],[184,247,1],[204,247,1],[225,247,1],[246,246,1],[265,246,1],[283,245,1],[297,245,1],[309,245,1],[318,245,1],[325,245,1],[329,245,1],[330,246,1],[328,247,1],[227,213,2],[224,222,2],[223,229,2],[223,240,2],[220,251,2],[218,262,2],[217,272,2],[213,284,2],[211,295,2],[208,305,2],[204,315,2]]},{\"Name\":\"5\",\"Points\":[[172,113,1],[168,115,1],[168,119,1],[168,129,1],[167,141,1],[166,152,1],[164,164,1],[162,171,1],[162,179,1],[162,184,1],[162,188,1],[163,191,1],[168,195,1],[176,198,1],[184,203,1],[194,208,1],[204,214,1],[212,222,1],[220,229,1],[226,236,1],[231,245,1],[234,253,1],[236,261,1],[237,271,1],[238,278,1],[238,288,1],[236,296,1],[230,303,1],[223,309,1],[213,314,1],[203,317,1],[190,319,1],[178,319,1],[165,319,1],[154,319,1],[143,317,1],[137,315,1],[132,313,1],[128,310,1],[125,307,1],[124,304,1],[177,120,2],[181,114,2],[187,114,2],[196,114,2],[204,113,2],[214,112,2],[223,111,2],[232,110,2],[242,110,2],[250,110,2],[257,110,2],[264,110,2],[270,110,2],[274,110,2],[278,110,2],[280,111,2],[282,114,2]]},{\"Name\":\"5\",\"Points\":[[193,131,1],[187,135,1],[186,141,1],[183,148,1],[181,160,1],[178,170,1],[176,182,1],[175,190,1],[175,198,1],[175,206,1],[176,212,1],[179,217,1],[185,221,1],[194,224,1],[203,229,1],[212,233,1],[221,239,1],[228,245,1],[235,251,1],[239,257,1],[242,264,1],[245,273,1],[246,280,1],[246,291,1],[242,299,1],[236,308,1],[227,315,1],[218,320,1],[205,324,1],[193,325,1],[181,325,1],[168,324,1],[159,323,1],[152,320,1],[147,318,1],[143,316,1],[141,313,1],[139,310,1],[202,129,2],[204,130,2],[209,130,2],[218,130,2],[226,130,2],[237,130,2],[248,130,2],[259,130,2],[269,130,2],[278,130,2],[284,130,2],[291,130,2],[296,130,2],[300,130,2],[303,131,2],[306,133,2]]},{\"Name\":\"5\",\"Points\":[[161,115,1],[159,126,1],[159,135,1],[159,144,1],[159,158,1],[158,170,1],[158,181,1],[157,190,1],[157,198,1],[157,205,1],[157,208,1],[157,211,1],[159,212,1],[163,212,1],[171,213,1],[180,215,1],[190,217,1],[200,222,1],[209,227,1],[218,231,1],[226,239,1],[231,246,1],[236,254,1],[239,261,1],[241,269,1],[241,276,1],[241,285,1],[239,292,1],[234,298,1],[226,303,1],[216,306,1],[204,307,1],[192,307,1],[180,307,1],[167,306,1],[157,304,1],[148,302,1],[141,299,1],[137,297,1],[134,293,1],[172,109,2],[174,107,2],[180,109,2],[187,111,2],[197,112,2],[207,112,2],[218,112,2],[227,112,2],[238,112,2],[249,113,2],[260,113,2],[270,114,2],[278,115,2],[286,116,2],[293,118,2]]},{\"Name\":\"6\",\"Points\":[[260,97,1],[251,87,1],[246,90,1],[236,98,1],[226,107,1],[218,118,1],[208,129,1],[200,141,1],[192,155,1],[185,170,1],[179,185,1],[174,200,1],[170,217,1],[168,230,1],[168,244,1],[168,255,1],[171,266,1],[176,274,1],[183,278,1],[192,281,1],[203,282,1],[214,282,1],[225,278,1],[232,273,1],[238,268,1],[241,261,1],[244,254,1],[245,248,1],[245,240,1],[244,232,1],[241,226,1],[235,217,1],[229,212,1],[223,208,1],[218,207,1],[212,206,1],[205,205,1],[199,205,1],[194,207,1],[190,209,1],[186,212,1],[185,214,1],[184,217,1],[185,220,1]]},{\"Name\":\"6\",\"Points\":[[267,92,1],[255,95,1],[247,97,1],[236,107,1],[226,119,1],[217,129,1],[208,142,1],[200,157,1],[193,171,1],[185,186,1],[181,203,1],[176,219,1],[172,235,1],[171,250,1],[171,263,1],[171,275,1],[174,285,1],[181,292,1],[187,297,1],[196,299,1],[208,299,1],[219,297,1],[231,290,1],[241,281,1],[246,274,1],[250,266,1],[252,258,1],[253,251,1],[253,242,1],[253,235,1],[249,228,1],[244,222,1],[239,217,1],[233,214,1],[226,212,1],[218,212,1],[208,212,1],[200,215,1],[193,218,1],[186,222,1],[182,226,1],[181,228,1],[181,231,1],[181,235,1]]},{\"Name\":\"6\",\"Points\":[[245,77,1],[235,75,1],[230,77,1],[223,87,1],[214,97,1],[204,111,1],[195,124,1],[184,142,1],[177,157,1],[168,175,1],[161,190,1],[157,208,1],[153,227,1],[149,244,1],[148,257,1],[148,272,1],[148,283,1],[152,293,1],[158,300,1],[166,304,1],[178,305,1],[190,305,1],[205,300,1],[218,293,1],[226,283,1],[232,275,1],[237,265,1],[240,257,1],[241,249,1],[241,240,1],[237,230,1],[231,222,1],[225,216,1],[217,210,1],[209,208,1],[201,206,1],[192,205,1],[183,205,1],[174,208,1],[166,214,1],[160,220,1],[157,226,1],[155,230,1],[155,235,1],[156,240,1]]},{\"Name\":\"7\",\"Points\":[[146,116,1],[154,110,1],[165,109,1],[180,105,1],[196,101,1],[212,98,1],[226,97,1],[241,95,1],[252,94,1],[261,94,1],[269,96,1],[273,100,1],[275,109,1],[277,119,1],[277,131,1],[274,145,1],[269,160,1],[263,175,1],[255,192,1],[248,208,1],[241,226,1],[234,242,1],[226,258,1],[220,274,1],[214,287,1],[208,300,1],[204,311,1],[200,320,1],[197,329,1],[195,334,1],[194,339,1],[193,342,1],[193,343,1],[194,342,1],[219,214,2],[223,212,2],[228,212,2],[240,212,2],[251,212,2],[264,211,2],[274,211,2],[288,210,2]]},{\"Name\":\"7\",\"Points\":[[146,106,1],[149,106,1],[155,106,1],[162,106,1],[176,106,1],[187,105,1],[200,105,1],[211,103,1],[220,102,1],[227,101,1],[235,101,1],[242,102,1],[246,106,1],[248,112,1],[249,120,1],[249,132,1],[248,145,1],[243,160,1],[237,175,1],[231,189,1],[225,206,1],[218,222,1],[211,237,1],[204,253,1],[199,268,1],[193,281,1],[188,295,1],[184,304,1],[181,315,1],[178,322,1],[176,329,1],[175,333,1],[174,336,1],[173,338,1]]},{\"Name\":\"7\",\"Points\":[[151,107,1],[155,105,1],[162,105,1],[175,105,1],[188,102,1],[204,100,1],[217,97,1],[229,95,1],[241,93,1],[249,92,1],[257,92,1],[264,95,1],[268,99,1],[270,105,1],[272,115,1],[272,126,1],[272,139,1],[269,154,1],[264,169,1],[260,186,1],[255,203,1],[249,220,1],[243,237,1],[236,254,1],[228,273,1],[223,291,1],[215,308,1],[209,323,1],[204,337,1],[201,346,1],[199,355,1],[197,362,1],[196,365,1],[196,367,1],[198,367,1],[236,203,2],[239,203,2],[246,203,2],[251,203,2],[258,204,2],[269,205,2],[277,205,2],[287,205,2]]},{\"Name\":\"8\",\"Points\":[[299,133,1],[291,119,1],[285,113,1],[278,108,1],[270,105,1],[259,105,1],[247,106,1],[234,113,1],[226,119,1],[218,126,1],[211,134,1],[207,142,1],[204,151,1],[204,160,1],[204,169,1],[204,181,1],[210,191,1],[218,203,1],[226,212,1],[235,223,1],[243,233,1],[250,242,1],[257,250,1],[263,259,1],[268,268,1],[271,276,1],[273,284,1],[273,292,1],[273,300,1],[269,306,1],[261,312,1],[251,316,1],[242,317,1],[231,317,1],[220,316,1],[211,312,1],[204,305,1],[198,298,1],[193,290,1],[190,282,1],[190,272,1],[190,260,1],[192,250,1],[198,240,1],[205,229,1],[212,221,1],[223,211,1],[231,203,1],[242,194,1],[252,186,1],[262,178,1],[270,170,1],[277,163,1],[283,155,1],[288,148,1],[291,142,1],[293,137,1],[293,130,1],[293,126,1],[293,121,1],[293,117,1],[288,112,1],[284,109,1],[279,105,1],[275,102,1],[272,100,1],[270,100,1],[270,99,1],[270,103,1]]},{\"Name\":\"8\",\"Points\":[[283,112,1],[274,105,1],[265,104,1],[255,103,1],[243,103,1],[227,110,1],[215,118,1],[204,126,1],[197,136,1],[192,143,1],[189,151,1],[189,160,1],[189,170,1],[193,180,1],[202,191,1],[211,201,1],[223,212,1],[232,222,1],[243,231,1],[251,242,1],[260,253,1],[266,264,1],[270,273,1],[273,284,1],[274,295,1],[274,306,1],[271,317,1],[265,324,1],[256,330,1],[246,333,1],[233,333,1],[223,333,1],[210,332,1],[201,327,1],[192,320,1],[185,310,1],[181,299,1],[180,287,1],[180,275,1],[181,259,1],[188,246,1],[199,232,1],[209,221,1],[225,207,1],[240,194,1],[252,185,1],[264,174,1],[274,165,1],[281,158,1],[286,152,1],[288,147,1],[290,141,1],[290,136,1],[290,130,1],[288,126,1],[287,123,1],[285,119,1],[283,118,1]]},{\"Name\":\"8\",\"Points\":[[269,110,1],[252,102,1],[243,102,1],[234,102,1],[223,105,1],[211,112,1],[200,119,1],[190,129,1],[182,136,1],[178,144,1],[176,151,1],[175,159,1],[175,166,1],[179,176,1],[185,185,1],[195,195,1],[206,206,1],[217,216,1],[227,227,1],[237,236,1],[246,247,1],[253,256,1],[259,266,1],[263,275,1],[265,287,1],[267,296,1],[267,306,1],[265,314,1],[259,321,1],[250,326,1],[240,329,1],[227,330,1],[216,330,1],[204,329,1],[192,326,1],[182,320,1],[174,314,1],[167,305,1],[163,296,1],[161,286,1],[161,273,1],[166,258,1],[176,244,1],[186,230,1],[201,215,1],[212,204,1],[225,192,1],[235,183,1],[243,175,1],[250,169,1],[255,164,1],[259,159,1],[262,155,1],[264,151,1],[264,147,1],[264,142,1],[264,140,1],[264,137,1],[264,133,1],[264,130,1],[264,128,1],[264,126,1],[264,124,1]]},{\"Name\":\"9\",\"Points\":[[255,122,1],[234,115,1],[223,115,1],[208,118,1],[190,127,1],[172,138,1],[161,147,1],[152,159,1],[147,168,1],[143,178,1],[143,186,1],[144,197,1],[151,206,1],[160,214,1],[172,220,1],[185,222,1],[200,223,1],[217,222,1],[231,217,1],[248,205,1],[260,194,1],[269,181,1],[274,168,1],[278,158,1],[279,148,1],[280,141,1],[281,137,1],[281,133,1],[279,130,1],[277,129,1],[274,129,1],[272,129,1],[269,132,1],[267,139,1],[265,147,1],[265,157,1],[265,168,1],[265,180,1],[266,193,1],[269,208,1],[270,222,1],[272,235,1],[273,249,1],[274,261,1],[274,273,1],[274,286,1],[270,297,1],[264,310,1],[258,318,1],[249,325,1],[238,331,1],[226,334,1],[213,336,1],[202,336,1],[190,336,1],[181,335,1],[173,333,1],[167,332,1],[163,329,1],[158,327,1]]},{\"Name\":\"9\",\"Points\":[[275,101,1],[263,92,1],[255,92,1],[248,92,1],[237,93,1],[225,100,1],[215,109,1],[206,119,1],[199,129,1],[195,138,1],[193,147,1],[193,157,1],[195,166,1],[202,175,1],[210,182,1],[223,187,1],[234,189,1],[250,189,1],[266,186,1],[279,177,1],[289,166,1],[296,155,1],[301,144,1],[305,134,1],[306,127,1],[308,121,1],[308,117,1],[308,115,1],[308,114,1],[306,113,1],[305,113,1],[303,113,1],[301,115,1],[300,119,1],[299,124,1],[299,133,1],[299,142,1],[300,154,1],[303,166,1],[306,180,1],[310,192,1],[312,206,1],[314,219,1],[315,232,1],[315,245,1],[315,259,1],[310,273,1],[303,284,1],[293,295,1],[283,301,1],[270,307,1],[258,310,1],[245,311,1],[231,311,1],[219,311,1],[210,310,1],[204,308,1],[199,307,1],[195,305,1]]},{\"Name\":\"9\",\"Points\":[[235,104,1],[221,94,1],[212,92,1],[201,91,1],[186,94,1],[171,102,1],[158,113,1],[145,124,1],[137,134,1],[132,142,1],[129,152,1],[129,161,1],[130,170,1],[136,178,1],[145,184,1],[157,186,1],[174,186,1],[194,182,1],[211,171,1],[226,158,1],[235,146,1],[242,133,1],[248,123,1],[250,115,1],[252,109,1],[253,105,1],[253,104,1],[253,103,1],[251,103,1],[248,106,1],[245,110,1],[243,117,1],[241,124,1],[241,135,1],[241,147,1],[241,161,1],[241,175,1],[241,189,1],[242,203,1],[243,217,1],[243,230,1],[243,243,1],[243,255,1],[243,268,1],[243,281,1],[242,291,1],[241,300,1],[240,305,1],[239,310,1],[239,315,1],[239,316,1]]},{\"Name\":\",\",\"Points\":[[207,270,1],[204,275,1],[203,281,1],[201,287,1],[198,294,1],[195,298,1],[190,304,1],[186,310,1],[181,315,1],[176,320,1],[171,323,1],[166,326,1],[161,327,1],[158,328,1],[153,329,1],[150,329,1],[148,329,1],[146,329,1],[143,329,1]]},{\"Name\":\",\",\"Points\":[[241,265,1],[246,273,1],[246,277,1],[247,282,1],[248,289,1],[248,297,1],[248,302,1],[248,310,1],[246,318,1],[244,324,1],[241,329,1],[239,334,1],[237,338,1],[236,339,1]]},{\"Name\":\",\",\"Points\":[[222,275,1],[222,280,1],[222,285,1],[222,292,1],[221,299,1],[218,306,1],[214,315,1],[209,321,1],[204,329,1],[199,337,1]]},{\"Name\":\"x\",\"Points\":[[146,182,1],[153,189,1],[158,194,1],[165,202,1],[172,210,1],[181,219,1],[187,228,1],[194,236,1],[201,245,1],[208,252,1],[213,259,1],[219,266,1],[224,272,1],[227,277,1],[231,281,1],[235,285,1],[237,287,1],[239,289,1],[241,290,1],[155,267,2],[159,259,2],[161,254,2],[165,250,2],[171,242,2],[176,234,2],[181,227,2],[188,219,2],[194,212,2],[199,207,2],[204,200,2],[207,197,2],[210,194,2],[213,191,2],[216,189,2],[218,189,2],[218,187,2]]},{\"Name\":\"x\",\"Points\":[[171,194,1],[176,201,1],[179,206,1],[182,211,1],[188,218,1],[194,226,1],[201,231,1],[206,239,1],[212,246,1],[218,253,1],[223,259,1],[227,264,1],[231,271,1],[235,275,1],[238,277,1],[241,281,1],[242,282,1],[243,284,1],[243,285,1],[178,275,2],[181,267,2],[182,261,2],[186,255,2],[192,248,2],[199,240,2],[204,232,2],[208,226,2],[213,219,2],[218,213,2],[222,210,2],[225,208,2],[227,206,2],[231,204,2]]},{\"Name\":\"x\",\"Points\":[[184,194,1],[186,198,1],[188,204,1],[192,210,1],[195,217,1],[200,226,1],[204,232,1],[208,241,1],[213,248,1],[217,255,1],[222,263,1],[225,269,1],[228,275,1],[231,279,1],[233,282,1],[235,285,1],[236,287,1],[181,280,2],[183,268,2],[187,263,2],[194,256,2],[201,250,2],[207,241,2],[213,233,2],[219,227,2],[224,221,2],[227,215,2],[231,211,2],[235,209,2],[239,208,2],[242,206,2]]},{\"Name\":\"a\",\"Points\":[[206,231,1],[191,227,1],[185,227,1],[176,229,1],[167,233,1],[159,240,1],[153,246,1],[148,253,1],[144,259,1],[143,265,1],[143,270,1],[143,275,1],[147,282,1],[152,286,1],[157,288,1],[163,290,1],[171,290,1],[179,289,1],[185,284,1],[190,278,1],[196,273,1],[199,265,1],[203,259,1],[204,253,1],[206,248,1],[208,245,1],[208,241,1],[209,240,1],[210,239,1],[210,238,1],[210,240,1],[210,245,1],[210,249,1],[211,254,1],[212,261,1],[213,269,1],[215,276,1],[219,282,1],[224,289,1],[228,293,1],[233,296,1],[242,297,1],[250,297,1],[258,296,1],[269,292,1],[278,287,1],[289,282,1]]},{\"Name\":\"a\",\"Points\":[[199,217,1],[186,214,1],[181,214,1],[176,216,1],[167,222,1],[161,228,1],[157,234,1],[153,241,1],[152,246,1],[151,251,1],[151,256,1],[153,262,1],[158,267,1],[162,270,1],[171,273,1],[178,273,1],[185,272,1],[193,267,1],[198,262,1],[202,255,1],[205,250,1],[208,242,1],[208,235,1],[210,230,1],[211,226,1],[212,222,1],[213,218,1],[213,217,1],[213,219,1],[213,223,1],[213,228,1],[213,234,1],[213,240,1],[214,249,1],[218,254,1],[222,261,1],[226,266,1],[231,271,1],[236,274,1],[245,275,1],[254,275,1],[264,275,1]]},{\"Name\":\"a\",\"Points\":[[213,208,1],[199,200,1],[194,200,1],[190,201,1],[182,207,1],[176,212,1],[169,220,1],[165,227,1],[161,233,1],[161,239,1],[161,246,1],[161,253,1],[164,259,1],[170,265,1],[176,269,1],[181,271,1],[190,271,1],[199,270,1],[204,265,1],[208,259,1],[213,253,1],[215,245,1],[217,235,1],[218,230,1],[218,222,1],[219,217,1],[219,213,1],[219,211,1],[219,210,1],[219,211,1],[219,214,1],[219,219,1],[219,226,1],[219,234,1],[221,242,1],[223,250,1],[226,255,1],[231,262,1],[237,267,1],[245,269,1],[252,270,1],[264,270,1],[273,269,1]]},{\"Name\":\"b\",\"Points\":[[170,133,1],[171,138,1],[171,143,1],[172,153,1],[175,165,1],[176,178,1],[177,192,1],[178,207,1],[178,224,1],[178,240,1],[177,253,1],[176,268,1],[174,278,1],[173,288,1],[173,294,1],[173,296,1],[173,297,1],[173,294,1],[174,287,1],[176,280,1],[180,274,1],[183,268,1],[189,261,1],[194,256,1],[199,253,1],[204,251,1],[209,250,1],[216,249,1],[221,249,1],[226,249,1],[229,251,1],[233,254,1],[236,259,1],[238,264,1],[240,268,1],[241,273,1],[241,278,1],[238,284,1],[233,291,1],[226,297,1],[218,301,1],[211,305,1],[204,307,1],[196,308,1],[189,308,1],[182,308,1],[178,307,1],[176,304,1],[173,300,1],[172,298,1],[172,297,1],[173,295,1],[177,293,1]]},{\"Name\":\"b\",\"Points\":[[209,142,1],[208,148,1],[208,156,1],[209,165,1],[210,175,1],[211,189,1],[212,202,1],[212,217,1],[212,231,1],[212,246,1],[210,259,1],[208,273,1],[206,281,1],[204,289,1],[204,294,1],[204,297,1],[204,295,1],[204,288,1],[206,282,1],[209,275,1],[213,267,1],[218,258,1],[222,252,1],[226,245,1],[230,238,1],[236,233,1],[242,230,1],[248,228,1],[256,227,1],[264,227,1],[270,227,1],[277,228,1],[283,231,1],[288,236,1],[293,242,1],[296,250,1],[299,255,1],[301,262,1],[301,269,1],[301,275,1],[298,282,1],[293,290,1],[287,297,1],[278,301,1],[270,305,1],[261,308,1],[251,310,1],[242,310,1],[234,310,1],[226,309,1],[219,306,1],[215,305,1],[212,303,1],[209,301,1],[208,300,1],[208,298,1]]},{\"Name\":\"b\",\"Points\":[[216,142,1],[211,157,1],[211,165,1],[211,178,1],[211,190,1],[212,204,1],[213,219,1],[213,234,1],[213,250,1],[213,264,1],[211,277,1],[210,292,1],[209,300,1],[208,307,1],[208,312,1],[208,316,1],[208,317,1],[208,315,1],[224,244,2],[226,239,2],[231,239,2],[238,240,2],[246,241,2],[251,244,2],[258,247,2],[263,251,2],[268,254,2],[270,261,2],[273,268,2],[273,274,2],[273,282,2],[273,291,2],[269,298,2],[264,305,2],[256,311,2],[250,315,2],[242,318,2],[233,320,2],[225,320,2],[217,320,2],[211,320,2],[206,320,2],[204,319,2],[202,317,2],[202,316,2],[202,314,2]]},{\"Name\":\"c\",\"Points\":[[236,224,1],[223,214,1],[218,213,1],[212,213,1],[204,216,1],[194,222,1],[184,229,1],[176,237,1],[167,245,1],[161,253,1],[157,262,1],[154,269,1],[153,275,1],[153,284,1],[154,292,1],[159,297,1],[165,300,1],[174,302,1],[182,303,1],[192,303,1],[204,303,1],[212,301,1],[222,299,1],[229,297,1],[236,294,1],[245,290,1],[249,286,1]]},{\"Name\":\"c\",\"Points\":[[261,207,1],[248,203,1],[240,203,1],[229,204,1],[220,208,1],[210,212,1],[202,218,1],[194,226,1],[187,232,1],[183,239,1],[181,246,1],[180,252,1],[180,258,1],[180,264,1],[181,270,1],[186,275,1],[193,278,1],[201,280,1],[210,282,1],[221,282,1],[231,282,1],[241,282,1],[250,281,1],[259,278,1],[267,277,1],[273,276,1],[280,275,1],[287,273,1]]},{\"Name\":\"c\",\"Points\":[[245,208,1],[233,198,1],[228,196,1],[221,196,1],[210,197,1],[200,202,1],[190,207,1],[181,212,1],[173,220,1],[166,227,1],[161,235,1],[159,241,1],[158,248,1],[158,253,1],[158,259,1],[160,264,1],[166,267,1],[173,269,1],[182,271,1],[195,271,1],[206,271,1],[218,270,1],[226,268,1],[234,267,1],[241,265,1],[248,264,1],[251,264,1]]},{\"Name\":\"d\",\"Points\":[[211,240,1],[197,233,1],[189,233,1],[181,233,1],[170,238,1],[161,244,1],[153,251,1],[146,259,1],[142,266,1],[141,272,1],[141,277,1],[142,283,1],[148,289,1],[155,292,1],[164,293,1],[177,293,1],[190,287,1],[204,275,1],[214,262,1],[224,247,1],[231,227,1],[237,212,1],[242,194,1],[246,179,1],[247,165,1],[248,154,1],[248,147,1],[248,141,1],[248,138,1],[247,138,1],[246,138,1],[245,141,1],[244,150,1],[241,162,1],[241,174,1],[240,187,1],[238,203,1],[237,217,1],[237,233,1],[237,248,1],[237,261,1],[237,271,1],[237,279,1],[238,286,1],[239,290,1],[241,292,1],[241,294,1],[242,295,1],[243,295,1],[244,295,1],[245,295,1],[246,294,1]]},{\"Name\":\"d\",\"Points\":[[192,229,1],[176,220,1],[166,218,1],[158,217,1],[149,217,1],[139,222,1],[132,227,1],[126,234,1],[123,240,1],[121,246,1],[121,253,1],[122,259,1],[128,266,1],[136,272,1],[144,275,1],[154,277,1],[166,277,1],[181,273,1],[192,262,1],[203,248,1],[211,231,1],[218,214,1],[223,197,1],[226,182,1],[226,170,1],[227,162,1],[227,156,1],[227,152,1],[227,151,1],[227,150,1],[226,150,1],[226,155,1],[225,163,1],[224,172,1],[223,186,1],[223,198,1],[223,213,1],[223,227,1],[223,240,1],[223,251,1],[223,261,1],[223,270,1],[225,276,1],[228,282,1],[232,285,1],[239,287,1],[248,287,1],[259,285,1],[269,281,1],[278,276,1]]},{\"Name\":\"d\",\"Points\":[[205,222,1],[194,221,1],[190,222,1],[184,226,1],[179,233,1],[176,240,1],[173,247,1],[172,253,1],[172,259,1],[173,264,1],[175,267,1],[179,268,1],[184,268,1],[193,268,1],[203,259,1],[212,249,1],[220,235,1],[226,221,1],[230,205,1],[233,189,1],[236,174,1],[236,162,1],[237,152,1],[237,147,1],[237,143,1],[237,142,1],[236,144,1],[236,153,1],[235,164,1],[234,176,1],[233,190,1],[232,206,1],[231,221,1],[231,236,1],[230,250,1],[229,263,1],[228,271,1],[228,277,1],[228,281,1],[228,283,1],[228,284,1]]},{\"Name\":\"e\",\"Points\":[[148,233,1],[152,235,1],[158,235,1],[166,235,1],[178,234,1],[189,231,1],[198,227,1],[204,222,1],[207,218,1],[209,214,1],[210,211,1],[210,208,1],[209,205,1],[204,203,1],[197,202,1],[189,202,1],[180,203,1],[170,207,1],[161,212,1],[153,220,1],[146,227,1],[140,233,1],[137,240,1],[134,247,1],[134,252,1],[134,258,1],[134,264,1],[136,268,1],[141,272,1],[148,274,1],[158,275,1],[169,275,1],[181,275,1],[191,275,1],[199,273,1],[208,272,1],[217,270,1]]},{\"Name\":\"e\",\"Points\":[[164,254,1],[171,258,1],[179,259,1],[190,259,1],[201,259,1],[212,256,1],[223,251,1],[230,245,1],[235,239,1],[238,235,1],[239,230,1],[239,227,1],[238,222,1],[232,219,1],[226,217,1],[216,216,1],[204,216,1],[193,217,1],[181,222,1],[171,227,1],[161,235,1],[155,243,1],[149,251,1],[146,259,1],[144,266,1],[144,274,1],[145,282,1],[151,289,1],[158,295,1],[167,298,1],[180,300,1],[192,300,1],[204,300,1],[218,300,1],[228,299,1],[241,297,1]]},{\"Name\":\"e\",\"Points\":[[166,269,1],[172,269,1],[180,269,1],[190,267,1],[201,263,1],[213,256,1],[223,250,1],[229,243,1],[234,238,1],[236,233,1],[236,230,1],[236,227,1],[233,226,1],[225,225,1],[214,225,1],[203,227,1],[188,232,1],[176,240,1],[166,247,1],[159,254,1],[153,264,1],[150,271,1],[149,277,1],[149,286,1],[153,292,1],[160,297,1],[171,301,1],[182,303,1],[197,303,1],[214,303,1],[230,300,1],[242,297,1]]},{\"Name\":\"f\",\"Points\":[[137,253,1],[138,244,1],[145,237,1],[158,227,1],[171,211,1],[184,195,1],[195,180,1],[203,165,1],[208,149,1],[211,137,1],[213,124,1],[213,115,1],[213,109,1],[213,105,1],[208,103,1],[200,103,1],[191,108,1],[183,116,1],[177,125,1],[172,137,1],[169,150,1],[166,164,1],[165,180,1],[164,198,1],[164,216,1],[164,235,1],[164,251,1],[163,270,1],[162,284,1],[161,300,1],[159,314,1],[158,324,1],[156,333,1],[155,339,1],[154,343,1],[153,345,1],[153,346,1],[152,346,1],[137,297,2],[144,289,2],[153,286,2],[161,282,2],[172,278,2],[182,275,2],[193,269,2],[204,264,2],[213,259,2]]},{\"Name\":\"f\",\"Points\":[[157,265,1],[159,252,1],[166,243,1],[177,231,1],[188,218,1],[199,204,1],[207,190,1],[214,175,1],[218,164,1],[219,154,1],[220,147,1],[220,141,1],[219,138,1],[216,138,1],[210,139,1],[204,146,1],[200,155,1],[197,165,1],[194,177,1],[193,190,1],[191,208,1],[190,227,1],[189,245,1],[188,262,1],[187,278,1],[186,295,1],[185,308,1],[183,320,1],[181,330,1],[181,337,1],[181,341,1],[180,342,1],[160,300,2],[165,293,2],[172,289,2],[181,283,2],[194,276,2],[203,271,2],[212,264,2],[218,259,2]]},{\"Name\":\"f\",\"Points\":[[134,268,1],[138,260,1],[146,254,1],[158,245,1],[168,233,1],[181,217,1],[191,202,1],[199,189,1],[204,175,1],[206,163,1],[208,153,1],[208,144,1],[208,139,1],[208,136,1],[204,134,1],[199,134,1],[192,140,1],[184,148,1],[176,162,1],[171,174,1],[167,189,1],[164,206,1],[162,224,1],[161,243,1],[161,261,1],[160,279,1],[160,295,1],[160,310,1],[160,323,1],[160,333,1],[160,342,1],[160,348,1],[160,352,1],[160,353,1],[141,309,2],[147,299,2],[154,295,2],[163,289,2],[173,283,2],[184,278,2],[194,272,2]]},{\"Name\":\"g\",\"Points\":[[196,170,1],[179,164,1],[170,164,1],[159,167,1],[148,175,1],[138,186,1],[134,195,1],[130,207,1],[130,215,1],[131,223,1],[136,229,1],[146,232,1],[157,232,1],[172,230,1],[190,220,1],[204,207,1],[213,194,1],[221,181,1],[224,170,1],[226,162,1],[226,157,1],[226,155,1],[226,154,1],[225,154,1],[222,161,1],[219,168,1],[216,179,1],[213,190,1],[213,203,1],[213,216,1],[213,230,1],[214,248,1],[215,261,1],[216,276,1],[217,292,1],[217,305,1],[214,319,1],[210,330,1],[204,341,1],[199,348,1],[192,354,1],[186,357,1],[181,358,1],[175,358,1],[171,357,1],[167,352,1],[166,346,1],[166,337,1],[170,327,1],[178,315,1],[186,305,1],[198,294,1],[208,282,1],[222,269,1],[236,255,1],[252,245,1],[269,232,1]]},{\"Name\":\"g\",\"Points\":[[229,185,1],[213,183,1],[199,182,1],[182,183,1],[167,189,1],[155,198,1],[145,209,1],[139,220,1],[137,229,1],[137,237,1],[138,245,1],[143,250,1],[150,252,1],[159,253,1],[175,252,1],[190,244,1],[208,229,1],[222,212,1],[230,199,1],[236,188,1],[238,180,1],[239,175,1],[240,174,1],[240,180,1],[238,193,1],[234,208,1],[230,224,1],[226,240,1],[220,256,1],[215,273,1],[210,290,1],[204,306,1],[199,321,1],[191,334,1],[185,343,1],[180,351,1],[175,353,1],[171,353,1],[166,352,1],[162,347,1],[161,339,1],[161,329,1],[161,318,1],[171,305,1],[181,297,1],[191,286,1],[203,278,1],[213,272,1],[226,266,1],[239,259,1],[253,253,1],[270,244,1]]},{\"Name\":\"g\",\"Points\":[[237,161,1],[225,147,1],[218,145,1],[209,145,1],[196,147,1],[182,157,1],[170,168,1],[161,179,1],[158,188,1],[156,196,1],[156,205,1],[159,212,1],[166,218,1],[176,222,1],[186,223,1],[202,222,1],[216,215,1],[227,204,1],[236,191,1],[241,183,1],[244,175,1],[245,169,1],[246,165,1],[246,164,1],[246,163,1],[244,163,1],[241,167,1],[238,175,1],[236,183,1],[233,194,1],[231,205,1],[231,217,1],[231,231,1],[231,244,1],[230,256,1],[229,269,1],[226,281,1],[224,294,1],[220,305,1],[215,317,1],[209,325,1],[204,333,1],[199,338,1],[194,339,1],[190,339,1],[187,338,1],[185,333,1],[184,325,1],[184,317,1],[186,307,1],[194,297,1],[204,289,1],[216,280,1],[228,273,1],[242,264,1],[256,256,1],[271,250,1],[284,244,1]]},{\"Name\":\"l\",\"Points\":[[120,272,1],[126,259,1],[133,253,1],[138,245,1],[149,234,1],[158,223,1],[166,209,1],[175,196,1],[181,182,1],[187,168,1],[192,155,1],[195,144,1],[199,133,1],[201,126,1],[203,120,1],[204,116,1],[204,113,1],[204,111,1],[202,111,1],[197,111,1],[191,116,1],[184,123,1],[176,133,1],[168,144,1],[162,157,1],[158,170,1],[155,184,1],[152,199,1],[148,215,1],[144,232,1],[141,250,1],[139,264,1],[138,277,1],[138,289,1],[138,297,1],[141,301,1],[145,304,1],[152,305,1],[162,303,1],[178,297,1],[191,289,1]]},{\"Name\":\"l\",\"Points\":[[174,250,1],[170,244,1],[170,239,1],[171,233,1],[176,226,1],[184,215,1],[193,203,1],[201,189,1],[208,174,1],[214,159,1],[219,144,1],[223,132,1],[224,122,1],[225,115,1],[226,110,1],[226,106,1],[226,105,1],[224,105,1],[218,110,1],[211,119,1],[204,130,1],[199,142,1],[194,157,1],[190,172,1],[187,189,1],[184,208,1],[181,226,1],[180,245,1],[177,261,1],[176,275,1],[176,289,1],[176,297,1],[176,306,1],[179,313,1],[182,316,1],[190,319,1],[199,319,1],[212,315,1],[226,306,1],[236,297,1]]},{\"Name\":\"l\",\"Points\":[[154,266,1],[153,253,1],[159,245,1],[169,233,1],[180,220,1],[191,203,1],[202,186,1],[208,170,1],[215,155,1],[219,142,1],[222,130,1],[223,123,1],[223,118,1],[223,115,1],[223,113,1],[221,112,1],[217,113,1],[211,118,1],[204,125,1],[199,134,1],[191,147,1],[185,160,1],[181,174,1],[178,189,1],[174,203,1],[170,218,1],[167,234,1],[164,250,1],[162,264,1],[161,277,1],[160,291,1],[160,303,1],[160,315,1],[160,323,1],[161,331,1],[164,338,1],[169,342,1],[174,345,1],[181,346,1],[189,346,1],[199,342,1],[207,336,1],[217,329,1],[226,323,1],[233,317,1]]},{\"Name\":\"i\",\"Points\":[[194,201,1],[189,205,1],[188,214,1],[185,225,1],[181,237,1],[177,248,1],[176,256,1],[174,266,1],[174,273,1],[174,277,1],[176,281,1],[181,283,1],[188,283,1],[199,282,1],[211,277,1],[218,272,1],[211,154,2]]},{\"Name\":\"i\",\"Points\":[[225,203,1],[214,211,1],[209,219,1],[204,230,1],[201,242,1],[199,254,1],[199,264,1],[199,274,1],[199,281,1],[204,287,1],[210,289,1],[221,289,1],[235,286,1],[245,275,1],[241,152,2]]},{\"Name\":\"i\",\"Points\":[[204,194,1],[203,197,1],[203,202,1],[202,209,1],[200,219,1],[198,230,1],[195,241,1],[194,250,1],[192,259,1],[192,267,1],[192,273,1],[193,277,1],[195,279,1],[200,281,1],[205,281,1],[211,281,1],[218,280,1],[225,277,1],[232,273,1],[243,264,1],[211,147,2]]},{\"Name\":\"n\",\"Points\":[[136,204,1],[140,196,1],[146,196,1],[153,198,1],[158,202,1],[163,208,1],[166,215,1],[169,224,1],[171,235,1],[171,246,1],[172,256,1],[173,269,1],[173,278,1],[173,288,1],[173,295,1],[173,298,1],[173,301,1],[173,302,1],[173,300,1],[173,294,1],[173,284,1],[173,274,1],[174,261,1],[175,250,1],[178,239,1],[181,230,1],[186,222,1],[192,214,1],[199,208,1],[205,205,1],[212,203,1],[219,203,1],[226,203,1],[231,203,1],[236,208,1],[241,213,1],[244,220,1],[246,229,1],[248,238,1],[249,248,1],[250,258,1],[250,268,1],[250,277,1],[249,287,1],[249,296,1],[248,301,1],[248,305,1],[248,310,1],[248,312,1],[248,313,1],[249,313,1]]},{\"Name\":\"n\",\"Points\":[[131,194,1],[138,190,1],[146,191,1],[154,196,1],[161,203,1],[166,211,1],[172,221,1],[176,231,1],[177,243,1],[178,253,1],[179,262,1],[179,268,1],[179,273,1],[179,276,1],[179,277,1],[179,275,1],[179,267,1],[180,254,1],[184,240,1],[191,227,1],[199,214,1],[206,206,1],[214,198,1],[222,194,1],[226,193,1],[233,193,1],[237,194,1],[241,200,1],[243,208,1],[243,220,1],[243,231,1],[242,244,1],[240,254,1],[238,265,1],[238,273,1],[237,280,1],[237,286,1],[237,290,1],[238,292,1],[241,293,1],[245,293,1],[248,293,1],[253,292,1],[259,291,1],[264,287,1]]},{\"Name\":\"n\",\"Points\":[[103,200,1],[109,191,1],[116,191,1],[125,191,1],[134,191,1],[142,194,1],[149,198,1],[156,204,1],[161,211,1],[165,220,1],[167,230,1],[169,240,1],[170,251,1],[170,261,1],[170,271,1],[170,277,1],[170,281,1],[170,284,1],[170,279,1],[171,273,1],[173,261,1],[177,251,1],[181,240,1],[187,231,1],[194,222,1],[200,215,1],[206,208,1],[213,205,1],[218,203,1],[223,202,1],[228,202,1],[231,204,1],[235,210,1],[236,217,1],[236,227,1],[236,237,1],[236,246,1],[236,255,1],[235,266,1],[234,273,1],[234,281,1],[234,286,1],[234,290,1],[236,292,1],[240,293,1],[247,292,1],[255,289,1],[264,285,1],[274,281,1],[286,277,1]]},{\"Name\":\"o\",\"Points\":[[208,193,1],[201,182,1],[198,179,1],[194,177,1],[190,176,1],[184,176,1],[176,181,1],[170,187,1],[162,194,1],[158,201,1],[153,209,1],[149,217,1],[148,226,1],[147,234,1],[147,242,1],[148,250,1],[153,254,1],[158,259,1],[164,261,1],[171,261,1],[178,261,1],[184,258,1],[190,253,1],[195,245,1],[199,237,1],[201,230,1],[203,222,1],[204,214,1],[204,208,1],[204,202,1],[204,195,1],[204,191,1],[202,187,1],[201,185,1],[199,183,1],[199,182,1],[199,181,1],[201,181,1],[204,181,1],[209,183,1],[217,185,1],[225,185,1],[235,186,1],[248,186,1]]},{\"Name\":\"o\",\"Points\":[[234,199,1],[226,194,1],[219,194,1],[213,194,1],[204,199,1],[194,210,1],[186,222,1],[180,232,1],[176,242,1],[172,251,1],[172,258,1],[172,266,1],[173,271,1],[178,274,1],[183,275,1],[192,275,1],[202,273,1],[211,263,1],[219,253,1],[224,244,1],[227,234,1],[231,227,1],[232,219,1],[234,213,1],[235,208,1],[236,206,1],[237,204,1],[238,203,1],[239,203,1],[241,204,1],[243,206,1],[247,207,1],[253,208,1],[262,208,1],[274,208,1],[288,208,1]]},{\"Name\":\"o\",\"Points\":[[253,215,1],[243,210,1],[231,208,1],[222,205,1],[209,205,1],[194,207,1],[181,212,1],[166,222,1],[156,230,1],[147,239,1],[142,247,1],[138,254,1],[137,261,1],[137,269,1],[138,275,1],[144,280,1],[151,283,1],[159,285,1],[172,285,1],[184,283,1],[199,276,1],[208,267,1],[218,256,1],[226,245,1],[231,233,1],[233,224,1],[235,217,1],[236,212,1],[236,209,1],[236,208,1],[236,208,1],[236,211,1],[237,213,1],[241,218,1],[247,222,1],[255,226,1],[266,229,1],[282,231,1],[299,231,1],[317,231,1]]},{\"Name\":\"s\",\"Points\":[[261,203,1],[250,194,1],[241,193,1],[230,193,1],[214,195,1],[199,203,1],[183,210,1],[171,218,1],[164,224,1],[159,230,1],[158,235,1],[158,242,1],[158,249,1],[164,254,1],[173,259,1],[183,264,1],[194,270,1],[204,275,1],[213,280,1],[219,284,1],[224,290,1],[226,295,1],[227,298,1],[227,303,1],[225,308,1],[218,311,1],[206,315,1],[194,316,1],[181,317,1],[170,317,1],[161,317,1],[154,317,1],[148,316,1],[144,315,1],[141,315,1]]},{\"Name\":\"s\",\"Points\":[[267,186,1],[258,179,1],[252,179,1],[246,179,1],[236,179,1],[226,182,1],[218,186,1],[209,192,1],[204,198,1],[201,202,1],[199,208,1],[199,213,1],[199,219,1],[202,225,1],[208,231,1],[217,238,1],[226,245,1],[233,252,1],[241,259,1],[247,266,1],[251,272,1],[255,277,1],[256,284,1],[257,290,1],[257,297,1],[255,300,1],[250,305,1],[243,309,1],[234,310,1],[224,310,1],[213,310,1],[202,310,1],[193,310,1],[185,306,1],[180,304,1],[176,302,1],[172,300,1],[171,299,1]]},{\"Name\":\"s\",\"Points\":[[140,306,1],[143,303,1],[150,300,1],[160,292,1],[170,283,1],[180,273,1],[189,261,1],[198,249,1],[206,234,1],[214,222,1],[223,208,1],[228,200,1],[235,193,1],[239,188,1],[242,186,1],[245,185,1],[247,185,1],[248,185,1],[248,189,1],[249,195,1],[249,203,1],[249,212,1],[249,222,1],[249,235,1],[249,247,1],[248,259,1],[246,271,1],[244,282,1],[241,294,1],[236,302,1],[232,310,1],[226,317,1],[221,320,1],[214,324,1],[208,325,1],[204,325,1],[198,325,1],[193,325,1],[190,325,1],[189,324,1],[189,323,1],[190,322,1],[194,321,1],[199,320,1],[205,318,1],[212,315,1],[219,312,1],[226,308,1],[231,304,1],[236,300,1],[238,299,1],[241,297,1],[242,297,1],[243,296,1],[242,296,1]]},{\"Name\":\"t\",\"Points\":[[214,138,1],[204,160,1],[199,173,1],[194,189,1],[186,208,1],[180,229,1],[171,247,1],[166,263,1],[163,278,1],[162,292,1],[162,302,1],[164,310,1],[171,315,1],[181,318,1],[194,318,1],[210,315,1],[226,309,1],[241,301,1],[252,292,1],[144,226,2],[148,222,2],[156,222,2],[167,223,2],[181,225,2],[197,225,2],[212,225,2],[225,225,2]]},{\"Name\":\"t\",\"Points\":[[218,120,1],[213,129,1],[212,138,1],[211,150,1],[209,164,1],[208,177,1],[206,191,1],[204,208,1],[202,222,1],[199,239,1],[195,254,1],[194,270,1],[193,282,1],[192,292,1],[192,302,1],[193,310,1],[194,315,1],[199,318,1],[204,319,1],[213,318,1],[225,310,1],[235,303,1],[246,297,1],[255,288,1],[262,281,1],[185,205,2],[192,203,2],[204,203,2],[217,203,2],[231,203,2],[246,203,2],[259,203,2]]},{\"Name\":\"t\",\"Points\":[[125,323,1],[126,317,1],[130,309,1],[139,296,1],[152,277,1],[163,260,1],[174,241,1],[183,222,1],[192,201,1],[202,180,1],[209,159,1],[217,142,1],[223,129,1],[226,120,1],[226,117,1],[227,115,1],[228,115,1],[228,122,1],[223,135,1],[218,148,1],[211,164,1],[204,181,1],[197,201,1],[190,217,1],[185,235,1],[181,253,1],[176,270,1],[175,282,1],[175,296,1],[176,305,1],[181,313,1],[189,318,1],[200,320,1],[214,320,1],[231,320,1],[246,319,1],[262,312,1],[276,302,1],[166,227,2],[169,222,2],[177,222,2],[185,222,2],[199,222,2],[212,222,2],[226,222,2],[238,222,2]]},{\"Name\":\"+\",\"Points\":[[145,233,1],[155,230,1],[163,230,1],[176,230,1],[190,230,1],[208,230,1],[225,230,1],[237,230,1],[250,228,1],[260,227,1],[268,227,1],[273,227,1],[201,197,2],[200,207,2],[200,213,2],[200,222,2],[200,231,2],[200,240,2],[200,250,2],[199,257,2],[199,264,2],[199,270,2],[199,275,2],[201,281,2]]},{\"Name\":\"+\",\"Points\":[[128,222,1],[133,222,1],[138,222,1],[146,222,1],[158,222,1],[171,222,1],[185,222,1],[204,221,1],[217,220,1],[231,217,1],[245,216,1],[257,215,1],[269,214,1],[278,213,1],[285,212,1],[292,212,1],[199,183,2],[197,191,2],[197,198,2],[197,208,2],[197,217,2],[197,227,2],[197,237,2],[197,247,2],[197,254,2],[197,263,2],[198,271,2]]},{\"Name\":\"+\",\"Points\":[[100,208,1],[107,209,1],[115,209,1],[126,209,1],[138,210,1],[153,210,1],[167,210,1],[182,209,1],[198,208,1],[213,208,1],[226,208,1],[239,207,1],[250,206,1],[260,206,1],[270,205,1],[276,204,1],[282,203,1],[286,203,1],[288,203,1],[186,164,2],[183,170,2],[183,178,2],[183,185,2],[182,195,2],[182,205,2],[181,217,2],[181,226,2],[179,235,2],[178,242,2],[178,250,2],[178,254,2]]},{\"Name\":\"-\",\"Points\":[[140,211,1],[142,208,1],[148,208,1],[154,208,1],[163,208,1],[173,208,1],[183,207,1],[194,206,1],[204,205,1],[213,204,1],[223,203,1],[229,202,1],[234,202,1],[239,202,1]]},{\"Name\":\"-\",\"Points\":[[104,215,1],[109,216,1],[115,216,1],[122,216,1],[130,216,1],[140,216,1],[150,216,1],[159,216,1],[172,215,1],[183,214,1],[196,213,1],[206,212,1],[221,212,1],[230,212,1],[241,212,1],[250,211,1],[257,210,1],[264,209,1],[269,209,1],[273,209,1],[276,209,1],[278,208,1]]},{\"Name\":\"-\",\"Points\":[[111,219,1],[120,220,1],[128,220,1],[137,220,1],[150,220,1],[162,220,1],[177,220,1],[190,220,1],[204,219,1],[220,218,1],[233,217,1],[247,217,1],[260,216,1],[273,215,1],[283,214,1],[293,214,1],[300,214,1],[307,213,1],[313,213,1],[317,212,1]]},{\"Name\":\"*\",\"Points\":[[165,162,1],[170,167,1],[175,174,1],[181,182,1],[185,190,1],[191,198,1],[198,207,1],[204,214,1],[210,222,1],[217,231,1],[223,240,1],[226,247,1],[229,254,1],[230,259,1],[229,264,1],[177,261,2],[173,253,2],[173,248,2],[175,238,2],[179,230,2],[184,217,2],[190,205,2],[196,192,2],[201,183,2],[204,174,2],[208,168,2],[210,165,2],[213,163,2],[213,162,2],[214,162,2],[214,164,2],[212,169,2],[207,176,2],[202,185,2],[194,194,2],[187,203,2],[181,211,2],[172,218,2],[166,222,2],[161,224,2],[158,225,2],[154,225,2],[151,225,2],[149,224,2],[149,222,2],[149,221,2],[149,218,2],[153,216,2],[158,212,2],[166,211,2],[175,208,2],[184,208,2],[194,205,2],[204,203,2],[213,202,2],[223,201,2],[229,200,2],[236,199,2],[243,198,2],[250,198,2]]},{\"Name\":\"*\",\"Points\":[[157,288,1],[163,277,1],[172,271,1],[182,262,1],[194,252,1],[205,240,1],[218,227,1],[228,214,1],[237,203,1],[245,195,1],[250,187,1],[255,180,1],[185,186,2],[190,195,2],[194,203,2],[203,214,2],[208,226,2],[215,236,2],[222,249,2],[226,259,2],[229,270,2],[231,280,2],[233,289,2],[234,296,2],[171,254,3],[181,249,3],[193,249,3],[205,248,3],[220,246,3],[233,245,3],[247,244,3],[259,242,3],[269,241,3],[278,240,3]]},{\"Name\":\"*\",\"Points\":[[207,167,1],[207,173,1],[207,182,1],[207,195,1],[207,209,1],[207,225,1],[207,240,1],[207,254,1],[205,268,1],[204,277,1],[203,287,1],[203,294,1],[202,297,1],[202,300,1],[202,298,1],[204,292,1],[204,285,1],[207,276,1],[208,268,1],[210,259,1],[211,253,1],[212,245,1],[212,239,1],[212,232,1],[212,229,1],[211,226,1],[208,222,1],[206,220,1],[203,219,1],[199,218,1],[191,218,1],[183,218,1],[176,218,1],[166,220,1],[158,222,1],[151,225,1],[145,227,1],[142,228,1],[139,229,1],[139,230,1],[144,230,1],[152,230,1],[161,230,1],[176,230,1],[190,230,1],[204,230,1],[217,230,1],[230,230,1],[242,230,1],[250,230,1],[257,230,1],[262,230,1],[265,230,1],[266,230,1],[264,230,1],[260,230,1],[253,226,1],[246,222,1],[236,217,1],[226,212,1],[218,207,1],[208,201,1],[199,194,1],[190,189,1],[185,185,1],[181,183,1],[179,182,1],[177,180,1],[176,180,1],[176,181,1],[176,184,1],[177,189,1],[181,196,1],[184,204,1],[190,212,1],[195,222,1],[202,232,1],[208,242,1],[215,251,1],[223,257,1],[226,263,1],[231,268,1],[236,271,1],[238,273,1],[241,275,1],[244,275,1],[246,276,1],[248,277,1],[248,277,1]]},{\"Name\":\"/\",\"Points\":[[102,344,1],[106,338,1],[115,329,1],[125,319,1],[136,306,1],[148,290,1],[161,274,1],[175,257,1],[190,240,1],[204,222,1],[220,203,1],[234,185,1],[248,169,1],[261,154,1],[270,141,1],[279,129,1],[286,119,1],[293,111,1],[296,105,1],[299,99,1],[302,96,1],[304,92,1],[306,89,1],[309,87,1]]},{\"Name\":\"/\",\"Points\":[[325,77,1],[317,78,1],[313,85,1],[307,93,1],[301,101,1],[295,112,1],[289,121,1],[282,133,1],[275,143,1],[269,154,1],[261,165,1],[254,175,1],[246,187,1],[239,198,1],[231,209,1],[223,221,1],[215,232,1],[206,244,1],[199,253,1],[191,264,1],[185,272,1],[179,279,1],[172,287,1],[166,295,1],[162,300,1],[158,306,1],[153,312,1],[148,317,1],[144,320,1],[141,324,1],[138,327,1],[137,329,1],[135,332,1],[134,333,1],[134,335,1],[133,336,1],[132,337,1],[130,342,1]]},{\"Name\":\"/\",\"Points\":[[319,86,1],[311,89,1],[306,94,1],[299,100,1],[293,110,1],[287,119,1],[281,127,1],[275,138,1],[268,149,1],[261,161,1],[254,171,1],[247,184,1],[241,193,1],[233,205,1],[226,216,1],[219,227,1],[212,238,1],[204,249,1],[194,260,1],[185,270,1],[177,280,1],[168,290,1],[159,299,1],[153,306,1],[144,315,1],[137,321,1],[131,328,1],[125,333,1],[119,340,1],[115,344,1],[111,347,1],[109,350,1],[107,352,1],[106,353,1],[106,354,1]]},{\"Name\":\"(\",\"Points\":[[284,91,1],[272,90,1],[266,91,1],[256,96,1],[248,101,1],[239,108,1],[231,116,1],[225,123,1],[218,133,1],[211,142,1],[205,151,1],[201,162,1],[196,170,1],[193,181,1],[190,192,1],[187,203,1],[185,216,1],[182,228,1],[181,240,1],[181,253,1],[180,266,1],[180,277,1],[180,291,1],[181,301,1],[181,312,1],[184,320,1],[187,329,1],[190,337,1],[194,342,1],[199,348,1],[202,352,1],[204,355,1],[206,357,1],[208,358,1],[208,359,1],[209,360,1],[210,360,1],[211,360,1],[211,362,1]]},{\"Name\":\"(\",\"Points\":[[212,57,1],[201,63,1],[197,68,1],[193,75,1],[190,81,1],[186,87,1],[183,93,1],[181,100,1],[177,107,1],[175,115,1],[172,123,1],[170,131,1],[169,139,1],[167,147,1],[166,155,1],[165,164,1],[165,172,1],[164,181,1],[163,190,1],[163,200,1],[162,209,1],[162,220,1],[162,230,1],[162,240,1],[162,250,1],[162,259,1],[163,267,1],[164,275,1],[166,283,1],[168,292,1],[171,298,1],[173,305,1],[176,313,1],[178,320,1],[181,324,1],[182,330,1],[185,335,1],[188,340,1],[191,343,1],[194,347,1],[197,350,1],[200,352,1],[203,355,1],[204,357,1],[207,358,1],[208,360,1],[210,361,1],[213,362,1],[214,363,1],[215,363,1],[216,364,1],[217,365,1],[218,366,1]]},{\"Name\":\"(\",\"Points\":[[182,68,1],[171,76,1],[166,84,1],[160,92,1],[154,100,1],[148,111,1],[142,120,1],[136,133,1],[129,144,1],[125,157,1],[119,169,1],[115,182,1],[111,196,1],[108,211,1],[106,224,1],[104,237,1],[102,250,1],[102,263,1],[102,274,1],[102,286,1],[103,297,1],[105,307,1],[108,318,1],[111,326,1],[115,334,1],[120,342,1],[125,347,1],[129,353,1],[132,358,1],[135,362,1],[137,364,1],[138,365,1],[139,366,1],[140,367,1],[141,367,1],[142,368,1]]},{\"Name\":\")\",\"Points\":[[190,58,1],[194,57,1],[198,58,1],[204,61,1],[209,64,1],[216,69,1],[223,75,1],[229,82,1],[236,90,1],[242,99,1],[249,111,1],[255,124,1],[260,138,1],[265,151,1],[269,165,1],[270,177,1],[272,191,1],[273,207,1],[273,221,1],[271,237,1],[269,252,1],[264,266,1],[258,278,1],[252,292,1],[246,304,1],[241,313,1],[236,321,1],[231,327,1],[229,332,1],[226,335,1],[224,338,1],[223,338,1],[222,338,1]]},{\"Name\":\")\",\"Points\":[[193,72,1],[201,74,1],[207,77,1],[216,82,1],[224,88,1],[231,94,1],[239,100,1],[246,109,1],[255,119,1],[261,129,1],[268,141,1],[273,153,1],[279,165,1],[283,177,1],[287,189,1],[288,203,1],[290,216,1],[291,230,1],[291,245,1],[291,258,1],[287,273,1],[283,287,1],[277,300,1],[270,313,1],[263,324,1],[256,333,1],[249,342,1],[243,347,1],[239,351,1],[236,352,1],[234,354,1],[233,354,1],[233,353,1],[234,352,1],[240,346,1]]},{\"Name\":\")\",\"Points\":[[185,73,1],[191,73,1],[198,76,1],[205,82,1],[213,91,1],[223,100,1],[229,110,1],[236,121,1],[242,133,1],[247,147,1],[250,161,1],[254,173,1],[255,187,1],[255,201,1],[255,215,1],[255,229,1],[251,245,1],[248,259,1],[245,273,1],[240,282,1],[236,294,1],[231,304,1],[228,314,1],[225,322,1],[223,328,1],[218,334,1],[217,339,1],[214,342,1],[213,343,1],[212,344,1],[212,345,1],[211,345,1],[211,346,1],[210,347,1],[209,347,1],[209,349,1],[208,350,1],[208,351,1]]},{\"Name\":\"|\",\"Points\":[[189,79,1],[185,84,1],[185,90,1],[185,97,1],[185,102,1],[185,110,1],[185,117,1],[185,126,1],[185,136,1],[185,145,1],[185,157,1],[185,167,1],[185,179,1],[185,191,1],[185,201,1],[185,212,1],[185,222,1],[185,232,1],[185,243,1],[185,252,1],[185,261,1],[185,270,1],[185,277,1],[185,285,1],[184,293,1],[184,299,1],[184,305,1],[184,310,1],[184,314,1],[184,318,1],[184,320,1],[184,321,1],[184,323,1]]},{\"Name\":\"|\",\"Points\":[[185,122,1],[185,128,1],[185,135,1],[185,143,1],[185,153,1],[185,163,1],[186,172,1],[188,183,1],[190,194,1],[190,203,1],[191,216,1],[192,229,1],[192,240,1],[192,251,1],[192,262,1],[192,273,1],[191,282,1],[191,289,1],[191,297,1],[190,302,1],[190,307,1],[190,312,1],[190,315,1],[190,316,1],[190,315,1]]},{\"Name\":\"|\",\"Points\":[[192,107,1],[190,111,1],[190,117,1],[191,125,1],[191,135,1],[192,146,1],[192,157,1],[192,170,1],[192,182,1],[192,194,1],[191,208,1],[190,221,1],[189,234,1],[188,248,1],[187,260,1],[185,273,1],[185,282,1],[184,292,1],[184,298,1],[184,304,1],[184,309,1],[184,312,1],[184,313,1],[184,314,1],[185,314,1],[188,313,1]]},{\"Name\":\"sqrt\",\"Points\":[[79,245,1],[88,246,1],[92,250,1],[97,254,1],[102,261,1],[106,269,1],[108,277,1],[109,285,1],[110,293,1],[111,300,1],[111,306,1],[112,311,1],[112,315,1],[113,318,1],[113,319,1],[113,315,1],[113,305,1],[113,292,1],[113,279,1],[113,265,1],[113,252,1],[113,236,1],[113,221,1],[113,203,1],[113,186,1],[112,173,1],[111,158,1],[111,145,1],[111,133,1],[111,122,1],[111,112,1],[111,104,1],[111,97,1],[111,92,1],[111,89,1],[111,87,1],[111,86,1],[111,85,1],[113,85,1],[115,85,1],[120,85,1],[125,85,1],[131,87,1],[139,88,1],[150,90,1],[163,91,1],[178,92,1],[193,92,1],[210,92,1],[226,92,1],[243,92,1],[260,92,1],[274,91,1],[289,91,1],[302,91,1],[312,91,1],[321,91,1],[328,91,1],[332,91,1],[335,91,1],[336,91,1],[337,91,1],[337,91,1],[337,91,1],[336,91,1],[336,93,1],[336,96,1],[336,97,1],[335,100,1],[335,105,1],[335,109,1],[334,112,1],[334,115,1],[334,118,1],[334,119,1],[334,120,1],[334,121,1]]},{\"Name\":\"sqrt\",\"Points\":[[75,234,1],[78,230,1],[85,230,1],[92,231,1],[100,235,1],[107,240,1],[113,248,1],[118,255,1],[122,264,1],[125,274,1],[127,282,1],[129,292,1],[130,299,1],[131,304,1],[132,310,1],[132,312,1],[132,313,1],[132,314,1],[132,311,1],[132,303,1],[132,292,1],[130,277,1],[129,259,1],[128,242,1],[125,226,1],[124,208,1],[122,191,1],[120,177,1],[119,162,1],[118,148,1],[117,137,1],[117,127,1],[116,119,1],[116,114,1],[116,108,1],[116,105,1],[116,103,1],[116,102,1],[117,101,1],[119,101,1],[123,101,1],[127,101,1],[134,101,1],[142,101,1],[151,101,1],[163,101,1],[176,101,1],[190,102,1],[204,103,1],[218,104,1],[233,104,1],[250,104,1],[267,105,1],[281,105,1],[299,105,1],[314,106,1],[329,106,1],[342,106,1],[352,106,1],[360,106,1],[366,106,1],[371,106,1],[376,106,1],[378,106,1],[380,106,1],[381,106,1],[382,105,1],[382,105,1],[383,105,1],[384,104,1],[385,104,1],[385,103,1]]},{\"Name\":\"sqrt\",\"Points\":[[65,227,1],[73,222,1],[81,222,1],[91,224,1],[101,230,1],[111,239,1],[117,250,1],[124,260,1],[128,271,1],[129,282,1],[130,292,1],[130,301,1],[130,309,1],[130,315,1],[129,318,1],[128,320,1],[127,320,1],[125,320,1],[125,313,1],[124,299,1],[124,280,1],[124,262,1],[125,243,1],[125,223,1],[127,203,1],[128,185,1],[129,167,1],[129,151,1],[129,137,1],[129,123,1],[129,114,1],[130,105,1],[130,100,1],[130,97,1],[130,94,1],[131,93,1],[132,92,1],[134,92,1],[136,92,1],[140,92,1],[148,92,1],[157,94,1],[169,95,1],[181,95,1],[197,97,1],[213,97,1],[228,97,1],[247,97,1],[264,97,1],[282,98,1],[296,98,1],[312,99,1],[326,99,1],[337,100,1],[348,100,1],[356,100,1],[362,100,1],[369,100,1],[374,100,1],[378,100,1],[381,100,1],[383,100,1],[385,100,1],[386,100,1],[387,100,1],[385,100,1]]},{\"Name\":\"=\",\"Points\":[[138,198,1],[146,198,1],[154,198,1],[163,198,1],[176,198,1],[186,198,1],[199,198,1],[211,198,1],[221,198,1],[230,198,1],[237,198,1],[245,198,1],[248,199,1],[250,203,1],[147,236,2],[149,235,2],[155,235,2],[162,235,2],[173,235,2],[183,235,2],[196,235,2],[205,235,2],[218,235,2],[226,235,2],[236,235,2],[246,235,2],[255,237,2],[262,238,2]]},{\"Name\":\"=\",\"Points\":[[135,193,1],[143,196,1],[152,197,1],[164,198,1],[177,199,1],[190,199,1],[204,199,1],[218,199,1],[229,198,1],[240,198,1],[250,197,1],[259,197,1],[266,198,1],[270,201,1],[134,242,2],[137,240,2],[144,240,2],[153,240,2],[163,240,2],[176,240,2],[187,240,2],[198,240,2],[208,240,2],[218,240,2],[226,240,2],[233,240,2],[240,241,2],[247,242,2]]},{\"Name\":\"=\",\"Points\":[[141,198,1],[148,198,1],[156,198,1],[166,198,1],[179,198,1],[194,199,1],[208,199,1],[225,199,1],[241,199,1],[256,199,1],[270,199,1],[283,199,1],[293,202,1],[301,203,1],[308,207,1],[310,210,1],[137,255,2],[145,253,2],[154,253,2],[167,253,2],[181,253,2],[197,253,2],[215,253,2],[231,253,2],[249,253,2],[267,253,2],[282,253,2],[297,253,2],[313,253,2]]},{\"Name\":\"x\",\"Points\":[[148,194,1],[151,201,1],[154,207,1],[159,214,1],[164,222,1],[171,230,1],[177,237,1],[183,245,1],[190,252,1],[196,259,1],[203,267,1],[208,275,1],[213,281,1],[218,289,1],[223,296,1],[226,300,1],[230,306,1],[232,310,1],[143,287,2],[143,281,2],[144,276,2],[149,272,2],[155,264,2],[161,255,2],[168,248,2],[177,236,2],[184,228,2],[192,219,2],[199,210,2],[206,203,2],[213,196,2],[219,190,2],[225,186,2],[230,184,2]]},{\"Name\":\"x\",\"Points\":[[153,199,1],[155,203,1],[159,208,1],[165,216,1],[171,224,1],[181,235,1],[189,244,1],[198,253,1],[205,262,1],[214,272,1],[223,278,1],[229,287,1],[236,294,1],[243,300,1],[248,305,1],[254,309,1],[260,312,1],[264,315,1],[269,317,1],[241,216,2],[231,219,2],[226,227,2],[221,236,2],[215,246,2],[208,255,2],[203,265,2],[196,274,2],[189,282,2],[182,292,2],[177,299,2],[172,305,2],[167,312,2],[165,317,2],[164,320,2],[164,321,2]]},{\"Name\":\"x\",\"Points\":[[158,199,1],[159,203,1],[164,208,1],[171,216,1],[181,227,1],[189,235,1],[198,245,1],[205,253,1],[214,263,1],[223,272,1],[230,279,1],[237,288,1],[244,296,1],[250,302,1],[255,307,1],[260,312,1],[262,315,1],[264,318,1],[265,320,1],[145,310,2],[143,297,2],[146,292,2],[153,282,2],[161,273,2],[171,261,2],[181,251,2],[192,240,2],[203,230,2],[213,221,2],[223,212,2],[230,208,2],[238,202,2],[245,198,2],[250,194,2],[255,193,2],[258,190,2]]},{\"Name\":\"y\",\"Points\":[[158,184,1],[157,189,1],[157,197,1],[158,208,1],[159,220,1],[161,231,1],[164,240,1],[167,249,1],[171,253,1],[176,256,1],[181,257,1],[190,257,1],[199,253,1],[207,246,1],[217,235,1],[226,225,1],[233,215,1],[241,207,1],[248,199,1],[253,194,1],[257,189,1],[260,187,1],[261,186,1],[262,186,1],[261,189,1],[257,196,1],[250,205,1],[244,216,1],[238,226,1],[230,238,1],[223,250,1],[215,263,1],[208,275,1],[201,288,1],[194,300,1],[189,310,1],[183,320,1],[179,328,1],[175,334,1],[171,340,1],[169,343,1],[168,347,1],[167,348,1],[167,349,1]]},{\"Name\":\"y\",\"Points\":[[171,188,1],[174,197,1],[176,205,1],[181,216,1],[184,227,1],[188,238,1],[193,250,1],[198,259,1],[204,268,1],[208,276,1],[213,282,1],[220,289,1],[226,294,1],[231,297,1],[279,206,2],[275,207,2],[274,211,2],[270,217,2],[267,226,2],[264,233,2],[259,244,2],[255,253,2],[249,263,2],[243,273,2],[237,284,2],[231,297,2],[226,305,2],[218,317,2],[213,325,2],[207,334,2],[202,343,2],[198,350,2],[194,357,2],[190,362,2],[188,365,2],[186,369,2],[185,371,2],[185,373,2],[185,374,2],[185,375,2]]},{\"Name\":\"y\",\"Points\":[[161,187,1],[161,191,1],[161,198,1],[164,204,1],[169,215,1],[173,225,1],[178,235,1],[182,245,1],[186,254,1],[191,264,1],[195,270,1],[201,276,1],[205,282,1],[210,287,1],[214,290,1],[219,292,1],[258,198,2],[251,194,2],[251,198,2],[250,205,2],[248,212,2],[247,222,2],[245,230,2],[241,241,2],[237,252,2],[233,264,2],[229,275,2],[225,285,2],[220,297,2],[215,305,2],[211,315,2],[207,324,2],[204,332,2],[199,340,2],[196,346,2],[194,352,2],[191,358,2],[190,363,2],[188,366,2],[187,369,2],[187,371,2],[187,373,2],[187,374,2],[187,375,2]]},{\"Name\":\")\",\"Points\":[[154,83,1],[159,81,1],[162,81,1],[166,83,1],[172,84,1],[177,87,1],[181,90,1],[187,93,1],[193,98,1],[198,102,1],[203,107,1],[208,113,1],[212,117,1],[216,125,1],[221,131,1],[223,138,1],[226,146,1],[227,155,1],[229,163,1],[230,173,1],[230,182,1],[230,192,1],[230,202,1],[230,211,1],[230,221,1],[230,228,1],[228,236,1],[226,243,1],[224,250,1],[221,256,1],[217,261,1],[213,266,1],[207,269,1],[203,274,1],[198,278,1],[191,283,1],[182,289,1],[176,292,1],[167,298,1],[160,301,1],[153,304,1],[146,308,1],[140,312,1],[135,313,1],[130,315,1],[126,316,1],[122,317,1],[118,318,1]]},{\"Name\":\")\",\"Points\":[[157,51,1],[162,53,1],[167,57,1],[172,62,1],[179,70,1],[183,79,1],[189,89,1],[196,101,1],[201,112,1],[205,123,1],[211,135,1],[214,147,1],[219,161,1],[221,177,1],[224,189,1],[225,205,1],[225,224,1],[225,241,1],[224,256,1],[221,271,1],[216,286,1],[211,296,1],[206,308,1],[203,314,1],[199,320,1],[197,324,1],[194,326,1],[193,328,1]]},{\"Name\":\")\",\"Points\":[[180,43,1],[183,47,1],[187,51,1],[191,59,1],[197,69,1],[201,79,1],[204,90,1],[207,101,1],[211,113,1],[213,125,1],[215,137,1],[216,151,1],[217,164,1],[218,180,1],[218,195,1],[218,212,1],[217,224,1],[215,238,1],[211,253,1],[208,265,1],[204,276,1],[200,287,1],[194,296,1],[189,307,1],[183,314,1],[179,322,1],[174,330,1],[169,336,1],[164,341,1],[159,347,1],[156,351,1],[151,356,1],[147,358,1],[144,360,1],[140,361,1]]},{\"Name\":\")\",\"Points\":[[160,345,1],[170,338,1],[175,336,1],[180,331,1],[185,326,1],[192,318,1],[197,313,1],[203,306,1],[208,298,1],[214,290,1],[219,281,1],[224,272,1],[228,263,1],[233,252,1],[237,243,1],[242,232,1],[245,221,1],[248,210,1],[249,200,1],[251,189,1],[253,180,1],[253,168,1],[253,158,1],[253,149,1],[253,139,1],[253,130,1],[253,120,1],[253,111,1],[253,102,1],[253,93,1],[251,88,1],[249,80,1],[248,73,1],[245,68,1],[243,63,1],[238,56,1],[235,52,1],[232,47,1],[228,44,1],[226,42,1],[224,38,1],[221,36,1],[219,34,1],[217,32,1],[216,31,1],[214,29,1],[213,28,1],[212,28,1]]},{\"Name\":\")\",\"Points\":[[194,364,1],[196,355,1],[196,349,1],[198,343,1],[200,338,1],[203,331,1],[206,322,1],[210,314,1],[213,303,1],[216,293,1],[219,285,1],[223,274,1],[226,264,1],[229,251,1],[231,240,1],[234,227,1],[236,215,1],[238,202,1],[239,192,1],[239,180,1],[239,168,1],[239,158,1],[239,146,1],[239,135,1],[239,124,1],[239,114,1],[238,103,1],[236,95,1],[234,88,1],[231,79,1],[229,73,1],[226,67,1],[224,62,1],[221,56,1],[218,51,1],[216,47,1],[212,44,1],[211,42,1],[208,38,1],[206,37,1],[204,34,1],[203,33,1],[202,33,1],[201,33,1]]},{\"Name\":\"/\",\"Points\":[[252,64,1],[249,67,1],[248,71,1],[247,79,1],[244,86,1],[241,94,1],[238,103,1],[234,113,1],[230,121,1],[226,131,1],[223,139,1],[219,149,1],[214,158,1],[208,168,1],[203,178,1],[198,186,1],[192,196,1],[186,206,1],[181,216,1],[174,228,1],[169,238,1],[162,247,1],[156,257,1],[150,266,1],[145,275,1],[140,283,1],[136,291,1],[132,297,1],[128,304,1],[125,310,1],[121,316,1],[118,320,1],[117,324,1],[115,328,1],[114,331,1],[114,334,1],[113,336,1],[112,337,1],[112,338,1],[111,339,1],[111,340,1],[110,340,1],[109,340,1]]},{\"Name\":\"/\",\"Points\":[[118,333,1],[121,324,1],[123,319,1],[127,313,1],[133,306,1],[137,297,1],[142,289,1],[148,280,1],[155,269,1],[160,257,1],[168,246,1],[176,233,1],[183,218,1],[193,205,1],[201,191,1],[210,178,1],[219,163,1],[228,150,1],[237,139,1],[246,127,1],[252,118,1],[258,110,1],[265,101,1],[269,94,1],[273,89,1],[276,83,1],[279,79,1],[281,75,1],[283,71,1],[284,69,1],[284,67,1],[284,66,1],[284,65,1]]},{\"Name\":\"+\",\"Points\":[[113,195,1],[123,196,1],[130,196,1],[138,196,1],[151,197,1],[162,198,1],[176,198,1],[190,198,1],[205,198,1],[222,198,1],[235,198,1],[250,197,1],[264,196,1],[277,194,1],[289,192,1],[297,191,1],[304,189,1],[211,143,2],[209,149,2],[209,154,2],[209,163,2],[209,176,2],[209,186,2],[209,201,2],[208,213,2],[206,226,2],[205,238,2],[204,247,2],[204,256,2],[203,261,2],[203,266,2],[203,267,2],[203,268,2],[204,268,2]]},{\"Name\":\"+\",\"Points\":[[119,223,1],[124,224,1],[130,224,1],[138,226,1],[150,228,1],[162,231,1],[176,233,1],[189,235,1],[204,236,1],[219,237,1],[233,237,1],[246,235,1],[258,234,1],[267,233,1],[274,232,1],[280,231,1],[208,178,2],[204,187,2],[204,197,2],[204,210,2],[204,224,2],[204,240,2],[204,255,2],[204,269,2],[204,279,2]]},{\"Name\":\"+\",\"Points\":[[132,231,1],[135,229,1],[141,229,1],[154,229,1],[166,230,1],[181,231,1],[198,232,1],[211,233,1],[227,233,1],[243,233,1],[257,233,1],[270,233,1],[281,231,1],[291,228,1],[217,180,2],[210,183,2],[208,191,2],[207,201,2],[206,215,2],[206,230,2],[206,246,2],[205,264,2],[204,277,2],[204,291,2]]},{\"Name\":\"4\",\"Points\":[[188,98,1],[183,101,1],[182,107,1],[178,116,1],[174,127,1],[167,140,1],[161,153,1],[156,166,1],[148,180,1],[142,194,1],[138,204,1],[137,211,1],[135,217,1],[135,221,1],[135,224,1],[140,225,1],[149,226,1],[159,226,1],[173,226,1],[186,226,1],[201,226,1],[216,225,1],[230,224,1],[247,224,1],[260,223,1],[273,222,1],[284,221,1],[294,220,1],[301,220,1],[307,220,1],[311,219,1],[229,173,2],[226,184,2],[226,197,2],[225,214,2],[223,233,2],[220,251,2],[216,269,2],[215,283,2],[214,294,2]]},{\"Name\":\"4\",\"Points\":[[200,121,1],[194,126,1],[192,135,1],[187,149,1],[182,161,1],[175,178,1],[167,191,1],[160,203,1],[156,214,1],[151,222,1],[149,227,1],[148,231,1],[148,234,1],[150,236,1],[156,237,1],[165,238,1],[178,238,1],[190,238,1],[205,238,1],[221,238,1],[237,238,1],[256,238,1],[271,237,1],[286,236,1],[299,235,1],[309,235,1],[317,235,1],[323,235,1],[327,235,1],[329,235,1],[327,235,1],[234,187,2],[230,191,2],[230,197,2],[230,205,2],[230,219,2],[230,233,2],[230,246,2],[229,260,2],[228,273,2],[227,284,2],[226,293,2],[225,303,2],[222,311,2]]},{\"Name\":\"4\",\"Points\":[[231,108,1],[221,107,1],[216,113,1],[208,125,1],[202,137,1],[191,154,1],[181,171,1],[169,186,1],[159,202,1],[150,213,1],[142,222,1],[139,228,1],[137,231,1],[137,233,1],[137,234,1],[144,234,1],[156,234,1],[169,232,1],[184,229,1],[202,227,1],[219,224,1],[234,224,1],[248,223,1],[263,223,1],[275,223,1],[285,223,1],[294,224,1],[300,224,1],[306,224,1],[311,224,1],[235,180,2],[230,189,2],[227,200,2],[225,212,2],[220,228,2],[216,243,2],[211,259,2],[206,274,2],[204,286,2]]},{\"Name\":\"a\",\"Points\":[[204,145,1],[193,135,1],[188,135,1],[182,137,1],[174,142,1],[166,148,1],[159,155,1],[154,162,1],[150,171,1],[147,179,1],[146,185,1],[146,191,1],[150,198,1],[156,201,1],[160,202,1],[169,202,1],[178,197,1],[185,189,1],[192,179,1],[198,168,1],[201,158,1],[202,150,1],[202,145,1],[202,142,1],[202,140,1],[202,145,1],[202,153,1],[201,162,1],[201,174,1],[201,184,1],[204,194,1],[208,202,1],[213,206,1],[222,209,1],[233,209,1]]},{\"Name\":\"a\",\"Points\":[[207,169,1],[198,159,1],[194,159,1],[188,162,1],[180,169,1],[170,179,1],[163,186,1],[157,196,1],[152,205,1],[150,212,1],[149,221,1],[149,228,1],[153,233,1],[159,237,1],[166,239,1],[176,239,1],[187,238,1],[198,229,1],[206,220,1],[213,210,1],[219,198,1],[222,187,1],[226,175,1],[226,167,1],[226,161,1],[226,158,1],[226,157,1],[226,158,1],[224,164,1],[221,174,1],[220,182,1],[219,194,1],[219,204,1],[219,214,1],[222,224,1],[226,229,1],[230,234,1],[235,237,1],[244,238,1],[257,235,1],[270,225,1],[286,214,1],[297,205,1]]},{\"Name\":\"a\",\"Points\":[[185,192,1],[181,180,1],[181,180,1],[180,179,1],[179,179,1],[174,180,1],[166,185,1],[158,192,1],[147,202,1],[139,212,1],[134,222,1],[129,233,1],[128,242,1],[128,250,1],[128,257,1],[134,261,1],[141,263,1],[151,263,1],[162,257,1],[172,246,1],[181,233,1],[188,219,1],[192,209,1],[195,197,1],[197,191,1],[198,186,1],[198,185,1],[196,192,1],[193,202,1],[191,210,1],[190,220,1],[190,230,1],[195,238,1],[202,244,1],[208,248,1],[218,252,1],[226,253,1],[239,253,1],[254,248,1]]},{\"Name\":\"c\",\"Points\":[[226,150,1],[216,145,1],[211,145,1],[202,149,1],[193,154,1],[183,158,1],[175,164,1],[167,172,1],[161,179,1],[158,183,1],[156,189,1],[156,196,1],[156,201,1],[159,205,1],[165,209,1],[174,211,1],[182,212,1],[191,213,1],[202,214,1],[211,214,1],[220,214,1],[228,214,1],[234,213,1]]},{\"Name\":\"c\",\"Points\":[[233,157,1],[220,149,1],[214,149,1],[204,154,1],[196,158,1],[185,163,1],[174,172,1],[167,178,1],[161,183,1],[158,188,1],[156,194,1],[156,200,1],[158,205,1],[163,209,1],[172,212,1],[181,213,1],[195,214,1],[207,214,1],[221,213,1],[232,211,1],[242,208,1]]},{\"Name\":\"c\",\"Points\":[[228,169,1],[216,156,1],[210,157,1],[204,158,1],[196,161,1],[186,167,1],[177,174,1],[169,180,1],[162,186,1],[158,193,1],[156,200,1],[155,204,1],[155,208,1],[157,213,1],[162,217,1],[172,220,1],[181,222,1],[193,223,1],[204,223,1],[215,221,1],[226,218,1],[236,214,1],[247,210,1]]},{\"Name\":\"c\",\"Points\":[[254,177,1],[248,167,1],[244,166,1],[239,166,1],[232,166,1],[223,168,1],[213,172,1],[202,178,1],[192,182,1],[183,189,1],[176,196,1],[171,205,1],[169,211,1],[168,217,1],[168,224,1],[172,229,1],[179,233,1],[189,237,1],[199,238,1],[212,238,1],[225,238,1],[236,238,1],[247,236,1],[255,235,1]]},{\"Name\":\"g\",\"Points\":[[203,146,1],[192,142,1],[187,143,1],[181,145,1],[175,153,1],[169,159,1],[165,168,1],[164,175,1],[163,181,1],[163,189,1],[167,195,1],[174,198,1],[180,199,1],[190,199,1],[200,196,1],[207,188,1],[215,180,1],[220,168,1],[222,160,1],[224,150,1],[224,143,1],[224,138,1],[224,135,1],[223,134,1],[222,134,1],[221,135,1],[221,139,1],[220,147,1],[220,157,1],[220,169,1],[220,181,1],[219,196,1],[218,209,1],[216,223,1],[212,235,1],[206,249,1],[200,261,1],[194,270,1],[187,277,1],[181,281,1],[176,282,1],[170,282,1],[164,274,1],[163,266,1],[164,255,1],[169,245,1],[178,232,1],[188,222,1],[201,211,1],[216,200,1],[234,188,1],[253,177,1],[271,167,1]]},{\"Name\":\"g\",\"Points\":[[189,149,1],[181,145,1],[173,145,1],[165,145,1],[159,147,1],[151,155,1],[145,167,1],[142,178,1],[141,190,1],[141,202,1],[141,211,1],[146,219,1],[152,224,1],[158,224,1],[167,224,1],[175,217,1],[184,204,1],[192,190,1],[197,176,1],[198,163,1],[199,155,1],[199,149,1],[199,145,1],[199,143,1],[199,147,1],[198,155,1],[196,167,1],[193,182,1],[189,200,1],[186,216,1],[182,235,1],[178,254,1],[173,273,1],[165,293,1],[158,308,1],[151,322,1],[145,331,1],[141,336,1],[137,336,1],[135,336,1],[133,334,1],[133,320,1],[137,301,1],[144,280,1],[155,262,1],[166,245,1],[180,230,1],[194,218,1],[211,205,1],[230,194,1]]},{\"Name\":\"g\",\"Points\":[[206,165,1],[188,163,1],[178,164,1],[165,172,1],[157,181,1],[150,196,1],[146,206,1],[146,217,1],[146,228,1],[151,233,1],[159,235,1],[169,235,1],[182,227,1],[196,211,1],[207,194,1],[216,180,1],[222,165,1],[226,157,1],[226,153,1],[226,151,1],[226,155,1],[226,164,1],[225,179,1],[223,196,1],[221,213,1],[219,231,1],[216,251,1],[212,270,1],[206,289,1],[201,304,1],[195,313,1],[190,321,1],[186,323,1],[181,325,1],[177,323,1],[174,316,1],[172,303,1],[172,289,1],[175,273,1],[181,261,1],[188,249,1],[198,240,1],[211,231,1],[227,221,1],[243,213,1],[259,205,1]]},{\"Name\":\"-\",\"Points\":[[151,182,1],[155,181,1],[159,181,1],[166,181,1],[174,182,1],[184,183,1],[194,184,1],[205,184,1],[214,183,1],[224,181,1],[234,179,1],[244,177,1]]},{\"Name\":\"-\",\"Points\":[[150,206,1],[156,207,1],[161,207,1],[168,208,1],[178,209,1],[187,209,1],[197,209,1],[207,208,1],[217,206,1],[225,204,1]]},{\"Name\":\"-\",\"Points\":[[150,203,1],[157,204,1],[163,204,1],[171,205,1],[181,205,1],[190,206,1],[202,206,1],[211,205,1],[221,205,1],[229,202,1]]},{\"Name\":\"7\",\"Points\":[[150,101,1],[167,99,1],[181,99,1],[194,100,1],[206,102,1],[220,104,1],[231,108,1],[240,112,1],[246,117,1],[249,126,1],[250,136,1],[250,153,1],[246,168,1],[241,183,1],[236,201,1],[232,216,1],[230,232,1],[228,246,1],[228,259,1],[228,270,1],[228,280,1],[229,289,1],[230,294,1],[231,299,1],[191,221,2],[198,219,2],[207,219,2],[222,219,2],[240,219,2],[257,218,2],[273,217,2]]},{\"Name\":\"7\",\"Points\":[[125,108,1],[138,108,1],[148,108,1],[161,108,1],[176,110,1],[188,113,1],[199,118,1],[207,126,1],[211,135,1],[213,148,1],[213,163,1],[209,182,1],[202,203,1],[195,224,1],[191,239,1],[190,256,1],[190,269,1],[190,281,1],[192,291,1],[196,299,1],[199,305,1],[203,309,1],[204,311,1],[160,245,2],[169,244,2],[179,244,2],[195,243,2],[212,240,2],[228,238,2]]},{\"Name\":\"7\",\"Points\":[[150,99,1],[159,98,1],[166,98,1],[176,98,1],[188,97,1],[201,95,1],[213,94,1],[223,93,1],[232,93,1],[241,93,1],[246,95,1],[249,99,1],[250,105,1],[250,113,1],[245,123,1],[236,135,1],[227,148,1],[219,162,1],[210,178,1],[202,192,1],[194,206,1],[189,222,1],[185,236,1],[181,248,1],[181,261,1],[180,271,1],[180,282,1],[180,291,1],[180,297,1],[180,303,1],[180,307,1],[180,309,1],[180,310,1],[179,310,1],[137,246,2],[143,240,2],[153,239,2],[163,238,2],[175,236,2],[185,234,2],[195,233,2],[205,233,2],[213,231,2],[219,230,2],[224,229,2],[226,228,2],[229,228,2],[230,228,2],[232,227,2]]},{\"Name\":\"2\",\"Points\":[[153,149,1],[150,139,1],[152,133,1],[158,125,1],[166,116,1],[178,108,1],[188,103,1],[198,101,1],[207,101,1],[216,104,1],[223,113,1],[226,129,1],[227,146,1],[227,167,1],[225,191,1],[218,214,1],[210,236,1],[203,256,1],[191,274,1],[182,288,1],[174,299,1],[168,305,1],[164,308,1],[161,308,1],[161,306,1],[164,300,1],[171,298,1],[181,297,1],[189,296,1],[198,296,1],[204,300,1],[211,304,1],[217,310,1],[223,313,1],[226,316,1],[232,318,1],[241,318,1],[255,314,1]]},{\"Name\":\"2\",\"Points\":[[162,115,1],[183,108,1],[195,105,1],[205,104,1],[216,104,1],[223,110,1],[225,120,1],[225,134,1],[223,154,1],[213,177,1],[203,199,1],[192,221,1],[181,243,1],[173,261,1],[167,275,1],[165,286,1],[165,294,1],[167,300,1],[178,303,1],[190,303,1],[206,303,1],[224,298,1],[240,293,1],[253,290,1],[264,288,1],[272,286,1],[278,284,1],[285,284,1],[292,282,1],[297,280,1]]},{\"Name\":\"2\",\"Points\":[[155,140,1],[158,131,1],[166,126,1],[177,121,1],[188,118,1],[198,118,1],[208,120,1],[215,126,1],[220,136,1],[223,149,1],[223,166,1],[219,181,1],[213,200,1],[204,219,1],[195,238,1],[187,252,1],[181,269,1],[176,284,1],[173,293,1],[173,301,1],[174,308,1],[181,311,1],[194,313,1],[208,313,1],[226,312,1],[239,310,1],[252,307,1],[263,306,1],[271,304,1],[277,304,1],[282,303,1],[286,303,1],[290,303,1]]},{\"Name\":\"2\",\"Points\":[[150,144,1],[164,129,1],[176,126,1],[187,125,1],[201,128,1],[210,136,1],[217,151,1],[219,168,1],[219,187,1],[213,210,1],[203,230,1],[186,251,1],[167,269,1],[148,284,1],[135,292,1],[126,295,1],[121,295,1],[125,288,1],[137,280,1],[149,274,1],[160,272,1],[173,272,1],[183,277,1],[191,285,1],[199,296,1],[205,305,1],[213,315,1],[221,322,1],[229,330,1],[241,334,1],[253,335,1],[269,334,1],[289,325,1],[310,313,1]]},{\"Name\":\"0\",\"Points\":[[131,77,1],[120,80,1],[118,82,1],[115,85,1],[112,88,1],[109,90,1],[106,93,1],[103,97,1],[101,99,1],[98,101,1],[96,104,1],[94,106,1],[92,110,1],[92,112,1],[90,115,1],[89,116,1],[88,117,1],[88,118,1],[88,119,1],[88,119,1],[87,119,1],[87,119,1],[87,118,1],[86,117,1],[85,117,1],[85,118,1],[85,119,1],[84,119,1],[83,119,1],[83,122,1],[83,124,1],[82,126,1],[81,129,1],[80,132,1],[79,134,1],[78,137,1],[78,139,1],[77,142,1],[76,145,1],[75,149,1],[75,152,1],[73,157,1],[73,162,1],[73,164,1],[73,168,1],[73,172,1],[74,176,1],[75,180,1],[78,185,1],[80,188,1],[83,190,1],[86,194,1],[90,198,1],[93,201,1],[98,205,1],[104,208,1],[111,211,1],[118,213,1],[126,216,1],[134,217,1],[140,217,1],[147,217,1],[153,217,1],[159,215,1],[164,212,1],[168,208,1],[172,205,1],[176,202,1],[179,198,1],[181,194,1],[182,189,1],[184,185,1],[185,180,1],[185,174,1],[185,167,1],[185,162,1],[185,155,1],[185,150,1],[185,142,1],[185,138,1],[184,131,1],[182,126,1],[181,120,1],[180,116,1],[177,111,1],[175,106,1],[172,103,1],[169,99,1],[166,97,1],[163,93,1],[160,90,1],[158,87,1],[154,86,1],[150,84,1],[147,82,1],[143,81,1],[139,79,1],[137,78,1],[134,77,1],[131,77,1],[129,77,1],[126,77,1],[125,77,1],[123,77,1],[122,77,1],[120,77,1]]},{\"Name\":\"1\",\"Points\":[[62,200,1],[68,196,1],[72,191,1],[79,184,1],[90,171,1],[99,159,1],[108,146,1],[115,135,1],[124,123,1],[132,111,1],[138,100,1],[144,92,1],[150,84,1],[153,77,1],[155,75,1],[157,73,1],[158,72,1],[158,71,1],[158,73,1],[158,79,1],[158,86,1],[158,96,1],[157,106,1],[155,119,1],[155,133,1],[154,148,1],[153,168,1],[151,186,1],[149,206,1],[147,227,1],[145,245,1],[144,258,1],[143,268,1],[142,275,1],[142,279,1],[142,282,1],[142,285,1]]},{\"Name\":\"2\",\"Points\":[[99,110,1],[102,97,1],[107,96,1],[117,93,1],[133,89,1],[148,86,1],[159,84,1],[171,84,1],[179,84,1],[185,87,1],[190,92,1],[193,97,1],[194,103,1],[195,112,1],[195,119,1],[192,133,1],[186,142,1],[181,156,1],[171,167,1],[161,178,1],[152,189,1],[140,200,1],[129,211,1],[120,220,1],[112,227,1],[106,231,1],[101,235,1],[98,239,1],[96,240,1],[96,241,1],[96,242,1],[96,243,1],[101,244,1],[109,245,1],[118,245,1],[132,246,1],[147,246,1],[165,246,1],[180,246,1],[194,246,1],[204,245,1],[213,245,1],[218,245,1],[223,245,1],[224,244,1],[225,244,1],[223,245,1]]},{\"Name\":\"3\",\"Points\":[[95,115,1],[97,108,1],[102,106,1],[115,105,1],[131,104,1],[148,103,1],[162,103,1],[176,103,1],[183,105,1],[188,110,1],[190,114,1],[190,119,1],[189,126,1],[184,133,1],[177,140,1],[171,144,1],[165,149,1],[161,153,1],[158,157,1],[157,160,1],[157,162,1],[157,166,1],[161,170,1],[171,176,1],[181,184,1],[189,190,1],[194,195,1],[199,203,1],[201,208,1],[203,213,1],[203,221,1],[201,227,1],[194,235,1],[183,243,1],[171,250,1],[159,255,1],[146,261,1],[134,264,1],[121,267,1],[110,267,1],[100,267,1],[90,266,1],[83,263,1],[78,259,1],[76,257,1],[74,255,1],[74,254,1],[77,254,1]]},{\"Name\":\"4\",\"Points\":[[129,81,1],[129,86,1],[129,91,1],[129,97,1],[129,110,1],[126,120,1],[123,133,1],[119,144,1],[115,155,1],[115,165,1],[112,174,1],[111,184,1],[111,190,1],[111,197,1],[111,201,1],[111,205,1],[113,208,1],[115,209,1],[120,210,1],[128,211,1],[138,213,1],[150,214,1],[164,215,1],[179,216,1],[194,216,1],[264,216,1],[270,216,1],[278,216,1],[277,216,1],[181,155,2],[181,162,2],[181,167,2],[181,175,2],[181,186,2],[181,197,2],[181,209,2],[181,220,2],[181,231,2],[181,243,2],[181,254,2],[181,264,2],[180,273,2],[179,282,2],[178,288,2],[177,293,2],[176,297,2],[176,298,2],[176,299,2],[176,300,2],[176,303,2]]},{\"Name\":\"5\",\"Points\":[[123,95,1],[122,103,1],[122,113,1],[120,120,1],[117,133,1],[114,143,1],[111,152,1],[108,160,1],[106,165,1],[106,168,1],[105,170,1],[105,171,1],[108,170,1],[115,168,1],[123,167,1],[134,166,1],[147,166,1],[163,166,1],[179,170,1],[190,175,1],[199,180,1],[206,185,1],[211,190,1],[215,197,1],[218,205,1],[218,213,1],[218,222,1],[218,230,1],[212,238,1],[204,245,1],[194,253,1],[181,259,1],[168,265,1],[153,268,1],[137,271,1],[124,272,1],[110,272,1],[96,271,1],[86,268,1],[78,265,1],[73,263,1],[70,260,1],[68,258,1],[68,256,1],[68,255,1],[68,254,1],[73,254,1],[102,106,2],[110,108,2],[117,108,2],[129,109,2],[143,110,2],[159,110,2],[175,110,2],[190,110,2],[203,110,2],[211,110,2],[219,110,2],[224,110,2],[227,110,2],[229,110,2],[230,110,2],[228,110,2]]},{\"Name\":\"6\",\"Points\":[[208,87,1],[202,85,1],[197,86,1],[190,91,1],[181,97,1],[171,109,1],[161,122,1],[153,137,1],[140,153,1],[133,167,1],[125,185,1],[121,201,1],[120,217,1],[120,230,1],[120,246,1],[126,258,1],[134,270,1],[147,278,1],[160,284,1],[176,287,1],[191,287,1],[204,282,1],[215,274,1],[223,267,1],[227,256,1],[230,246,1],[231,237,1],[231,227,1],[227,218,1],[218,208,1],[207,201,1],[194,194,1],[183,189,1],[170,186,1],[156,185,1],[139,185,1],[125,189,1],[115,197,1],[104,209,1],[99,226,1]]},{\"Name\":\"7\",\"Points\":[[114,97,1],[120,97,1],[129,97,1],[140,97,1],[158,98,1],[177,99,1],[199,100,1],[217,100,1],[232,100,1],[245,100,1],[254,99,1],[260,98,1],[265,98,1],[267,98,1],[268,98,1],[266,100,1],[260,107,1],[254,115,1],[246,123,1],[235,135,1],[226,146,1],[214,159,1],[204,172,1],[190,189,1],[180,207,1],[171,221,1],[162,235,1],[156,250,1],[149,263,1],[145,272,1],[141,279,1],[138,287,1],[137,291,1],[136,293,1],[136,295,1],[136,296,1],[158,198,2],[162,193,2],[175,193,2],[187,193,2],[199,193,2],[208,193,2],[214,192,2],[219,191,2],[223,190,2],[224,190,2],[225,190,2]]},{\"Name\":\"8\",\"Points\":[[187,92,1],[176,87,1],[166,91,1],[154,97,1],[143,107,1],[137,115,1],[134,120,1],[131,129,1],[131,138,1],[134,147,1],[149,164,1],[169,179,1],[190,192,1],[204,201,1],[218,209,1],[230,217,1],[240,227,1],[248,238,1],[251,249,1],[254,260,1],[254,273,1],[246,285,1],[234,294,1],[219,300,1],[203,303,1],[184,303,1],[166,302,1],[149,297,1],[135,289,1],[125,279,1],[117,268,1],[115,258,1],[115,245,1],[120,230,1],[129,215,1],[142,200,1],[158,187,1],[173,175,1],[187,164,1],[199,154,1],[209,143,1],[215,134,1],[219,126,1],[220,119,1],[220,111,1],[215,105,1],[207,100,1],[199,97,1],[191,95,1],[184,94,1],[171,97,1]]},{\"Name\":\"9\",\"Points\":[[215,96,1],[201,91,1],[194,91,1],[186,96,1],[178,101,1],[168,112,1],[161,122,1],[158,131,1],[156,139,1],[156,147,1],[159,154,1],[172,159,1],[190,160,1],[207,157,1],[226,144,1],[237,130,1],[244,119,1],[247,112,1],[248,105,1],[248,100,1],[248,98,1],[247,97,1],[242,97,1],[237,103,1],[233,111,1],[231,119,1],[229,129,1],[229,141,1],[229,157,1],[231,171,1],[234,186,1],[236,199,1],[239,216,1],[240,229,1],[240,241,1],[236,254,1],[231,264,1],[223,274,1],[213,281,1],[204,287,1],[188,292,1],[176,293,1],[160,293,1],[144,289,1],[133,281,1],[123,273,1],[116,265,1],[113,259,1],[111,255,1],[111,253,1]]},{\"Name\":\",\",\"Points\":[[205,275,1],[202,280,1],[197,287,1],[189,297,1],[179,307,1],[168,316,1],[158,324,1],[148,332,1],[140,338,1],[135,343,1],[131,346,1],[129,350,1]]},{\"Name\":\"a\",\"Points\":[[163,167,1],[153,162,1],[148,162,1],[142,164,1],[137,168,1],[134,172,1],[129,179,1],[126,185,1],[124,190,1],[121,195,1],[120,202,1],[120,208,1],[120,212,1],[120,216,1],[120,219,1],[125,222,1],[130,223,1],[137,223,1],[145,223,1],[152,222,1],[159,218,1],[166,211,1],[171,203,1],[177,194,1],[181,187,1],[183,180,1],[185,175,1],[185,171,1],[185,169,1],[185,168,1],[185,167,1],[182,167,1],[181,169,1],[179,171,1],[177,176,1],[176,182,1],[175,188,1],[175,195,1],[175,204,1],[175,212,1],[176,217,1],[178,222,1],[181,226,1],[182,228,1],[185,229,1],[190,229,1],[195,229,1],[202,227,1],[210,222,1],[218,214,1],[224,207,1],[228,202,1],[230,198,1],[231,197,1],[232,196,1]]},{\"Name\":\"b\",\"Points\":[[121,67,1],[120,76,1],[120,85,1],[119,97,1],[117,113,1],[115,128,1],[113,141,1],[111,155,1],[109,166,1],[109,176,1],[108,186,1],[108,194,1],[108,199,1],[108,203,1],[108,204,1],[109,202,1],[111,197,1],[115,189,1],[122,179,1],[132,170,1],[140,164,1],[151,161,1],[159,160,1],[168,159,1],[176,159,1],[185,163,1],[190,166,1],[196,172,1],[201,179,1],[204,185,1],[204,190,1],[204,197,1],[204,204,1],[200,212,1],[194,217,1],[184,222,1],[173,227,1],[160,229,1],[149,229,1],[138,229,1],[129,228,1],[119,225,1],[113,221,1],[109,217,1],[106,214,1],[105,210,1],[105,208,1],[105,208,1]]},{\"Name\":\"c\",\"Points\":[[210,172,1],[194,168,1],[188,168,1],[180,170,1],[166,177,1],[155,186,1],[143,196,1],[134,206,1],[128,214,1],[123,223,1],[120,230,1],[120,235,1],[120,243,1],[124,250,1],[136,256,1],[150,263,1],[166,267,1],[180,268,1],[194,268,1],[208,267,1],[219,264,1],[226,259,1],[231,254,1],[234,252,1],[236,250,1],[236,249,1]]},{\"Name\":\"d\",\"Points\":[[215,179,1],[201,179,1],[193,181,1],[183,186,1],[176,192,1],[168,199,1],[164,208,1],[161,214,1],[159,223,1],[159,230,1],[159,237,1],[159,243,1],[161,248,1],[167,250,1],[176,250,1],[185,246,1],[195,235,1],[204,225,1],[212,210,1],[218,196,1],[224,180,1],[227,164,1],[231,150,1],[232,140,1],[234,130,1],[235,124,1],[235,120,1],[235,119,1],[234,123,1],[233,131,1],[232,142,1],[231,155,1],[231,168,1],[231,183,1],[231,196,1],[230,209,1],[230,220,1],[230,229,1],[229,234,1],[229,240,1],[228,242,1],[228,243,1],[228,242,1],[228,241,1],[228,240,1]]},{\"Name\":\"e\",\"Points\":[[156,194,1],[160,194,1],[167,194,1],[180,194,1],[197,194,1],[213,190,1],[224,186,1],[232,181,1],[238,176,1],[241,172,1],[241,169,1],[241,164,1],[232,159,1],[217,156,1],[204,154,1],[186,154,1],[173,157,1],[161,164,1],[153,168,1],[144,175,1],[137,184,1],[133,194,1],[131,204,1],[129,214,1],[129,223,1],[130,231,1],[136,240,1],[144,250,1],[158,257,1],[171,263,1],[186,267,1],[200,268,1],[212,268,1],[219,267,1],[225,262,1],[227,259,1],[228,255,1],[229,254,1],[229,253,1]]},{\"Name\":\"f\",\"Points\":[[275,109,1],[267,97,1],[258,97,1],[241,97,1],[225,100,1],[212,109,1],[204,116,1],[198,124,1],[193,133,1],[189,141,1],[185,151,1],[182,166,1],[181,183,1],[181,196,1],[181,211,1],[181,225,1],[181,237,1],[181,250,1],[181,263,1],[181,272,1],[181,282,1],[181,289,1],[181,295,1],[181,298,1],[181,300,1],[181,301,1],[140,179,2],[143,178,2],[156,178,2],[176,178,2],[194,178,2],[207,178,2],[217,177,2],[223,176,2],[225,175,2],[226,175,2],[226,175,2],[226,176,2]]},{\"Name\":\"g\",\"Points\":[[197,122,1],[185,126,1],[178,130,1],[171,139,1],[162,149,1],[157,161,1],[152,170,1],[149,180,1],[149,186,1],[149,191,1],[149,194,1],[153,196,1],[161,196,1],[175,193,1],[186,185,1],[197,173,1],[206,162,1],[212,152,1],[215,144,1],[217,140,1],[218,137,1],[218,135,1],[217,135,1],[213,138,1],[210,145,1],[206,157,1],[205,170,1],[205,185,1],[205,202,1],[207,219,1],[210,237,1],[213,255,1],[213,270,1],[213,284,1],[213,296,1],[209,304,1],[205,310,1],[199,314,1],[191,315,1],[181,315,1],[169,315,1],[158,308,1],[148,301,1],[140,293,1],[134,283,1],[131,274,1],[130,264,1],[130,255,1],[130,250,1],[131,247,1],[134,246,1]]},{\"Name\":\"l\",\"Points\":[[171,64,1],[168,70,1],[168,75,1],[166,86,1],[164,98,1],[161,115,1],[159,130,1],[158,142,1],[154,160,1],[153,172,1],[151,189,1],[151,204,1],[150,220,1],[149,235,1],[148,247,1],[148,256,1],[148,263,1],[148,268,1],[148,270,1],[148,271,1],[148,270,1]]},{\"Name\":\"i\",\"Points\":[[177,176,1],[178,187,1],[178,195,1],[176,208,1],[175,221,1],[172,233,1],[171,242,1],[171,252,1],[171,258,1],[171,262,1],[171,265,1],[176,123,2]]},{\"Name\":\"n\",\"Points\":[[108,160,1],[106,170,1],[106,181,1],[104,193,1],[101,210,1],[97,225,1],[96,237,1],[93,250,1],[92,258,1],[92,264,1],[92,268,1],[92,269,1],[92,265,1],[94,255,1],[97,245,1],[103,231,1],[110,220,1],[117,207,1],[126,196,1],[134,188,1],[142,182,1],[150,179,1],[159,177,1],[166,177,1],[174,180,1],[181,186,1],[186,194,1],[190,204,1],[194,215,1],[196,227,1],[197,237,1],[197,247,1],[197,256,1],[197,264,1],[195,268,1],[194,271,1],[193,273,1],[193,272,1],[193,271,1]]},{\"Name\":\"o\",\"Points\":[[173,168,1],[159,170,1],[154,175,1],[146,186,1],[142,196,1],[138,208,1],[137,217,1],[137,227,1],[137,234,1],[142,242,1],[151,248,1],[163,253,1],[176,254,1],[194,254,1],[207,253,1],[217,249,1],[226,239,1],[231,230,1],[236,221,1],[238,211,1],[238,203,1],[236,194,1],[231,186,1],[223,180,1],[211,176,1],[199,174,1],[184,173,1],[171,173,1],[160,174,1],[152,179,1],[144,186,1],[142,194,1]]},{\"Name\":\"s\",\"Points\":[[243,161,1],[233,153,1],[226,153,1],[218,153,1],[206,155,1],[197,159,1],[190,162,1],[184,165,1],[181,168,1],[180,174,1],[180,181,1],[184,189,1],[195,198,1],[209,208,1],[225,215,1],[237,222,1],[246,228,1],[252,233,1],[256,237,1],[257,241,1],[257,245,1],[255,249,1],[246,252,1],[234,253,1],[221,254,1],[207,254,1],[190,253,1],[179,253,1],[167,250,1],[160,246,1],[156,244,1],[153,242,1],[152,240,1]]},{\"Name\":\"t\",\"Points\":[[190,87,1],[188,100,1],[188,113,1],[187,131,1],[185,149,1],[184,168,1],[181,187,1],[181,206,1],[181,226,1],[181,244,1],[181,259,1],[181,274,1],[181,283,1],[181,291,1],[181,296,1],[181,297,1],[181,297,1],[153,161,2],[164,155,2],[181,155,2],[198,155,2],[209,154,2],[220,152,2],[226,152,2],[231,151,2],[234,150,2],[235,150,2],[233,153,2]]},{\"Name\":\"+\",\"Points\":[[115,196,1],[122,195,1],[136,195,1],[157,196,1],[176,197,1],[194,198,1],[208,198,1],[222,198,1],[230,198,1],[236,198,1],[239,198,1],[240,198,1],[163,154,2],[163,159,2],[163,166,2],[163,179,2],[164,192,2],[164,206,2],[164,216,2],[164,226,2],[164,233,2],[164,239,2],[164,242,2],[164,245,2],[164,247,2]]},{\"Name\":\"-\",\"Points\":[[125,206,1],[125,202,1],[134,202,1],[153,203,1],[174,205,1],[192,206,1],[205,206,1],[217,206,1],[226,206,1],[231,206,1],[235,206,1],[237,207,1],[238,207,1],[238,208,1]]},{\"Name\":\"/\",\"Points\":[[263,95,1],[255,104,1],[247,115,1],[235,132,1],[223,148,1],[208,166,1],[193,186,1],[178,204,1],[164,221,1],[155,231,1],[148,241,1],[145,246,1],[143,249,1],[143,250,1],[144,250,1],[146,250,1]]},{\"Name\":\"(\",\"Points\":[[206,72,1],[199,75,1],[192,79,1],[182,88,1],[175,98,1],[168,111,1],[162,124,1],[159,139,1],[157,153,1],[156,166,1],[156,183,1],[158,197,1],[161,211,1],[168,223,1],[176,235,1],[182,246,1],[190,254,1],[196,263,1],[200,268,1],[204,272,1],[204,273,1],[205,274,1],[206,274,1]]},{\"Name\":\")\",\"Points\":[[185,82,1],[196,85,1],[203,91,1],[211,99,1],[219,111,1],[226,122,1],[232,136,1],[237,149,1],[241,164,1],[244,176,1],[246,191,1],[246,209,1],[246,226,1],[246,241,1],[241,255,1],[238,267,1],[234,277,1],[229,285,1],[226,291,1],[223,295,1],[221,297,1],[218,298,1],[218,297,1]]},{\"Name\":\"|\",\"Points\":[[153,59,1],[153,68,1],[153,77,1],[153,90,1],[152,107,1],[149,122,1],[147,140,1],[144,157,1],[142,176,1],[140,195,1],[138,215,1],[137,231,1],[136,248,1],[134,259,1],[134,269,1],[133,275,1],[132,279,1],[131,282,1],[131,283,1],[131,282,1]]},{\"Name\":\"sqrt\",\"Points\":[[59,198,1],[74,198,1],[90,198,1],[103,198,1],[115,197,1],[123,195,1],[129,194,1],[133,194,1],[135,193,1],[136,192,1],[136,194,1],[134,197,1],[132,201,1],[130,208,1],[129,216,1],[128,226,1],[127,237,1],[127,250,1],[126,262,1],[126,275,1],[126,288,1],[126,298,1],[126,310,1],[126,317,1],[126,321,1],[126,325,1],[126,328,1],[126,327,1],[127,324,1],[129,317,1],[133,307,1],[136,297,1],[138,287,1],[143,275,1],[147,263,1],[151,249,1],[155,234,1],[159,221,1],[161,206,1],[166,194,1],[169,177,1],[172,162,1],[176,145,1],[177,129,1],[179,117,1],[181,105,1],[181,97,1],[181,91,1],[182,86,1],[183,83,1],[183,82,1],[184,81,1],[185,81,1],[185,82,1],[185,83,1],[189,87,1],[193,90,1],[200,93,1],[207,97,1],[218,99,1],[228,102,1],[241,104,1],[254,106,1],[267,108,1],[276,109,1],[288,110,1],[296,110,1],[304,110,1],[311,110,1],[315,110,1],[320,110,1],[325,110,1],[328,109,1],[331,108,1],[334,107,1],[336,105,1],[338,105,1],[340,104,1],[343,103,1],[345,102,1],[347,101,1],[348,100,1],[349,100,1],[350,99,1],[351,98,1],[352,98,1],[352,99,1],[352,100,1],[352,103,1],[352,108,1],[352,113,1],[351,119,1],[349,125,1],[348,133,1],[347,138,1],[346,141,1],[346,143,1],[346,144,1],[346,145,1],[345,147,1]]},{\"Name\":\"x\",\"Points\":[[130,155,1],[143,177,1],[150,190,1],[158,206,1],[169,223,1],[180,239,1],[188,253,1],[196,264,1],[203,273,1],[208,282,1],[211,288,1],[213,292,1],[214,296,1],[215,297,1],[213,297,1],[105,300,2],[108,291,2],[117,281,2],[132,268,2],[149,253,2],[166,236,2],[184,219,2],[200,203,2],[214,186,2],[226,176,2],[234,170,2],[241,165,2],[244,163,2],[245,162,2]]},{\"Name\":\"y\",\"Points\":[[113,154,1],[119,161,1],[126,167,1],[137,177,1],[150,187,1],[162,198,1],[176,209,1],[188,220,1],[198,229,1],[204,235,1],[208,240,1],[211,244,1],[213,245,1],[213,247,1],[214,245,1],[275,164,2],[270,170,2],[263,182,2],[251,195,2],[236,213,2],[219,230,2],[200,245,2],[181,262,2],[161,278,2],[146,295,2],[135,305,2],[129,313,2],[125,319,2],[122,320,2],[121,323,2],[121,324,2],[122,324,2],[123,324,2],[124,324,2]]},{\"Name\":\")\",\"Points\":[[154,83,1],[159,81,1],[162,81,1],[166,83,1],[172,84,1],[177,87,1],[181,90,1],[187,93,1],[193,98,1],[198,102,1],[203,107,1],[208,113,1],[212,117,1],[216,125,1],[221,131,1],[223,138,1],[226,146,1],[227,155,1],[229,163,1],[230,173,1],[230,182,1],[230,192,1],[230,202,1],[230,211,1],[230,221,1],[230,228,1],[228,236,1],[226,243,1],[224,250,1],[221,256,1],[217,261,1],[213,266,1],[207,269,1],[203,274,1],[198,278,1],[191,283,1],[182,289,1],[176,292,1],[167,298,1],[160,301,1],[153,304,1],[146,308,1],[140,312,1],[135,313,1],[130,315,1],[126,316,1],[122,317,1],[118,318,1]]},{\"Name\":\")\",\"Points\":[[157,51,1],[162,53,1],[167,57,1],[172,62,1],[179,70,1],[183,79,1],[189,89,1],[196,101,1],[201,112,1],[205,123,1],[211,135,1],[214,147,1],[219,161,1],[221,177,1],[224,189,1],[225,205,1],[225,224,1],[225,241,1],[224,256,1],[221,271,1],[216,286,1],[211,296,1],[206,308,1],[203,314,1],[199,320,1],[197,324,1],[194,326,1],[193,328,1]]},{\"Name\":\")\",\"Points\":[[180,43,1],[183,47,1],[187,51,1],[191,59,1],[197,69,1],[201,79,1],[204,90,1],[207,101,1],[211,113,1],[213,125,1],[215,137,1],[216,151,1],[217,164,1],[218,180,1],[218,195,1],[218,212,1],[217,224,1],[215,238,1],[211,253,1],[208,265,1],[204,276,1],[200,287,1],[194,296,1],[189,307,1],[183,314,1],[179,322,1],[174,330,1],[169,336,1],[164,341,1],[159,347,1],[156,351,1],[151,356,1],[147,358,1],[144,360,1],[140,361,1]]},{\"Name\":\")\",\"Points\":[[160,345,1],[170,338,1],[175,336,1],[180,331,1],[185,326,1],[192,318,1],[197,313,1],[203,306,1],[208,298,1],[214,290,1],[219,281,1],[224,272,1],[228,263,1],[233,252,1],[237,243,1],[242,232,1],[245,221,1],[248,210,1],[249,200,1],[251,189,1],[253,180,1],[253,168,1],[253,158,1],[253,149,1],[253,139,1],[253,130,1],[253,120,1],[253,111,1],[253,102,1],[253,93,1],[251,88,1],[249,80,1],[248,73,1],[245,68,1],[243,63,1],[238,56,1],[235,52,1],[232,47,1],[228,44,1],[226,42,1],[224,38,1],[221,36,1],[219,34,1],[217,32,1],[216,31,1],[214,29,1],[213,28,1],[212,28,1]]},{\"Name\":\")\",\"Points\":[[194,364,1],[196,355,1],[196,349,1],[198,343,1],[200,338,1],[203,331,1],[206,322,1],[210,314,1],[213,303,1],[216,293,1],[219,285,1],[223,274,1],[226,264,1],[229,251,1],[231,240,1],[234,227,1],[236,215,1],[238,202,1],[239,192,1],[239,180,1],[239,168,1],[239,158,1],[239,146,1],[239,135,1],[239,124,1],[239,114,1],[238,103,1],[236,95,1],[234,88,1],[231,79,1],[229,73,1],[226,67,1],[224,62,1],[221,56,1],[218,51,1],[216,47,1],[212,44,1],[211,42,1],[208,38,1],[206,37,1],[204,34,1],[203,33,1],[202,33,1],[201,33,1]]},{\"Name\":\"/\",\"Points\":[[252,64,1],[249,67,1],[248,71,1],[247,79,1],[244,86,1],[241,94,1],[238,103,1],[234,113,1],[230,121,1],[226,131,1],[223,139,1],[219,149,1],[214,158,1],[208,168,1],[203,178,1],[198,186,1],[192,196,1],[186,206,1],[181,216,1],[174,228,1],[169,238,1],[162,247,1],[156,257,1],[150,266,1],[145,275,1],[140,283,1],[136,291,1],[132,297,1],[128,304,1],[125,310,1],[121,316,1],[118,320,1],[117,324,1],[115,328,1],[114,331,1],[114,334,1],[113,336,1],[112,337,1],[112,338,1],[111,339,1],[111,340,1],[110,340,1],[109,340,1]]},{\"Name\":\"/\",\"Points\":[[118,333,1],[121,324,1],[123,319,1],[127,313,1],[133,306,1],[137,297,1],[142,289,1],[148,280,1],[155,269,1],[160,257,1],[168,246,1],[176,233,1],[183,218,1],[193,205,1],[201,191,1],[210,178,1],[219,163,1],[228,150,1],[237,139,1],[246,127,1],[252,118,1],[258,110,1],[265,101,1],[269,94,1],[273,89,1],[276,83,1],[279,79,1],[281,75,1],[283,71,1],[284,69,1],[284,67,1],[284,66,1],[284,65,1]]},{\"Name\":\"+\",\"Points\":[[113,195,1],[123,196,1],[130,196,1],[138,196,1],[151,197,1],[162,198,1],[176,198,1],[190,198,1],[205,198,1],[222,198,1],[235,198,1],[250,197,1],[264,196,1],[277,194,1],[289,192,1],[297,191,1],[304,189,1],[211,143,2],[209,149,2],[209,154,2],[209,163,2],[209,176,2],[209,186,2],[209,201,2],[208,213,2],[206,226,2],[205,238,2],[204,247,2],[204,256,2],[203,261,2],[203,266,2],[203,267,2],[203,268,2],[204,268,2]]},{\"Name\":\"+\",\"Points\":[[119,223,1],[124,224,1],[130,224,1],[138,226,1],[150,228,1],[162,231,1],[176,233,1],[189,235,1],[204,236,1],[219,237,1],[233,237,1],[246,235,1],[258,234,1],[267,233,1],[274,232,1],[280,231,1],[208,178,2],[204,187,2],[204,197,2],[204,210,2],[204,224,2],[204,240,2],[204,255,2],[204,269,2],[204,279,2]]},{\"Name\":\"+\",\"Points\":[[132,231,1],[135,229,1],[141,229,1],[154,229,1],[166,230,1],[181,231,1],[198,232,1],[211,233,1],[227,233,1],[243,233,1],[257,233,1],[270,233,1],[281,231,1],[291,228,1],[217,180,2],[210,183,2],[208,191,2],[207,201,2],[206,215,2],[206,230,2],[206,246,2],[205,264,2],[204,277,2],[204,291,2]]},{\"Name\":\"4\",\"Points\":[[188,98,1],[183,101,1],[182,107,1],[178,116,1],[174,127,1],[167,140,1],[161,153,1],[156,166,1],[148,180,1],[142,194,1],[138,204,1],[137,211,1],[135,217,1],[135,221,1],[135,224,1],[140,225,1],[149,226,1],[159,226,1],[173,226,1],[186,226,1],[201,226,1],[216,225,1],[230,224,1],[247,224,1],[260,223,1],[273,222,1],[284,221,1],[294,220,1],[301,220,1],[307,220,1],[311,219,1],[229,173,2],[226,184,2],[226,197,2],[225,214,2],[223,233,2],[220,251,2],[216,269,2],[215,283,2],[214,294,2]]},{\"Name\":\"4\",\"Points\":[[200,121,1],[194,126,1],[192,135,1],[187,149,1],[182,161,1],[175,178,1],[167,191,1],[160,203,1],[156,214,1],[151,222,1],[149,227,1],[148,231,1],[148,234,1],[150,236,1],[156,237,1],[165,238,1],[178,238,1],[190,238,1],[205,238,1],[221,238,1],[237,238,1],[256,238,1],[271,237,1],[286,236,1],[299,235,1],[309,235,1],[317,235,1],[323,235,1],[327,235,1],[329,235,1],[327,235,1],[234,187,2],[230,191,2],[230,197,2],[230,205,2],[230,219,2],[230,233,2],[230,246,2],[229,260,2],[228,273,2],[227,284,2],[226,293,2],[225,303,2],[222,311,2]]},{\"Name\":\"4\",\"Points\":[[231,108,1],[221,107,1],[216,113,1],[208,125,1],[202,137,1],[191,154,1],[181,171,1],[169,186,1],[159,202,1],[150,213,1],[142,222,1],[139,228,1],[137,231,1],[137,233,1],[137,234,1],[144,234,1],[156,234,1],[169,232,1],[184,229,1],[202,227,1],[219,224,1],[234,224,1],[248,223,1],[263,223,1],[275,223,1],[285,223,1],[294,224,1],[300,224,1],[306,224,1],[311,224,1],[235,180,2],[230,189,2],[227,200,2],[225,212,2],[220,228,2],[216,243,2],[211,259,2],[206,274,2],[204,286,2]]},{\"Name\":\"a\",\"Points\":[[204,145,1],[193,135,1],[188,135,1],[182,137,1],[174,142,1],[166,148,1],[159,155,1],[154,162,1],[150,171,1],[147,179,1],[146,185,1],[146,191,1],[150,198,1],[156,201,1],[160,202,1],[169,202,1],[178,197,1],[185,189,1],[192,179,1],[198,168,1],[201,158,1],[202,150,1],[202,145,1],[202,142,1],[202,140,1],[202,145,1],[202,153,1],[201,162,1],[201,174,1],[201,184,1],[204,194,1],[208,202,1],[213,206,1],[222,209,1],[233,209,1]]},{\"Name\":\"a\",\"Points\":[[207,169,1],[198,159,1],[194,159,1],[188,162,1],[180,169,1],[170,179,1],[163,186,1],[157,196,1],[152,205,1],[150,212,1],[149,221,1],[149,228,1],[153,233,1],[159,237,1],[166,239,1],[176,239,1],[187,238,1],[198,229,1],[206,220,1],[213,210,1],[219,198,1],[222,187,1],[226,175,1],[226,167,1],[226,161,1],[226,158,1],[226,157,1],[226,158,1],[224,164,1],[221,174,1],[220,182,1],[219,194,1],[219,204,1],[219,214,1],[222,224,1],[226,229,1],[230,234,1],[235,237,1],[244,238,1],[257,235,1],[270,225,1],[286,214,1],[297,205,1]]},{\"Name\":\"a\",\"Points\":[[185,192,1],[181,180,1],[181,180,1],[180,179,1],[179,179,1],[174,180,1],[166,185,1],[158,192,1],[147,202,1],[139,212,1],[134,222,1],[129,233,1],[128,242,1],[128,250,1],[128,257,1],[134,261,1],[141,263,1],[151,263,1],[162,257,1],[172,246,1],[181,233,1],[188,219,1],[192,209,1],[195,197,1],[197,191,1],[198,186,1],[198,185,1],[196,192,1],[193,202,1],[191,210,1],[190,220,1],[190,230,1],[195,238,1],[202,244,1],[208,248,1],[218,252,1],[226,253,1],[239,253,1],[254,248,1]]},{\"Name\":\"c\",\"Points\":[[226,150,1],[216,145,1],[211,145,1],[202,149,1],[193,154,1],[183,158,1],[175,164,1],[167,172,1],[161,179,1],[158,183,1],[156,189,1],[156,196,1],[156,201,1],[159,205,1],[165,209,1],[174,211,1],[182,212,1],[191,213,1],[202,214,1],[211,214,1],[220,214,1],[228,214,1],[234,213,1]]},{\"Name\":\"c\",\"Points\":[[233,157,1],[220,149,1],[214,149,1],[204,154,1],[196,158,1],[185,163,1],[174,172,1],[167,178,1],[161,183,1],[158,188,1],[156,194,1],[156,200,1],[158,205,1],[163,209,1],[172,212,1],[181,213,1],[195,214,1],[207,214,1],[221,213,1],[232,211,1],[242,208,1]]},{\"Name\":\"c\",\"Points\":[[228,169,1],[216,156,1],[210,157,1],[204,158,1],[196,161,1],[186,167,1],[177,174,1],[169,180,1],[162,186,1],[158,193,1],[156,200,1],[155,204,1],[155,208,1],[157,213,1],[162,217,1],[172,220,1],[181,222,1],[193,223,1],[204,223,1],[215,221,1],[226,218,1],[236,214,1],[247,210,1]]},{\"Name\":\"c\",\"Points\":[[254,177,1],[248,167,1],[244,166,1],[239,166,1],[232,166,1],[223,168,1],[213,172,1],[202,178,1],[192,182,1],[183,189,1],[176,196,1],[171,205,1],[169,211,1],[168,217,1],[168,224,1],[172,229,1],[179,233,1],[189,237,1],[199,238,1],[212,238,1],[225,238,1],[236,238,1],[247,236,1],[255,235,1]]},{\"Name\":\"g\",\"Points\":[[203,146,1],[192,142,1],[187,143,1],[181,145,1],[175,153,1],[169,159,1],[165,168,1],[164,175,1],[163,181,1],[163,189,1],[167,195,1],[174,198,1],[180,199,1],[190,199,1],[200,196,1],[207,188,1],[215,180,1],[220,168,1],[222,160,1],[224,150,1],[224,143,1],[224,138,1],[224,135,1],[223,134,1],[222,134,1],[221,135,1],[221,139,1],[220,147,1],[220,157,1],[220,169,1],[220,181,1],[219,196,1],[218,209,1],[216,223,1],[212,235,1],[206,249,1],[200,261,1],[194,270,1],[187,277,1],[181,281,1],[176,282,1],[170,282,1],[164,274,1],[163,266,1],[164,255,1],[169,245,1],[178,232,1],[188,222,1],[201,211,1],[216,200,1],[234,188,1],[253,177,1],[271,167,1]]},{\"Name\":\"g\",\"Points\":[[189,149,1],[181,145,1],[173,145,1],[165,145,1],[159,147,1],[151,155,1],[145,167,1],[142,178,1],[141,190,1],[141,202,1],[141,211,1],[146,219,1],[152,224,1],[158,224,1],[167,224,1],[175,217,1],[184,204,1],[192,190,1],[197,176,1],[198,163,1],[199,155,1],[199,149,1],[199,145,1],[199,143,1],[199,147,1],[198,155,1],[196,167,1],[193,182,1],[189,200,1],[186,216,1],[182,235,1],[178,254,1],[173,273,1],[165,293,1],[158,308,1],[151,322,1],[145,331,1],[141,336,1],[137,336,1],[135,336,1],[133,334,1],[133,320,1],[137,301,1],[144,280,1],[155,262,1],[166,245,1],[180,230,1],[194,218,1],[211,205,1],[230,194,1]]},{\"Name\":\"g\",\"Points\":[[206,165,1],[188,163,1],[178,164,1],[165,172,1],[157,181,1],[150,196,1],[146,206,1],[146,217,1],[146,228,1],[151,233,1],[159,235,1],[169,235,1],[182,227,1],[196,211,1],[207,194,1],[216,180,1],[222,165,1],[226,157,1],[226,153,1],[226,151,1],[226,155,1],[226,164,1],[225,179,1],[223,196,1],[221,213,1],[219,231,1],[216,251,1],[212,270,1],[206,289,1],[201,304,1],[195,313,1],[190,321,1],[186,323,1],[181,325,1],[177,323,1],[174,316,1],[172,303,1],[172,289,1],[175,273,1],[181,261,1],[188,249,1],[198,240,1],[211,231,1],[227,221,1],[243,213,1],[259,205,1]]},{\"Name\":\"-\",\"Points\":[[151,182,1],[155,181,1],[159,181,1],[166,181,1],[174,182,1],[184,183,1],[194,184,1],[205,184,1],[214,183,1],[224,181,1],[234,179,1],[244,177,1]]},{\"Name\":\"-\",\"Points\":[[150,206,1],[156,207,1],[161,207,1],[168,208,1],[178,209,1],[187,209,1],[197,209,1],[207,208,1],[217,206,1],[225,204,1]]},{\"Name\":\"-\",\"Points\":[[150,203,1],[157,204,1],[163,204,1],[171,205,1],[181,205,1],[190,206,1],[202,206,1],[211,205,1],[221,205,1],[229,202,1]]},{\"Name\":\"7\",\"Points\":[[150,101,1],[167,99,1],[181,99,1],[194,100,1],[206,102,1],[220,104,1],[231,108,1],[240,112,1],[246,117,1],[249,126,1],[250,136,1],[250,153,1],[246,168,1],[241,183,1],[236,201,1],[232,216,1],[230,232,1],[228,246,1],[228,259,1],[228,270,1],[228,280,1],[229,289,1],[230,294,1],[231,299,1],[191,221,2],[198,219,2],[207,219,2],[222,219,2],[240,219,2],[257,218,2],[273,217,2]]},{\"Name\":\"7\",\"Points\":[[125,108,1],[138,108,1],[148,108,1],[161,108,1],[176,110,1],[188,113,1],[199,118,1],[207,126,1],[211,135,1],[213,148,1],[213,163,1],[209,182,1],[202,203,1],[195,224,1],[191,239,1],[190,256,1],[190,269,1],[190,281,1],[192,291,1],[196,299,1],[199,305,1],[203,309,1],[204,311,1],[160,245,2],[169,244,2],[179,244,2],[195,243,2],[212,240,2],[228,238,2]]},{\"Name\":\"7\",\"Points\":[[150,99,1],[159,98,1],[166,98,1],[176,98,1],[188,97,1],[201,95,1],[213,94,1],[223,93,1],[232,93,1],[241,93,1],[246,95,1],[249,99,1],[250,105,1],[250,113,1],[245,123,1],[236,135,1],[227,148,1],[219,162,1],[210,178,1],[202,192,1],[194,206,1],[189,222,1],[185,236,1],[181,248,1],[181,261,1],[180,271,1],[180,282,1],[180,291,1],[180,297,1],[180,303,1],[180,307,1],[180,309,1],[180,310,1],[179,310,1],[137,246,2],[143,240,2],[153,239,2],[163,238,2],[175,236,2],[185,234,2],[195,233,2],[205,233,2],[213,231,2],[219,230,2],[224,229,2],[226,228,2],[229,228,2],[230,228,2],[232,227,2]]},{\"Name\":\"2\",\"Points\":[[153,149,1],[150,139,1],[152,133,1],[158,125,1],[166,116,1],[178,108,1],[188,103,1],[198,101,1],[207,101,1],[216,104,1],[223,113,1],[226,129,1],[227,146,1],[227,167,1],[225,191,1],[218,214,1],[210,236,1],[203,256,1],[191,274,1],[182,288,1],[174,299,1],[168,305,1],[164,308,1],[161,308,1],[161,306,1],[164,300,1],[171,298,1],[181,297,1],[189,296,1],[198,296,1],[204,300,1],[211,304,1],[217,310,1],[223,313,1],[226,316,1],[232,318,1],[241,318,1],[255,314,1]]},{\"Name\":\"2\",\"Points\":[[162,115,1],[183,108,1],[195,105,1],[205,104,1],[216,104,1],[223,110,1],[225,120,1],[225,134,1],[223,154,1],[213,177,1],[203,199,1],[192,221,1],[181,243,1],[173,261,1],[167,275,1],[165,286,1],[165,294,1],[167,300,1],[178,303,1],[190,303,1],[206,303,1],[224,298,1],[240,293,1],[253,290,1],[264,288,1],[272,286,1],[278,284,1],[285,284,1],[292,282,1],[297,280,1]]},{\"Name\":\"2\",\"Points\":[[155,140,1],[158,131,1],[166,126,1],[177,121,1],[188,118,1],[198,118,1],[208,120,1],[215,126,1],[220,136,1],[223,149,1],[223,166,1],[219,181,1],[213,200,1],[204,219,1],[195,238,1],[187,252,1],[181,269,1],[176,284,1],[173,293,1],[173,301,1],[174,308,1],[181,311,1],[194,313,1],[208,313,1],[226,312,1],[239,310,1],[252,307,1],[263,306,1],[271,304,1],[277,304,1],[282,303,1],[286,303,1],[290,303,1]]},{\"Name\":\"2\",\"Points\":[[150,144,1],[164,129,1],[176,126,1],[187,125,1],[201,128,1],[210,136,1],[217,151,1],[219,168,1],[219,187,1],[213,210,1],[203,230,1],[186,251,1],[167,269,1],[148,284,1],[135,292,1],[126,295,1],[121,295,1],[125,288,1],[137,280,1],[149,274,1],[160,272,1],[173,272,1],[183,277,1],[191,285,1],[199,296,1],[205,305,1],[213,315,1],[221,322,1],[229,330,1],[241,334,1],[253,335,1],[269,334,1],[289,325,1],[310,313,1]]},{\"Name\":\"0\",\"Points\":[[131,77,1],[120,80,1],[118,82,1],[115,85,1],[112,88,1],[109,90,1],[106,93,1],[103,97,1],[101,99,1],[98,101,1],[96,104,1],[94,106,1],[92,110,1],[92,112,1],[90,115,1],[89,116,1],[88,117,1],[88,118,1],[88,119,1],[88,119,1],[87,119,1],[87,119,1],[87,118,1],[86,117,1],[85,117,1],[85,118,1],[85,119,1],[84,119,1],[83,119,1],[83,122,1],[83,124,1],[82,126,1],[81,129,1],[80,132,1],[79,134,1],[78,137,1],[78,139,1],[77,142,1],[76,145,1],[75,149,1],[75,152,1],[73,157,1],[73,162,1],[73,164,1],[73,168,1],[73,172,1],[74,176,1],[75,180,1],[78,185,1],[80,188,1],[83,190,1],[86,194,1],[90,198,1],[93,201,1],[98,205,1],[104,208,1],[111,211,1],[118,213,1],[126,216,1],[134,217,1],[140,217,1],[147,217,1],[153,217,1],[159,215,1],[164,212,1],[168,208,1],[172,205,1],[176,202,1],[179,198,1],[181,194,1],[182,189,1],[184,185,1],[185,180,1],[185,174,1],[185,167,1],[185,162,1],[185,155,1],[185,150,1],[185,142,1],[185,138,1],[184,131,1],[182,126,1],[181,120,1],[180,116,1],[177,111,1],[175,106,1],[172,103,1],[169,99,1],[166,97,1],[163,93,1],[160,90,1],[158,87,1],[154,86,1],[150,84,1],[147,82,1],[143,81,1],[139,79,1],[137,78,1],[134,77,1],[131,77,1],[129,77,1],[126,77,1],[125,77,1],[123,77,1],[122,77,1],[120,77,1]]},{\"Name\":\"1\",\"Points\":[[62,200,1],[68,196,1],[72,191,1],[79,184,1],[90,171,1],[99,159,1],[108,146,1],[115,135,1],[124,123,1],[132,111,1],[138,100,1],[144,92,1],[150,84,1],[153,77,1],[155,75,1],[157,73,1],[158,72,1],[158,71,1],[158,73,1],[158,79,1],[158,86,1],[158,96,1],[157,106,1],[155,119,1],[155,133,1],[154,148,1],[153,168,1],[151,186,1],[149,206,1],[147,227,1],[145,245,1],[144,258,1],[143,268,1],[142,275,1],[142,279,1],[142,282,1],[142,285,1]]},{\"Name\":\"2\",\"Points\":[[99,110,1],[102,97,1],[107,96,1],[117,93,1],[133,89,1],[148,86,1],[159,84,1],[171,84,1],[179,84,1],[185,87,1],[190,92,1],[193,97,1],[194,103,1],[195,112,1],[195,119,1],[192,133,1],[186,142,1],[181,156,1],[171,167,1],[161,178,1],[152,189,1],[140,200,1],[129,211,1],[120,220,1],[112,227,1],[106,231,1],[101,235,1],[98,239,1],[96,240,1],[96,241,1],[96,242,1],[96,243,1],[101,244,1],[109,245,1],[118,245,1],[132,246,1],[147,246,1],[165,246,1],[180,246,1],[194,246,1],[204,245,1],[213,245,1],[218,245,1],[223,245,1],[224,244,1],[225,244,1],[223,245,1]]},{\"Name\":\"3\",\"Points\":[[95,115,1],[97,108,1],[102,106,1],[115,105,1],[131,104,1],[148,103,1],[162,103,1],[176,103,1],[183,105,1],[188,110,1],[190,114,1],[190,119,1],[189,126,1],[184,133,1],[177,140,1],[171,144,1],[165,149,1],[161,153,1],[158,157,1],[157,160,1],[157,162,1],[157,166,1],[161,170,1],[171,176,1],[181,184,1],[189,190,1],[194,195,1],[199,203,1],[201,208,1],[203,213,1],[203,221,1],[201,227,1],[194,235,1],[183,243,1],[171,250,1],[159,255,1],[146,261,1],[134,264,1],[121,267,1],[110,267,1],[100,267,1],[90,266,1],[83,263,1],[78,259,1],[76,257,1],[74,255,1],[74,254,1],[77,254,1]]},{\"Name\":\"4\",\"Points\":[[129,81,1],[129,86,1],[129,91,1],[129,97,1],[129,110,1],[126,120,1],[123,133,1],[119,144,1],[115,155,1],[115,165,1],[112,174,1],[111,184,1],[111,190,1],[111,197,1],[111,201,1],[111,205,1],[113,208,1],[115,209,1],[120,210,1],[128,211,1],[138,213,1],[150,214,1],[164,215,1],[179,216,1],[194,216,1],[264,216,1],[270,216,1],[278,216,1],[277,216,1],[181,155,2],[181,162,2],[181,167,2],[181,175,2],[181,186,2],[181,197,2],[181,209,2],[181,220,2],[181,231,2],[181,243,2],[181,254,2],[181,264,2],[180,273,2],[179,282,2],[178,288,2],[177,293,2],[176,297,2],[176,298,2],[176,299,2],[176,300,2],[176,303,2]]},{\"Name\":\"5\",\"Points\":[[123,95,1],[122,103,1],[122,113,1],[120,120,1],[117,133,1],[114,143,1],[111,152,1],[108,160,1],[106,165,1],[106,168,1],[105,170,1],[105,171,1],[108,170,1],[115,168,1],[123,167,1],[134,166,1],[147,166,1],[163,166,1],[179,170,1],[190,175,1],[199,180,1],[206,185,1],[211,190,1],[215,197,1],[218,205,1],[218,213,1],[218,222,1],[218,230,1],[212,238,1],[204,245,1],[194,253,1],[181,259,1],[168,265,1],[153,268,1],[137,271,1],[124,272,1],[110,272,1],[96,271,1],[86,268,1],[78,265,1],[73,263,1],[70,260,1],[68,258,1],[68,256,1],[68,255,1],[68,254,1],[73,254,1],[102,106,2],[110,108,2],[117,108,2],[129,109,2],[143,110,2],[159,110,2],[175,110,2],[190,110,2],[203,110,2],[211,110,2],[219,110,2],[224,110,2],[227,110,2],[229,110,2],[230,110,2],[228,110,2]]},{\"Name\":\"6\",\"Points\":[[208,87,1],[202,85,1],[197,86,1],[190,91,1],[181,97,1],[171,109,1],[161,122,1],[153,137,1],[140,153,1],[133,167,1],[125,185,1],[121,201,1],[120,217,1],[120,230,1],[120,246,1],[126,258,1],[134,270,1],[147,278,1],[160,284,1],[176,287,1],[191,287,1],[204,282,1],[215,274,1],[223,267,1],[227,256,1],[230,246,1],[231,237,1],[231,227,1],[227,218,1],[218,208,1],[207,201,1],[194,194,1],[183,189,1],[170,186,1],[156,185,1],[139,185,1],[125,189,1],[115,197,1],[104,209,1],[99,226,1]]},{\"Name\":\"7\",\"Points\":[[114,97,1],[120,97,1],[129,97,1],[140,97,1],[158,98,1],[177,99,1],[199,100,1],[217,100,1],[232,100,1],[245,100,1],[254,99,1],[260,98,1],[265,98,1],[267,98,1],[268,98,1],[266,100,1],[260,107,1],[254,115,1],[246,123,1],[235,135,1],[226,146,1],[214,159,1],[204,172,1],[190,189,1],[180,207,1],[171,221,1],[162,235,1],[156,250,1],[149,263,1],[145,272,1],[141,279,1],[138,287,1],[137,291,1],[136,293,1],[136,295,1],[136,296,1],[158,198,2],[162,193,2],[175,193,2],[187,193,2],[199,193,2],[208,193,2],[214,192,2],[219,191,2],[223,190,2],[224,190,2],[225,190,2]]},{\"Name\":\"8\",\"Points\":[[187,92,1],[176,87,1],[166,91,1],[154,97,1],[143,107,1],[137,115,1],[134,120,1],[131,129,1],[131,138,1],[134,147,1],[149,164,1],[169,179,1],[190,192,1],[204,201,1],[218,209,1],[230,217,1],[240,227,1],[248,238,1],[251,249,1],[254,260,1],[254,273,1],[246,285,1],[234,294,1],[219,300,1],[203,303,1],[184,303,1],[166,302,1],[149,297,1],[135,289,1],[125,279,1],[117,268,1],[115,258,1],[115,245,1],[120,230,1],[129,215,1],[142,200,1],[158,187,1],[173,175,1],[187,164,1],[199,154,1],[209,143,1],[215,134,1],[219,126,1],[220,119,1],[220,111,1],[215,105,1],[207,100,1],[199,97,1],[191,95,1],[184,94,1],[171,97,1]]},{\"Name\":\"9\",\"Points\":[[215,96,1],[201,91,1],[194,91,1],[186,96,1],[178,101,1],[168,112,1],[161,122,1],[158,131,1],[156,139,1],[156,147,1],[159,154,1],[172,159,1],[190,160,1],[207,157,1],[226,144,1],[237,130,1],[244,119,1],[247,112,1],[248,105,1],[248,100,1],[248,98,1],[247,97,1],[242,97,1],[237,103,1],[233,111,1],[231,119,1],[229,129,1],[229,141,1],[229,157,1],[231,171,1],[234,186,1],[236,199,1],[239,216,1],[240,229,1],[240,241,1],[236,254,1],[231,264,1],[223,274,1],[213,281,1],[204,287,1],[188,292,1],[176,293,1],[160,293,1],[144,289,1],[133,281,1],[123,273,1],[116,265,1],[113,259,1],[111,255,1],[111,253,1]]},{\"Name\":\",\",\"Points\":[[205,275,1],[202,280,1],[197,287,1],[189,297,1],[179,307,1],[168,316,1],[158,324,1],[148,332,1],[140,338,1],[135,343,1],[131,346,1],[129,350,1]]},{\"Name\":\"a\",\"Points\":[[163,167,1],[153,162,1],[148,162,1],[142,164,1],[137,168,1],[134,172,1],[129,179,1],[126,185,1],[124,190,1],[121,195,1],[120,202,1],[120,208,1],[120,212,1],[120,216,1],[120,219,1],[125,222,1],[130,223,1],[137,223,1],[145,223,1],[152,222,1],[159,218,1],[166,211,1],[171,203,1],[177,194,1],[181,187,1],[183,180,1],[185,175,1],[185,171,1],[185,169,1],[185,168,1],[185,167,1],[182,167,1],[181,169,1],[179,171,1],[177,176,1],[176,182,1],[175,188,1],[175,195,1],[175,204,1],[175,212,1],[176,217,1],[178,222,1],[181,226,1],[182,228,1],[185,229,1],[190,229,1],[195,229,1],[202,227,1],[210,222,1],[218,214,1],[224,207,1],[228,202,1],[230,198,1],[231,197,1],[232,196,1]]},{\"Name\":\"b\",\"Points\":[[121,67,1],[120,76,1],[120,85,1],[119,97,1],[117,113,1],[115,128,1],[113,141,1],[111,155,1],[109,166,1],[109,176,1],[108,186,1],[108,194,1],[108,199,1],[108,203,1],[108,204,1],[109,202,1],[111,197,1],[115,189,1],[122,179,1],[132,170,1],[140,164,1],[151,161,1],[159,160,1],[168,159,1],[176,159,1],[185,163,1],[190,166,1],[196,172,1],[201,179,1],[204,185,1],[204,190,1],[204,197,1],[204,204,1],[200,212,1],[194,217,1],[184,222,1],[173,227,1],[160,229,1],[149,229,1],[138,229,1],[129,228,1],[119,225,1],[113,221,1],[109,217,1],[106,214,1],[105,210,1],[105,208,1],[105,208,1]]},{\"Name\":\"c\",\"Points\":[[210,172,1],[194,168,1],[188,168,1],[180,170,1],[166,177,1],[155,186,1],[143,196,1],[134,206,1],[128,214,1],[123,223,1],[120,230,1],[120,235,1],[120,243,1],[124,250,1],[136,256,1],[150,263,1],[166,267,1],[180,268,1],[194,268,1],[208,267,1],[219,264,1],[226,259,1],[231,254,1],[234,252,1],[236,250,1],[236,249,1]]},{\"Name\":\"d\",\"Points\":[[215,179,1],[201,179,1],[193,181,1],[183,186,1],[176,192,1],[168,199,1],[164,208,1],[161,214,1],[159,223,1],[159,230,1],[159,237,1],[159,243,1],[161,248,1],[167,250,1],[176,250,1],[185,246,1],[195,235,1],[204,225,1],[212,210,1],[218,196,1],[224,180,1],[227,164,1],[231,150,1],[232,140,1],[234,130,1],[235,124,1],[235,120,1],[235,119,1],[234,123,1],[233,131,1],[232,142,1],[231,155,1],[231,168,1],[231,183,1],[231,196,1],[230,209,1],[230,220,1],[230,229,1],[229,234,1],[229,240,1],[228,242,1],[228,243,1],[228,242,1],[228,241,1],[228,240,1]]},{\"Name\":\"e\",\"Points\":[[156,194,1],[160,194,1],[167,194,1],[180,194,1],[197,194,1],[213,190,1],[224,186,1],[232,181,1],[238,176,1],[241,172,1],[241,169,1],[241,164,1],[232,159,1],[217,156,1],[204,154,1],[186,154,1],[173,157,1],[161,164,1],[153,168,1],[144,175,1],[137,184,1],[133,194,1],[131,204,1],[129,214,1],[129,223,1],[130,231,1],[136,240,1],[144,250,1],[158,257,1],[171,263,1],[186,267,1],[200,268,1],[212,268,1],[219,267,1],[225,262,1],[227,259,1],[228,255,1],[229,254,1],[229,253,1]]},{\"Name\":\"f\",\"Points\":[[275,109,1],[267,97,1],[258,97,1],[241,97,1],[225,100,1],[212,109,1],[204,116,1],[198,124,1],[193,133,1],[189,141,1],[185,151,1],[182,166,1],[181,183,1],[181,196,1],[181,211,1],[181,225,1],[181,237,1],[181,250,1],[181,263,1],[181,272,1],[181,282,1],[181,289,1],[181,295,1],[181,298,1],[181,300,1],[181,301,1],[140,179,2],[143,178,2],[156,178,2],[176,178,2],[194,178,2],[207,178,2],[217,177,2],[223,176,2],[225,175,2],[226,175,2],[226,175,2],[226,176,2]]},{\"Name\":\"g\",\"Points\":[[197,122,1],[185,126,1],[178,130,1],[171,139,1],[162,149,1],[157,161,1],[152,170,1],[149,180,1],[149,186,1],[149,191,1],[149,194,1],[153,196,1],[161,196,1],[175,193,1],[186,185,1],[197,173,1],[206,162,1],[212,152,1],[215,144,1],[217,140,1],[218,137,1],[218,135,1],[217,135,1],[213,138,1],[210,145,1],[206,157,1],[205,170,1],[205,185,1],[205,202,1],[207,219,1],[210,237,1],[213,255,1],[213,270,1],[213,284,1],[213,296,1],[209,304,1],[205,310,1],[199,314,1],[191,315,1],[181,315,1],[169,315,1],[158,308,1],[148,301,1],[140,293,1],[134,283,1],[131,274,1],[130,264,1],[130,255,1],[130,250,1],[131,247,1],[134,246,1]]},{\"Name\":\"l\",\"Points\":[[171,64,1],[168,70,1],[168,75,1],[166,86,1],[164,98,1],[161,115,1],[159,130,1],[158,142,1],[154,160,1],[153,172,1],[151,189,1],[151,204,1],[150,220,1],[149,235,1],[148,247,1],[148,256,1],[148,263,1],[148,268,1],[148,270,1],[148,271,1],[148,270,1]]},{\"Name\":\"i\",\"Points\":[[177,176,1],[178,187,1],[178,195,1],[176,208,1],[175,221,1],[172,233,1],[171,242,1],[171,252,1],[171,258,1],[171,262,1],[171,265,1],[176,123,2]]},{\"Name\":\"n\",\"Points\":[[108,160,1],[106,170,1],[106,181,1],[104,193,1],[101,210,1],[97,225,1],[96,237,1],[93,250,1],[92,258,1],[92,264,1],[92,268,1],[92,269,1],[92,265,1],[94,255,1],[97,245,1],[103,231,1],[110,220,1],[117,207,1],[126,196,1],[134,188,1],[142,182,1],[150,179,1],[159,177,1],[166,177,1],[174,180,1],[181,186,1],[186,194,1],[190,204,1],[194,215,1],[196,227,1],[197,237,1],[197,247,1],[197,256,1],[197,264,1],[195,268,1],[194,271,1],[193,273,1],[193,272,1],[193,271,1]]},{\"Name\":\"o\",\"Points\":[[173,168,1],[159,170,1],[154,175,1],[146,186,1],[142,196,1],[138,208,1],[137,217,1],[137,227,1],[137,234,1],[142,242,1],[151,248,1],[163,253,1],[176,254,1],[194,254,1],[207,253,1],[217,249,1],[226,239,1],[231,230,1],[236,221,1],[238,211,1],[238,203,1],[236,194,1],[231,186,1],[223,180,1],[211,176,1],[199,174,1],[184,173,1],[171,173,1],[160,174,1],[152,179,1],[144,186,1],[142,194,1]]},{\"Name\":\"s\",\"Points\":[[243,161,1],[233,153,1],[226,153,1],[218,153,1],[206,155,1],[197,159,1],[190,162,1],[184,165,1],[181,168,1],[180,174,1],[180,181,1],[184,189,1],[195,198,1],[209,208,1],[225,215,1],[237,222,1],[246,228,1],[252,233,1],[256,237,1],[257,241,1],[257,245,1],[255,249,1],[246,252,1],[234,253,1],[221,254,1],[207,254,1],[190,253,1],[179,253,1],[167,250,1],[160,246,1],[156,244,1],[153,242,1],[152,240,1]]},{\"Name\":\"t\",\"Points\":[[190,87,1],[188,100,1],[188,113,1],[187,131,1],[185,149,1],[184,168,1],[181,187,1],[181,206,1],[181,226,1],[181,244,1],[181,259,1],[181,274,1],[181,283,1],[181,291,1],[181,296,1],[181,297,1],[181,297,1],[153,161,2],[164,155,2],[181,155,2],[198,155,2],[209,154,2],[220,152,2],[226,152,2],[231,151,2],[234,150,2],[235,150,2],[233,153,2]]},{\"Name\":\"+\",\"Points\":[[115,196,1],[122,195,1],[136,195,1],[157,196,1],[176,197,1],[194,198,1],[208,198,1],[222,198,1],[230,198,1],[236,198,1],[239,198,1],[240,198,1],[163,154,2],[163,159,2],[163,166,2],[163,179,2],[164,192,2],[164,206,2],[164,216,2],[164,226,2],[164,233,2],[164,239,2],[164,242,2],[164,245,2],[164,247,2]]},{\"Name\":\"-\",\"Points\":[[125,206,1],[125,202,1],[134,202,1],[153,203,1],[174,205,1],[192,206,1],[205,206,1],[217,206,1],[226,206,1],[231,206,1],[235,206,1],[237,207,1],[238,207,1],[238,208,1]]},{\"Name\":\"/\",\"Points\":[[263,95,1],[255,104,1],[247,115,1],[235,132,1],[223,148,1],[208,166,1],[193,186,1],[178,204,1],[164,221,1],[155,231,1],[148,241,1],[145,246,1],[143,249,1],[143,250,1],[144,250,1],[146,250,1]]},{\"Name\":\"(\",\"Points\":[[206,72,1],[199,75,1],[192,79,1],[182,88,1],[175,98,1],[168,111,1],[162,124,1],[159,139,1],[157,153,1],[156,166,1],[156,183,1],[158,197,1],[161,211,1],[168,223,1],[176,235,1],[182,246,1],[190,254,1],[196,263,1],[200,268,1],[204,272,1],[204,273,1],[205,274,1],[206,274,1]]},{\"Name\":\")\",\"Points\":[[185,82,1],[196,85,1],[203,91,1],[211,99,1],[219,111,1],[226,122,1],[232,136,1],[237,149,1],[241,164,1],[244,176,1],[246,191,1],[246,209,1],[246,226,1],[246,241,1],[241,255,1],[238,267,1],[234,277,1],[229,285,1],[226,291,1],[223,295,1],[221,297,1],[218,298,1],[218,297,1]]},{\"Name\":\"|\",\"Points\":[[153,59,1],[153,68,1],[153,77,1],[153,90,1],[152,107,1],[149,122,1],[147,140,1],[144,157,1],[142,176,1],[140,195,1],[138,215,1],[137,231,1],[136,248,1],[134,259,1],[134,269,1],[133,275,1],[132,279,1],[131,282,1],[131,283,1],[131,282,1]]},{\"Name\":\"sqrt\",\"Points\":[[59,198,1],[74,198,1],[90,198,1],[103,198,1],[115,197,1],[123,195,1],[129,194,1],[133,194,1],[135,193,1],[136,192,1],[136,194,1],[134,197,1],[132,201,1],[130,208,1],[129,216,1],[128,226,1],[127,237,1],[127,250,1],[126,262,1],[126,275,1],[126,288,1],[126,298,1],[126,310,1],[126,317,1],[126,321,1],[126,325,1],[126,328,1],[126,327,1],[127,324,1],[129,317,1],[133,307,1],[136,297,1],[138,287,1],[143,275,1],[147,263,1],[151,249,1],[155,234,1],[159,221,1],[161,206,1],[166,194,1],[169,177,1],[172,162,1],[176,145,1],[177,129,1],[179,117,1],[181,105,1],[181,97,1],[181,91,1],[182,86,1],[183,83,1],[183,82,1],[184,81,1],[185,81,1],[185,82,1],[185,83,1],[189,87,1],[193,90,1],[200,93,1],[207,97,1],[218,99,1],[228,102,1],[241,104,1],[254,106,1],[267,108,1],[276,109,1],[288,110,1],[296,110,1],[304,110,1],[311,110,1],[315,110,1],[320,110,1],[325,110,1],[328,109,1],[331,108,1],[334,107,1],[336,105,1],[338,105,1],[340,104,1],[343,103,1],[345,102,1],[347,101,1],[348,100,1],[349,100,1],[350,99,1],[351,98,1],[352,98,1],[352,99,1],[352,100,1],[352,103,1],[352,108,1],[352,113,1],[351,119,1],[349,125,1],[348,133,1],[347,138,1],[346,141,1],[346,143,1],[346,144,1],[346,145,1],[345,147,1]]},{\"Name\":\"x\",\"Points\":[[130,155,1],[143,177,1],[150,190,1],[158,206,1],[169,223,1],[180,239,1],[188,253,1],[196,264,1],[203,273,1],[208,282,1],[211,288,1],[213,292,1],[214,296,1],[215,297,1],[213,297,1],[105,300,2],[108,291,2],[117,281,2],[132,268,2],[149,253,2],[166,236,2],[184,219,2],[200,203,2],[214,186,2],[226,176,2],[234,170,2],[241,165,2],[244,163,2],[245,162,2]]},{\"Name\":\"y\",\"Points\":[[113,154,1],[119,161,1],[126,167,1],[137,177,1],[150,187,1],[162,198,1],[176,209,1],[188,220,1],[198,229,1],[204,235,1],[208,240,1],[211,244,1],[213,245,1],[213,247,1],[214,245,1],[275,164,2],[270,170,2],[263,182,2],[251,195,2],[236,213,2],[219,230,2],[200,245,2],[181,262,2],[161,278,2],[146,295,2],[135,305,2],[129,313,2],[125,319,2],[122,320,2],[121,323,2],[121,324,2],[122,324,2],[123,324,2],[124,324,2]]},{\"Name\":\"0\",\"Points\":[[237,151,1],[232,127,1],[226,125,1],[215,125,1],[204,126,1],[190,134,1],[176,143,1],[164,157,1],[155,172,1],[148,190,1],[143,210,1],[143,231,1],[143,250,1],[151,267,1],[161,278,1],[175,287,1],[191,292,1],[209,292,1],[229,285,1],[246,274,1],[258,258,1],[267,240,1],[270,222,1],[271,199,1],[269,176,1],[260,159,1],[250,147,1],[239,138,1],[229,131,1],[221,129,1],[213,129,1]]},{\"Name\":\"1\",\"Points\":[[110,260,1],[124,245,1],[137,236,1],[155,223,1],[174,208,1],[192,194,1],[210,175,1],[226,158,1],[238,142,1],[247,133,1],[254,126,1],[259,121,1],[263,119,1],[265,119,1],[266,124,1],[266,136,1],[262,165,1],[260,184,1],[257,202,1],[252,281,1],[252,285,1],[252,289,1],[254,292,1]]},{\"Name\":\"2\",\"Points\":[[158,170,1],[175,160,1],[186,158,1],[201,158,1],[215,161,1],[224,165,1],[231,172,1],[234,180,1],[234,191,1],[162,276,1],[160,284,1],[160,289,1],[213,296,1],[226,297,1],[239,297,1],[247,297,1],[253,297,1],[257,296,1],[259,296,1],[260,296,1],[261,296,1],[262,297,1]]},{\"Name\":\"3\",\"Points\":[[146,164,1],[153,155,1],[162,153,1],[178,152,1],[196,152,1],[213,153,1],[226,157,1],[233,160,1],[237,163,1],[239,166,1],[239,173,1],[234,180,1],[227,187,1],[226,192,1],[226,198,1],[226,203,1],[232,209,1],[246,217,1],[258,224,1],[270,234,1],[276,242,1],[279,250,1],[280,254,1],[275,260,1],[264,264,1],[246,268,1],[226,269,1],[205,269,1],[185,268,1],[166,264,1],[151,257,1],[141,253,1],[133,251,1]]},{\"Name\":\"4\",\"Points\":[[157,122,1],[159,127,1],[159,136,1],[159,148,1],[158,163,1],[153,178,1],[146,193,1],[139,208,1],[134,223,1],[129,233,1],[126,244,1],[125,251,1],[125,255,1],[127,259,1],[134,261,1],[144,261,1],[157,261,1],[171,260,1],[185,259,1],[199,257,1],[211,255,1],[222,254,1],[229,253,1],[235,253,1],[239,252,1],[241,251,1],[198,201,2],[198,208,2],[198,217,2],[198,232,2],[197,250,2],[197,266,2],[196,278,2],[196,288,2],[196,294,2],[196,299,2],[196,304,2],[196,306,2],[197,307,2],[198,309,2],[199,311,2]]},{\"Name\":\"5\",\"Points\":[[166,124,1],[163,130,1],[162,141,1],[159,158,1],[157,171,1],[154,184,1],[154,192,1],[154,199,1],[159,204,1],[171,205,1],[187,208,1],[204,212,1],[223,218,1],[239,223,1],[253,229,1],[266,236,1],[275,246,1],[279,253,1],[280,261,1],[277,269,1],[268,274,1],[251,277,1],[237,278,1],[218,278,1],[200,277,1],[183,275,1],[171,272,1],[159,267,1],[153,264,1],[145,257,1],[141,253,1],[151,122,2],[153,123,2],[161,124,2],[178,125,2],[198,126,2],[221,126,2],[245,126,2],[266,126,2],[286,125,2],[302,125,2]]},{\"Name\":\"6\",\"Points\":[[257,147,1],[248,130,1],[241,126,1],[231,125,1],[218,125,1],[201,131,1],[181,145,1],[163,163,1],[151,183,1],[139,206,1],[133,235,1],[130,264,1],[130,285,1],[134,302,1],[143,313,1],[157,319,1],[172,319,1],[188,315,1],[204,301,1],[218,285,1],[226,272,1],[228,258,1],[228,246,1],[221,235,1],[205,230,1],[188,229,1],[172,229,1],[158,236,1],[144,247,1],[135,261,1],[131,276,1],[131,291,1]]},{\"Name\":\"7\",\"Points\":[[107,137,1],[119,131,1],[132,131,1],[150,131,1],[171,131,1],[191,130,1],[209,129,1],[223,127,1],[231,126,1],[236,125,1],[238,125,1],[238,130,1],[231,143,1],[223,164,1],[211,186,1],[203,211,1],[194,237,1],[190,260,1],[187,275,1],[186,286,1],[186,293,1],[187,297,1],[189,299,1],[194,301,1],[198,302,1],[200,303,1],[203,303,1],[154,238,2],[160,233,2],[171,232,2],[188,232,2],[205,230,2],[224,230,2],[243,229,2],[260,229,2],[277,230,2]]},{\"Name\":\"8\",\"Points\":[[231,122,1],[218,119,1],[205,122,1],[193,130,1],[182,141,1],[178,151,1],[178,163,1],[183,176,1],[199,190,1],[221,204,1],[246,222,1],[269,239,1],[284,255,1],[293,266,1],[296,274,1],[296,279,1],[291,287,1],[276,292,1],[262,293,1],[248,293,1],[233,288,1],[226,277,1],[225,260,1],[226,238,1],[235,214,1],[244,192,1],[250,175,1],[254,158,1],[255,147,1],[255,139,1],[250,132,1],[244,128,1],[233,127,1],[222,127,1],[209,134,1]]},{\"Name\":\"9\",\"Points\":[[266,143,1],[258,130,1],[250,125,1],[236,125,1],[220,125,1],[204,130,1],[192,139,1],[183,148,1],[181,158,1],[181,168,1],[182,176,1],[194,182,1],[207,183,1],[226,181,1],[242,173,1],[255,163,1],[263,153,1],[266,145,1],[268,141,1],[269,139,1],[269,138,1],[267,146,1],[266,158,1],[266,171,1],[269,187,1],[276,204,1],[287,224,1],[295,241,1],[301,255,1],[303,265,1],[304,273,1],[302,279,1],[293,286,1],[277,292,1],[257,294,1],[236,294,1],[214,294,1],[193,288,1],[176,279,1],[163,270,1],[153,258,1],[148,251,1],[148,246,1]]},{\"Name\":\",\",\"Points\":[[215,215,1],[218,223,1],[218,233,1],[217,246,1],[209,263,1],[197,278,1],[181,293,1],[163,303,1],[145,313,1]]},{\"Name\":\"a\",\"Points\":[[235,219,1],[233,204,1],[232,199,1],[230,193,1],[225,187,1],[218,182,1],[209,180,1],[198,178,1],[183,178,1],[171,186,1],[161,196,1],[154,211,1],[150,228,1],[148,244,1],[148,257,1],[151,269,1],[159,275,1],[170,278,1],[182,278,1],[199,274,1],[213,263,1],[225,250,1],[235,231,1],[242,217,1],[246,204,1],[248,192,1],[248,186,1],[248,181,1],[248,179,1],[246,182,1],[245,189,1],[244,195,1],[243,208,1],[243,220,1],[243,234,1],[243,246,1],[244,259,1],[245,267,1],[246,274,1],[248,278,1],[248,282,1],[249,283,1],[250,283,1]]},{\"Name\":\"b\",\"Points\":[[179,131,1],[176,136,1],[176,144,1],[175,157,1],[175,170,1],[175,184,1],[175,194,1],[175,202,1],[175,208,1],[175,210,1],[175,211,1],[178,210,1],[185,206,1],[195,201,1],[207,198,1],[220,196,1],[231,195,1],[245,195,1],[257,200,1],[267,204,1],[273,208,1],[278,214,1],[281,219,1],[281,225,1],[280,232,1],[273,238,1],[263,244,1],[251,246,1],[240,247,1],[226,247,1],[211,243,1],[199,237,1],[189,232,1],[180,228,1],[174,223,1],[170,220,1],[167,217,1],[167,214,1]]},{\"Name\":\"c\",\"Points\":[[283,204,1],[275,186,1],[269,182,1],[260,178,1],[248,176,1],[231,176,1],[213,177,1],[193,187,1],[174,200,1],[159,217,1],[149,234,1],[143,251,1],[140,264,1],[140,275,1],[145,284,1],[156,289,1],[170,291,1],[189,290,1],[206,283,1],[223,275,1],[235,270,1],[243,265,1],[248,261,1],[250,259,1],[251,257,1],[252,256,1]]},{\"Name\":\"d\",\"Points\":[[234,252,1],[231,232,1],[226,225,1],[219,218,1],[210,214,1],[199,213,1],[185,215,1],[175,224,1],[166,237,1],[159,253,1],[158,269,1],[158,280,1],[159,290,1],[166,296,1],[176,297,1],[191,297,1],[208,283,1],[222,269,1],[232,251,1],[241,230,1],[247,208,1],[250,191,1],[253,173,1],[255,160,1],[255,150,1],[255,145,1],[255,143,1],[252,143,1],[248,152,1],[246,166,1],[243,184,1],[242,202,1],[242,222,1],[242,242,1],[242,260,1],[242,274,1],[242,287,1],[242,296,1],[242,300,1],[242,303,1],[242,304,1],[242,303,1],[242,302,1],[242,301,1],[242,300,1],[243,299,1]]},{\"Name\":\"e\",\"Points\":[[158,253,1],[159,251,1],[166,251,1],[178,253,1],[191,253,1],[205,253,1],[222,251,1],[236,247,1],[248,241,1],[255,235,1],[260,230,1],[263,225,1],[263,218,1],[259,210,1],[246,205,1],[233,203,1],[214,203,1],[196,205,1],[176,214,1],[159,224,1],[146,235,1],[137,245,1],[131,254,1],[129,263,1],[129,273,1],[138,281,1],[153,287,1],[170,290,1],[188,291,1],[204,291,1],[218,291,1],[227,290,1],[234,289,1],[238,288,1],[240,287,1],[241,286,1],[241,285,1]]},{\"Name\":\"f\",\"Points\":[[270,184,1],[269,165,1],[269,156,1],[263,147,1],[256,139,1],[249,132,1],[243,128,1],[237,127,1],[231,127,1],[225,134,1],[218,149,1],[213,171,1],[212,192,1],[212,221,1],[212,241,1],[213,264,1],[214,283,1],[218,300,1],[221,313,1],[223,324,1],[226,331,1],[226,337,1],[227,339,1],[228,339,1],[152,265,2],[158,259,2],[172,259,2],[190,259,2],[211,259,2],[231,259,2],[252,259,2],[270,259,2],[282,259,2],[291,257,2],[296,256,2],[301,255,2],[305,255,2]]},{\"Name\":\"g\",\"Points\":[[278,231,1],[272,218,1],[269,212,1],[260,208,1],[248,208,1],[233,208,1],[221,215,1],[212,225,1],[207,232,1],[205,241,1],[205,249,1],[211,255,1],[223,258,1],[236,258,1],[253,255,1],[268,248,1],[280,238,1],[289,228,1],[293,222,1],[296,215,1],[296,211,1],[296,208,1],[293,212,1],[292,219,1],[290,228,1],[290,240,1],[291,252,1],[294,267,1],[300,281,1],[307,297,1],[314,311,1],[317,320,1],[320,331,1],[322,339,1],[322,344,1],[320,349,1],[311,353,1],[297,353,1],[278,353,1],[260,350,1],[243,345,1],[228,340,1],[218,336,1],[212,333,1],[208,331,1],[208,329,1]]},{\"Name\":\"l\",\"Points\":[[231,121,1],[228,134,1],[226,144,1],[223,160,1],[219,176,1],[214,195,1],[211,216,1],[208,236,1],[206,254,1],[206,271,1],[206,287,1],[208,297,1],[210,305,1],[213,309,1],[218,311,1],[225,311,1],[232,307,1],[242,302,1],[252,297,1],[264,295,1],[278,294,1],[291,294,1]]},{\"Name\":\"i\",\"Points\":[[230,191,1],[231,199,1],[231,210,1],[231,226,1],[231,244,1],[232,257,1],[232,270,1],[232,278,1],[233,284,1],[233,288,1],[234,292,1],[235,294,1],[236,294,1],[236,293,1],[233,149,2],[231,143,2],[232,149,2]]},{\"Name\":\"n\",\"Points\":[[196,218,1],[195,221,1],[195,227,1],[197,239,1],[199,253,1],[201,267,1],[203,280,1],[204,289,1],[205,296,1],[206,298,1],[207,301,1],[208,301,1],[212,297,1],[216,284,1],[220,273,1],[226,258,1],[230,249,1],[236,240,1],[246,232,1],[255,228,1],[263,226,1],[273,226,1],[282,228,1],[289,235,1],[294,243,1],[298,250,1],[301,257,1],[304,268,1],[306,275,1],[306,284,1],[307,293,1],[308,299,1],[309,304,1],[310,308,1],[311,311,1],[312,311,1],[315,311,1]]},{\"Name\":\"o\",\"Points\":[[256,230,1],[252,215,1],[251,209,1],[248,205,1],[245,203,1],[237,202,1],[226,204,1],[216,212,1],[207,223,1],[200,237,1],[196,255,1],[195,273,1],[195,289,1],[200,301,1],[209,311,1],[223,317,1],[239,317,1],[255,313,1],[272,300,1],[282,288,1],[289,273,1],[291,258,1],[291,246,1],[288,235,1],[280,228,1],[271,222,1],[263,218,1],[255,218,1],[248,218,1],[241,219,1]]},{\"Name\":\"s\",\"Points\":[[282,226,1],[269,208,1],[263,206,1],[252,206,1],[241,207,1],[230,212,1],[223,218,1],[218,224,1],[218,232,1],[221,241,1],[233,252,1],[252,261,1],[270,270,1],[284,275,1],[297,281,1],[306,285,1],[310,288,1],[311,289,1],[311,290,1],[299,290,1],[284,290,1],[264,290,1],[244,290,1],[226,289,1],[209,286,1],[198,283,1],[188,279,1],[182,277,1],[180,275,1],[180,275,1]]},{\"Name\":\"t\",\"Points\":[[239,136,1],[238,149,1],[238,167,1],[237,189,1],[233,216,1],[231,236,1],[228,256,1],[227,270,1],[227,285,1],[227,297,1],[231,306,1],[236,312,1],[242,316,1],[250,316,1],[260,316,1],[271,314,1],[279,311,1],[287,309,1],[292,306,1],[190,230,2],[203,229,2],[216,229,2],[231,229,2],[252,230,2],[271,230,2],[291,230,2],[307,230,2]]},{\"Name\":\"+\",\"Points\":[[227,214,1],[230,219,1],[231,230,1],[231,245,1],[232,263,1],[233,277,1],[235,290,1],[236,297,1],[237,302,1],[238,306,1],[239,310,1],[239,312,1],[196,269,2],[204,269,2],[212,270,2],[225,271,2],[238,272,2],[251,272,2],[264,272,2],[272,271,2],[279,270,2],[284,269,2],[289,269,2],[291,269,2],[292,270,2]]},{\"Name\":\"-\",\"Points\":[[155,270,1],[168,268,1],[182,268,1],[203,268,1],[222,268,1],[241,268,1],[258,268,1],[270,267,1],[281,266,1],[289,265,1],[295,265,1],[301,265,1],[306,265,1]]},{\"Name\":\"/\",\"Points\":[[302,142,1],[297,151,1],[292,163,1],[284,179,1],[273,199,1],[264,221,1],[251,242,1],[240,262,1],[229,281,1],[218,299,1],[209,316,1],[203,328,1],[197,338,1],[194,343,1],[191,346,1],[190,348,1],[195,348,1],[204,348,1]]},{\"Name\":\"(\",\"Points\":[[257,130,1],[248,140,1],[239,153,1],[226,171,1],[213,190,1],[204,210,1],[199,228,1],[196,247,1],[197,265,1],[203,283,1],[211,297,1],[221,309,1],[229,317,1],[236,321,1],[242,325,1],[247,326,1],[249,326,1],[251,326,1],[253,326,1],[255,326,1]]},{\"Name\":\")\",\"Points\":[[266,114,1],[278,120,1],[291,136,1],[301,154,1],[311,174,1],[318,195,1],[322,211,1],[324,226,1],[325,240,1],[323,252,1],[315,265,1],[306,275,1],[295,286,1],[285,296,1],[278,300,1],[273,303,1],[270,305,1],[269,305,1],[276,305,1]]},{\"Name\":\"|\",\"Points\":[[248,106,1],[250,108,1],[250,119,1],[250,136,1],[252,154,1],[255,174,1],[257,195,1],[260,218,1],[261,237,1],[263,252,1],[264,266,1],[265,278,1],[266,287,1],[267,293,1],[268,297,1],[269,301,1],[269,302,1],[269,305,1],[269,306,1],[269,307,1]]},{\"Name\":\"sqrt\",\"Points\":[[94,234,1],[97,240,1],[107,251,1],[119,267,1],[132,283,1],[143,297,1],[153,308,1],[161,318,1],[169,323,1],[176,328,1],[179,330,1],[181,331,1],[181,327,1],[177,318,1],[171,303,1],[165,288,1],[159,270,1],[153,249,1],[147,228,1],[143,206,1],[140,186,1],[138,166,1],[137,150,1],[135,136,1],[134,125,1],[134,117,1],[134,113,1],[138,110,1],[149,110,1],[162,110,1],[181,110,1],[200,110,1],[219,108,1],[237,105,1],[254,100,1],[267,97,1],[275,96,1],[282,95,1],[284,95,1],[286,95,1],[286,101,1],[282,113,1],[278,129,1],[275,145,1],[274,165,1],[274,186,1],[275,204,1],[276,214,1],[278,223,1],[279,228,1],[280,231,1],[283,234,1]]},{\"Name\":\"x\",\"Points\":[[283,208,1],[279,215,1],[270,226,1],[260,237,1],[245,251,1],[231,265,1],[219,275,1],[208,285,1],[199,293,1],[194,298,1],[190,301,1],[189,303,1],[222,217,2],[230,223,2],[236,230,2],[246,241,2],[254,252,2],[263,261,2],[270,269,2],[278,275,2],[285,279,2],[291,283,2],[295,286,2],[298,288,2],[301,289,2]]},{\"Name\":\"y\",\"Points\":[[192,194,1],[197,199,1],[204,209,1],[212,223,1],[221,238,1],[227,249,1],[234,256,1],[239,262,1],[245,268,1],[249,272,1],[250,274,1],[251,275,1],[279,210,2],[278,212,2],[278,220,2],[277,235,2],[270,251,2],[260,272,2],[248,290,2],[238,303,2],[230,317,2],[225,326,2],[220,338,2],[217,343,2],[216,349,2],[215,352,2],[215,353,2],[216,353,2],[220,353,2]]}]');
+
+ if (pointCloudsRaw !== null) {
+
+ this.pointCloudsRaw = this.pointCloudsRaw.concat(pointCloudsRaw);
+ for (i = 0; i < pointCloudsRaw.length; ++i) {
+ this.recognizerP.AddGesture(
+ pointCloudsRaw[i].Name,
+ this.convertPoints(pointCloudsRaw[i].Points, 'p')
+ );
+
+ le = pointCloudsRaw[i].Points.length;
+ if (pointCloudsRaw[i].Points[le - 1][2] === 1) { // unistroke gesture
+ this.recognizerN.AddGesture(
+ pointCloudsRaw[i].Name,
+ true,
+ [this.convertPoints(pointCloudsRaw[i].Points)]
+ );
+ }
+ }
+ }
+
+ for (i = 0; i < this.recognizerP.PointClouds.length; ++i) {
+ le = this.recognizerP.PointClouds[i].Points.length;
+ this.recognizerP.PointClouds[i].NrStrokes = this.recognizerP.PointClouds[i].Points[le - 1].ID;
+ }
+};
diff --git a/Sketchometry.activity/3dparty/hwr/ndollar.js b/Sketchometry.activity/3dparty/hwr/ndollar.js
new file mode 100644
index 0000000..e5a0396
--- /dev/null
+++ b/Sketchometry.activity/3dparty/hwr/ndollar.js
@@ -0,0 +1,499 @@
+/**
+ * The $N Multistroke Recognizer (JavaScript version)
+ *
+ * Lisa Anthony, Ph.D.
+ * UMBC
+ * Information Systems Department
+ * 1000 Hilltop Circle
+ * Baltimore, MD 21250
+ * lanthony@umbc.edu
+ *
+ * Jacob O. Wobbrock, Ph.D.
+ * The Information School
+ * University of Washington
+ * Seattle, WA 98195-2840
+ * wobbrock@uw.edu
+ *
+ * The academic publications for the $N recognizer, and what should be
+ * used to cite it, are:
+ *
+ * Anthony, L. and Wobbrock, J.O. (2010). A lightweight multistroke
+ * recognizer for user interface prototypes. Proceedings of Graphics
+ * Interface (GI '10). Ottawa, Ontario (May 31-June 2, 2010). Toronto,
+ * Ontario: Canadian Information Processing Society, pp. 245-252.
+ *
+ * Anthony, L. and Wobbrock, J.O. (2012). $N-Protractor: A fast and
+ * accurate multistroke recognizer. Proceedings of Graphics Interface
+ * (GI '12). Toronto, Ontario (May 28-30, 2012). Toronto, Ontario:
+ * Canadian Information Processing Society, pp. 117-120.
+ *
+ * The Protractor enhancement was separately published by Yang Li and programmed
+ * here by Jacob O. Wobbrock and Lisa Anthony:
+ *
+ * Li, Y. (2010). Protractor: A fast and accurate gesture
+ * recognizer. Proceedings of the ACM Conference on Human
+ * Factors in Computing Systems (CHI '10). Atlanta, Georgia
+ * (April 10-15, 2010). New York: ACM Press, pp. 2169-2172.
+ *
+ * This software is distributed under the "New BSD License" agreement:
+ *
+ * Copyright (C) 2007-2011, Jacob O. Wobbrock and Lisa Anthony.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the names of UMBC nor the University of Washington,
+ * nor the names of its contributors may be used to endorse or promote
+ * products derived from this software without specific prior written
+ * permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Lisa Anthony OR Jacob O. Wobbrock
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+**/
+//
+// NDollarRecognizer class
+//
+JXGHWR_NDollarRecognizer = function(useBoundedRotationInvariance) // constructor
+{
+ //
+ // one predefined multistroke for each multistroke type
+ //
+ this.Multistrokes = []; //new Array(NumMultistrokes);
+
+ //
+ // Point class
+ //
+ var Point = function (x, y) // constructor
+ {
+ this.X = x;
+ this.Y = y;
+ };
+
+ //
+ // Rectangle class
+ //
+ var Rectangle = function (x, y, width, height) // constructor
+ {
+ this.X = x;
+ this.Y = y;
+ this.Width = width;
+ this.Height = height;
+ };
+
+ //
+ // Result class
+ //
+ this.Result = function (name, score) // constructor
+ {
+ this.Name = name;
+ this.Score = score;
+ };
+
+ //
+ // Private helper functions from this point down
+ //
+ var Round = function (n,d) { d = Math.pow(10,d); return Math.round(n*d)/d; }; // round 'n' to 'd' decimals
+
+ var Deg2Rad = function (d) { return (d * Math.PI / 180.0); };
+
+ //
+ // NDollarRecognizer class constants
+ //
+ var NumMultistrokes = 16;
+ var NumPoints = 96;
+ var SquareSize = 250.0;
+ var OneDThreshold = 0.25; // customize to desired gesture set (usually 0.20 - 0.35)
+ var Origin = new Point(0,0);
+ var Diagonal = Math.sqrt(SquareSize * SquareSize + SquareSize * SquareSize);
+ var HalfDiagonal = 0.5 * Diagonal;
+ var AngleRange = Deg2Rad(15.0); // 45
+ var AnglePrecision = Deg2Rad(2.0);
+ var Phi = 0.5 * (-1.0 + Math.sqrt(5.0)); // Golden Ratio
+ var StartAngleIndex = (NumPoints / 8); // eighth of gesture length
+ var AngleSimilarityThreshold = Deg2Rad(30.0);
+
+ var HeapPermute = function (n, order, /*out*/ orders)
+ {
+ if (n == 1)
+ {
+ orders[orders.length] = order.slice(); // append copy
+ }
+ else
+ {
+ for (var i = 0; i < n; i++)
+ {
+ HeapPermute(n - 1, order, orders);
+ if (n % 2 == 1) // swap 0, n-1
+ {
+ var tmp = order[0];
+ order[0] = order[n - 1];
+ order[n - 1] = tmp;
+ }
+ else // swap i, n-1
+ {
+ var tmp = order[i];
+ order[i] = order[n - 1];
+ order[n - 1] = tmp;
+ }
+ }
+ }
+ };
+
+ var MakeUnistrokes = function (strokes, orders)
+ {
+ var unistrokes = new Array(); // array of point arrays
+ for (var r = 0; r < orders.length; r++)
+ {
+ for (var b = 0; b < Math.pow(2, orders[r].length); b++) // use b's bits for directions
+ {
+ var unistroke = new Array(); // array of points
+ for (var i = 0; i < orders[r].length; i++)
+ {
+ var pts;
+ if (((b >> i) & 1) == 1) { // is b's bit at index i on?
+ pts = strokes[orders[r][i]].slice().reverse(); // copy and reverse
+ } else {
+ pts = strokes[orders[r][i]].slice(); // copy
+ }
+ for (var p = 0; p < pts.length; p++) {
+ unistroke[unistroke.length] = pts[p]; // append points
+ }
+ }
+ unistrokes[unistrokes.length] = unistroke; // add one unistroke to set
+ }
+ }
+ return unistrokes;
+ };
+
+ var CombineStrokes = function (strokes)
+ {
+ var points = new Array();
+ for (var s = 0; s < strokes.length; s++) {
+ for (var p = 0; p < strokes[s].length; p++) {
+ points[points.length] = new Point(strokes[s][p].X, strokes[s][p].Y);
+ }
+ }
+ return points;
+ };
+
+ var Resample = function (points, n)
+ {
+ var I = PathLength(points) / (n - 1); // interval length
+ var D = 0.0;
+ var newpoints = new Array(points[0]);
+ for (var i = 1; i < points.length; i++)
+ {
+ var d = Distance(points[i - 1], points[i]);
+ if ((D + d) >= I)
+ {
+ var qx = points[i - 1].X + ((I - D) / d) * (points[i].X - points[i - 1].X);
+ var qy = points[i - 1].Y + ((I - D) / d) * (points[i].Y - points[i - 1].Y);
+ var q = new Point(qx, qy);
+ newpoints[newpoints.length] = q; // append new point 'q'
+ points.splice(i, 0, q); // insert 'q' at position i in points s.t. 'q' will be the next i
+ D = 0.0;
+ }
+ else D += d;
+ }
+ if (newpoints.length == n - 1) // somtimes we fall a rounding-error short of adding the last point, so add it if so
+ newpoints[newpoints.length] = new Point(points[points.length - 1].X, points[points.length - 1].Y);
+ return newpoints;
+ };
+
+ var IndicativeAngle = function (points)
+ {
+ var c = Centroid(points);
+ return Math.atan2(c.Y - points[0].Y, c.X - points[0].X);
+ };
+
+ var RotateBy = function (points, radians) // rotates points around centroid
+ {
+ var c = Centroid(points);
+ var cos = Math.cos(radians);
+ var sin = Math.sin(radians);
+ var newpoints = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var qx = (points[i].X - c.X) * cos - (points[i].Y - c.Y) * sin + c.X;
+ var qy = (points[i].X - c.X) * sin + (points[i].Y - c.Y) * cos + c.Y;
+ newpoints[newpoints.length] = new Point(qx, qy);
+ }
+ return newpoints;
+ };
+
+ var ScaleDimTo = function (points, size, ratio1D) // scales bbox uniformly for 1D, non-uniformly for 2D
+ {
+ var B = BoundingBox(points);
+ var uniformly = Math.min(B.Width / B.Height, B.Height / B.Width) <= ratio1D; // 1D or 2D gesture test
+ var newpoints = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var qx = uniformly ? points[i].X * (size / Math.max(B.Width, B.Height)) : points[i].X * (size / B.Width);
+ var qy = uniformly ? points[i].Y * (size / Math.max(B.Width, B.Height)) : points[i].Y * (size / B.Height);
+ newpoints[newpoints.length] = new Point(qx, qy);
+ }
+ return newpoints;
+ };
+
+ var TranslateTo = function (points, pt) // translates points' centroid
+ {
+ var c = Centroid(points);
+ var newpoints = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var qx = points[i].X + pt.X - c.X;
+ var qy = points[i].Y + pt.Y - c.Y;
+ newpoints[newpoints.length] = new Point(qx, qy);
+ }
+ return newpoints;
+ };
+
+ var Vectorize = function (points, useBoundedRotationInvariance) // for Protractor
+ {
+ var cos = 1.0;
+ var sin = 0.0;
+ if (useBoundedRotationInvariance) {
+ var iAngle = Math.atan2(points[0].Y, points[0].X);
+ var baseOrientation = (Math.PI / 4.0) * Math.floor((iAngle + Math.PI / 8.0) / (Math.PI / 4.0));
+ cos = Math.cos(baseOrientation - iAngle);
+ sin = Math.sin(baseOrientation - iAngle);
+ }
+ var sum = 0.0;
+ var vector = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var newX = points[i].X * cos - points[i].Y * sin;
+ var newY = points[i].Y * cos + points[i].X * sin;
+ vector[vector.length] = newX;
+ vector[vector.length] = newY;
+ sum += newX * newX + newY * newY;
+ }
+ var magnitude = Math.sqrt(sum);
+ for (var i = 0; i < vector.length; i++)
+ vector[i] /= magnitude;
+ return vector;
+ };
+
+ var OptimalCosineDistance = function (v1, v2) // for Protractor
+ {
+ var a = 0.0;
+ var b = 0.0;
+ for (var i = 0; i < v1.length; i += 2) {
+ a += v1[i] * v2[i] + v1[i + 1] * v2[i + 1];
+ b += v1[i] * v2[i + 1] - v1[i + 1] * v2[i];
+ }
+ var angle = Math.atan(b / a);
+ return Math.acos(a * Math.cos(angle) + b * Math.sin(angle));
+ };
+
+ var DistanceAtBestAngle = function (points, T, a, b, threshold)
+ {
+ var x1 = Phi * a + (1.0 - Phi) * b;
+ var f1 = DistanceAtAngle(points, T, x1);
+ var x2 = (1.0 - Phi) * a + Phi * b;
+ var f2 = DistanceAtAngle(points, T, x2);
+ while (Math.abs(b - a) > threshold)
+ {
+ if (f1 < f2) {
+ b = x2;
+ x2 = x1;
+ f2 = f1;
+ x1 = Phi * a + (1.0 - Phi) * b;
+ f1 = DistanceAtAngle(points, T, x1);
+ } else {
+ a = x1;
+ x1 = x2;
+ f1 = f2;
+ x2 = (1.0 - Phi) * a + Phi * b;
+ f2 = DistanceAtAngle(points, T, x2);
+ }
+ }
+ return Math.min(f1, f2);
+ };
+
+ var DistanceAtAngle = function (points, T, radians)
+ {
+ var newpoints = RotateBy(points, radians);
+ return PathDistance(newpoints, T.Points);
+ };
+
+ var Centroid = function (points)
+ {
+ var x = 0.0, y = 0.0;
+ for (var i = 0; i < points.length; i++) {
+ x += points[i].X;
+ y += points[i].Y;
+ }
+ x /= points.length;
+ y /= points.length;
+ return new Point(x, y);
+ };
+
+ var BoundingBox = function (points)
+ {
+ var minX = +Infinity, maxX = -Infinity, minY = +Infinity, maxY = -Infinity;
+ for (var i = 0; i < points.length; i++) {
+ minX = Math.min(minX, points[i].X);
+ minY = Math.min(minY, points[i].Y);
+ maxX = Math.max(maxX, points[i].X);
+ maxY = Math.max(maxY, points[i].Y);
+ }
+ return new Rectangle(minX, minY, maxX - minX, maxY - minY);
+ };
+
+ var PathDistance = function (pts1, pts2) // average distance between corresponding points in two paths
+ {
+ var d = 0.0;
+ for (var i = 0; i < pts1.length; i++) // assumes pts1.length == pts2.length
+ d += Distance(pts1[i], pts2[i]);
+ return d / pts1.length;
+ };
+
+ var PathLength = function (points) // length traversed by a point path
+ {
+ var d = 0.0;
+ for (var i = 1; i < points.length; i++)
+ d += Distance(points[i - 1], points[i]);
+ return d;
+ };
+
+ var Distance = function (p1, p2) // distance between two points
+ {
+ var dx = p2.X - p1.X;
+ var dy = p2.Y - p1.Y;
+ return Math.sqrt(dx * dx + dy * dy);
+ };
+
+ var CalcStartUnitVector = function (points, index) // start angle from points[0] to points[index] normalized as a unit vector
+ {
+ var v = new Point(points[index].X - points[0].X, points[index].Y - points[0].Y);
+ var len = Math.sqrt(v.X * v.X + v.Y * v.Y);
+ return new Point(v.X / len, v.Y / len);
+ };
+
+ var AngleBetweenUnitVectors = function (v1, v2) // gives acute angle between unit vectors from (0,0) to v1, and (0,0) to v2
+ {
+ var n = (v1.X * v2.X + v1.Y * v2.Y);
+ if (n < -1.0 || n > +1.0)
+ n = Round(n, 5); // fix: JavaScript rounding bug that can occur so that -1 <= n <= +1
+ return Math.acos(n); // arc cosine of the vector dot product
+ };
+
+
+ //
+ // Unistroke class: a unistroke template
+ //
+ var Unistroke = function (name, useBoundedRotationInvariance, points) // constructor
+ {
+ this.Name = name;
+ this.Points = Resample(points, NumPoints);
+ var radians = IndicativeAngle(this.Points);
+ this.Points = RotateBy(this.Points, -radians);
+ this.Points = ScaleDimTo(this.Points, SquareSize, OneDThreshold);
+ if (useBoundedRotationInvariance)
+ this.Points = RotateBy(this.Points, +radians); // restore
+ this.Points = TranslateTo(this.Points, Origin);
+ this.StartUnitVector = CalcStartUnitVector(this.Points, StartAngleIndex);
+ this.Vector = Vectorize(this.Points, useBoundedRotationInvariance); // for Protractor
+ };
+
+ //
+ // Multistroke class: a container for unistrokes
+ //
+ this.Multistroke = function (name, useBoundedRotationInvariance, strokes) // constructor
+ {
+ this.Name = name;
+ this.NumStrokes = strokes.length; // number of individual strokes
+
+ var order = new Array(strokes.length); // array of integer indices
+ for (var i = 0; i < strokes.length; i++)
+ order[i] = i; // initialize
+ var orders = new Array(); // array of integer arrays
+ HeapPermute(strokes.length, order, /*out*/ orders);
+
+ var unistrokes = MakeUnistrokes(strokes, orders); // returns array of point arrays
+ this.Unistrokes = new Array(unistrokes.length); // unistrokes for this multistroke
+ for (var j = 0; j < unistrokes.length; j++)
+ this.Unistrokes[j] = new Unistroke(name, useBoundedRotationInvariance, unistrokes[j]);
+ };
+
+ //
+ // The $N Gesture Recognizer API begins here -- 3 methods: Recognize(), AddGesture(), and DeleteUserGestures()
+ //
+ this.Recognize = function(strokes, useBoundedRotationInvariance, requireSameNoOfStrokes, useProtractor, goodList)
+ {
+ var points = CombineStrokes(strokes); // make one connected unistroke from the given strokes
+ points = Resample(points, NumPoints);
+ var radians = IndicativeAngle(points);
+ points = RotateBy(points, -radians);
+ points = ScaleDimTo(points, SquareSize, OneDThreshold);
+ if (useBoundedRotationInvariance)
+ points = RotateBy(points, +radians); // restore
+ points = TranslateTo(points, Origin);
+ var startv = CalcStartUnitVector(points, StartAngleIndex);
+ var vector = Vectorize(points, useBoundedRotationInvariance); // for Protractor
+
+ var b = +Infinity;
+ var u = -1;
+ for (var i = 0; i < this.Multistrokes.length; i++) // for each multistroke
+ {
+ if (typeof goodList !== 'undefined') {
+ var skip = true;
+ for (var k = 0; k < goodList.length; k++) {
+ if (this.Multistrokes[i].Name === goodList[k]) {
+ skip = false;
+ break;
+ }
+ }
+ if (skip) {
+ continue;
+ }
+ }
+
+ if (!requireSameNoOfStrokes || strokes.length == this.Multistrokes[i].NumStrokes) // optional -- only attempt match when same # of component strokes
+ {
+ for (var j = 0; j < this.Multistrokes[i].Unistrokes.length; j++) // each unistroke within this multistroke
+ {
+ if (AngleBetweenUnitVectors(startv, this.Multistrokes[i].Unistrokes[j].StartUnitVector) <= AngleSimilarityThreshold) // strokes start in the same direction
+ {
+ var d;
+ if (useProtractor) // for Protractor
+ d = OptimalCosineDistance(this.Multistrokes[i].Unistrokes[j].Vector, vector);
+ else // Golden Section Search (original $N)
+ d = DistanceAtBestAngle(points, this.Multistrokes[i].Unistrokes[j], -AngleRange, +AngleRange, AnglePrecision);
+ if (d < b) {
+ b = d; // best (least) distance
+ u = i; // multistroke owner of unistroke
+ }
+ }
+ }
+ }
+ }
+ return (u == -1) ? new this.Result("No match.", 0.0) : new this.Result(this.Multistrokes[u].Name, useProtractor ? 1.0 / b : 1.0 - b / HalfDiagonal);
+ };
+ this.AddGesture = function(name, useBoundedRotationInvariance, strokes)
+ {
+ this.Multistrokes[this.Multistrokes.length] = new this.Multistroke(name, useBoundedRotationInvariance, strokes);
+ var num = 0;
+ for (var i = 0; i < this.Multistrokes.length; i++) {
+ if (this.Multistrokes[i].Name == name)
+ num++;
+ }
+ return num;
+ };
+ this.DeleteUserGestures = function()
+ {
+ this.Multistrokes.length = NumMultistrokes; // clear any beyond the original set
+ return NumMultistrokes;
+ }
+};
diff --git a/Sketchometry.activity/3dparty/hwr/pdollar.js b/Sketchometry.activity/3dparty/hwr/pdollar.js
new file mode 100644
index 0000000..78324d2
--- /dev/null
+++ b/Sketchometry.activity/3dparty/hwr/pdollar.js
@@ -0,0 +1,312 @@
+/**
+ * The $P Point-Cloud Recognizer (JavaScript version)
+ *
+ * Radu-Daniel Vatavu, Ph.D.
+ * University Stefan cel Mare of Suceava
+ * Suceava 720229, Romania
+ * vatavu@eed.usv.ro
+ *
+ * Lisa Anthony, Ph.D.
+ * UMBC
+ * Information Systems Department
+ * 1000 Hilltop Circle
+ * Baltimore, MD 21250
+ * lanthony@umbc.edu
+ *
+ * Jacob O. Wobbrock, Ph.D.
+ * The Information School
+ * University of Washington
+ * Seattle, WA 98195-2840
+ * wobbrock@uw.edu
+ *
+ * The academic publication for the $P recognizer, and what should be
+ * used to cite it, is:
+ *
+ * Vatavu, R.-D., Anthony, L. and Wobbrock, J.O. (2012).
+ * Gestures as point clouds: A $P recognizer for user interface
+ * prototypes. Proceedings of the ACM Int'l Conference on
+ * Multimodal Interfaces (ICMI '12). Santa Monica, California
+ * (October 22-26, 2012). New York: ACM Press, pp. 273-280.
+ *
+ * This software is distributed under the "New BSD License" agreement:
+ *
+ * Copyright (c) 2012, Radu-Daniel Vatavu, Lisa Anthony, and
+ * Jacob O. Wobbrock. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the names of the University Stefan cel Mare of Suceava,
+ * University of Washington, nor UMBC, nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Radu-Daniel Vatavu OR Lisa Anthony
+ * OR Jacob O. Wobbrock BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
+ * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+**/
+
+//
+// PDollarRecognizer class
+//
+JXGHWR_PDollarRecognizer = function () // constructor
+{
+
+ //
+ // Point class
+ //
+ var Point = function (x, y, id) // constructor
+ {
+ this.X = x;
+ this.Y = y;
+ this.ID = id; // stroke ID to which this point belongs (1,2,...)
+ };
+
+ //
+ // Private helper functions from this point down
+ //
+ var Distance = function (p1, p2) // Euclidean distance between two points
+ {
+ var dx = p2.X - p1.X;
+ var dy = p2.Y - p1.Y;
+ return Math.sqrt(dx * dx + dy * dy);
+ };
+
+ var CloudDistance = function (pts1, pts2, start)
+ {
+ var matched = new Array(pts1.length); // pts1.length == pts2.length
+ for (var k = 0; k < pts1.length; k++)
+ matched[k] = false;
+ var sum = 0;
+ var i = start;
+ do
+ {
+ var index = -1;
+ var min = +Infinity;
+ for (var j = 0; j < matched.length; j++)
+ {
+ if (!matched[j]) {
+ var d = Distance(pts1[i], pts2[j]);
+ if (d < min) {
+ min = d;
+ index = j;
+ }
+ }
+ }
+ matched[index] = true;
+ var weight = 1 - ((i - start + pts1.length) % pts1.length) / pts1.length;
+ sum += weight * min;
+ i = (i + 1) % pts1.length;
+ } while (i != start);
+ return sum;
+ };
+
+ var Centroid = function (points)
+ {
+ var x = 0.0, y = 0.0;
+ for (var i = 0; i < points.length; i++) {
+ x += points[i].X;
+ y += points[i].Y;
+ }
+ x /= points.length;
+ y /= points.length;
+ return new Point(x, y, 0);
+ };
+
+ var PathDistance = function (pts1, pts2) // average distance between corresponding points in two paths
+ {
+ var d = 0.0;
+ for (var i = 0; i < pts1.length; i++) // assumes pts1.length == pts2.length
+ d += Distance(pts1[i], pts2[i]);
+ return d / pts1.length;
+ };
+
+ var PathLength = function (points) // length traversed by a point path
+ {
+ var d = 0.0;
+ for (var i = 1; i < points.length; i++)
+ {
+ if (points[i].ID == points[i-1].ID)
+ d += Distance(points[i - 1], points[i]);
+ }
+ return d;
+ };
+
+ var GreedyCloudMatch = function (points, P)
+ {
+ var e = 0.50;
+ var step = Math.floor(Math.pow(points.length, 1 - e));
+ var min = +Infinity;
+ for (var i = 0; i < points.length; i += step) {
+ var d1 = CloudDistance(points, P.Points, i);
+ var d2 = CloudDistance(P.Points, points, i);
+ min = Math.min(min, Math.min(d1, d2)); // min3
+ }
+ return min;
+ };
+
+
+ var Resample = function (points, n)
+ {
+ var I = PathLength(points) / (n - 1); // interval length
+ var D = 0.0;
+ var newpoints = new Array(points[0]);
+ for (var i = 1; i < points.length; i++)
+ {
+ if (points[i].ID == points[i-1].ID)
+ {
+ var d = Distance(points[i - 1], points[i]);
+ if ((D + d) >= I)
+ {
+ var qx = points[i - 1].X + ((I - D) / d) * (points[i].X - points[i - 1].X);
+ var qy = points[i - 1].Y + ((I - D) / d) * (points[i].Y - points[i - 1].Y);
+ var q = new Point(qx, qy, points[i].ID);
+
+ newpoints[newpoints.length] = q; // append new point 'q'
+ points.splice(i, 0, q); // insert 'q' at position i in points s.t. 'q' will be the next i
+ D = 0.0;
+ }
+ else D += d;
+ }
+ }
+ if (newpoints.length == n - 1) // sometimes we fall a rounding-error short of adding the last point, so add it if so
+ newpoints[newpoints.length] = new Point(points[points.length - 1].X, points[points.length - 1].Y, points[points.length - 1].ID);
+ return newpoints;
+ };
+
+ var Scale = function (points)
+ {
+ var minX = +Infinity, maxX = -Infinity, minY = +Infinity, maxY = -Infinity;
+ for (var i = 0; i < points.length; i++) {
+ minX = Math.min(minX, points[i].X);
+ minY = Math.min(minY, points[i].Y);
+ maxX = Math.max(maxX, points[i].X);
+ maxY = Math.max(maxY, points[i].Y);
+ }
+ var size = Math.max(maxX - minX, maxY - minY);
+ var newpoints = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var qx = (points[i].X - minX) / size;
+ var qy = (points[i].Y - minY) / size;
+ newpoints[newpoints.length] = new Point(qx, qy, points[i].ID);
+ }
+ return newpoints;
+ };
+
+ var TranslateTo = function (points, pt) // translates points' centroid
+ {
+ var c = Centroid(points);
+ var newpoints = new Array();
+ for (var i = 0; i < points.length; i++) {
+ var qx = points[i].X + pt.X - c.X;
+ var qy = points[i].Y + pt.Y - c.Y;
+ newpoints[newpoints.length] = new Point(qx, qy, points[i].ID);
+ }
+ return newpoints;
+ };
+
+ //
+ // PointCloud class: a point-cloud template
+ //
+ this.PointCloud = function (name, points) // constructor
+ {
+ this.Name = name;
+ this.Points = Resample(points, NumPoints);
+ this.Points = Scale(this.Points);
+ this.Points = TranslateTo(this.Points, Origin);
+ };
+
+ //
+ // Result class
+ //
+ this.Result = function (name, score) // constructor
+ {
+ this.Name = name;
+ this.Score = score;
+ };
+
+ //
+ // PDollarRecognizer class constants
+ //
+ var NumPointClouds = 16;
+ var NumPoints = 32;
+ var Origin = new Point(0,0,0);
+
+ //
+ // one predefined point-cloud for each gesture
+ //
+ this.PointClouds = []; //new Array(NumPointClouds);
+
+ //
+ // The $P Point-Cloud Recognizer API begins here -- 3 methods: Recognize(), AddGesture(), DeleteUserGestures()
+ //
+ this.Recognize = function(points, goodList)
+ {
+ var nrStrokes = points.NrStrokes;
+
+ points = Resample(points, NumPoints);
+ points = Scale(points);
+ points = TranslateTo(points, Origin);
+
+ var b = +Infinity;
+ var u = -1;
+ for (var i = 0; i < this.PointClouds.length; i++) // for each point-cloud template
+ {
+ // Require same number of strokes
+ if (nrStrokes !== this.PointClouds[i].NrStrokes) {
+ continue;
+ }
+ if (typeof goodList !== 'undefined') {
+ var skip = true;
+ for (var k = 0; k < goodList.length; k++) {
+ if (this.PointClouds[i].Name === goodList[k]) {
+ skip = false;
+ break;
+ }
+ }
+ if (skip) {
+ continue;
+ }
+ }
+
+ var d = GreedyCloudMatch(points, this.PointClouds[i]);
+ if (d < b) {
+ b = d; // best (least) distance
+ u = i; // point-cloud
+ }
+ }
+ return (u == -1) ? new Result("No match.", 0.0) : new this.Result(this.PointClouds[u].Name, Math.max((b - 2.0) / -2.0, 0.0));
+ };
+
+ this.AddGesture = function(name, points)
+ {
+ this.PointClouds[this.PointClouds.length] = new this.PointCloud(name, points);
+ var num = 0;
+ for (var i = 0; i < this.PointClouds.length; i++) {
+ if (this.PointClouds[i].Name == name)
+ num++;
+ }
+ return num;
+ };
+
+ this.DeleteUserGestures = function()
+ {
+ this.PointClouds.length = NumPointClouds; // clear any beyond the original set
+ return NumPointClouds;
+ };
+
+};
+
+
diff --git a/Sketchometry.activity/3dparty/jQuery/jquery-1.7.1.min.js b/Sketchometry.activity/3dparty/jQuery/jquery-1.7.1.min.js
new file mode 100644
index 0000000..198b3ff
--- /dev/null
+++ b/Sketchometry.activity/3dparty/jQuery/jquery-1.7.1.min.js
@@ -0,0 +1,4 @@
+/*! jQuery v1.7.1 jquery.com | jquery.org/license */
+(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
+f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
+{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file
diff --git a/Sketchometry.activity/3dparty/jQuery/jquery.jsonp.js b/Sketchometry.activity/3dparty/jQuery/jquery.jsonp.js
new file mode 100644
index 0000000..2abeef7
--- /dev/null
+++ b/Sketchometry.activity/3dparty/jQuery/jquery.jsonp.js
@@ -0,0 +1,285 @@
+/*
+ * jQuery JSONP Core Plugin 2.4.0 (2012-08-21)
+ *
+ * https://github.com/jaubourg/jquery-jsonp
+ *
+ * Copyright (c) 2012 Julian Aubourg
+ *
+ * This document is licensed as free software under the terms of the
+ * MIT License: http://www.opensource.org/licenses/mit-license.php
+ */
+( function( $ ) {
+
+ // ###################### UTILITIES ##
+
+ // Noop
+ function noop() {
+ }
+
+ // Generic callback
+ function genericCallback( data ) {
+ lastValue = [ data ];
+ }
+
+ // Call if defined
+ function callIfDefined( method , object , parameters ) {
+ return method && method.apply( object.context || object , parameters );
+ }
+
+ // Give joining character given url
+ function qMarkOrAmp( url ) {
+ return /\?/ .test( url ) ? "&" : "?";
+ }
+
+ var // String constants (for better minification)
+ STR_ASYNC = "async",
+ STR_CHARSET = "charset",
+ STR_EMPTY = "",
+ STR_ERROR = "error",
+ STR_INSERT_BEFORE = "insertBefore",
+ STR_JQUERY_JSONP = "_jqjsp",
+ STR_ON = "on",
+ STR_ON_CLICK = STR_ON + "click",
+ STR_ON_ERROR = STR_ON + STR_ERROR,
+ STR_ON_LOAD = STR_ON + "load",
+ STR_ON_READY_STATE_CHANGE = STR_ON + "readystatechange",
+ STR_READY_STATE = "readyState",
+ STR_REMOVE_CHILD = "removeChild",
+ STR_SCRIPT_TAG = "<script>",
+ STR_SUCCESS = "success",
+ STR_TIMEOUT = "timeout",
+
+ // Window
+ win = window,
+ // Deferred
+ Deferred = $.Deferred,
+ // Head element
+ head = $( "head" )[ 0 ] || document.documentElement,
+ // Page cache
+ pageCache = {},
+ // Counter
+ count = 0,
+ // Last returned value
+ lastValue,
+
+ // ###################### DEFAULT OPTIONS ##
+ xOptionsDefaults = {
+ //beforeSend: undefined,
+ //cache: false,
+ callback: STR_JQUERY_JSONP,
+ //callbackParameter: undefined,
+ //charset: undefined,
+ //complete: undefined,
+ //context: undefined,
+ //data: "",
+ //dataFilter: undefined,
+ //error: undefined,
+ //pageCache: false,
+ //success: undefined,
+ //timeout: 0,
+ //traditional: false,
+ url: location.href
+ },
+
+ // opera demands sniffing :/
+ opera = win.opera,
+
+ // IE < 10
+ oldIE = !!$( "<div>" ).html( "<!--[if IE]><i><![endif]-->" ).find("i").length;
+
+ // ###################### MAIN FUNCTION ##
+ function jsonp( xOptions ) {
+
+ // Build data with default
+ xOptions = $.extend( {} , xOptionsDefaults , xOptions );
+
+ // References to xOptions members (for better minification)
+ var successCallback = xOptions.success,
+ errorCallback = xOptions.error,
+ completeCallback = xOptions.complete,
+ dataFilter = xOptions.dataFilter,
+ callbackParameter = xOptions.callbackParameter,
+ successCallbackName = xOptions.callback,
+ cacheFlag = xOptions.cache,
+ pageCacheFlag = xOptions.pageCache,
+ charset = xOptions.charset,
+ url = xOptions.url,
+ data = xOptions.data,
+ timeout = xOptions.timeout,
+ pageCached,
+
+ // Abort/done flag
+ done = 0,
+
+ // Life-cycle functions
+ cleanUp = noop,
+
+ // Support vars
+ supportOnload,
+ supportOnreadystatechange,
+
+ // Request execution vars
+ firstChild,
+ script,
+ scriptAfter,
+ timeoutTimer;
+
+ // If we have Deferreds:
+ // - substitute callbacks
+ // - promote xOptions to a promise
+ Deferred && Deferred(function( defer ) {
+ defer.done( successCallback ).fail( errorCallback );
+ successCallback = defer.resolve;
+ errorCallback = defer.reject;
+ }).promise( xOptions );
+
+ // Create the abort method
+ xOptions.abort = function() {
+ !( done++ ) && cleanUp();
+ };
+
+ // Call beforeSend if provided (early abort if false returned)
+ if ( callIfDefined( xOptions.beforeSend , xOptions , [ xOptions ] ) === !1 || done ) {
+ return xOptions;
+ }
+
+ // Control entries
+ url = url || STR_EMPTY;
+ data = data ? ( (typeof data) == "string" ? data : $.param( data , xOptions.traditional ) ) : STR_EMPTY;
+
+ // Build final url
+ url += data ? ( qMarkOrAmp( url ) + data ) : STR_EMPTY;
+
+ // Add callback parameter if provided as option
+ callbackParameter && ( url += qMarkOrAmp( url ) + encodeURIComponent( callbackParameter ) + "=?" );
+
+ // Add anticache parameter if needed
+ !cacheFlag && !pageCacheFlag && ( url += qMarkOrAmp( url ) + "_" + ( new Date() ).getTime() + "=" );
+
+ // Replace last ? by callback parameter
+ url = url.replace( /=\?(&|$)/ , "=" + successCallbackName + "$1" );
+
+ // Success notifier
+ function notifySuccess( json ) {
+
+ if ( !( done++ ) ) {
+
+ cleanUp();
+ // Pagecache if needed
+ pageCacheFlag && ( pageCache [ url ] = { s: [ json ] } );
+ // Apply the data filter if provided
+ dataFilter && ( json = dataFilter.apply( xOptions , [ json ] ) );
+ // Call success then complete
+ callIfDefined( successCallback , xOptions , [ json , STR_SUCCESS, xOptions ] );
+ callIfDefined( completeCallback , xOptions , [ xOptions , STR_SUCCESS ] );
+
+ }
+ }
+
+ // Error notifier
+ function notifyError( type ) {
+
+ if ( !( done++ ) ) {
+
+ // Clean up
+ cleanUp();
+ // If pure error (not timeout), cache if needed
+ pageCacheFlag && type != STR_TIMEOUT && ( pageCache[ url ] = type );
+ // Call error then complete
+ callIfDefined( errorCallback , xOptions , [ xOptions , type ] );
+ callIfDefined( completeCallback , xOptions , [ xOptions , type ] );
+
+ }
+ }
+
+ // Check page cache
+ if ( pageCacheFlag && ( pageCached = pageCache[ url ] ) ) {
+
+ pageCached.s ? notifySuccess( pageCached.s[ 0 ] ) : notifyError( pageCached );
+
+ } else {
+
+ // Install the generic callback
+ // (BEWARE: global namespace pollution ahoy)
+ win[ successCallbackName ] = genericCallback;
+
+ // Create the script tag
+ script = $( STR_SCRIPT_TAG )[ 0 ];
+ script.id = STR_JQUERY_JSONP + count++;
+
+ // Set charset if provided
+ if ( charset ) {
+ script[ STR_CHARSET ] = charset;
+ }
+
+ opera && opera.version() < 11.60 ?
+ // onerror is not supported: do not set as async and assume in-order execution.
+ // Add a trailing script to emulate the event
+ ( ( scriptAfter = $( STR_SCRIPT_TAG )[ 0 ] ).text = "document.getElementById('" + script.id + "')." + STR_ON_ERROR + "()" )
+ :
+ // onerror is supported: set the script as async to avoid requests blocking each others
+ ( script[ STR_ASYNC ] = STR_ASYNC )
+
+ ;
+
+ // Internet Explorer: event/htmlFor trick
+ if ( oldIE ) {
+ script.htmlFor = script.id;
+ script.event = STR_ON_CLICK;
+ }
+
+ // Attached event handlers
+ script[ STR_ON_LOAD ] = script[ STR_ON_ERROR ] = script[ STR_ON_READY_STATE_CHANGE ] = function ( result ) {
+
+ // Test readyState if it exists
+ if ( !script[ STR_READY_STATE ] || !/i/.test( script[ STR_READY_STATE ] ) ) {
+
+ try {
+
+ script[ STR_ON_CLICK ] && script[ STR_ON_CLICK ]();
+
+ } catch( _ ) {}
+
+ result = lastValue;
+ lastValue = 0;
+ result ? notifySuccess( result[ 0 ] ) : notifyError( STR_ERROR );
+
+ }
+ };
+
+ // Set source
+ script.src = url;
+
+ // Re-declare cleanUp function
+ cleanUp = function( i ) {
+ timeoutTimer && clearTimeout( timeoutTimer );
+ script[ STR_ON_READY_STATE_CHANGE ] = script[ STR_ON_LOAD ] = script[ STR_ON_ERROR ] = null;
+ head[ STR_REMOVE_CHILD ]( script );
+ scriptAfter && head[ STR_REMOVE_CHILD ]( scriptAfter );
+ };
+
+ // Append main script
+ head[ STR_INSERT_BEFORE ]( script , ( firstChild = head.firstChild ) );
+
+ // Append trailing script if needed
+ scriptAfter && head[ STR_INSERT_BEFORE ]( scriptAfter , firstChild );
+
+ // If a timeout is needed, install it
+ timeoutTimer = timeout > 0 && setTimeout( function() {
+ notifyError( STR_TIMEOUT );
+ } , timeout );
+
+ }
+
+ return xOptions;
+ }
+
+ // ###################### SETUP FUNCTION ##
+ jsonp.setup = function( xOptions ) {
+ $.extend( xOptionsDefaults , xOptions );
+ };
+
+ // ###################### INSTALL in jQuery ##
+ $.jsonp = jsonp;
+
+} )( jQuery );
diff --git a/Sketchometry.activity/3dparty/jszip/jszip-deflate.min.js b/Sketchometry.activity/3dparty/jszip/jszip-deflate.min.js
new file mode 100644
index 0000000..4584163
--- /dev/null
+++ b/Sketchometry.activity/3dparty/jszip/jszip-deflate.min.js
@@ -0,0 +1 @@
+if(!JSZip){throw"JSZip not defined"}(function(){var ak=32768;var aT=0;var e=1;var bo=2;var bf=6;var N=true;var a5=32768;var bd=64;var bt=1024*8;var aX=2*ak;var X=3;var bs=258;var B=16;var U=8192;var g=13;if(U>a5){alert("error: zip_INBUFSIZ is too small")}if((ak<<1)>(1<<B)){alert("error: zip_WSIZE is too large")}if(g>B-1){alert("error: zip_HASH_BITS is too large")}if(g<8||bs!=258){alert("error: Code too clever")}var a1=U;var au=1<<g;var a6=au-1;var aS=ak-1;var S=0;var V=4096;var bq=bs+X+1;var z=ak-bq;var p=1;var by=15;var aL=7;var aA=29;var K=256;var P=256;var al=K+1+aA;var bn=30;var s=19;var bg=16;var aR=17;var bu=18;var bm=2*al+1;var aD=parseInt((g+X-1)/X);var aq;var bx,i;var L;var aZ=null;var a4,a3;var d;var bl;var c;var an;var y;var aj;var ap;var a7;var ai;var q;var Z;var aa;var aF;var bh;var O;var r;var x;var Y;var I;var aC;var k;var n;var F;var aU;var D;var l;var at;var af;var E;var j;var C;var bb;var f;var m;var aI;var bk;var W;var bp;var br;var az;var M;var a;var aw;var aW;var G;var w;var ad;var aQ;var be;var b;var bA=function(){this.fc=0;this.dl=0};var o=function(){this.dyn_tree=null;this.static_tree=null;this.extra_bits=null;this.extra_base=0;this.elems=0;this.max_length=0;this.max_code=0};var R=function(bF,bE,bH,bG){this.good_length=bF;this.max_lazy=bE;this.nice_length=bH;this.max_chain=bG};var bi=function(){this.next=null;this.len=0;this.ptr=new Array(bt);this.off=0};var aE=new Array(0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0);var u=new Array(0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13);var J=new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7);var aG=new Array(16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15);var aP=new Array(new R(0,0,0,0),new R(4,4,8,4),new R(4,5,16,8),new R(4,6,32,32),new R(4,4,16,16),new R(8,16,32,32),new R(8,16,128,128),new R(8,32,128,256),new R(32,128,258,1024),new R(32,258,258,4096));var ab=function(bF){var bE;if(!bF){bF=bf}else{if(bF<1){bF=1}else{if(bF>9){bF=9}}}k=bF;L=false;x=false;if(aZ!=null){return}aq=bx=i=null;aZ=new Array(bt);bl=new Array(aX);c=new Array(a1);an=new Array(a5+bd);y=new Array(1<<B);aU=new Array(bm);for(bE=0;bE<bm;bE++){aU[bE]=new bA()}D=new Array(2*bn+1);for(bE=0;bE<2*bn+1;bE++){D[bE]=new bA()}l=new Array(al+2);for(bE=0;bE<al+2;bE++){l[bE]=new bA()}at=new Array(bn);for(bE=0;bE<bn;bE++){at[bE]=new bA()}af=new Array(2*s+1);for(bE=0;bE<2*s+1;bE++){af[bE]=new bA()}E=new o();j=new o();C=new o();bb=new Array(by+1);f=new Array(2*al+1);bk=new Array(2*al+1);W=new Array(bs-X+1);bp=new Array(512);br=new Array(aA);az=new Array(bn);M=new Array(parseInt(U/8))};var ay=function(){aq=bx=i=null;aZ=null;bl=null;c=null;an=null;y=null;aU=null;D=null;l=null;at=null;af=null;E=null;j=null;C=null;bb=null;f=null;bk=null;W=null;bp=null;br=null;az=null;M=null};var av=function(bE){bE.next=aq;aq=bE};var T=function(){var bE;if(aq!=null){bE=aq;aq=aq.next}else{bE=new bi()}bE.next=null;bE.len=bE.off=0;return bE};var ah=function(bE){return y[ak+bE]};var ag=function(bE,bF){return y[ak+bE]=bF};var Q=function(bE){aZ[a3+a4++]=bE;if(a3+a4==bt){h()}};var aN=function(bE){bE&=65535;if(a3+a4<bt-2){aZ[a3+a4++]=(bE&255);aZ[a3+a4++]=(bE>>>8)}else{Q(bE&255);Q(bE>>>8)}};var aB=function(){ai=((ai<<aD)^(bl[O+X-1]&255))&a6;q=ah(ai);y[O&aS]=q;ag(ai,O)};var bc=function(bF,bE){bv(bE[bF].fc,bE[bF].dl)};var aK=function(bE){return(bE<256?bp[bE]:bp[256+(bE>>7)])&255};var ae=function(bF,bG,bE){return bF[bG].fc<bF[bE].fc||(bF[bG].fc==bF[bE].fc&&bk[bG]<=bk[bE])};var ba=function(bH,bF,bG){var bE;for(bE=0;bE<bG&&b<be.length;bE++){bH[bF+bE]=be.charCodeAt(b++)&255}return bE};var bz=function(){var bE;for(bE=0;bE<au;bE++){y[ak+bE]=0}aC=aP[k].max_lazy;n=aP[k].good_length;if(!N){F=aP[k].nice_length}I=aP[k].max_chain;O=0;a7=0;Y=ba(bl,0,2*ak);if(Y<=0){x=true;Y=0;return}x=false;while(Y<bq&&!x){ac()}ai=0;for(bE=0;bE<X-1;bE++){ai=((ai<<aD)^(bl[bE]&255))&a6}};var a9=function(bJ){var bL=I;var bG=O;var bH;var bK;var bF=bh;var bI=(O>z?O-z:S);var bE=O+bs;var bN=bl[bG+bF-1];var bM=bl[bG+bF];if(bh>=n){bL>>=2}do{bH=bJ;if(bl[bH+bF]!=bM||bl[bH+bF-1]!=bN||bl[bH]!=bl[bG]||bl[++bH]!=bl[bG+1]){continue}bG+=2;bH++;do{}while(bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bl[++bG]==bl[++bH]&&bG<bE);bK=bs-(bE-bG);bG=bE-bs;if(bK>bF){r=bJ;bF=bK;if(N){if(bK>=bs){break}}else{if(bK>=F){break}}bN=bl[bG+bF-1];bM=bl[bG+bF]}}while((bJ=y[bJ&aS])>bI&&--bL!=0);return bF};var ac=function(){var bG,bE;var bF=aX-Y-O;if(bF==-1){bF--}else{if(O>=ak+z){for(bG=0;bG<ak;bG++){bl[bG]=bl[bG+ak]}r-=ak;O-=ak;a7-=ak;for(bG=0;bG<au;bG++){bE=ah(bG);ag(bG,bE>=ak?bE-ak:S)}for(bG=0;bG<ak;bG++){bE=y[bG];y[bG]=(bE>=ak?bE-ak:S)}bF+=ak}}if(!x){bG=ba(bl,O+Y,bF);if(bG<=0){x=true}else{Y+=bG}}};var bw=function(){while(Y!=0&&bx==null){var bE;aB();if(q!=S&&O-q<=z){aF=a9(q);if(aF>Y){aF=Y}}if(aF>=X){bE=bj(O-r,aF-X);Y-=aF;if(aF<=aC){aF--;do{O++;aB()}while(--aF!=0);O++}else{O+=aF;aF=0;ai=bl[O]&255;ai=((ai<<aD)^(bl[O+1]&255))&a6}}else{bE=bj(0,bl[O]&255);Y--;O++}if(bE){t(0);a7=O}while(Y<bq&&!x){ac()}}};var aV=function(){while(Y!=0&&bx==null){aB();bh=aF;Z=r;aF=X-1;if(q!=S&&bh<aC&&O-q<=z){aF=a9(q);if(aF>Y){aF=Y}if(aF==X&&O-r>V){aF--}}if(bh>=X&&aF<=bh){var bE;bE=bj(O-1-Z,bh-X);Y-=bh-1;bh-=2;do{O++;aB()}while(--bh!=0);aa=0;aF=X-1;O++;if(bE){t(0);a7=O}}else{if(aa!=0){if(bj(0,bl[O-1]&255)){t(0);a7=O}O++;Y--}else{aa=1;O++;Y--}}while(Y<bq&&!x){ac()}}};var aJ=function(){if(x){return}aj=0;ap=0;aY();bz();bx=null;a4=0;a3=0;if(k<=3){bh=X-1;aF=0}else{aF=X-1;aa=0}d=false};var v=function(bH,bF,bE){var bG;if(!L){aJ();L=true;if(Y==0){d=true;return 0}}if((bG=bB(bH,bF,bE))==bE){return bE}if(d){return bG}if(k<=3){bw()}else{aV()}if(Y==0){if(aa!=0){bj(0,bl[O-1]&255)}t(1);d=true}return bG+bB(bH,bG+bF,bE-bG)};var bB=function(bK,bI,bF){var bJ,bG,bE;bJ=0;while(bx!=null&&bJ<bF){bG=bF-bJ;if(bG>bx.len){bG=bx.len}for(bE=0;bE<bG;bE++){bK[bI+bJ+bE]=bx.ptr[bx.off+bE]}bx.off+=bG;bx.len-=bG;bJ+=bG;if(bx.len==0){var bH;bH=bx;bx=bx.next;av(bH)}}if(bJ==bF){return bJ}if(a3<a4){bG=bF-bJ;if(bG>a4-a3){bG=a4-a3}for(bE=0;bE<bG;bE++){bK[bI+bJ+bE]=aZ[a3+bE]}a3+=bG;bJ+=bG;if(a4==a3){a4=a3=0}}return bJ};var aY=function(){var bI;var bG;var bF;var bE;var bH;if(at[0].dl!=0){return}E.dyn_tree=aU;E.static_tree=l;E.extra_bits=aE;E.extra_base=K+1;E.elems=al;E.max_length=by;E.max_code=0;j.dyn_tree=D;j.static_tree=at;j.extra_bits=u;j.extra_base=0;j.elems=bn;j.max_length=by;j.max_code=0;C.dyn_tree=af;C.static_tree=null;C.extra_bits=J;C.extra_base=0;C.elems=s;C.max_length=aL;C.max_code=0;bF=0;for(bE=0;bE<aA-1;bE++){br[bE]=bF;for(bI=0;bI<(1<<aE[bE]);bI++){W[bF++]=bE}}W[bF-1]=bE;bH=0;for(bE=0;bE<16;bE++){az[bE]=bH;for(bI=0;bI<(1<<u[bE]);bI++){bp[bH++]=bE}}bH>>=7;for(;bE<bn;bE++){az[bE]=bH<<7;for(bI=0;bI<(1<<(u[bE]-7));bI++){bp[256+bH++]=bE}}for(bG=0;bG<=by;bG++){bb[bG]=0}bI=0;while(bI<=143){l[bI++].dl=8;bb[8]++}while(bI<=255){l[bI++].dl=9;bb[9]++}while(bI<=279){l[bI++].dl=7;bb[7]++}while(bI<=287){l[bI++].dl=8;bb[8]++}a2(l,al+1);for(bI=0;bI<bn;bI++){at[bI].dl=5;at[bI].fc=ao(bI,5)}ar()};var ar=function(){var bE;for(bE=0;bE<al;bE++){aU[bE].fc=0}for(bE=0;bE<bn;bE++){D[bE].fc=0}for(bE=0;bE<s;bE++){af[bE].fc=0}aU[P].fc=1;ad=aQ=0;a=aw=aW=0;G=0;w=1};var H=function(bE,bG){var bF=f[bG];var bH=bG<<1;while(bH<=m){if(bH<m&&ae(bE,f[bH+1],f[bH])){bH++}if(ae(bE,bF,f[bH])){break}f[bG]=f[bH];bG=bH;bH<<=1}f[bG]=bF};var am=function(bM){var bR=bM.dyn_tree;var bH=bM.extra_bits;var bE=bM.extra_base;var bN=bM.max_code;var bP=bM.max_length;var bQ=bM.static_tree;var bK;var bF,bG;var bO;var bJ;var bL;var bI=0;for(bO=0;bO<=by;bO++){bb[bO]=0}bR[f[aI]].dl=0;for(bK=aI+1;bK<bm;bK++){bF=f[bK];bO=bR[bR[bF].dl].dl+1;if(bO>bP){bO=bP;bI++}bR[bF].dl=bO;if(bF>bN){continue}bb[bO]++;bJ=0;if(bF>=bE){bJ=bH[bF-bE]}bL=bR[bF].fc;ad+=bL*(bO+bJ);if(bQ!=null){aQ+=bL*(bQ[bF].dl+bJ)}}if(bI==0){return}do{bO=bP-1;while(bb[bO]==0){bO--}bb[bO]--;bb[bO+1]+=2;bb[bP]--;bI-=2}while(bI>0);for(bO=bP;bO!=0;bO--){bF=bb[bO];while(bF!=0){bG=f[--bK];if(bG>bN){continue}if(bR[bG].dl!=bO){ad+=(bO-bR[bG].dl)*bR[bG].fc;bR[bG].fc=bO}bF--}}};var a2=function(bF,bK){var bH=new Array(by+1);var bG=0;var bI;var bJ;for(bI=1;bI<=by;bI++){bG=((bG+bb[bI-1])<<1);bH[bI]=bG}for(bJ=0;bJ<=bK;bJ++){var bE=bF[bJ].dl;if(bE==0){continue}bF[bJ].fc=ao(bH[bE]++,bE)}};var a8=function(bJ){var bM=bJ.dyn_tree;var bL=bJ.static_tree;var bE=bJ.elems;var bF,bH;var bK=-1;var bG=bE;m=0;aI=bm;for(bF=0;bF<bE;bF++){if(bM[bF].fc!=0){f[++m]=bK=bF;bk[bF]=0}else{bM[bF].dl=0}}while(m<2){var bI=f[++m]=(bK<2?++bK:0);bM[bI].fc=1;bk[bI]=0;ad--;if(bL!=null){aQ-=bL[bI].dl}}bJ.max_code=bK;for(bF=m>>1;bF>=1;bF--){H(bM,bF)}do{bF=f[p];f[p]=f[m--];H(bM,p);bH=f[p];f[--aI]=bF;f[--aI]=bH;bM[bG].fc=bM[bF].fc+bM[bH].fc;if(bk[bF]>bk[bH]+1){bk[bG]=bk[bF]}else{bk[bG]=bk[bH]+1}bM[bF].dl=bM[bH].dl=bG;f[p]=bG++;H(bM,p)}while(m>=2);f[--aI]=f[p];am(bJ);a2(bM,bK)};var ax=function(bM,bL){var bF;var bJ=-1;var bE;var bH=bM[0].dl;var bI=0;var bG=7;var bK=4;if(bH==0){bG=138;bK=3}bM[bL+1].dl=65535;for(bF=0;bF<=bL;bF++){bE=bH;bH=bM[bF+1].dl;if(++bI<bG&&bE==bH){continue}else{if(bI<bK){af[bE].fc+=bI}else{if(bE!=0){if(bE!=bJ){af[bE].fc++}af[bg].fc++}else{if(bI<=10){af[aR].fc++}else{af[bu].fc++}}}}bI=0;bJ=bE;if(bH==0){bG=138;bK=3}else{if(bE==bH){bG=6;bK=3}else{bG=7;bK=4}}}};var aH=function(bM,bL){var bF;var bJ=-1;var bE;var bH=bM[0].dl;var bI=0;var bG=7;var bK=4;if(bH==0){bG=138;bK=3}for(bF=0;bF<=bL;bF++){bE=bH;bH=bM[bF+1].dl;if(++bI<bG&&bE==bH){continue}else{if(bI<bK){do{bc(bE,af)}while(--bI!=0)}else{if(bE!=0){if(bE!=bJ){bc(bE,af);bI--}bc(bg,af);bv(bI-3,2)}else{if(bI<=10){bc(aR,af);bv(bI-3,3)}else{bc(bu,af);bv(bI-11,7)}}}}bI=0;bJ=bE;if(bH==0){bG=138;bK=3}else{if(bE==bH){bG=6;bK=3}else{bG=7;bK=4}}}};var A=function(){var bE;ax(aU,E.max_code);ax(D,j.max_code);a8(C);for(bE=s-1;bE>=3;bE--){if(af[aG[bE]].dl!=0){break}}ad+=3*(bE+1)+5+5+4;return bE};var bD=function(bF,bE,bG){var bH;bv(bF-257,5);bv(bE-1,5);bv(bG-4,4);for(bH=0;bH<bG;bH++){bv(af[aG[bH]].dl,3)}aH(aU,bF-1);aH(D,bE-1)};var t=function(bE){var bG,bF;var bI;var bJ;bJ=O-a7;M[aW]=G;a8(E);a8(j);bI=A();bG=(ad+3+7)>>3;bF=(aQ+3+7)>>3;if(bF<=bG){bG=bF}if(bJ+4<=bG&&a7>=0){var bH;bv((aT<<1)+bE,3);bC();aN(bJ);aN(~bJ);for(bH=0;bH<bJ;bH++){Q(bl[a7+bH])}}else{if(bF==bG){bv((e<<1)+bE,3);aM(l,at)}else{bv((bo<<1)+bE,3);bD(E.max_code+1,j.max_code+1,bI+1);aM(aU,D)}}ar();if(bE!=0){bC()}};var bj=function(bI,bG){an[a++]=bG;if(bI==0){aU[bG].fc++}else{bI--;aU[W[bG]+K+1].fc++;D[aK(bI)].fc++;c[aw++]=bI;G|=w}w<<=1;if((a&7)==0){M[aW++]=G;G=0;w=1}if(k>2&&(a&4095)==0){var bE=a*8;var bH=O-a7;var bF;for(bF=0;bF<bn;bF++){bE+=D[bF].fc*(5+u[bF])}bE>>=3;if(aw<parseInt(a/2)&&bE<parseInt(bH/2)){return true}}return(a==U-1||aw==a1)};var aM=function(bK,bI){var bM;var bF;var bG=0;var bN=0;var bJ=0;var bL=0;var bE;var bH;if(a!=0){do{if((bG&7)==0){bL=M[bJ++]}bF=an[bG++]&255;if((bL&1)==0){bc(bF,bK)}else{bE=W[bF];bc(bE+K+1,bK);bH=aE[bE];if(bH!=0){bF-=br[bE];bv(bF,bH)}bM=c[bN++];bE=aK(bM);bc(bE,bI);bH=u[bE];if(bH!=0){bM-=az[bE];bv(bM,bH)}}bL>>=1}while(bG<a)}bc(P,bK)};var a0=16;var bv=function(bF,bE){if(ap>a0-bE){aj|=(bF<<ap);aN(aj);aj=(bF>>(a0-ap));ap+=bE-a0}else{aj|=bF<<ap;ap+=bE}};var ao=function(bG,bE){var bF=0;do{bF|=bG&1;bG>>=1;bF<<=1}while(--bE>0);return bF>>1};var bC=function(){if(ap>8){aN(aj)}else{if(ap>0){Q(aj)}}aj=0;ap=0};var h=function(){if(a4!=0){var bF,bE;bF=T();if(bx==null){bx=i=bF}else{i=i.next=bF}bF.len=a4-a3;for(bE=0;bE<bF.len;bE++){bF.ptr[bE]=aZ[a3+bE]}a4=a3=0}};var aO=function(bI,bK){var bG,bF;be=bI;b=0;if(typeof bK=="undefined"){bK=bf}ab(bK);var bJ=new Array(1024);var bH=[];while((bG=v(bJ,0,bJ.length))>0){var bE=new Array(bG);for(bF=0;bF<bG;bF++){bE[bF]=String.fromCharCode(bJ[bF])}bH[bH.length]=bE.join("")}be=null;return bH.join("")};JSZip.compressions.DEFLATE={magic:"\x08\x00",compress:function(bE){return aO(bE)}}})(); \ No newline at end of file
diff --git a/Sketchometry.activity/3dparty/jszip/jszip.min.js b/Sketchometry.activity/3dparty/jszip/jszip.min.js
new file mode 100644
index 0000000..b84beac
--- /dev/null
+++ b/Sketchometry.activity/3dparty/jszip/jszip.min.js
@@ -0,0 +1 @@
+function JSZip(a){this.compression=(a||"STORE").toUpperCase();this.files=[];this.root="";this.d={base64:false,binary:false,dir:false,date:null};if(!JSZip.compressions[this.compression]){throw a+" is not a valid compression method !"}}JSZip.prototype.add=function(a,e,d){d=d||{};a=this.root+a;if(d.base64===true&&d.binary==null){d.binary=true}for(var b in this.d){d[b]=d[b]||this.d[b]}d.date=d.date||new Date();var g,h;g=d.date.getHours();g=g<<6;g=g|d.date.getMinutes();g=g<<5;g=g|d.date.getSeconds()/2;h=d.date.getFullYear()-1980;h=h<<4;h=h|(d.date.getMonth()+1);h=h<<5;h=h|d.date.getDate();if(d.base64===true){e=JSZipBase64.decode(e)}if(d.binary===false){e=this.utf8encode(e)}var i=JSZip.compressions[this.compression];var c=i.compress(e);var f="";f+="\x0A\x00";f+="\x00\x00";f+=i.magic;f+=this.decToHex(g,2);f+=this.decToHex(h,2);f+=this.decToHex(this.crc32(e),4);f+=this.decToHex(c.length,4);f+=this.decToHex(e.length,4);f+=this.decToHex(a.length,2);f+="\x00\x00";this.files[a]={header:f,data:c,dir:d.dir};return this};JSZip.prototype.folder=function(b){if(b.substr(-1)!="/"){b+="/"}if(typeof this.files[b]==="undefined"){this.add(b,"",{dir:true})}var a=this.clone();a.root=this.root+b;return a};JSZip.prototype.find=function(e){var a=[],d;if(typeof e==="string"){d=new RegExp("^"+e+"$")}else{d=e}for(var b in this.files){if(d.test(b)){var c=this.files[b];a.push({name:b,data:c.data,dir:!!c.dir})}}return a};JSZip.prototype.remove=function(b){var d=this.files[b];if(!d){if(b.substr(-1)!="/"){b+="/"}d=this.files[b]}if(d){if(b.match("/")===null){delete this.files[b]}else{var a=this.find(new RegExp("^"+b));for(var c=0;c<a.length;c++){if(a[c].name==b){delete this.files[b]}else{this.remove(a[c].name)}}}}return this};JSZip.prototype.generate=function(i){i=i||false;var h=[],a=[],e=0;for(var b in this.files){if(!this.files.hasOwnProperty(b)){continue}var g="",k="";g="\x50\x4b\x03\x04"+this.files[b].header+b+this.files[b].data;k="\x50\x4b\x01\x02\x14\x00"+this.files[b].header+"\x00\x00\x00\x00\x00\x00"+(this.files[b].dir===true?"\x10\x00\x00\x00":"\x00\x00\x00\x00")+this.decToHex(e,4)+b;e+=g.length;a.push(g);h.push(k)}var j=a.join("");var f=h.join("");var d="";d="\x50\x4b\x05\x06\x00\x00\x00\x00"+this.decToHex(a.length,2)+this.decToHex(a.length,2)+this.decToHex(f.length,4)+this.decToHex(j.length,4)+"\x00\x00";var c=j+f+d;return(i)?c:JSZipBase64.encode(c)};JSZip.compressions={STORE:{magic:"\x00\x00",compress:function(a){return a}}};JSZip.prototype.decToHex=function(d,a){var c="";for(var b=0;b<a;b++){c+=String.fromCharCode(d&255);d=d>>>8}return c};JSZip.prototype.crc32=function(f,d){if(f===""){return"\x00\x00\x00\x00"}var c="00000000 77073096 EE0E612C 990951BA 076DC419 706AF48F E963A535 9E6495A3 0EDB8832 79DCB8A4 E0D5E91E 97D2D988 09B64C2B 7EB17CBD E7B82D07 90BF1D91 1DB71064 6AB020F2 F3B97148 84BE41DE 1ADAD47D 6DDDE4EB F4D4B551 83D385C7 136C9856 646BA8C0 FD62F97A 8A65C9EC 14015C4F 63066CD9 FA0F3D63 8D080DF5 3B6E20C8 4C69105E D56041E4 A2677172 3C03E4D1 4B04D447 D20D85FD A50AB56B 35B5A8FA 42B2986C DBBBC9D6 ACBCF940 32D86CE3 45DF5C75 DCD60DCF ABD13D59 26D930AC 51DE003A C8D75180 BFD06116 21B4F4B5 56B3C423 CFBA9599 B8BDA50F 2802B89E 5F058808 C60CD9B2 B10BE924 2F6F7C87 58684C11 C1611DAB B6662D3D 76DC4190 01DB7106 98D220BC EFD5102A 71B18589 06B6B51F 9FBFE4A5 E8B8D433 7807C9A2 0F00F934 9609A88E E10E9818 7F6A0DBB 086D3D2D 91646C97 E6635C01 6B6B51F4 1C6C6162 856530D8 F262004E 6C0695ED 1B01A57B 8208F4C1 F50FC457 65B0D9C6 12B7E950 8BBEB8EA FCB9887C 62DD1DDF 15DA2D49 8CD37CF3 FBD44C65 4DB26158 3AB551CE A3BC0074 D4BB30E2 4ADFA541 3DD895D7 A4D1C46D D3D6F4FB 4369E96A 346ED9FC AD678846 DA60B8D0 44042D73 33031DE5 AA0A4C5F DD0D7CC9 5005713C 270241AA BE0B1010 C90C2086 5768B525 206F85B3 B966D409 CE61E49F 5EDEF90E 29D9C998 B0D09822 C7D7A8B4 59B33D17 2EB40D81 B7BD5C3B C0BA6CAD EDB88320 9ABFB3B6 03B6E20C 74B1D29A EAD54739 9DD277AF 04DB2615 73DC1683 E3630B12 94643B84 0D6D6A3E 7A6A5AA8 E40ECF0B 9309FF9D 0A00AE27 7D079EB1 F00F9344 8708A3D2 1E01F268 6906C2FE F762575D 806567CB 196C3671 6E6B06E7 FED41B76 89D32BE0 10DA7A5A 67DD4ACC F9B9DF6F 8EBEEFF9 17B7BE43 60B08ED5 D6D6A3E8 A1D1937E 38D8C2C4 4FDFF252 D1BB67F1 A6BC5767 3FB506DD 48B2364B D80D2BDA AF0A1B4C 36034AF6 41047A60 DF60EFC3 A867DF55 316E8EEF 4669BE79 CB61B38C BC66831A 256FD2A0 5268E236 CC0C7795 BB0B4703 220216B9 5505262F C5BA3BBE B2BD0B28 2BB45A92 5CB36A04 C2D7FFA7 B5D0CF31 2CD99E8B 5BDEAE1D 9B64C2B0 EC63F226 756AA39C 026D930A 9C0906A9 EB0E363F 72076785 05005713 95BF4A82 E2B87A14 7BB12BAE 0CB61B38 92D28E9B E5D5BE0D 7CDCEFB7 0BDBDF21 86D3D2D4 F1D4E242 68DDB3F8 1FDA836E 81BE16CD F6B9265B 6FB077E1 18B74777 88085AE6 FF0F6A70 66063BCA 11010B5C 8F659EFF F862AE69 616BFFD3 166CCF45 A00AE278 D70DD2EE 4E048354 3903B3C2 A7672661 D06016F7 4969474D 3E6E77DB AED16A4A D9D65ADC 40DF0B66 37D83BF0 A9BCAE53 DEBB9EC5 47B2CF7F 30B5FFE9 BDBDF21C CABAC28A 53B39330 24B4A3A6 BAD03605 CDD70693 54DE5729 23D967BF B3667A2E C4614AB8 5D681B02 2A6F2B94 B40BBE37 C30C8EA1 5A05DF1B 2D02EF8D";if(typeof(d)=="undefined"){d=0}var a=0;var g=0;d=d^(-1);for(var b=0,e=f.length;b<e;b++){g=(d^f.charCodeAt(b))&255;a="0x"+c.substr(g*9,8);d=(d>>>8)^a}return d^(-1)};JSZip.prototype.clone=function(){var a=new JSZip();for(var b in this){if(typeof this[b]!=="function"){a[b]=this[b]}}return a};JSZip.prototype.utf8encode=function(a){a=encodeURIComponent(a);a=a.replace(/%.{2,2}/g,function(b){var c=b.substring(1);return String.fromCharCode(parseInt(c,16))});return a};var JSZipBase64=function(){var a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";return{encode:function(e,d){var b="";var m,k,h,l,j,g,f;var c=0;while(c<e.length){m=e.charCodeAt(c++);k=e.charCodeAt(c++);h=e.charCodeAt(c++);l=m>>2;j=((m&3)<<4)|(k>>4);g=((k&15)<<2)|(h>>6);f=h&63;if(isNaN(k)){g=f=64}else{if(isNaN(h)){f=64}}b=b+a.charAt(l)+a.charAt(j)+a.charAt(g)+a.charAt(f)}return b},decode:function(e,d){var b="";var m,k,h;var l,j,g,f;var c=0;e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(c<e.length){l=a.indexOf(e.charAt(c++));j=a.indexOf(e.charAt(c++));g=a.indexOf(e.charAt(c++));f=a.indexOf(e.charAt(c++));m=(l<<2)|(j>>4);k=((j&15)<<4)|(g>>2);h=((g&3)<<6)|f;b=b+String.fromCharCode(m);if(g!=64){b=b+String.fromCharCode(k)}if(f!=64){b=b+String.fromCharCode(h)}}return b}}}(); \ No newline at end of file