Split raphael into 3 development files. Added build process. Fixed transformation...
[raphael] / raphael.js
1 // ┌─────────────────────────────────────────────────────────────────────┐ \\
2 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
3 // ├─────────────────────────────────────────────────────────────────────┤ \\
4 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
5 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
6 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
7 // └─────────────────────────────────────────────────────────────────────┘ \\
8 (function () {
9     /*\
10      * Raphael
11      [ method ]
12      **
13      * Creates a canvas object on which to draw.
14      * You must do this first, as all future calls to drawing methods
15      * from this instance will be bound to this canvas.
16      > Parameters
17      **
18      - container (HTMLElement|string) DOM element or its ID which is going to be a parent for drawing surface
19      - width (number)
20      - height (number)
21      - callback (function) #optional callback function which is going to be executed in the context of newly created paper
22      * or
23      - x (number)
24      - y (number)
25      - width (number)
26      - height (number)
27      - callback (function) #optional callback function which is going to be executed in the context of newly created paper
28      * or
29      - all (array) (first 3 or 4 elements in the array are equal to [containerID, width, height] or [x, y, width, height]. The rest are element descriptions in format {type: type, <attributes>})
30      - callback (function) #optional callback function which is going to be executed in the context of newly created paper
31      * or
32      - onReadyCallback (function) function that is going to be called on DOM ready event. You can also subscribe to this event via Eve’s “DOMLoad” event. In this case method returns `undefined`.
33      = (object) @Paper
34      > Usage
35      | // Each of the following examples create a canvas
36      | // that is 320px wide by 200px high.
37      | // Canvas is created at the viewport’s 10,50 coordinate.
38      | var paper = Raphael(10, 50, 320, 200);
39      | // Canvas is created at the top left corner of the #notepad element
40      | // (or its top right corner in dir="rtl" elements)
41      | var paper = Raphael(document.getElementById("notepad"), 320, 200);
42      | // Same as above
43      | var paper = Raphael("notepad", 320, 200);
44      | // Image dump
45      | var set = Raphael(["notepad", 320, 200, {
46      |     type: "rect",
47      |     x: 10,
48      |     y: 10,
49      |     width: 25,
50      |     height: 25,
51      |     stroke: "#f00"
52      | }, {
53      |     type: "text",
54      |     x: 30,
55      |     y: 40,
56      |     text: "Dump"
57      | }]);
58     \*/
59     function R(first) {
60         if (R.is(first, "function")) {
61             return loaded ? first() : eve.on("DOMload", first);
62         } else if (R.is(first, array)) {
63             var a = first,
64                 cnv = R._engine.create[apply](R, a.splice(0, 3 + R.is(a[0], nu))),
65                 res = cnv.set(),
66                 i = 0,
67                 ii = a.length,
68                 j;
69             for (; i < ii; i++) {
70                 j = a[i] || {};
71                 elements[has](j.type) && res.push(cnv[j.type]().attr(j));
72             }
73             return res;
74         } else {
75             var args = Array.prototype.slice.call(arguments, 0);
76             if (R.is(args[args.length - 1], "function")) {
77                 var f = args.pop();
78                 return loaded ? f.call(R._engine.create[apply](R, args)) : eve.on("DOMload", function () {
79                     f.call(R._engine.create[apply](R, args));
80                 });
81             } else {
82                 return R._engine.create[apply](R, arguments);
83             }
84         }
85     }
86     R.version = "2.0.0";
87     var loaded,
88         separator = /[, ]+/,
89         elements = {circle: 1, rect: 1, path: 1, ellipse: 1, text: 1, image: 1},
90         formatrg = /\{(\d+)\}/g,
91         proto = "prototype",
92         has = "hasOwnProperty",
93         g = {
94             doc: document,
95             win: window
96         },
97         oldRaphael = {
98             was: Object.prototype[has].call(g.win, "Raphael"),
99             is: g.win.Raphael
100         },
101         Paper = function () {},
102         paperproto,
103         appendChild = "appendChild",
104         apply = "apply",
105         concat = "concat",
106         supportsTouch = "createTouch" in g.doc,
107         E = "",
108         S = " ",
109         Str = String,
110         split = "split",
111         events = "click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend orientationchange touchcancel gesturestart gesturechange gestureend".split(S),
112         touchMap = {
113             mousedown: "touchstart",
114             mousemove: "touchmove",
115             mouseup: "touchend"
116         },
117         lowerCase = Str.prototype.toLowerCase,
118         math = Math,
119         mmax = math.max,
120         mmin = math.min,
121         abs = math.abs,
122         pow = math.pow,
123         PI = math.PI,
124         nu = "number",
125         string = "string",
126         array = "array",
127         toString = "toString",
128         fillString = "fill",
129         objectToString = Object.prototype.toString,
130         paper = {},
131         push = "push",
132         ISURL = R._ISURL = /^url\(['"]?([^\)]+?)['"]?\)$/i,
133         colourRegExp = /^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i,
134         isnan = {"NaN": 1, "Infinity": 1, "-Infinity": 1},
135         bezierrg = /^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,
136         round = math.round,
137         setAttribute = "setAttribute",
138         toFloat = parseFloat,
139         toInt = parseInt,
140         ms = " progid:DXImageTransform.Microsoft",
141         upperCase = Str.prototype.toUpperCase,
142         availableAttrs = R._availableAttrs = {
143             "arrow-end": "none",
144             "arrow-start": "none",
145             blur: 0,
146             "clip-rect": "0 0 1e9 1e9",
147             cursor: "default",
148             cx: 0,
149             cy: 0,
150             fill: "#fff",
151             "fill-opacity": 1,
152             font: '10px "Arial"',
153             "font-family": '"Arial"',
154             "font-size": "10",
155             "font-style": "normal",
156             "font-weight": 400,
157             gradient: 0,
158             height: 0,
159             href: "http://raphaeljs.com/",
160             opacity: 1,
161             path: "M0,0",
162             r: 0,
163             rx: 0,
164             ry: 0,
165             src: "",
166             stroke: "#000",
167             "stroke-dasharray": "",
168             "stroke-linecap": "butt",
169             "stroke-linejoin": "butt",
170             "stroke-miterlimit": 0,
171             "stroke-opacity": 1,
172             "stroke-width": 1,
173             target: "_blank",
174             "text-anchor": "middle",
175             title: "Raphael",
176             transform: "",
177             width: 0,
178             x: 0,
179             y: 0
180         },
181         availableAnimAttrs = R._availableAnimAttrs = {
182             blur: nu,
183             "clip-rect": "csv",
184             cx: nu,
185             cy: nu,
186             fill: "colour",
187             "fill-opacity": nu,
188             "font-size": nu,
189             height: nu,
190             opacity: nu,
191             path: "path",
192             r: nu,
193             rx: nu,
194             ry: nu,
195             stroke: "colour",
196             "stroke-opacity": nu,
197             "stroke-width": nu,
198             transform: "transform",
199             width: nu,
200             x: nu,
201             y: nu
202         },
203         commaSpaces = /\s*,\s*/,
204         hsrg = {hs: 1, rg: 1},
205         p2s = /,?([achlmqrstvxz]),?/gi,
206         pathCommand = /([achlmqstvz])[\s,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?\s*,?\s*)+)/ig,
207         tCommand = /([rstm])[\s,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?\s*,?\s*)+)/ig,
208         pathValues = /(-?\d*\.?\d*(?:e[\-+]?\d+)?)\s*,?\s*/ig,
209         radial_gradient = R._radial_gradient = /^r(?:\(([^,]+?)\s*,\s*([^\)]+?)\))?/,
210         sortByKey = function (a, b) {
211             return a.key - b.key;
212         },
213         sortByNumber = function (a, b) {
214             return a - b;
215         },
216         fun = function () {},
217         pipe = function (x) {
218             return x;
219         },
220         rectPath = R._rectPath = function (x, y, w, h, r) {
221             if (r) {
222                 return [["M", x + r, y], ["l", w - r * 2, 0], ["a", r, r, 0, 0, 1, r, r], ["l", 0, h - r * 2], ["a", r, r, 0, 0, 1, -r, r], ["l", r * 2 - w, 0], ["a", r, r, 0, 0, 1, -r, -r], ["l", 0, r * 2 - h], ["a", r, r, 0, 0, 1, r, -r], ["z"]];
223             }
224             return [["M", x, y], ["l", w, 0], ["l", 0, h], ["l", -w, 0], ["z"]];
225         },
226         ellipsePath = function (x, y, rx, ry) {
227             if (ry == null) {
228                 ry = rx;
229             }
230             return [["M", x, y], ["m", 0, -ry], ["a", rx, ry, 0, 1, 1, 0, 2 * ry], ["a", rx, ry, 0, 1, 1, 0, -2 * ry], ["z"]];
231         },
232         getPath = R._getPath = {
233             path: function (el) {
234                 return el.attr("path");
235             },
236             circle: function (el) {
237                 var a = el.attrs;
238                 return ellipsePath(a.cx, a.cy, a.r);
239             },
240             ellipse: function (el) {
241                 var a = el.attrs;
242                 return ellipsePath(a.cx, a.cy, a.rx, a.ry);
243             },
244             rect: function (el) {
245                 var a = el.attrs;
246                 return rectPath(a.x, a.y, a.width, a.height, a.r);
247             },
248             image: function (el) {
249                 var a = el.attrs;
250                 return rectPath(a.x, a.y, a.width, a.height);
251             },
252             text: function (el) {
253                 var bbox = el._getBBox();
254                 return rectPath(bbox.x, bbox.y, bbox.width, bbox.height);
255             }
256         },
257         mapPath = function (path, matrix) {
258             if (!matrix) {
259                 return path;
260             }
261             var x, y, i, j, pathi;
262             path = path2curve(path);
263             for (i = 0, ii = path.length; i < ii; i++) {
264                 pathi = path[i];
265                 for (j = 1, jj = pathi.length; j < jj; j += 2) {
266                     x = matrix.x(pathi[j], pathi[j + 1]);
267                     y = matrix.y(pathi[j], pathi[j + 1]);
268                     pathi[j] = x;
269                     pathi[j + 1] = y;
270                 }
271             }
272             return path;
273         };
274
275     R._g = g;
276     /*\
277      * Raphael.type
278      [ property (string) ]
279      **
280      * Can be “SVG”, “VML” or empty, depending on browser support.
281     \*/
282     R.type = (g.win.SVGAngle || g.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1") ? "SVG" : "VML");
283     if (R.type == "VML") {
284         var d = g.doc.createElement("div"),
285             b;
286         d.innerHTML = '<v:shape adj="1"/>';
287         b = d.firstChild;
288         b.style.behavior = "url(#default#VML)";
289         if (!(b && typeof b.adj == "object")) {
290             return (R.type = E);
291         }
292         d = null;
293     }
294     /*\
295      * Raphael.svg
296      [ property (boolean) ]
297      **
298      * `true` if browser supports SVG.
299     \*/
300     /*\
301      * Raphael.vml
302      [ property (boolean) ]
303      **
304      * `true` if browser supports VML.
305     \*/
306     R.svg = !(R.vml = R.type == "VML");
307     R._Paper = Paper;
308     /*\
309      * Raphael.fn
310      [ property (object) ]
311      **
312      * You can add your own method to the canvas. For example if you want to draw a pie chart,
313      * you can create your own pie chart function and ship it as a Raphaël plugin. To do this
314      * you need to extend the `Raphael.fn` object. Please note that you can create your own namespaces
315      * inside the `fn` object — methods will be run in the context of canvas anyway. You should alter
316      * the `fn` object before a Raphaël instance is created, otherwise it will take no effect.
317      > Usage
318      | Raphael.fn.arrow = function (x1, y1, x2, y2, size) {
319      |     return this.path( ... );
320      | };
321      | // or create namespace
322      | Raphael.fn.mystuff = {
323      |     arrow: function () {…},
324      |     star: function () {…},
325      |     // etc…
326      | };
327      | var paper = Raphael(10, 10, 630, 480);
328      | // then use it
329      | paper.arrow(10, 10, 30, 30, 5).attr({fill: "#f00"});
330      | paper.mystuff.arrow();
331      | paper.mystuff.star();
332     \*/
333     R.fn = paperproto = Paper.prototype = R.prototype;
334     /*\
335      * Paper.customAttributes
336      [ property (object) ]
337      **
338      * If you have a set of attributes that you would like to represent
339      * as a function of some number you can do it easily with custom attributes:
340      > Usage
341      | paper.customAttributes.hue = function (num) {
342      |     num = num % 1;
343      |     return {fill: "hsb(" + num + ", .75, 1)"};
344      | };
345      | // Custom attribute “hue” will change fill
346      | // to be given hue with fixed saturation and brightness.
347      | // Now you can use it like this:
348      | var c = paper.circle(10, 10, 10).attr({hue: .45});
349      | // or even like this:
350      | c.animate({hue: 1}, 1e3);
351      | 
352      | // You could also create custom attribute
353      | // with multiple parameters:
354      | paper.customAttributes.hsb = function (h, s, b) {
355      |     return {fill: "hsb(" + [h, s, b].join(",") + ")"};
356      | };
357      | c.attr({hsb: ".5 .8 1"});
358      | c.animate({hsb: "1 0 .5"}, 1e3);
359     \*/
360     paperproto.customAttributes = {};
361     R._id = 0;
362     R._oid = 0;
363     /*\
364      * Raphael.is
365      [ method ]
366      **
367      * Handfull replacement for `typeof` operator.
368      > Parameters
369      - o (…) any object or primitive
370      - type (string) name of the type, i.e. “string”, “function”, “number”, etc.
371      = (boolean) is given value is of given type
372     \*/
373     R.is = function (o, type) {
374         type = lowerCase.call(type);
375         if (type == "finite") {
376             return !isnan[has](+o);
377         }
378         if (type == "array") {
379             return o instanceof Array;
380         }
381         return  (type == "null" && o === null) ||
382                 (type == typeof o) ||
383                 (type == "object" && o === Object(o)) ||
384                 (type == "array" && Array.isArray && Array.isArray(o)) ||
385                 objectToString.call(o).slice(8, -1).toLowerCase() == type;
386     };
387     /*\
388      * Raphael.angle
389      [ method ]
390      **
391      * Returns angle between two or three points
392      > Parameters
393      - x1 (number) x coord of first point
394      - y1 (number) y coord of first point
395      - x2 (number) x coord of second point
396      - y2 (number) y coord of second point
397      - x3 (number) #optional x coord of third point
398      - y3 (number) #optional y coord of third point
399      = (number) angle in degrees.
400     \*/
401     R.angle = function (x1, y1, x2, y2, x3, y3) {
402         if (x3 == null) {
403             var x = x1 - x2,
404                 y = y1 - y2;
405             if (!x && !y) {
406                 return 0;
407             }
408             return (180 + math.atan2(-y, -x) * 180 / PI + 360) % 360;
409         } else {
410             return R.angle(x1, y1, x3, y3) - R.angle(x2, y2, x3, y3);
411         }
412     };
413     /*\
414      * Raphael.rad
415      [ method ]
416      **
417      * Transform angle to radians
418      > Parameters
419      - deg (number) angle in degrees
420      = (number) angle in radians.
421     \*/
422     R.rad = function (deg) {
423         return deg % 360 * PI / 180;
424     };
425     /*\
426      * Raphael.deg
427      [ method ]
428      **
429      * Transform angle to degrees
430      > Parameters
431      - deg (number) angle in radians
432      = (number) angle in degrees.
433     \*/
434     R.deg = function (rad) {
435         return rad * 180 / PI % 360;
436     };
437     /*\
438      * Raphael.snapTo
439      [ method ]
440      **
441      * Snaps given value to given grid.
442      > Parameters
443      - values (array|number) given array of values or step of the grid
444      - value (number) value to adjust
445      - tolerance (number) #optional tolerance for snapping. Default is `10`.
446      = (number) adjusted value.
447     \*/
448     R.snapTo = function (values, value, tolerance) {
449         tolerance = R.is(tolerance, "finite") ? tolerance : 10;
450         if (R.is(values, array)) {
451             var i = values.length;
452             while (i--) if (abs(values[i] - value) <= tolerance) {
453                 return values[i];
454             }
455         } else {
456             values = +values;
457             var rem = value % values;
458             if (rem < tolerance) {
459                 return value - rem;
460             }
461             if (rem > values - tolerance) {
462                 return value - rem + values;
463             }
464         }
465         return value;
466     };
467     
468     var createUUID = R._createUUID = (function (uuidRegEx, uuidReplacer) {
469         return function () {
470             return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(uuidRegEx, uuidReplacer).toUpperCase();
471         };
472     })(/[xy]/g, function (c) {
473         var r = math.random() * 16 | 0,
474             v = c == "x" ? r : (r & 3 | 8);
475         return v.toString(16);
476     });
477
478     /*\
479      * Raphael.setWindow
480      [ method ]
481      **
482      * Used when you need to draw in `&lt;iframe>`. Switched window to the iframe one.
483      > Parameters
484      - newwin (window) new window object
485     \*/
486     R.setWindow = function (newwin) {
487         eve("setWindow", R, g.win, newwin);
488         g.win = newwin;
489         g.doc = g.win.document;
490         if (initWin) {
491             initWin(g.win);
492         }
493     };
494     // colour utilities
495     var toHex = function (color) {
496         if (R.vml) {
497             // http://dean.edwards.name/weblog/2009/10/convert-any-colour-value-to-hex-in-msie/
498             var trim = /^\s+|\s+$/g;
499             var bod;
500             try {
501                 var docum = new ActiveXObject("htmlfile");
502                 docum.write("<body>");
503                 docum.close();
504                 bod = docum.body;
505             } catch(e) {
506                 bod = createPopup().document.body;
507             }
508             var range = bod.createTextRange();
509             toHex = cacher(function (color) {
510                 try {
511                     bod.style.color = Str(color).replace(trim, E);
512                     var value = range.queryCommandValue("ForeColor");
513                     value = ((value & 255) << 16) | (value & 65280) | ((value & 16711680) >>> 16);
514                     return "#" + ("000000" + value.toString(16)).slice(-6);
515                 } catch(e) {
516                     return "none";
517                 }
518             });
519         } else {
520             var i = g.doc.createElement("i");
521             i.title = "Rapha\xebl Colour Picker";
522             i.style.display = "none";
523             g.doc.body.appendChild(i);
524             toHex = cacher(function (color) {
525                 i.style.color = color;
526                 return g.doc.defaultView.getComputedStyle(i, E).getPropertyValue("color");
527             });
528         }
529         return toHex(color);
530     },
531     hsbtoString = function () {
532         return "hsb(" + [this.h, this.s, this.b] + ")";
533     },
534     hsltoString = function () {
535         return "hsl(" + [this.h, this.s, this.l] + ")";
536     },
537     rgbtoString = function () {
538         return this.hex;
539     },
540     prepareRGB = function (r, g, b) {
541         if (g == null && R.is(r, "object") && "r" in r && "g" in r && "b" in r) {
542             b = r.b;
543             g = r.g;
544             r = r.r;
545         }
546         if (g == null && R.is(r, string)) {
547             var clr = R.getRGB(r);
548             r = clr.r;
549             g = clr.g;
550             b = clr.b;
551         }
552         if (r > 1 || g > 1 || b > 1) {
553             r /= 255;
554             g /= 255;
555             b /= 255;
556         }
557         
558         return [r, g, b];
559     },
560     packageRGB = function (r, g, b, o) {
561         r *= 255;
562         g *= 255;
563         b *= 255;
564         var rgb = {
565             r: r,
566             g: g,
567             b: b,
568             hex: R.rgb(r, g, b),
569             toString: rgbtoString
570         };
571         R.is(o, "finite") && (rgb.opacity = o);
572         return rgb;
573     };
574     
575     /*\
576      * Raphael.color
577      [ method ]
578      **
579      * Parses the color string and returns object with all values for the given color.
580      > Parameters
581      - clr (string) color string in one of the supported formats (see @Raphael.getRGB)
582      = (object) Combined RGB & HSB object in format:
583      o {
584      o     r (number) red,
585      o     g (number) green,
586      o     b (number) blue,
587      o     hex (string) color in HTML/CSS format: #••••••,
588      o     error (boolean) `true` if string can’t be parsed,
589      o     h (number) hue,
590      o     s (number) saturation,
591      o     v (number) value (brightness),
592      o     l (number) lightness
593      o }
594     \*/
595     R.color = function (clr) {
596         var rgb;
597         if (R.is(clr, "object") && "h" in clr && "s" in clr && "b" in clr) {
598             rgb = R.hsb2rgb(clr);
599             clr.r = rgb.r;
600             clr.g = rgb.g;
601             clr.b = rgb.b;
602             clr.hex = rgb.hex;
603         } else if (R.is(clr, "object") && "h" in clr && "s" in clr && "l" in clr) {
604             rgb = R.hsl2rgb(clr);
605             clr.r = rgb.r;
606             clr.g = rgb.g;
607             clr.b = rgb.b;
608             clr.hex = rgb.hex;
609         } else {
610             if (R.is(clr, "string")) {
611                 clr = R.getRGB(clr);
612             }
613             if (R.is(clr, "object") && "r" in clr && "g" in clr && "b" in clr) {
614                 rgb = R.rgb2hsl(clr);
615                 clr.h = rgb.h;
616                 clr.s = rgb.s;
617                 clr.l = rgb.l;
618                 rgb = R.rgb2hsb(clr);
619                 clr.v = rgb.b;
620             } else {
621                 clr = {hex: "none"};
622                 crl.r = clr.g = clr.b = clr.h = clr.s = clr.v = clr.l = -1;
623             }
624         }
625         clr.toString = rgbtoString;
626         return clr;
627     };
628     /*\
629      * Raphael.hsb2rgb
630      [ method ]
631      **
632      * Converts HSB values to RGB object.
633      > Parameters
634      - h (number) hue
635      - s (number) saturation
636      - v (number) value or brightness
637      = (object) RGB object in format:
638      o {
639      o     r (number) red,
640      o     g (number) green,
641      o     b (number) blue,
642      o     hex (string) color in HTML/CSS format: #••••••
643      o }
644     \*/
645     R.hsb2rgb = function (h, s, v, o) {
646         if (this.is(h, "object") && "h" in h && "s" in h && "b" in h) {
647             v = h.b;
648             s = h.s;
649             h = h.h;
650             o = h.o;
651         }
652         h *= 360;
653         var R, G, B, X, C;
654         h = (h % 360) / 60;
655         C = v * s;
656         X = C * (1 - abs(h % 2 - 1));
657         R = G = B = v - C;
658
659         h = ~~h;
660         R += [C, X, 0, 0, X, C][h];
661         G += [X, C, C, X, 0, 0][h];
662         B += [0, 0, X, C, C, X][h];
663         return packageRGB(R, G, B, o);
664     };
665     /*\
666      * Raphael.hsl2rgb
667      [ method ]
668      **
669      * Converts HSL values to RGB object.
670      > Parameters
671      - h (number) hue
672      - s (number) saturation
673      - l (number) luminosity
674      = (object) RGB object in format:
675      o {
676      o     r (number) red,
677      o     g (number) green,
678      o     b (number) blue,
679      o     hex (string) color in HTML/CSS format: #••••••
680      o }
681     \*/
682     R.hsl2rgb = function (h, s, l, o) {
683         if (this.is(h, "object") && "h" in h && "s" in h && "l" in h) {
684             l = h.l;
685             s = h.s;
686             h = h.h;
687         }
688         if (h > 1 || s > 1 || l > 1) {
689             h /= 360;
690             s /= 100;
691             l /= 100;
692         }
693         h *= 360;
694         var R, G, B, X, C;
695         h = (h % 360) / 60;
696         C = 2 * s * (l < .5 ? l : 1 - l);
697         X = C * (1 - abs(h % 2 - 1));
698         R = G = B = l - C / 2;
699
700         h = ~~h;
701         R += [C, X, 0, 0, X, C][h];
702         G += [X, C, C, X, 0, 0][h];
703         B += [0, 0, X, C, C, X][h];
704         return packageRGB(R, G, B, o);
705     };
706     /*\
707      * Raphael.rgb2hsb
708      [ method ]
709      **
710      * Converts RGB values to HSB object.
711      > Parameters
712      - r (number) red
713      - g (number) green
714      - b (number) blue
715      = (object) HSB object in format:
716      o {
717      o     h (number) hue
718      o     s (number) saturation
719      o     b (number) brightness
720      o }
721     \*/
722     R.rgb2hsb = function (r, g, b) {
723         b = prepareRGB(r, g, b);
724         r = b[0];
725         g = b[1];
726         b = b[2];
727
728         var H, S, V, C;
729         V = mmax(r, g, b);
730         C = V - mmin(r, g, b);
731         H = (C == 0 ? null :
732              V == r ? (g - b) / C :
733              V == g ? (b - r) / C + 2 :
734                       (r - g) / C + 4
735             );
736         H = ((H + 360) % 6) * 60 / 360;
737         S = C == 0 ? 0 : C / V;
738         return {h: H, s: S, b: V, toString: hsbtoString};
739     };
740     /*\
741      * Raphael.rgb2hsl
742      [ method ]
743      **
744      * Converts RGB values to HSL object.
745      > Parameters
746      - r (number) red
747      - g (number) green
748      - b (number) blue
749      = (object) HSL object in format:
750      o {
751      o     h (number) hue
752      o     s (number) saturation
753      o     l (number) luminosity
754      o }
755     \*/
756     R.rgb2hsl = function (r, g, b) {
757         b = prepareRGB(r, g, b);
758         r = b[0];
759         g = b[1];
760         b = b[2];
761
762         var H, S, L, M, m, C;
763         M = mmax(r, g, b);
764         m = mmin(r, g, b);
765         C = M - m;
766         H = (C == 0 ? null :
767              M == r ? (g - b) / C :
768              M == g ? (b - r) / C + 2 :
769                       (r - g) / C + 4);
770         H = ((H + 360) % 6) * 60 / 360;
771         L = (M + m) / 2;
772         S = (C == 0 ? 0 :
773              L < .5 ? C / (2 * L) :
774                       C / (2 - 2 * L));
775         return {h: H, s: S, l: L, toString: hsltoString};
776     };
777     R._path2string = function () {
778         return this.join(",").replace(p2s, "$1");
779     };
780     function repush(array, item) {
781         for (var i = 0, ii = array.length; i < ii; i++) if (array[i] === item) {
782             return array.push(array.splice(i, 1)[0]);
783         }
784     }
785     function cacher(f, scope, postprocessor) {
786         function newf() {
787             var arg = Array.prototype.slice.call(arguments, 0),
788                 args = arg.join("\u2400"),
789                 cache = newf.cache = newf.cache || {},
790                 count = newf.count = newf.count || [];
791             if (cache[has](args)) {
792                 repush(count, args);
793                 return postprocessor ? postprocessor(cache[args]) : cache[args];
794             }
795             count.length >= 1e3 && delete cache[count.shift()];
796             count.push(args);
797             cache[args] = f[apply](scope, arg);
798             return postprocessor ? postprocessor(cache[args]) : cache[args];
799         }
800         return newf;
801     }
802
803     var preload = R._preload = function (src, f) {
804         var img = g.doc.createElement("img");
805         img.style.cssText = "position:absolute;left:-9999em;top-9999em";
806         img.onload = function () {
807             f.call(this);
808             this.onload = null;
809             g.doc.body.removeChild(this);
810         };
811         img.onerror = function () {
812             g.doc.body.removeChild(this);
813         };
814         g.doc.body.appendChild(img);
815         img.src = src;
816     };
817     
818     function clrToString() {
819         return this.hex;
820     }
821
822     /*\
823      * Raphael.getRGB
824      [ method ]
825      **
826      * Parses colour string as RGB object
827      > Parameters
828      - colour (string) colour string in one of formats:
829      # <ul>
830      #     <li>Colour name (“<code>red</code>”, “<code>green</code>”, “<code>cornflowerblue</code>”, etc)</li>
831      #     <li>#••• — shortened HTML colour: (“<code>#000</code>”, “<code>#fc0</code>”, etc)</li>
832      #     <li>#•••••• — full length HTML colour: (“<code>#000000</code>”, “<code>#bd2300</code>”)</li>
833      #     <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<code>rgb(200,&nbsp;100,&nbsp;0)</code>”)</li>
834      #     <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<code>rgb(100%,&nbsp;175%,&nbsp;0%)</code>”)</li>
835      #     <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<code>hsb(0.5,&nbsp;0.25,&nbsp;1)</code>”)</li>
836      #     <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
837      #     <li>hsl(•••, •••, •••) — same as hsb</li>
838      #     <li>hsl(•••%, •••%, •••%) — same as hsb</li>
839      # </ul>
840      = (object) RGB object in format:
841      o {
842      o     r (number) red,
843      o     g (number) green,
844      o     b (number) blue
845      o     hex (string) color in HTML/CSS format: #••••••,
846      o     error (boolean) true if string can’t be parsed
847      o }
848     \*/
849     R.getRGB = cacher(function (colour) {
850         if (!colour || !!((colour = Str(colour)).indexOf("-") + 1)) {
851             return {r: -1, g: -1, b: -1, hex: "none", error: 1, toString: clrToString};
852         }
853         if (colour == "none") {
854             return {r: -1, g: -1, b: -1, hex: "none", toString: clrToString};
855         }
856         !(hsrg[has](colour.toLowerCase().substring(0, 2)) || colour.charAt() == "#") && (colour = toHex(colour));
857         var res,
858             red,
859             green,
860             blue,
861             opacity,
862             t,
863             values,
864             rgb = colour.match(colourRegExp);
865         if (rgb) {
866             if (rgb[2]) {
867                 blue = toInt(rgb[2].substring(5), 16);
868                 green = toInt(rgb[2].substring(3, 5), 16);
869                 red = toInt(rgb[2].substring(1, 3), 16);
870             }
871             if (rgb[3]) {
872                 blue = toInt((t = rgb[3].charAt(3)) + t, 16);
873                 green = toInt((t = rgb[3].charAt(2)) + t, 16);
874                 red = toInt((t = rgb[3].charAt(1)) + t, 16);
875             }
876             if (rgb[4]) {
877                 values = rgb[4].split(commaSpaces);
878                 red = toFloat(values[0]);
879                 values[0].slice(-1) == "%" && (red *= 2.55);
880                 green = toFloat(values[1]);
881                 values[1].slice(-1) == "%" && (green *= 2.55);
882                 blue = toFloat(values[2]);
883                 values[2].slice(-1) == "%" && (blue *= 2.55);
884                 rgb[1].toLowerCase().slice(0, 4) == "rgba" && (opacity = toFloat(values[3]));
885                 values[3] && values[3].slice(-1) == "%" && (opacity /= 100);
886             }
887             if (rgb[5]) {
888                 values = rgb[5].split(commaSpaces);
889                 red = toFloat(values[0]);
890                 values[0].slice(-1) == "%" && (red *= 2.55);
891                 green = toFloat(values[1]);
892                 values[1].slice(-1) == "%" && (green *= 2.55);
893                 blue = toFloat(values[2]);
894                 values[2].slice(-1) == "%" && (blue *= 2.55);
895                 (values[0].slice(-3) == "deg" || values[0].slice(-1) == "\xb0") && (red /= 360);
896                 rgb[1].toLowerCase().slice(0, 4) == "hsba" && (opacity = toFloat(values[3]));
897                 values[3] && values[3].slice(-1) == "%" && (opacity /= 100);
898                 return R.hsb2rgb(red, green, blue, opacity);
899             }
900             if (rgb[6]) {
901                 values = rgb[6].split(commaSpaces);
902                 red = toFloat(values[0]);
903                 values[0].slice(-1) == "%" && (red *= 2.55);
904                 green = toFloat(values[1]);
905                 values[1].slice(-1) == "%" && (green *= 2.55);
906                 blue = toFloat(values[2]);
907                 values[2].slice(-1) == "%" && (blue *= 2.55);
908                 (values[0].slice(-3) == "deg" || values[0].slice(-1) == "\xb0") && (red /= 360);
909                 rgb[1].toLowerCase().slice(0, 4) == "hsla" && (opacity = toFloat(values[3]));
910                 values[3] && values[3].slice(-1) == "%" && (opacity /= 100);
911                 return R.hsl2rgb(red, green, blue, opacity);
912             }
913             rgb = {r: red, g: green, b: blue, toString: clrToString};
914             rgb.hex = "#" + (16777216 | blue | (green << 8) | (red << 16)).toString(16).slice(1);
915             R.is(opacity, "finite") && (rgb.opacity = opacity);
916             return rgb;
917         }
918         return {r: -1, g: -1, b: -1, hex: "none", error: 1, toString: clrToString};
919     }, R);
920     /*\
921      * Raphael.hsb
922      [ method ]
923      **
924      * Converts HSB values to hex representation of the colour.
925      > Parameters
926      - h (number) hue
927      - s (number) saturation
928      - b (number) value or brightness
929      = (string) hex representation of the colour.
930     \*/
931     R.hsb = cacher(function (h, s, b) {
932         return R.hsb2rgb(h, s, b).hex;
933     });
934     /*\
935      * Raphael.hsl
936      [ method ]
937      **
938      * Converts HSL values to hex representation of the colour.
939      > Parameters
940      - h (number) hue
941      - s (number) saturation
942      - l (number) luminosity
943      = (string) hex representation of the colour.
944     \*/
945     R.hsl = cacher(function (h, s, l) {
946         return R.hsl2rgb(h, s, l).hex;
947     });
948     /*\
949      * Raphael.rgb
950      [ method ]
951      **
952      * Converts RGB values to hex representation of the colour.
953      > Parameters
954      - r (number) red
955      - g (number) green
956      - b (number) blue
957      = (string) hex representation of the colour.
958     \*/
959     R.rgb = cacher(function (r, g, b) {
960         return "#" + (16777216 | b | (g << 8) | (r << 16)).toString(16).slice(1);
961     });
962     /*\
963      * Raphael.getColor
964      [ method ]
965      **
966      * On each call returns next colour in the spectrum. To reset it back to red call @Raphael.getColor.reset
967      > Parameters
968      - value (number) #optional brightness, default is `0.75`
969      = (string) hex representation of the colour.
970     \*/
971     R.getColor = function (value) {
972         var start = this.getColor.start = this.getColor.start || {h: 0, s: 1, b: value || .75},
973             rgb = this.hsb2rgb(start.h, start.s, start.b);
974         start.h += .075;
975         if (start.h > 1) {
976             start.h = 0;
977             start.s -= .2;
978             start.s <= 0 && (this.getColor.start = {h: 0, s: 1, b: start.b});
979         }
980         return rgb.hex;
981     };
982     /*\
983      * Raphael.getColor.reset
984      [ method ]
985      **
986      * Resets spectrum position for @Raphael.getColor back to red.
987     \*/
988     R.getColor.reset = function () {
989         delete this.start;
990     };
991
992     /*\
993      * Raphael.parsePathString
994      [ method ]
995      **
996      * Utility method
997      **
998      * Parses given path string into an array of arrays of path segments.
999      > Parameters
1000      - pathString (string|array) path string or array of segments (in the last case it will be returned straight away)
1001      = (array) array of segments.
1002     \*/
1003     R.parsePathString = cacher(function (pathString) {
1004         if (!pathString) {
1005             return null;
1006         }
1007         var paramCounts = {a: 7, c: 6, h: 1, l: 2, m: 2, q: 4, s: 4, t: 2, v: 1, z: 0},
1008             data = [];
1009         if (R.is(pathString, array) && R.is(pathString[0], array)) { // rough assumption
1010             data = pathClone(pathString);
1011         }
1012         if (!data.length) {
1013             Str(pathString).replace(pathCommand, function (a, b, c) {
1014                 var params = [],
1015                     name = lowerCase.call(b);
1016                 c.replace(pathValues, function (a, b) {
1017                     b && params.push(+b);
1018                 });
1019                 if (name == "m" && params.length > 2) {
1020                     data.push([b][concat](params.splice(0, 2)));
1021                     name = "l";
1022                     b = b == "m" ? "l" : "L";
1023                 }
1024                 while (params.length >= paramCounts[name]) {
1025                     data.push([b][concat](params.splice(0, paramCounts[name])));
1026                     if (!paramCounts[name]) {
1027                         break;
1028                     }
1029                 }
1030             });
1031         }
1032         data.toString = R._path2string;
1033         return data;
1034     });
1035     /*\
1036      * Raphael.parseTransformString
1037      [ method ]
1038      **
1039      * Utility method
1040      **
1041      * Parses given path string into an array of transformations.
1042      > Parameters
1043      - TString (string|array) transform string or array of transformations (in the last case it will be returned straight away)
1044      = (array) array of transformations.
1045     \*/
1046     R.parseTransformString = cacher(function (TString) {
1047         if (!TString) {
1048             return null;
1049         }
1050         var paramCounts = {r: 3, s: 4, t: 2, m: 6},
1051             data = [];
1052         if (R.is(TString, array) && R.is(TString[0], array)) { // rough assumption
1053             data = pathClone(TString);
1054         }
1055         if (!data.length) {
1056             Str(TString).replace(tCommand, function (a, b, c) {
1057                 var params = [],
1058                     name = lowerCase.call(b);
1059                 c.replace(pathValues, function (a, b) {
1060                     b && params.push(+b);
1061                 });
1062                 data.push([name][concat](params));
1063             });
1064         }
1065         data.toString = R._path2string;
1066         return data;
1067     });
1068     /*\
1069      * Raphael.findDotsAtSegment
1070      [ method ]
1071      **
1072      * Utility method
1073      **
1074      * Find dot coordinates on the given cubic bezier curve at the given t.
1075      > Parameters
1076      - p1x (number) x of the first point of the curve
1077      - p1y (number) y of the first point of the curve
1078      - c1x (number) x of the first anchor of the curve
1079      - c1y (number) y of the first anchor of the curve
1080      - c2x (number) x of the second anchor of the curve
1081      - c2y (number) y of the second anchor of the curve
1082      - p2x (number) x of the second point of the curve
1083      - p2y (number) y of the second point of the curve
1084      - t (number) position on the curve (0..1)
1085      = (object) point information in format:
1086      o {
1087      o     x: (number) x coordinate of the point
1088      o     y: (number) y coordinate of the point
1089      o     m: {
1090      o         x: (number) x coordinate of the left anchor
1091      o         y: (number) y coordinate of the left anchor
1092      o     }
1093      o     n: {
1094      o         x: (number) x coordinate of the right anchor
1095      o         y: (number) y coordinate of the right anchor
1096      o     }
1097      o     start: {
1098      o         x: (number) x coordinate of the start of the curve
1099      o         y: (number) y coordinate of the start of the curve
1100      o     }
1101      o     end: {
1102      o         x: (number) x coordinate of the end of the curve
1103      o         y: (number) y coordinate of the end of the curve
1104      o     }
1105      o     alpha: (number) angle of the curve derivative at the point
1106      o }
1107     \*/
1108     R.findDotsAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) {
1109         var t1 = 1 - t,
1110             x = pow(t1, 3) * p1x + pow(t1, 2) * 3 * t * c1x + t1 * 3 * t * t * c2x + pow(t, 3) * p2x,
1111             y = pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y,
1112             mx = p1x + 2 * t * (c1x - p1x) + t * t * (c2x - 2 * c1x + p1x),
1113             my = p1y + 2 * t * (c1y - p1y) + t * t * (c2y - 2 * c1y + p1y),
1114             nx = c1x + 2 * t * (c2x - c1x) + t * t * (p2x - 2 * c2x + c1x),
1115             ny = c1y + 2 * t * (c2y - c1y) + t * t * (p2y - 2 * c2y + c1y),
1116             ax = (1 - t) * p1x + t * c1x,
1117             ay = (1 - t) * p1y + t * c1y,
1118             cx = (1 - t) * c2x + t * p2x,
1119             cy = (1 - t) * c2y + t * p2y,
1120             alpha = (90 - math.atan2(mx - nx, my - ny) * 180 / PI);
1121         (mx > nx || my < ny) && (alpha += 180);
1122         return {
1123             x: x,
1124             y: y,
1125             m: {x: mx, y: my},
1126             n: {x: nx, y: ny},
1127             start: {x: ax, y: ay},
1128             end: {x: cx, y: cy},
1129             alpha: alpha
1130         };
1131     };
1132     var pathDimensions = cacher(function (path) {
1133         if (!path) {
1134             return {x: 0, y: 0, width: 0, height: 0};
1135         }
1136         path = path2curve(path);
1137         var x = 0, 
1138             y = 0,
1139             X = [],
1140             Y = [],
1141             p;
1142         for (var i = 0, ii = path.length; i < ii; i++) {
1143             p = path[i];
1144             if (p[0] == "M") {
1145                 x = p[1];
1146                 y = p[2];
1147                 X.push(x);
1148                 Y.push(y);
1149             } else {
1150                 var dim = curveDim(x, y, p[1], p[2], p[3], p[4], p[5], p[6]);
1151                 X = X[concat](dim.min.x, dim.max.x);
1152                 Y = Y[concat](dim.min.y, dim.max.y);
1153                 x = p[5];
1154                 y = p[6];
1155             }
1156         }
1157         var xmin = mmin[apply](0, X),
1158             ymin = mmin[apply](0, Y);
1159         return {
1160             x: xmin,
1161             y: ymin,
1162             width: mmax[apply](0, X) - xmin,
1163             height: mmax[apply](0, Y) - ymin
1164         };
1165     }, null, function (o) {
1166         return {
1167             x: o.x,
1168             y: o.y,
1169             width: o.width,
1170             height: o.height
1171         };
1172     }),
1173         pathClone = function (pathArray) {
1174             var res = [];
1175             if (!R.is(pathArray, array) || !R.is(pathArray && pathArray[0], array)) { // rough assumption
1176                 pathArray = R.parsePathString(pathArray);
1177             }
1178             for (var i = 0, ii = pathArray.length; i < ii; i++) {
1179                 res[i] = [];
1180                 for (var j = 0, jj = pathArray[i].length; j < jj; j++) {
1181                     res[i][j] = pathArray[i][j];
1182                 }
1183             }
1184             res.toString = R._path2string;
1185             return res;
1186         },
1187         pathToRelative = R._pathToRelative = cacher(function (pathArray) {
1188             if (!R.is(pathArray, array) || !R.is(pathArray && pathArray[0], array)) { // rough assumption
1189                 pathArray = R.parsePathString(pathArray);
1190             }
1191             var res = [],
1192                 x = 0,
1193                 y = 0,
1194                 mx = 0,
1195                 my = 0,
1196                 start = 0;
1197             if (pathArray[0][0] == "M") {
1198                 x = pathArray[0][1];
1199                 y = pathArray[0][2];
1200                 mx = x;
1201                 my = y;
1202                 start++;
1203                 res.push(["M", x, y]);
1204             }
1205             for (var i = start, ii = pathArray.length; i < ii; i++) {
1206                 var r = res[i] = [],
1207                     pa = pathArray[i];
1208                 if (pa[0] != lowerCase.call(pa[0])) {
1209                     r[0] = lowerCase.call(pa[0]);
1210                     switch (r[0]) {
1211                         case "a":
1212                             r[1] = pa[1];
1213                             r[2] = pa[2];
1214                             r[3] = pa[3];
1215                             r[4] = pa[4];
1216                             r[5] = pa[5];
1217                             r[6] = +(pa[6] - x).toFixed(3);
1218                             r[7] = +(pa[7] - y).toFixed(3);
1219                             break;
1220                         case "v":
1221                             r[1] = +(pa[1] - y).toFixed(3);
1222                             break;
1223                         case "m":
1224                             mx = pa[1];
1225                             my = pa[2];
1226                         default:
1227                             for (var j = 1, jj = pa.length; j < jj; j++) {
1228                                 r[j] = +(pa[j] - ((j % 2) ? x : y)).toFixed(3);
1229                             }
1230                     }
1231                 } else {
1232                     r = res[i] = [];
1233                     if (pa[0] == "m") {
1234                         mx = pa[1] + x;
1235                         my = pa[2] + y;
1236                     }
1237                     for (var k = 0, kk = pa.length; k < kk; k++) {
1238                         res[i][k] = pa[k];
1239                     }
1240                 }
1241                 var len = res[i].length;
1242                 switch (res[i][0]) {
1243                     case "z":
1244                         x = mx;
1245                         y = my;
1246                         break;
1247                     case "h":
1248                         x += +res[i][len - 1];
1249                         break;
1250                     case "v":
1251                         y += +res[i][len - 1];
1252                         break;
1253                     default:
1254                         x += +res[i][len - 2];
1255                         y += +res[i][len - 1];
1256                 }
1257             }
1258             res.toString = R._path2string;
1259             return res;
1260         }, 0, pathClone),
1261         pathToAbsolute = R._pathToAbsolute = cacher(function (pathArray) {
1262             if (!R.is(pathArray, array) || !R.is(pathArray && pathArray[0], array)) { // rough assumption
1263                 pathArray = R.parsePathString(pathArray);
1264             }
1265             if (!pathArray || !pathArray.length) {
1266                 return [["M", 0, 0]];
1267             }
1268             var res = [],
1269                 x = 0,
1270                 y = 0,
1271                 mx = 0,
1272                 my = 0,
1273                 start = 0;
1274             if (pathArray[0][0] == "M") {
1275                 x = +pathArray[0][1];
1276                 y = +pathArray[0][2];
1277                 mx = x;
1278                 my = y;
1279                 start++;
1280                 res[0] = ["M", x, y];
1281             }
1282             for (var i = start, ii = pathArray.length; i < ii; i++) {
1283                 var r = res[i] = [],
1284                     pa = pathArray[i];
1285                 if (pa[0] != upperCase.call(pa[0])) {
1286                     r[0] = upperCase.call(pa[0]);
1287                     switch (r[0]) {
1288                         case "A":
1289                             r[1] = pa[1];
1290                             r[2] = pa[2];
1291                             r[3] = pa[3];
1292                             r[4] = pa[4];
1293                             r[5] = pa[5];
1294                             r[6] = +(pa[6] + x);
1295                             r[7] = +(pa[7] + y);
1296                             break;
1297                         case "V":
1298                             r[1] = +pa[1] + y;
1299                             break;
1300                         case "H":
1301                             r[1] = +pa[1] + x;
1302                             break;
1303                         case "M":
1304                             mx = +pa[1] + x;
1305                             my = +pa[2] + y;
1306                         default:
1307                             for (var j = 1, jj = pa.length; j < jj; j++) {
1308                                 r[j] = +pa[j] + ((j % 2) ? x : y);
1309                             }
1310                     }
1311                 } else {
1312                     for (var k = 0, kk = pa.length; k < kk; k++) {
1313                         res[i][k] = pa[k];
1314                     }
1315                 }
1316                 switch (r[0]) {
1317                     case "Z":
1318                         x = mx;
1319                         y = my;
1320                         break;
1321                     case "H":
1322                         x = r[1];
1323                         break;
1324                     case "V":
1325                         y = r[1];
1326                         break;
1327                     case "M":
1328                         mx = res[i][res[i].length - 2];
1329                         my = res[i][res[i].length - 1];
1330                     default:
1331                         x = res[i][res[i].length - 2];
1332                         y = res[i][res[i].length - 1];
1333                 }
1334             }
1335             res.toString = R._path2string;
1336             return res;
1337         }, null, pathClone),
1338         l2c = function (x1, y1, x2, y2) {
1339             return [x1, y1, x2, y2, x2, y2];
1340         },
1341         q2c = function (x1, y1, ax, ay, x2, y2) {
1342             var _13 = 1 / 3,
1343                 _23 = 2 / 3;
1344             return [
1345                     _13 * x1 + _23 * ax,
1346                     _13 * y1 + _23 * ay,
1347                     _13 * x2 + _23 * ax,
1348                     _13 * y2 + _23 * ay,
1349                     x2,
1350                     y2
1351                 ];
1352         },
1353         a2c = function (x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive) {
1354             // for more information of where this math came from visit:
1355             // http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes
1356             var _120 = PI * 120 / 180,
1357                 rad = PI / 180 * (+angle || 0),
1358                 res = [],
1359                 xy,
1360                 rotate = cacher(function (x, y, rad) {
1361                     var X = x * math.cos(rad) - y * math.sin(rad),
1362                         Y = x * math.sin(rad) + y * math.cos(rad);
1363                     return {x: X, y: Y};
1364                 });
1365             if (!recursive) {
1366                 xy = rotate(x1, y1, -rad);
1367                 x1 = xy.x;
1368                 y1 = xy.y;
1369                 xy = rotate(x2, y2, -rad);
1370                 x2 = xy.x;
1371                 y2 = xy.y;
1372                 var cos = math.cos(PI / 180 * angle),
1373                     sin = math.sin(PI / 180 * angle),
1374                     x = (x1 - x2) / 2,
1375                     y = (y1 - y2) / 2;
1376                 var h = (x * x) / (rx * rx) + (y * y) / (ry * ry);
1377                 if (h > 1) {
1378                     h = math.sqrt(h);
1379                     rx = h * rx;
1380                     ry = h * ry;
1381                 }
1382                 var rx2 = rx * rx,
1383                     ry2 = ry * ry,
1384                     k = (large_arc_flag == sweep_flag ? -1 : 1) *
1385                         math.sqrt(abs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))),
1386                     cx = k * rx * y / ry + (x1 + x2) / 2,
1387                     cy = k * -ry * x / rx + (y1 + y2) / 2,
1388                     f1 = math.asin(((y1 - cy) / ry).toFixed(9)),
1389                     f2 = math.asin(((y2 - cy) / ry).toFixed(9));
1390
1391                 f1 = x1 < cx ? PI - f1 : f1;
1392                 f2 = x2 < cx ? PI - f2 : f2;
1393                 f1 < 0 && (f1 = PI * 2 + f1);
1394                 f2 < 0 && (f2 = PI * 2 + f2);
1395                 if (sweep_flag && f1 > f2) {
1396                     f1 = f1 - PI * 2;
1397                 }
1398                 if (!sweep_flag && f2 > f1) {
1399                     f2 = f2 - PI * 2;
1400                 }
1401             } else {
1402                 f1 = recursive[0];
1403                 f2 = recursive[1];
1404                 cx = recursive[2];
1405                 cy = recursive[3];
1406             }
1407             var df = f2 - f1;
1408             if (abs(df) > _120) {
1409                 var f2old = f2,
1410                     x2old = x2,
1411                     y2old = y2;
1412                 f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1);
1413                 x2 = cx + rx * math.cos(f2);
1414                 y2 = cy + ry * math.sin(f2);
1415                 res = a2c(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy]);
1416             }
1417             df = f2 - f1;
1418             var c1 = math.cos(f1),
1419                 s1 = math.sin(f1),
1420                 c2 = math.cos(f2),
1421                 s2 = math.sin(f2),
1422                 t = math.tan(df / 4),
1423                 hx = 4 / 3 * rx * t,
1424                 hy = 4 / 3 * ry * t,
1425                 m1 = [x1, y1],
1426                 m2 = [x1 + hx * s1, y1 - hy * c1],
1427                 m3 = [x2 + hx * s2, y2 - hy * c2],
1428                 m4 = [x2, y2];
1429             m2[0] = 2 * m1[0] - m2[0];
1430             m2[1] = 2 * m1[1] - m2[1];
1431             if (recursive) {
1432                 return [m2, m3, m4][concat](res);
1433             } else {
1434                 res = [m2, m3, m4][concat](res).join().split(",");
1435                 var newres = [];
1436                 for (var i = 0, ii = res.length; i < ii; i++) {
1437                     newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x;
1438                 }
1439                 return newres;
1440             }
1441         },
1442         findDotAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) {
1443             var t1 = 1 - t;
1444             return {
1445                 x: pow(t1, 3) * p1x + pow(t1, 2) * 3 * t * c1x + t1 * 3 * t * t * c2x + pow(t, 3) * p2x,
1446                 y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
1447             };
1448         },
1449         curveDim = cacher(function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) {
1450             var a = (c2x - 2 * c1x + p1x) - (p2x - 2 * c2x + c1x),
1451                 b = 2 * (c1x - p1x) - 2 * (c2x - c1x),
1452                 c = p1x - c1x,
1453                 t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a,
1454                 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a,
1455                 y = [p1y, p2y],
1456                 x = [p1x, p2x],
1457                 dot;
1458             abs(t1) > "1e12" && (t1 = .5);
1459             abs(t2) > "1e12" && (t2 = .5);
1460             if (t1 > 0 && t1 < 1) {
1461                 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t1);
1462                 x.push(dot.x);
1463                 y.push(dot.y);
1464             }
1465             if (t2 > 0 && t2 < 1) {
1466                 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
1467                 x.push(dot.x);
1468                 y.push(dot.y);
1469             }
1470             a = (c2y - 2 * c1y + p1y) - (p2y - 2 * c2y + c1y);
1471             b = 2 * (c1y - p1y) - 2 * (c2y - c1y);
1472             c = p1y - c1y;
1473             t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a;
1474             t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a;
1475             abs(t1) > "1e12" && (t1 = .5);
1476             abs(t2) > "1e12" && (t2 = .5);
1477             if (t1 > 0 && t1 < 1) {
1478                 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t1);
1479                 x.push(dot.x);
1480                 y.push(dot.y);
1481             }
1482             if (t2 > 0 && t2 < 1) {
1483                 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
1484                 x.push(dot.x);
1485                 y.push(dot.y);
1486             }
1487             return {
1488                 min: {x: mmin[apply](0, x), y: mmin[apply](0, y)},
1489                 max: {x: mmax[apply](0, x), y: mmax[apply](0, y)}
1490             };
1491         }),
1492         path2curve = cacher(function (path, path2) {
1493             var p = pathToAbsolute(path),
1494                 p2 = path2 && pathToAbsolute(path2),
1495                 attrs = {x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null},
1496                 attrs2 = {x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null},
1497                 processPath = function (path, d) {
1498                     var nx, ny;
1499                     if (!path) {
1500                         return ["C", d.x, d.y, d.x, d.y, d.x, d.y];
1501                     }
1502                     !(path[0] in {T:1, Q:1}) && (d.qx = d.qy = null);
1503                     switch (path[0]) {
1504                         case "M":
1505                             d.X = path[1];
1506                             d.Y = path[2];
1507                             break;
1508                         case "A":
1509                             path = ["C"][concat](a2c[apply](0, [d.x, d.y][concat](path.slice(1))));
1510                             break;
1511                         case "S":
1512                             nx = d.x + (d.x - (d.bx || d.x));
1513                             ny = d.y + (d.y - (d.by || d.y));
1514                             path = ["C", nx, ny][concat](path.slice(1));
1515                             break;
1516                         case "T":
1517                             d.qx = d.x + (d.x - (d.qx || d.x));
1518                             d.qy = d.y + (d.y - (d.qy || d.y));
1519                             path = ["C"][concat](q2c(d.x, d.y, d.qx, d.qy, path[1], path[2]));
1520                             break;
1521                         case "Q":
1522                             d.qx = path[1];
1523                             d.qy = path[2];
1524                             path = ["C"][concat](q2c(d.x, d.y, path[1], path[2], path[3], path[4]));
1525                             break;
1526                         case "L":
1527                             path = ["C"][concat](l2c(d.x, d.y, path[1], path[2]));
1528                             break;
1529                         case "H":
1530                             path = ["C"][concat](l2c(d.x, d.y, path[1], d.y));
1531                             break;
1532                         case "V":
1533                             path = ["C"][concat](l2c(d.x, d.y, d.x, path[1]));
1534                             break;
1535                         case "Z":
1536                             path = ["C"][concat](l2c(d.x, d.y, d.X, d.Y));
1537                             break;
1538                     }
1539                     return path;
1540                 },
1541                 fixArc = function (pp, i) {
1542                     if (pp[i].length > 7) {
1543                         pp[i].shift();
1544                         var pi = pp[i];
1545                         while (pi.length) {
1546                             pp.splice(i++, 0, ["C"][concat](pi.splice(0, 6)));
1547                         }
1548                         pp.splice(i, 1);
1549                         ii = mmax(p.length, p2 && p2.length || 0);
1550                     }
1551                 },
1552                 fixM = function (path1, path2, a1, a2, i) {
1553                     if (path1 && path2 && path1[i][0] == "M" && path2[i][0] != "M") {
1554                         path2.splice(i, 0, ["M", a2.x, a2.y]);
1555                         a1.bx = 0;
1556                         a1.by = 0;
1557                         a1.x = path1[i][1];
1558                         a1.y = path1[i][2];
1559                         ii = mmax(p.length, p2 && p2.length || 0);
1560                     }
1561                 };
1562             for (var i = 0, ii = mmax(p.length, p2 && p2.length || 0); i < ii; i++) {
1563                 p[i] = processPath(p[i], attrs);
1564                 fixArc(p, i);
1565                 p2 && (p2[i] = processPath(p2[i], attrs2));
1566                 p2 && fixArc(p2, i);
1567                 fixM(p, p2, attrs, attrs2, i);
1568                 fixM(p2, p, attrs2, attrs, i);
1569                 var seg = p[i],
1570                     seg2 = p2 && p2[i],
1571                     seglen = seg.length,
1572                     seg2len = p2 && seg2.length;
1573                 attrs.x = seg[seglen - 2];
1574                 attrs.y = seg[seglen - 1];
1575                 attrs.bx = toFloat(seg[seglen - 4]) || attrs.x;
1576                 attrs.by = toFloat(seg[seglen - 3]) || attrs.y;
1577                 attrs2.bx = p2 && (toFloat(seg2[seg2len - 4]) || attrs2.x);
1578                 attrs2.by = p2 && (toFloat(seg2[seg2len - 3]) || attrs2.y);
1579                 attrs2.x = p2 && seg2[seg2len - 2];
1580                 attrs2.y = p2 && seg2[seg2len - 1];
1581             }
1582             return p2 ? [p, p2] : p;
1583         }, null, pathClone),
1584         parseDots = R._parseDots = cacher(function (gradient) {
1585             var dots = [];
1586             for (var i = 0, ii = gradient.length; i < ii; i++) {
1587                 var dot = {},
1588                     par = gradient[i].match(/^([^:]*):?([\d\.]*)/);
1589                 dot.color = R.getRGB(par[1]);
1590                 if (dot.color.error) {
1591                     return null;
1592                 }
1593                 dot.color = dot.color.hex;
1594                 par[2] && (dot.offset = par[2] + "%");
1595                 dots.push(dot);
1596             }
1597             for (i = 1, ii = dots.length - 1; i < ii; i++) {
1598                 if (!dots[i].offset) {
1599                     var start = toFloat(dots[i - 1].offset || 0),
1600                         end = 0;
1601                     for (var j = i + 1; j < ii; j++) {
1602                         if (dots[j].offset) {
1603                             end = dots[j].offset;
1604                             break;
1605                         }
1606                     }
1607                     if (!end) {
1608                         end = 100;
1609                         j = ii;
1610                     }
1611                     end = toFloat(end);
1612                     var d = (end - start) / (j - i + 1);
1613                     for (; i < j; i++) {
1614                         start += d;
1615                         dots[i].offset = start + "%";
1616                     }
1617                 }
1618             }
1619             return dots;
1620         }),
1621         tear = R._tear = function (el, paper) {
1622             el == paper.top && (paper.top = el.prev);
1623             el == paper.bottom && (paper.bottom = el.next);
1624             el.next && (el.next.prev = el.prev);
1625             el.prev && (el.prev.next = el.next);
1626         },
1627         tofront = R._tofront = function (el, paper) {
1628             if (paper.top === el) {
1629                 return;
1630             }
1631             tear(el, paper);
1632             el.next = null;
1633             el.prev = paper.top;
1634             paper.top.next = el;
1635             paper.top = el;
1636         },
1637         toback = R._toback = function (el, paper) {
1638             if (paper.bottom === el) {
1639                 return;
1640             }
1641             tear(el, paper);
1642             el.next = paper.bottom;
1643             el.prev = null;
1644             paper.bottom.prev = el;
1645             paper.bottom = el;
1646         },
1647         insertafter = R._insertafter = function (el, el2, paper) {
1648             tear(el, paper);
1649             el2 == paper.top && (paper.top = el);
1650             el2.next && (el2.next.prev = el);
1651             el.next = el2.next;
1652             el.prev = el2;
1653             el2.next = el;
1654         },
1655         insertbefore = R._insertbefore = function (el, el2, paper) {
1656             tear(el, paper);
1657             el2 == paper.bottom && (paper.bottom = el);
1658             el2.prev && (el2.prev.next = el);
1659             el.prev = el2.prev;
1660             el2.prev = el;
1661             el.next = el2;
1662         },
1663         removed = function (methodname) {
1664             return function () {
1665                 throw new Error("Rapha\xebl: you are calling to method \u201c" + methodname + "\u201d of removed object");
1666             };
1667         },
1668         extractTransform = R._extractTransform = function (el, tstr) {
1669             if (tstr == null) {
1670                 return el._.transform;
1671             }
1672             tstr = Str(tstr).replace(/\.{3}|\u2026/g, el._.transform || E);
1673             var tdata = R.parseTransformString(tstr),
1674                 deg = 0,
1675                 dx = 0,
1676                 dy = 0,
1677                 sx = 1,
1678                 sy = 1,
1679                 _ = el._,
1680                 m = new Matrix;
1681             _.transform = tdata || [];
1682             if (tdata) {
1683                 for (var i = 0, ii = tdata.length; i < ii; i++) {
1684                     var t = tdata[i],
1685                         tlen = t.length,
1686                         bb;
1687                     t[0] = Str(t[0]).toLowerCase();
1688                     if (t[0] == "t" && tlen == 3) {
1689                         m.translate(t[1], t[2]);
1690                     } else if (t[0] == "r") {
1691                         if (tlen == 2) {
1692                             bb = bb || el.getBBox(1);
1693                             m.rotate(t[1], bb.x + bb.width / 2, bb.y + bb.height / 2);
1694                             deg += t[1];
1695                         } else if (tlen == 4) {
1696                             m.rotate(t[1], t[2], t[3]);
1697                             deg += t[1];
1698                         }
1699                     } else if (t[0] == "s") {
1700                         if (tlen == 2 || tlen == 3) {
1701                             bb = bb || el.getBBox(1);
1702                             m.scale(t[1], t[tlen - 1], bb.x + bb.width / 2, bb.y + bb.height / 2);
1703                             sx *= t[1];
1704                             sy *= t[tlen - 1];
1705                         } else if (tlen == 5) {
1706                             m.scale(t[1], t[2], t[3], t[4]);
1707                             sx *= t[1];
1708                             sy *= t[2];
1709                         }
1710                     } else if (t[0] == "m" && tlen == 7) {
1711                         m.add(t[1], t[2], t[3], t[4], t[5], t[6]);
1712                     }
1713                     _.dirtyT = 1;
1714                     el.matrix = m;
1715                 }
1716             }
1717
1718             el.matrix = m;
1719
1720             _.sx = sx;
1721             _.sy = sy;
1722             _.deg = deg;
1723             _.dx = dx = m.e;
1724             _.dy = dy = m.f;
1725
1726             if (sx == 1 && sy == 1 && !deg && _.bbox) {
1727                 _.bbox.x += +dx;
1728                 _.bbox.y += +dy;
1729             } else {
1730                 _.dirtyT = 1;
1731             }
1732         },
1733         getEmpty = function (item) {
1734             switch (item[0]) {
1735                 case "t": return ["t", 0, 0];
1736                 case "m": return ["m", 1, 0, 0, 1, 0, 0];
1737                 case "r": if (item.length == 4) {
1738                     return ["r", 0, item[2], item[3]];
1739                 } else {
1740                     return ["r", 0];
1741                 }
1742                 case "s": if (item.length == 5) {
1743                     return ["s", 1, 1, item[3], item[4]];
1744                 } else if (item.length == 3) {
1745                     return ["s", 1, 1];
1746                 } else {
1747                     return ["s", 1];
1748                 }
1749             }
1750         },
1751         equaliseTransform = R._equaliseTransform = function (t1, t2) {
1752             t2 = Str(t2).replace(/\.{3}|\u2026/g, t1);
1753             t1 = R.parseTransformString(t1) || [];
1754             t2 = R.parseTransformString(t2) || [];
1755             var maxlength = mmax(t1.length, t2.length),
1756                 from = [],
1757                 to = [],
1758                 i = 0, j, jj,
1759                 tt1, tt2;
1760             for (; i < maxlength; i++) {
1761                 tt1 = t1[i] || getEmpty(t2[i]);
1762                 tt2 = t2[i] || getEmpty(tt1);
1763                 if ((tt1[0] != tt2[0]) ||
1764                     (tt1[0] == "r" && (tt1[2] != tt2[2] || tt1[3] != tt2[3])) ||
1765                     (tt1[0] == "s" && (tt1[3] != tt2[3] || tt1[4] != tt2[4]))
1766                     ) {
1767                     return;
1768                 }
1769                 from[i] = [];
1770                 to[i] = [];
1771                 for (j = 0, jj = mmax(tt1.length, tt2.length); j < jj; j++) {
1772                     j in tt1 && (from[i][j] = tt1[j]);
1773                     j in tt2 && (to[i][j] = tt2[j]);
1774                 }
1775             }
1776             return {
1777                 from: from,
1778                 to: to
1779             };
1780         };
1781     R._getContainer = function (x, y, w, h) {
1782         var container;
1783         container = h == null && !R.is(x, "object") ? g.doc.getElementById(x) : x;
1784         if (container == null) {
1785             return;
1786         }
1787         if (container.tagName) {
1788             if (y == null) {
1789                 return {
1790                     container: container,
1791                     width: container.style.pixelWidth || container.offsetWidth,
1792                     height: container.style.pixelHeight || container.offsetHeight
1793                 };
1794             } else {
1795                 return {
1796                     container: container,
1797                     width: y,
1798                     height: w
1799                 };
1800             }
1801         }
1802         return {
1803             container: 1,
1804             x: x,
1805             y: y,
1806             width: w,
1807             height: h
1808         };
1809     };
1810     /*\
1811      * Raphael.pathToRelative
1812      [ method ]
1813      **
1814      * Utility method
1815      **
1816      * Converts path to relative form
1817      > Parameters
1818      - pathString (string|array) path string or array of segments
1819      = (array) array of segments.
1820     \*/
1821     R.pathToRelative = pathToRelative;
1822     R._engine = {};
1823     /*\
1824      * Raphael.path2curve
1825      [ method ]
1826      **
1827      * Utility method
1828      **
1829      * Converts path to a new path where all segments are cubic bezier curves.
1830      > Parameters
1831      - pathString (string|array) path string or array of segments
1832      = (array) array of segments.
1833     \*/
1834     R.path2curve = path2curve;
1835     /*\
1836      * Raphael.matrix
1837      [ method ]
1838      **
1839      * Utility method
1840      **
1841      * Returns matrix based on given parameters.
1842      > Parameters
1843      - a (number)
1844      - b (number)
1845      - c (number)
1846      - d (number)
1847      - e (number)
1848      - f (number)
1849      = (object) @Matrix
1850     \*/
1851     R.matrix = function (a, b, c, d, e, f) {
1852         return new Matrix(a, b, c, d, e, f);
1853     };
1854     function Matrix(a, b, c, d, e, f) {
1855         if (a != null) {
1856             this.a = +a;
1857             this.b = +b;
1858             this.c = +c;
1859             this.d = +d;
1860             this.e = +e;
1861             this.f = +f;
1862         } else {
1863             this.a = 1;
1864             this.b = 0;
1865             this.c = 0;
1866             this.d = 1;
1867             this.e = 0;
1868             this.f = 0;
1869         }
1870     }
1871     (function (matrixproto) {
1872         matrixproto.add = function (a, b, c, d, e, f) {
1873             var out = [[], [], []],
1874                 m = [[this.a, this.c, this.e], [this.b, this.d, this.f], [0, 0, 1]],
1875                 matrix = [[a, c, e], [b, d, f], [0, 0, 1]],
1876                 x, y, z, res;
1877
1878             if (a && a instanceof Matrix) {
1879                 matrix = [[a.a, a.c, a.e], [a.b, a.d, a.f], [0, 0, 1]];
1880             }
1881
1882             for (x = 0; x < 3; x++) {
1883                 for (y = 0; y < 3; y++) {
1884                     res = 0;
1885                     for (z = 0; z < 3; z++) {
1886                         res += m[x][z] * matrix[z][y];
1887                     }
1888                     out[x][y] = res;
1889                 }
1890             }
1891             this.a = out[0][0];
1892             this.b = out[1][0];
1893             this.c = out[0][1];
1894             this.d = out[1][1];
1895             this.e = out[0][2];
1896             this.f = out[1][2];
1897         };
1898         matrixproto.invert = function () {
1899             var me = this,
1900                 x = me.a * me.d - me.b * me.c;
1901             return new Matrix(me.d / x, -me.b / x, -me.c / x, me.a / x, (me.c * me.f - me.d * me.e) / x, (me.b * me.e - me.a * me.f) / x);
1902         };
1903         matrixproto.clone = function () {
1904             return new Matrix(this.a, this.b, this.c, this.d, this.e, this.f);
1905         };
1906         matrixproto.translate = function (x, y) {
1907             this.add(1, 0, 0, 1, x, y);
1908         };
1909         matrixproto.scale = function (x, y, cx, cy) {
1910             y == null && (y = x);
1911             this.add(1, 0, 0, 1, cx, cy);
1912             this.add(x, 0, 0, y, 0, 0);
1913             this.add(1, 0, 0, 1, -cx, -cy);
1914         };
1915         matrixproto.rotate = function (a, x, y) {
1916             a = R.rad(a);
1917             var cos = +math.cos(a).toFixed(9),
1918                 sin = +math.sin(a).toFixed(9);
1919             this.add(cos, sin, -sin, cos, x, y);
1920             this.add(1, 0, 0, 1, -x, -y);
1921         };
1922         matrixproto.x = function (x, y) {
1923             return x * this.a + y * this.c + this.e;
1924         };
1925         matrixproto.y = function (x, y) {
1926             return x * this.b + y * this.d + this.f;
1927         };
1928         matrixproto.get = function (i) {
1929             return +this[Str.fromCharCode(97 + i)].toFixed(4);
1930         };
1931         matrixproto.toString = function () {
1932             return R.svg ?
1933                 "matrix(" + [this.get(0), this.get(1), this.get(2), this.get(3), this.get(4), this.get(5)].join() + ")" :
1934                 [this.get(0), this.get(2), this.get(1), this.get(3), 0, 0].join();
1935         };
1936         matrixproto.toFilter = function () {
1937             return "progid:DXImageTransform.Microsoft.Matrix(M11=" + this.get(0) +
1938                 ", M12=" + this.get(2) + ", M21=" + this.get(1) + ", M22=" + this.get(3) +
1939                 ", Dx=" + this.get(4) + ", Dy=" + this.get(5) + ", sizingmethod='auto expand')";
1940         };
1941         matrixproto.offset = function () {
1942             return [this.e.toFixed(4), this.f.toFixed(4)];
1943         };
1944         function norm(a) {
1945             return a[0] * a[0] + a[1] * a[1];
1946         }
1947         function normalize(a) {
1948             var mag = math.sqrt(norm(a));
1949             a[0] && (a[0] /= mag);
1950             a[1] && (a[1] /= mag);
1951         }
1952         matrixproto.split = function () {
1953             var out = {};
1954             // translation
1955             out.dx = this.e;
1956             out.dy = this.f;
1957
1958             // scale and shear
1959             var row = [[this.a, this.c], [this.b, this.d]];
1960             out.scalex = math.sqrt(norm(row[0]));
1961             normalize(row[0]);
1962
1963             out.shear = row[0][0] * row[1][0] + row[0][1] * row[1][1];
1964             row[1] = [row[1][0] - row[0][0] * out.shear, row[1][1] - row[0][1] * out.shear];
1965
1966             out.scaley = math.sqrt(norm(row[1]));
1967             normalize(row[1]);
1968             out.shear /= out.scaley;
1969
1970             // rotation
1971             var sin = -row[0][1],
1972                 cos = row[1][1];
1973             if (cos < 0) {
1974                 out.rotate = R.deg(math.acos(cos));
1975                 if (sin < 0) {
1976                     out.rotate = 360 - out.rotate;
1977                 }
1978             } else {
1979                 out.rotate = R.deg(math.asin(sin));
1980             }
1981
1982             out.isSimple = !+out.shear.toFixed(9) && (out.scalex.toFixed(9) == out.scaley.toFixed(9) || !out.rotate);
1983             out.isSuperSimple = !+out.shear.toFixed(9) && out.scalex.toFixed(9) == out.scaley.toFixed(9) && !out.rotate;
1984             out.noRotation = !+out.shear.toFixed(9) && !out.rotate;
1985             return out;
1986         };
1987         matrixproto.toTransformString = function () {
1988             var s = this.split();
1989             if (s.isSimple) {
1990                 return "t" + [s.dx, s.dy] + "s" + [s.scalex, s.scaley, 0, 0] + "r" + [s.rotate, 0, 0];
1991             } else {
1992                 return "m" + [this.get(0), this.get(1), this.get(2), this.get(3), this.get(4), this.get(5)];
1993             }
1994         };
1995     })(Matrix.prototype);
1996
1997     // WebKit rendering bug workaround method
1998     var version = navigator.userAgent.match(/Version\/(.*?)\s/) || navigator.userAgent.match(/Chrome\/(\d+)/);
1999     if ((navigator.vendor == "Apple Computer, Inc.") && (version && version[1] < 4 || navigator.platform.slice(0, 2) == "iP") ||
2000         (navigator.vendor == "Google Inc." && version && version[1] < 8)) {
2001         /*\
2002          * Paper.safari
2003          [ method ]
2004          **
2005          * There is an inconvenient rendering bug in Safari (WebKit):
2006          * sometimes the rendering should be forced.
2007          * This method should help with dealing with this bug.
2008         \*/
2009         paperproto.safari = function () {
2010             var rect = this.rect(-99, -99, this.width + 99, this.height + 99).attr({stroke: "none"});
2011             setTimeout(function () {rect.remove();});
2012         };
2013     } else {
2014         paperproto.safari = fun;
2015     }
2016  
2017     // Events
2018     var preventDefault = function () {
2019         this.returnValue = false;
2020     },
2021     preventTouch = function () {
2022         return this.originalEvent.preventDefault();
2023     },
2024     stopPropagation = function () {
2025         this.cancelBubble = true;
2026     },
2027     stopTouch = function () {
2028         return this.originalEvent.stopPropagation();
2029     },
2030     addEvent = (function () {
2031         if (g.doc.addEventListener) {
2032             return function (obj, type, fn, element) {
2033                 var realName = supportsTouch && touchMap[type] ? touchMap[type] : type,
2034                     f = function (e) {
2035                         var scrollY = g.doc.documentElement.scrollTop || g.doc.body.scrollTop,
2036                             scrollX = g.doc.documentElement.scrollLeft || g.doc.body.scrollLeft,
2037                             x = e.clientX + scrollX,
2038                             y = e.clientY + scrollY;
2039                     if (supportsTouch && touchMap[has](type)) {
2040                         for (var i = 0, ii = e.targetTouches && e.targetTouches.length; i < ii; i++) {
2041                             if (e.targetTouches[i].target == obj) {
2042                                 var olde = e;
2043                                 e = e.targetTouches[i];
2044                                 e.originalEvent = olde;
2045                                 e.preventDefault = preventTouch;
2046                                 e.stopPropagation = stopTouch;
2047                                 break;
2048                             }
2049                         }
2050                     }
2051                     return fn.call(element, e, x, y);
2052                 };
2053                 obj.addEventListener(realName, f, false);
2054                 return function () {
2055                     obj.removeEventListener(realName, f, false);
2056                     return true;
2057                 };
2058             };
2059         } else if (g.doc.attachEvent) {
2060             return function (obj, type, fn, element) {
2061                 var f = function (e) {
2062                     e = e || g.win.event;
2063                     var scrollY = g.doc.documentElement.scrollTop || g.doc.body.scrollTop,
2064                         scrollX = g.doc.documentElement.scrollLeft || g.doc.body.scrollLeft,
2065                         x = e.clientX + scrollX,
2066                         y = e.clientY + scrollY;
2067                     e.preventDefault = e.preventDefault || preventDefault;
2068                     e.stopPropagation = e.stopPropagation || stopPropagation;
2069                     return fn.call(element, e, x, y);
2070                 };
2071                 obj.attachEvent("on" + type, f);
2072                 var detacher = function () {
2073                     obj.detachEvent("on" + type, f);
2074                     return true;
2075                 };
2076                 return detacher;
2077             };
2078         }
2079     })(),
2080     drag = [],
2081     dragMove = function (e) {
2082         var x = e.clientX,
2083             y = e.clientY,
2084             scrollY = g.doc.documentElement.scrollTop || g.doc.body.scrollTop,
2085             scrollX = g.doc.documentElement.scrollLeft || g.doc.body.scrollLeft,
2086             dragi,
2087             j = drag.length;
2088         while (j--) {
2089             dragi = drag[j];
2090             if (supportsTouch) {
2091                 var i = e.touches.length,
2092                     touch;
2093                 while (i--) {
2094                     touch = e.touches[i];
2095                     if (touch.identifier == dragi.el._drag.id) {
2096                         x = touch.clientX;
2097                         y = touch.clientY;
2098                         (e.originalEvent ? e.originalEvent : e).preventDefault();
2099                         break;
2100                     }
2101                 }
2102             } else {
2103                 e.preventDefault();
2104             }
2105             var node = dragi.el.node,
2106                 o,
2107                 next = node.nextSibling,
2108                 parent = node.parentNode,
2109                 display = node.style.display;
2110             g.win.opera && parent.removeChild(node);
2111             node.style.display = "none";
2112             o = dragi.el.paper.getElementByPoint(x, y);
2113             node.style.display = display;
2114             g.win.opera && (next ? parent.insertBefore(node, next) : parent.appendChild(node));
2115             o && eve("drag.over." + dragi.el.id, dragi.el, o);
2116             x += scrollX;
2117             y += scrollY;
2118             eve("drag.move." + dragi.el.id, dragi.move_scope || dragi.el, x - dragi.el._drag.x, y - dragi.el._drag.y, x, y, e);
2119         }
2120     },
2121     dragUp = function (e) {
2122         R.unmousemove(dragMove).unmouseup(dragUp);
2123         var i = drag.length,
2124             dragi;
2125         while (i--) {
2126             dragi = drag[i];
2127             dragi.el._drag = {};
2128             eve("drag.end." + dragi.el.id, dragi.end_scope || dragi.start_scope || dragi.move_scope || dragi.el, e);
2129         }
2130         drag = [];
2131     },
2132     /*\
2133      * Raphael.el
2134      [ property (object) ]
2135      **
2136      * You can add your own method to elements. This is usefull when you want to hack default functionality or
2137      * want to wrap some common transformation or attributes in one method. In difference to canvas methods,
2138      * you can redefine element method at any time. Expending element methods wouldn’t affect set.
2139      > Usage
2140      | Raphael.el.red = function () {
2141      |     this.attr({fill: "#f00"});
2142      | };
2143      | // then use it
2144      | paper.circle(100, 100, 20).red();
2145     \*/
2146     elproto = R.el = {};
2147     for (var i = events.length; i--;) {
2148         (function (eventName) {
2149             R[eventName] = elproto[eventName] = function (fn, scope) {
2150                 if (R.is(fn, "function")) {
2151                     this.events = this.events || [];
2152                     this.events.push({name: eventName, f: fn, unbind: addEvent(this.shape || this.node || g.doc, eventName, fn, scope || this)});
2153                 }
2154                 return this;
2155             };
2156             R["un" + eventName] = elproto["un" + eventName] = function (fn) {
2157                 var events = this.events,
2158                     l = events.length;
2159                 while (l--) if (events[l].name == eventName && events[l].f == fn) {
2160                     events[l].unbind();
2161                     events.splice(l, 1);
2162                     !events.length && delete this.events;
2163                     return this;
2164                 }
2165                 return this;
2166             };
2167         })(events[i]);
2168     }
2169     
2170     /*\
2171      * Element.hover
2172      [ method ]
2173      **
2174      * Adds event handlers for hover for the element.
2175      > Parameters
2176      - f_in (function) handler for hover in
2177      - f_out (function) handler for hover out
2178      - icontext (object) #optional context for hover in handler
2179      - ocontext (object) #optional context for hover out handler
2180      = (object) @Element
2181     \*/
2182     elproto.hover = function (f_in, f_out, scope_in, scope_out) {
2183         return this.mouseover(f_in, scope_in).mouseout(f_out, scope_out || scope_in);
2184     };
2185     /*\
2186      * Element.unhover
2187      [ method ]
2188      **
2189      * Removes event handlers for hover for the element.
2190      > Parameters
2191      - f_in (function) handler for hover in
2192      - f_out (function) handler for hover out
2193      = (object) @Element
2194     \*/
2195     elproto.unhover = function (f_in, f_out) {
2196         return this.unmouseover(f_in).unmouseout(f_out);
2197     };
2198     /*\
2199      * Element.drag
2200      [ method ]
2201      **
2202      * Adds event handlers for drag of the element.
2203      > Parameters
2204      - onmove (function) handler for moving
2205      - onstart (function) handler for drag start
2206      - onend (function) handler for drag end
2207      - mcontext (object) #optional context for moving handler
2208      - scontext (object) #optional context for drag start handler
2209      - econtext (object) #optional context for drag end handler
2210      * Additionaly following `drag` events will be triggered: `drag.start.<id>` on start, 
2211      * `drag.end.<id>` on end and `drag.move.<id>` on every move. When element will be dragged over another element 
2212      * `drag.over.<id>` will be fired as well.
2213      *
2214      * Start event and start handler will be called in specified context or in context of the element with following parameters:
2215      o x (number) x position of the mouse
2216      o y (number) y position of the mouse
2217      o event (object) DOM event object
2218      * Move event and move handler will be called in specified context or in context of the element with following parameters:
2219      o dx (number) shift by x from the start point
2220      o dy (number) shift by y from the start point
2221      o x (number) x position of the mouse
2222      o y (number) y position of the mouse
2223      o event (object) DOM event object
2224      * End event and end handler will be called in specified context or in context of the element with following parameters:
2225      o event (object) DOM event object
2226      = (object) @Element
2227     \*/
2228     elproto.drag = function (onmove, onstart, onend, move_scope, start_scope, end_scope) {
2229         function start(e) {
2230             (e.originalEvent || e).preventDefault();
2231             var scrollY = g.doc.documentElement.scrollTop || g.doc.body.scrollTop,
2232                 scrollX = g.doc.documentElement.scrollLeft || g.doc.body.scrollLeft;
2233             this._drag.x = e.clientX + scrollX;
2234             this._drag.y = e.clientY + scrollY;
2235             this._drag.id = e.identifier;
2236             !drag.length && R.mousemove(dragMove).mouseup(dragUp);
2237             drag.push({el: this, move_scope: move_scope, start_scope: start_scope, end_scope: end_scope});
2238             onstart && eve.on("drag.start." + this.id, onstart);
2239             onmove && eve.on("drag.move." + this.id, onmove);
2240             onend && eve.on("drag.end." + this.id, onend);
2241             eve("drag.start." + this.id, start_scope || move_scope || this, e.clientX + scrollX, e.clientY + scrollY, e);
2242         }
2243         this._drag = {};
2244         this.mousedown(start);
2245         return this;
2246     };
2247     /*\
2248      * Element.onDragOver
2249      [ method ]
2250      **
2251      * Shortcut for assigning event handler for `drag.over.<id>` event, where id is id of the element (see @Element.id).
2252      > Parameters
2253      - f (function) handler for event
2254     \*/
2255     elproto.onDragOver = function (f) {
2256         f ? eve.on("drag.over." + this.id, f) : eve.unbind("drag.over." + this.id);
2257     };
2258     /*\
2259      * Element.undrag
2260      [ method ]
2261      **
2262      * Removes all drag event handlers from given element.
2263     \*/
2264     elproto.undrag = function () {
2265         var i = drag.length;
2266         while (i--) if (drag[i].el == this) {
2267             R.unmousedown(drag[i].start);
2268             drag.splice(i++, 1);
2269             eve.unbind("drag.*." + this.id);
2270         }
2271         !drag.length && R.unmousemove(dragMove).unmouseup(dragUp);
2272     };
2273     /*\
2274      * Paper.circle
2275      [ method ]
2276      **
2277      * Draws a circle.
2278      **
2279      > Parameters
2280      **
2281      - x (number) x coordinate of the centre
2282      - y (number) y coordinate of the centre
2283      - r (number) radius
2284      = (object) Raphaël element object with type “circle”
2285      **
2286      > Usage
2287      | var c = paper.circle(50, 50, 40);
2288     \*/
2289     paperproto.circle = function (x, y, r) {
2290         var out = R._engine.circle(this, x || 0, y || 0, r || 0);
2291         this.__set__ && this.__set__.push(out);
2292         return out;
2293     };
2294     /*\
2295      * Paper.rect
2296      [ method ]
2297      *
2298      * Draws a rectangle.
2299      **
2300      > Parameters
2301      **
2302      - x (number) x coordinate of the top left corner
2303      - y (number) y coordinate of the top left corner
2304      - width (number) width
2305      - height (number) height
2306      - r (number) #optional radius for rounded corners, default is 0
2307      = (object) Raphaël element object with type “rect”
2308      **
2309      > Usage
2310      | // regular rectangle
2311      | var c = paper.rect(10, 10, 50, 50);
2312      | // rectangle with rounded corners
2313      | var c = paper.rect(40, 40, 50, 50, 10);
2314     \*/
2315     paperproto.rect = function (x, y, w, h, r) {
2316         var out = R._engine.rect(this, x || 0, y || 0, w || 0, h || 0, r || 0);
2317         this.__set__ && this.__set__.push(out);
2318         return out;
2319     };
2320     /*\
2321      * Paper.ellipse
2322      [ method ]
2323      **
2324      * Draws an ellipse.
2325      **
2326      > Parameters
2327      **
2328      - x (number) x coordinate of the centre
2329      - y (number) y coordinate of the centre
2330      - rx (number) horizontal radius
2331      - ry (number) vertical radius
2332      = (object) Raphaël element object with type “ellipse”
2333      **
2334      > Usage
2335      | var c = paper.ellipse(50, 50, 40, 20);
2336     \*/
2337     paperproto.ellipse = function (x, y, rx, ry) {
2338         var out = R._engine.ellipse(this, x || 0, y || 0, rx || 0, ry || 0);
2339         this.__set__ && this.__set__.push(out);
2340         return out;
2341     };
2342     /*\
2343      * Paper.path
2344      [ method ]
2345      **
2346      * Creates a path element by given path data string.
2347      **
2348      > Parameters
2349      **
2350      - pathString (string) path data in SVG path string format.
2351      = (object) Raphaël element object with type “path”
2352      # Details of a path's data attribute's format are described in the <a href="http://www.w3.org/TR/SVG/paths.html#PathData">SVG specification</a>.
2353      **
2354      > Usage
2355      | var c = paper.path("M10 10L90 90");
2356      | // draw a diagonal line:
2357      | // move to 10,10, line to 90,90
2358     \*/
2359     paperproto.path = function (pathString) {
2360         pathString && !R.is(pathString, string) && !R.is(pathString[0], array) && (pathString += E);
2361         var out = R._engine.path(R.format[apply](R, arguments), this);
2362         this.__set__ && this.__set__.push(out);
2363         return out;
2364     };
2365     /*\
2366      * Paper.image
2367      [ method ]
2368      **
2369      * Embeds an image into the surface.
2370      **
2371      > Parameters
2372      **
2373      - src (string) URI of the source image
2374      - x (number) x coordinate position
2375      - y (number) y coordinate position
2376      - width (number) width of the image
2377      - height (number) height of the image
2378      = (object) Raphaël element object with type “image”
2379      **
2380      > Usage
2381      | var c = paper.image("apple.png", 10, 10, 80, 80);
2382     \*/
2383     paperproto.image = function (src, x, y, w, h) {
2384         var out = R._engine.image(this, src || "about:blank", x || 0, y || 0, w || 0, h || 0);
2385         this.__set__ && this.__set__.push(out);
2386         return out;
2387     };
2388     /*\
2389      * Paper.text
2390      [ method ]
2391      **
2392      * Draws a text string. If you need line breaks, put “\n” in the string.
2393      **
2394      > Parameters
2395      **
2396      - x (number) x coordinate position
2397      - y (number) y coordinate position
2398      - text (string) The text string to draw
2399      = (object) Raphaël element object with type “text”
2400      **
2401      > Usage
2402      | var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!");
2403     \*/
2404     paperproto.text = function (x, y, text) {
2405         var out = R._engine.text(this, x || 0, y || 0, Str(text));
2406         this.__set__ && this.__set__.push(out);
2407         return out;
2408     };
2409     /*\
2410      * Paper.set
2411      [ method ]
2412      **
2413      * Creates array-like object to keep and operate several elements at once.
2414      * Warning: it doesn’t create any elements for itself in the page, it just groups existing elements.
2415      * Sets act as pseudo elements — all methods available to an element can be used on a set.
2416      = (object) array-like object that represents set of elements
2417      **
2418      > Usage
2419      | var st = paper.set();
2420      | st.push(
2421      |     paper.circle(10, 10, 5),
2422      |     paper.circle(30, 10, 5)
2423      | );
2424      | st.attr({fill: "red"}); // changes the fill of both circles
2425     \*/
2426     paperproto.set = function (itemsArray) {
2427         !R.is(itemsArray, "array") && (itemsArray = Array.prototype.splice.call(arguments, 0, arguments.length));
2428         var out = new Set(itemsArray);
2429         this.__set__ && this.__set__.push(out);
2430         return out;
2431     };
2432     /*\
2433      * Paper.setStart
2434      [ method ]
2435      **
2436      * Creates @Paper.set. All elements that will be created after calling this method and before calling
2437      * @Paper.setFinish will be added to the set.
2438      **
2439      > Usage
2440      | paper.setStart();
2441      | paper.circle(10, 10, 5),
2442      | paper.circle(30, 10, 5)
2443      | var st = paper.setFinish();
2444      | st.attr({fill: "red"}); // changes the fill of both circles
2445     \*/
2446     paperproto.setStart = function (set) {
2447         this.__set__ = set || this.set();
2448     };
2449     /*\
2450      * Paper.setFinish
2451      [ method ]
2452      **
2453      * See @Paper.setStart. This method finishes catching and returns resulting set.
2454      **
2455      = (object) set
2456     \*/
2457     paperproto.setFinish = function (set) {
2458         var out = this.__set__;
2459         delete this.__set__;
2460         return out;
2461     };
2462     /*\
2463      * Paper.setSize
2464      [ method ]
2465      **
2466      * If you need to change dimensions of the canvas call this method
2467      **
2468      > Parameters
2469      **
2470      - width (number) new width of the canvas
2471      - height (number) new height of the canvas
2472      > Usage
2473      | var st = paper.set();
2474      | st.push(
2475      |     paper.circle(10, 10, 5),
2476      |     paper.circle(30, 10, 5)
2477      | );
2478      | st.attr({fill: "red"});
2479     \*/
2480     paperproto.setSize = R._engine.setSize;
2481     /*\
2482      * Paper.setViewBox
2483      [ method ]
2484      **
2485      * Sets the view box of the paper. Practically it gives you ability to zoom and pan whole paper surface by 
2486      * specifying new boundaries.
2487      **
2488      > Parameters
2489      **
2490      x, y, w, h, fit
2491      - x (number) new x position, default is `0`
2492      - y (number) new y position, default is `0`
2493      - w (number) new width of the canvas
2494      - h (number) new height of the canvas
2495      - fit (boolean) `true` if you want graphics to fit into new boundary box
2496     \*/
2497     paperproto.setViewBox = R._engine.setViewBox;
2498     /*\
2499      * Paper.top
2500      [ property ]
2501      **
2502      * Points to the topmost element on the paper
2503     \*/
2504     /*\
2505      * Paper.bottom
2506      [ property ]
2507      **
2508      * Points to the bottom element on the paper
2509     \*/
2510     paperproto.top = paperproto.bottom = null;
2511     /*\
2512      * Paper.raphael
2513      [ property ]
2514      **
2515      * Points to the @Raphael object/function
2516     \*/
2517     paperproto.raphael = R;
2518     var getOffset = function (elem) {
2519         var box = elem.getBoundingClientRect(),
2520             doc = elem.ownerDocument,
2521             body = doc.body,
2522             docElem = doc.documentElement,
2523             clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
2524             top  = box.top  + (g.win.pageYOffset || docElem.scrollTop || body.scrollTop ) - clientTop,
2525             left = box.left + (g.win.pageXOffset || docElem.scrollLeft || body.scrollLeft) - clientLeft;
2526         return {
2527             y: top,
2528             x: left
2529         };
2530     };
2531     /*\
2532      * Paper.getElementByPoint
2533      [ method ]
2534      **
2535      * Returns you topmost element under given point.
2536      **
2537      = (object) Raphaël element object
2538      > Parameters
2539      **
2540      - x (number) x coordinate from the top left corner of the window
2541      - y (number) y coordinate from the top left corner of the window
2542      > Usage
2543      | paper.getElementByPoint(mouseX, mouseY).attr({stroke: "#f00"});
2544     \*/
2545     paperproto.getElementByPoint = function (x, y) {
2546         var paper = this,
2547             svg = paper.canvas,
2548             target = g.doc.elementFromPoint(x, y);
2549         if (g.win.opera && target.tagName == "svg") {
2550             var so = getOffset(svg),
2551                 sr = svg.createSVGRect();
2552             sr.x = x - so.x;
2553             sr.y = y - so.y;
2554             sr.width = sr.height = 1;
2555             var hits = svg.getIntersectionList(sr, null);
2556             if (hits.length) {
2557                 target = hits[hits.length - 1];
2558             }
2559         }
2560         if (!target) {
2561             return null;
2562         }
2563         while (target.parentNode && target != svg.parentNode && !target.raphael) {
2564             target = target.parentNode;
2565         }
2566         target == paper.canvas.parentNode && (target = svg);
2567         target = target && target.raphael ? paper.getById(target.raphaelid) : null;
2568         return target;
2569     };
2570     /*\
2571      * Paper.getById
2572      [ method ]
2573      **
2574      * Returns you element by its internal ID.
2575      **
2576      > Parameters
2577      **
2578      - id (number) id
2579      = (object) Raphaël element object
2580     \*/
2581     paperproto.getById = function (id) {
2582         var bot = this.bottom;
2583         while (bot) {
2584             if (bot.id == id) {
2585                 return bot;
2586             }
2587             bot = bot.next;
2588         }
2589         return null;
2590     };
2591     /*\
2592      * Paper.forEach
2593      [ method ]
2594      **
2595      * Executes given function for each element on the paper
2596      *
2597      * If callback function returns `false` it will stop loop running.
2598      **
2599      > Parameters
2600      **
2601      - callback (function) function to run
2602      - thisArg (object) context object for the callback
2603      = (object) Paper object
2604     \*/
2605     paperproto.forEach = function (callback, thisArg) {
2606         var bot = this.bottom;
2607         while (bot) {
2608             if (callback.call(thisArg, bot) === false) {
2609                 return this;
2610             }
2611             bot = bot.next;
2612         }
2613         return this;
2614     };
2615     function x_y() {
2616         return this.x + S + this.y;
2617     }
2618     function x_y_w_h() {
2619         return this.x + S + this.y + S + this.width + " \xd7 " + this.height;
2620     }
2621     /*\
2622      * Element.getBBox
2623      [ method ]
2624      **
2625      * Return bounding box for a given element
2626      **
2627      > Parameters
2628      **
2629      - isWithoutTransform (boolean) flag, `true` if you want to have bounding box before transformations. Default is `false`.
2630      = (object) Bounding box object:
2631      o {
2632      o     x: (number) top left corner x
2633      o     y: (number) top left corner y
2634      o     width: (number) width
2635      o     height: (number) height
2636      o }
2637     \*/
2638     elproto.getBBox = function (isWithoutTransform) {
2639         if (this.removed) {
2640             return {};
2641         }
2642         var _ = this._;
2643         if (isWithoutTransform) {
2644             if (_.dirty || !_.bboxwt) {
2645                 this.realPath = getPath[this.type](this);
2646                 _.bboxwt = pathDimensions(this.realPath);
2647                 _.bboxwt.toString = x_y_w_h;
2648                 _.dirty = 0;
2649             }
2650             return _.bboxwt;
2651         }
2652         if (_.dirty || _.dirtyT || !_.bbox) {
2653             if (_.dirty || !this.realPath) {
2654                 _.bboxwt = 0;
2655                 this.realPath = getPath[this.type](this);
2656             }
2657             _.bbox = pathDimensions(mapPath(this.realPath, this.matrix));
2658             _.bbox.toString = x_y_w_h;
2659             _.dirty = _.dirtyT = 0;
2660         }
2661         return _.bbox;
2662     };
2663     /*\
2664      * Element.clone
2665      [ method ]
2666      **
2667      = (object) clone of a given element
2668      **
2669     \*/
2670     elproto.clone = function () {
2671         if (this.removed) {
2672             return null;
2673         }
2674         return this.paper[this.type]().attr(this.attr());
2675     };
2676     /*\
2677      * Element.glow
2678      [ method ]
2679      **
2680      * Return set of elements that create glow-like effect around given element. See @Paper.set.
2681      *
2682      * Note: Glow is not connected to the element. If you change element attributes it won’t adjust itself.
2683      **
2684      > Parameters
2685      **
2686      - glow (object) #optional parameters object with all properties optional:
2687      o {
2688      o     width (number) size of the glow, default is `10`
2689      o     fill (boolean) will it be filled, default is `false`
2690      o     opacity: opacity, default is `0.5`
2691      o     offsetx: horizontal offset, default is `0`
2692      o     offsety: vertical offset, default is `0`
2693      o     color: glow colour, default is `black`
2694      o }
2695      = (object) @Paper.set of elements that represents glow
2696     \*/
2697     elproto.glow = function (glow) {
2698         if (this.type == "text") {
2699             return null;
2700         }
2701         glow = glow || {};
2702         var s = {
2703             width: (glow.width || 10) + (+this.attr("stroke-width") || 1),
2704             fill: glow.fill || false,
2705             opacity: glow.opacity || .5,
2706             offsetx: glow.offsetx || 0,
2707             offsety: glow.offsety || 0,
2708             color: glow.color || "#000"
2709         },
2710             c = s.width / 2,
2711             r = this.paper,
2712             out = r.set(),
2713             path = this.realPath || getPath[this.type](this);
2714         path = this.matrix ? mapPath(path, this.matrix) : path;
2715         for (var i = 1; i < c + 1; i++) {
2716             out.push(r.path(path).attr({
2717                 stroke: s.color,
2718                 fill: s.fill ? s.color : "none",
2719                 "stroke-linejoin": "round",
2720                 "stroke-linecap": "round",
2721                 "stroke-width": +(s.width / c * i).toFixed(3),
2722                 opacity: +(s.opacity / c).toFixed(3)
2723             }));
2724         }
2725         return out.insertBefore(this).translate(s.offsetx, s.offsety);
2726     };
2727     var curveslengths = {},
2728     getPointAtSegmentLength = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, length) {
2729         var len = 0,
2730             precision = 100,
2731             name = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y].join(),
2732             cache = curveslengths[name],
2733             old, dot;
2734         !cache && (curveslengths[name] = cache = {data: []});
2735         cache.timer && clearTimeout(cache.timer);
2736         cache.timer = setTimeout(function () {delete curveslengths[name];}, 2e3);
2737         if (length != null && !cache.precision) {
2738             var total = getPointAtSegmentLength(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y);
2739             cache.precision = ~~total * 10;
2740             cache.data = [];
2741         }
2742         precision = cache.precision || precision;
2743         for (var i = 0; i < precision + 1; i++) {
2744             if (cache.data[i * precision]) {
2745                 dot = cache.data[i * precision];
2746             } else {
2747                 dot = R.findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, i / precision);
2748                 cache.data[i * precision] = dot;
2749             }
2750             i && (len += pow(pow(old.x - dot.x, 2) + pow(old.y - dot.y, 2), .5));
2751             if (length != null && len >= length) {
2752                 return dot;
2753             }
2754             old = dot;
2755         }
2756         if (length == null) {
2757             return len;
2758         }
2759     },
2760     getLengthFactory = function (istotal, subpath) {
2761         return function (path, length, onlystart) {
2762             path = path2curve(path);
2763             var x, y, p, l, sp = "", subpaths = {}, point,
2764                 len = 0;
2765             for (var i = 0, ii = path.length; i < ii; i++) {
2766                 p = path[i];
2767                 if (p[0] == "M") {
2768                     x = +p[1];
2769                     y = +p[2];
2770                 } else {
2771                     l = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6]);
2772                     if (len + l > length) {
2773                         if (subpath && !subpaths.start) {
2774                             point = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6], length - len);
2775                             sp += ["C" + point.start.x, point.start.y, point.m.x, point.m.y, point.x, point.y];
2776                             if (onlystart) {return sp;}
2777                             subpaths.start = sp;
2778                             sp = ["M" + point.x, point.y + "C" + point.n.x, point.n.y, point.end.x, point.end.y, p[5], p[6]].join();
2779                             len += l;
2780                             x = +p[5];
2781                             y = +p[6];
2782                             continue;
2783                         }
2784                         if (!istotal && !subpath) {
2785                             point = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6], length - len);
2786                             return {x: point.x, y: point.y, alpha: point.alpha};
2787                         }
2788                     }
2789                     len += l;
2790                     x = +p[5];
2791                     y = +p[6];
2792                 }
2793                 sp += p.shift() + p;
2794             }
2795             subpaths.end = sp;
2796             point = istotal ? len : subpath ? subpaths : R.findDotsAtSegment(x, y, p[1], p[2], p[3], p[4], p[5], p[6], 1);
2797             point.alpha && (point = {x: point.x, y: point.y, alpha: point.alpha});
2798             return point;
2799         };
2800     };
2801     var getTotalLength = getLengthFactory(1),
2802         getPointAtLength = getLengthFactory(),
2803         getSubpathsAtLength = getLengthFactory(0, 1);
2804     /*\
2805      * Raphael.getTotalLength
2806      [ method ]
2807      **
2808      * Returns length of the given path in pixels.
2809      **
2810      > Parameters
2811      **
2812      - path (string) SVG path string.
2813      **
2814      = (number) length.
2815     \*/
2816     R.getTotalLength = getTotalLength;
2817     /*\
2818      * Raphael.getPointAtLength
2819      [ method ]
2820      **
2821      * Return coordinates of the point located at the given length on the given path.
2822      **
2823      > Parameters
2824      **
2825      - path (string) SVG path string
2826      - length (number)
2827      **
2828      = (object) representation of the point:
2829      o {
2830      o     x: (number) x coordinate
2831      o     y: (number) y coordinate
2832      o     alpha: (number) angle of derivative
2833      o }
2834     \*/
2835     R.getPointAtLength = getPointAtLength;
2836     /*\
2837      * Raphael.getSubpath
2838      [ method ]
2839      **
2840      * Return subpath of a given path from given length to given length.
2841      **
2842      > Parameters
2843      **
2844      - path (string) SVG path string
2845      - from (number) position of the start of the segment
2846      - to (number) position of the end of the segment
2847      **
2848      = (string) pathstring for the segment
2849     \*/
2850     R.getSubpath = function (path, from, to) {
2851         if (abs(this.getTotalLength(path) - to) < 1e-6) {
2852             return getSubpathsAtLength(path, from).end;
2853         }
2854         var a = getSubpathsAtLength(path, to, 1);
2855         return from ? getSubpathsAtLength(a, from).end : a;
2856     };
2857     /*\
2858      * Element.getTotalLength
2859      [ method ]
2860      **
2861      * Returns length of the path in pixels. Only works for element of “path” type.
2862      = (number) length.
2863     \*/
2864     elproto.getTotalLength = function () {
2865         if (this.type != "path") {return;}
2866         if (this.node.getTotalLength) {
2867             return this.node.getTotalLength();
2868         }
2869         return getTotalLength(this.attrs.path);
2870     };
2871     /*\
2872      * Element.getPointAtLength
2873      [ method ]
2874      **
2875      * Return coordinates of the point located at the given length on the given path. Only works for element of “path” type.
2876      **
2877      > Parameters
2878      **
2879      - length (number)
2880      **
2881      = (object) representation of the point:
2882      o {
2883      o     x: (number) x coordinate
2884      o     y: (number) y coordinate
2885      o     alpha: (number) angle of derivative
2886      o }
2887     \*/
2888     elproto.getPointAtLength = function (length) {
2889         if (this.type != "path") {return;}
2890         return getPointAtLength(this.attrs.path, length);
2891     };
2892     /*\
2893      * Element.getSubpath
2894      [ method ]
2895      **
2896      * Return subpath of a given element from given length to given length. Only works for element of “path” type.
2897      **
2898      > Parameters
2899      **
2900      - from (number) position of the start of the segment
2901      - to (number) position of the end of the segment
2902      **
2903      = (string) pathstring for the segment
2904     \*/
2905     elproto.getSubpath = function (from, to) {
2906         if (this.type != "path") {return;}
2907         return R.getSubpath(this.attrs.path, from, to);
2908     };
2909     /*\
2910      * Raphael.easing_formulas
2911      [ property ]
2912      **
2913      * Object that contains easing formulas for animation. You could extend it with your own. By default it has following list of easing:
2914      # <ul>
2915      #     <li>“linear”</li>
2916      #     <li>“&lt;” or “easeIn” or “ease-in”</li>
2917      #     <li>“>” or “easeOut” or “ease-out”</li>
2918      #     <li>“&lt;>” or “easeInOut” or “ease-in-out”</li>
2919      #     <li>“backIn” or “back-in”</li>
2920      #     <li>“backOut” or “back-out”</li>
2921      #     <li>“elastic”</li>
2922      #     <li>“bounce”</li>
2923      # </ul>
2924      # <p>See also <a href="http://raphaeljs.com/easing.html">Easing demo</a>.</p>
2925     \*/
2926     var ef = R.easing_formulas = {
2927         linear: function (n) {
2928             return n;
2929         },
2930         "<": function (n) {
2931             return pow(n, 1.7);
2932         },
2933         ">": function (n) {
2934             return pow(n, .48);
2935         },
2936         "<>": function (n) {
2937             var q = .48 - n / 1.04,
2938                 Q = math.sqrt(.1734 + q * q),
2939                 x = Q - q,
2940                 X = pow(abs(x), 1 / 3) * (x < 0 ? -1 : 1),
2941                 y = -Q - q,
2942                 Y = pow(abs(y), 1 / 3) * (y < 0 ? -1 : 1),
2943                 t = X + Y + .5;
2944             return (1 - t) * 3 * t * t + t * t * t;
2945         },
2946         backIn: function (n) {
2947             var s = 1.70158;
2948             return n * n * ((s + 1) * n - s);
2949         },
2950         backOut: function (n) {
2951             n = n - 1;
2952             var s = 1.70158;
2953             return n * n * ((s + 1) * n + s) + 1;
2954         },
2955         elastic: function (n) {
2956             if (n == !!n) {
2957                 return n;
2958             }
2959             return pow(2, -10 * n) * math.sin((n - .075) * (2 * PI) / .3) + 1;
2960         },
2961         bounce: function (n) {
2962             var s = 7.5625,
2963                 p = 2.75,
2964                 l;
2965             if (n < (1 / p)) {
2966                 l = s * n * n;
2967             } else {
2968                 if (n < (2 / p)) {
2969                     n -= (1.5 / p);
2970                     l = s * n * n + .75;
2971                 } else {
2972                     if (n < (2.5 / p)) {
2973                         n -= (2.25 / p);
2974                         l = s * n * n + .9375;
2975                     } else {
2976                         n -= (2.625 / p);
2977                         l = s * n * n + .984375;
2978                     }
2979                 }
2980             }
2981             return l;
2982         }
2983     };
2984     ef.easeIn = ef["ease-in"] = ef["<"];
2985     ef.easeOut = ef["ease-out"] = ef[">"];
2986     ef.easeInOut = ef["ease-in-out"] = ef["<>"];
2987     ef["back-in"] = ef.backIn;
2988     ef["back-out"] = ef.backOut;
2989
2990     var animationElements = [],
2991         requestAnimFrame = window.requestAnimationFrame       ||
2992                            window.webkitRequestAnimationFrame ||
2993                            window.mozRequestAnimationFrame    ||
2994                            window.oRequestAnimationFrame      ||
2995                            window.msRequestAnimationFrame     ||
2996                            function (callback) {
2997                                setTimeout(callback, 16);
2998                            },
2999         animation = function () {
3000             var Now = +new Date,
3001                 l = 0;
3002             for (; l < animationElements.length; l++) {
3003                 var e = animationElements[l];
3004                 if (e.el.removed || e.paused) {
3005                     continue;
3006                 }
3007                 var time = Now - e.start,
3008                     ms = e.ms,
3009                     easing = e.easing,
3010                     from = e.from,
3011                     diff = e.diff,
3012                     to = e.to,
3013                     t = e.t,
3014                     that = e.el,
3015                     set = {},
3016                     now;
3017                 if (e.initstatus) {
3018                     time = (e.initstatus * e.anim.top - e.prev) / (e.percent - e.prev) * ms;
3019                     e.status = e.initstatus;
3020                     delete e.initstatus;
3021                     e.stop && animationElements.splice(l--, 1);
3022                 } else {
3023                     e.status = (e.prev + (e.percent - e.prev) * (time / ms)) / e.anim.top;
3024                 }
3025                 if (time < 0) {
3026                     continue;
3027                 }
3028                 if (time < ms) {
3029                     var pos = easing(time / ms);
3030                     for (var attr in from) if (from[has](attr)) {
3031                         switch (availableAnimAttrs[attr]) {
3032                             case nu:
3033                                 now = +from[attr] + pos * ms * diff[attr];
3034                                 break;
3035                             case "colour":
3036                                 now = "rgb(" + [
3037                                     upto255(round(from[attr].r + pos * ms * diff[attr].r)),
3038                                     upto255(round(from[attr].g + pos * ms * diff[attr].g)),
3039                                     upto255(round(from[attr].b + pos * ms * diff[attr].b))
3040                                 ].join(",") + ")";
3041                                 break;
3042                             case "path":
3043                                 now = [];
3044                                 for (var i = 0, ii = from[attr].length; i < ii; i++) {
3045                                     now[i] = [from[attr][i][0]];
3046                                     for (var j = 1, jj = from[attr][i].length; j < jj; j++) {
3047                                         now[i][j] = +from[attr][i][j] + pos * ms * diff[attr][i][j];
3048                                     }
3049                                     now[i] = now[i].join(S);
3050                                 }
3051                                 now = now.join(S);
3052                                 break;
3053                             case "transform":
3054                                 if (diff[attr].real) {
3055                                     now = [];
3056                                     for (i = 0, ii = from[attr].length; i < ii; i++) {
3057                                         now[i] = [from[attr][i][0]];
3058                                         for (j = 1, jj = from[attr][i].length; j < jj; j++) {
3059                                             now[i][j] = from[attr][i][j] + pos * ms * diff[attr][i][j];
3060                                         }
3061                                     }
3062                                 } else {
3063                                     var get = function (i) {
3064                                         return +from[attr][i] + pos * ms * diff[attr][i];
3065                                     };
3066                                     // now = [["r", get(2), 0, 0], ["t", get(3), get(4)], ["s", get(0), get(1), 0, 0]];
3067                                     now = [["m", get(0), get(1), get(2), get(3), get(4), get(5)]];
3068                                 }
3069                                 break;
3070                             case "csv":
3071                                 if (attr == "clip-rect") {
3072                                     now = [];
3073                                     i = 4;
3074                                     while (i--) {
3075                                         now[i] = +from[attr][i] + pos * ms * diff[attr][i];
3076                                     }
3077                                 }
3078                                 break;
3079                             default:
3080                                 var from2 = [].concat(from[attr]);
3081                                 now = [];
3082                                 i = that.paper.customAttributes[attr].length;
3083                                 while (i--) {
3084                                     now[i] = +from2[i] + pos * ms * diff[attr][i];
3085                                 }
3086                                 break;
3087                         }
3088                         set[attr] = now;
3089                     }
3090                     that.attr(set);
3091                     (function (id, that, anim) {
3092                         setTimeout(function () {
3093                             eve("anim.frame." + id, that, anim);
3094                         });
3095                     })(that.id, that, e.anim);
3096                 } else {
3097                     (function(f, el, a) {
3098                         setTimeout(function() {
3099                             eve("anim.frame." + el.id, el, a);
3100                             eve("anim.finish." + el.id, el, a);
3101                             R.is(f, "function") && f.call(el);
3102                         });
3103                     })(e.callback, that, e.anim);
3104                     that.attr(to);
3105                     animationElements.splice(l--, 1);
3106                     if (e.repeat > 1 && !e.next) {
3107                         runAnimation(e.anim, e.el, e.anim.percents[0], null, e.totalOrigin, e.repeat - 1);
3108                     }
3109                     if (e.next && !e.stop) {
3110                         runAnimation(e.anim, e.el, e.next, null, e.totalOrigin, e.repeat);
3111                     }
3112                 }
3113             }
3114             R.svg && that && that.paper && that.paper.safari();
3115             animationElements.length && requestAnimFrame(animation);
3116         },
3117         upto255 = function (color) {
3118             return color > 255 ? 255 : color < 0 ? 0 : color;
3119         };
3120     /*\
3121      * Element.animateWith
3122      [ method ]
3123      **
3124      * Acts similar to @Element.animate, but ensure that given animation runs in sync with another given element.
3125      **
3126      > Parameters
3127      **
3128      - params (object) final attributes for the element, see also @Element.attr
3129      - ms (number) number of milliseconds for animation to run
3130      - easing (string) #optional easing type. Accept on of @Raphael.easing_formulas or CSS format: `cubic&#x2010;bezier(XX,&#160;XX,&#160;XX,&#160;XX)`
3131      - callback (function) #optional callback function. Will be called at the end of animation.
3132      * or
3133      - animation (object) animation object, see @Raphael.animation
3134      **
3135      = (object) original element
3136     \*/
3137     elproto.animateWith = function (element, params, ms, easing, callback) {
3138         this.animate(params, ms, easing, callback);
3139         var start, el;
3140         for (var i = 0, ii = animationElements.length; i < ii; i++) {
3141             el = animationElements[i];
3142             if (el.el.id == element.id) {
3143                 start = el.timestamp;
3144             } else if (el.el.id == this.id) {
3145                 el.start = start;
3146             }
3147         }
3148         return this.animate(params, ms, easing, callback);
3149     };
3150     function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) {
3151         var cx = 3 * p1x,
3152             bx = 3 * (p2x - p1x) - cx,
3153             ax = 1 - cx - bx,
3154             cy = 3 * p1y,
3155             by = 3 * (p2y - p1y) - cy,
3156             ay = 1 - cy - by;
3157         function sampleCurveX(t) {
3158             return ((ax * t + bx) * t + cx) * t;
3159         }
3160         function solve(x, epsilon) {
3161             var t = solveCurveX(x, epsilon);
3162             return ((ay * t + by) * t + cy) * t;
3163         }
3164         function solveCurveX(x, epsilon) {
3165             var t0, t1, t2, x2, d2, i;
3166             for(t2 = x, i = 0; i < 8; i++) {
3167                 x2 = sampleCurveX(t2) - x;
3168                 if (abs(x2) < epsilon) {
3169                     return t2;
3170                 }
3171                 d2 = (3 * ax * t2 + 2 * bx) * t2 + cx;
3172                 if (abs(d2) < 1e-6) {
3173                     break;
3174                 }
3175                 t2 = t2 - x2 / d2;
3176             }
3177             t0 = 0;
3178             t1 = 1;
3179             t2 = x;
3180             if (t2 < t0) {
3181                 return t0;
3182             }
3183             if (t2 > t1) {
3184                 return t1;
3185             }
3186             while (t0 < t1) {
3187                 x2 = sampleCurveX(t2);
3188                 if (abs(x2 - x) < epsilon) {
3189                     return t2;
3190                 }
3191                 if (x > x2) {
3192                     t0 = t2;
3193                 } else {
3194                     t1 = t2;
3195                 }
3196                 t2 = (t1 - t0) / 2 + t0;
3197             }
3198             return t2;
3199         }
3200         return solve(t, 1 / (200 * duration));
3201     }
3202     elproto.onAnimation = function (f) {
3203         f ? eve.on("anim.frame." + this.id, f) : eve.unbind("anim.frame." + this.id);
3204         return this;
3205     };
3206     function Animation(anim, ms) {
3207         var percents = [];
3208         this.anim = anim;
3209         this.ms = ms;
3210         this.times = 1;
3211         if (this.anim) {
3212             for (var attr in this.anim) if (this.anim[has](attr)) {
3213                 percents.push(+attr);
3214             }
3215             percents.sort(sortByNumber);
3216         }
3217         this.top = percents[percents.length - 1];
3218         this.percents = percents;
3219     }
3220     /*\
3221      * Animation.delay
3222      [ method ]
3223      **
3224      * Creates a copy of existing animation object with given delay.
3225      **
3226      > Parameters
3227      **
3228      - delay (number) number of ms to pass between animation start and actual animation
3229      **
3230      = (object) new altered Animation object
3231     \*/
3232     Animation.prototype.delay = function (delay) {
3233         var a = new Animation(this.anim, this.ms);
3234         a.times = this.times;
3235         a.del = +delay || 0;
3236         return a;
3237     };
3238     /*\
3239      * Animation.repeat
3240      [ method ]
3241      **
3242      * Creates a copy of existing animation object with given repetition.
3243      **
3244      > Parameters
3245      **
3246      - repeat (number) number iterations of animation. For infinite animation pass `Infinity`
3247      **
3248      = (object) new altered Animation object
3249     \*/
3250     Animation.prototype.repeat = function (times) { 
3251         var a = new Animation(this.anim, this.ms);
3252         a.del = this.del;
3253         a.times = math.floor(mmax(times, 0)) || 1;
3254         return a;
3255     };
3256     function runAnimation(anim, element, percent, status, totalOrigin, times) {
3257         percent = toFloat(percent);
3258         var params,
3259             isInAnim,
3260             isInAnimSet,
3261             percents = [],
3262             next,
3263             prev,
3264             timestamp,
3265             ms = anim.ms,
3266             from = {},
3267             to = {},
3268             diff = {};
3269         if (status) {
3270             for (i = 0, ii = animationElements.length; i < ii; i++) {
3271                 var e = animationElements[i];
3272                 if (e.el.id == element.id && e.anim == anim) {
3273                     if (e.percent != percent) {
3274                         animationElements.splice(i, 1);
3275                         isInAnimSet = 1;
3276                     } else {
3277                         isInAnim = e;
3278                     }
3279                     element.attr(e.totalOrigin);
3280                     break;
3281                 }
3282             }
3283         } else {
3284             status = +to; // NaN
3285         }
3286         for (var i = 0, ii = anim.percents.length; i < ii; i++) {
3287             if (anim.percents[i] == percent || anim.percents[i] > status * anim.top) {
3288                 percent = anim.percents[i];
3289                 prev = anim.percents[i - 1] || 0;
3290                 ms = ms / anim.top * (percent - prev);
3291                 next = anim.percents[i + 1];
3292                 params = anim.anim[percent];
3293                 break;
3294             } else if (status) {
3295                 element.attr(anim.anim[anim.percents[i]]);
3296             }
3297         }
3298         if (!params) {
3299             return;
3300         }
3301         if (!isInAnim) {
3302             for (attr in params) if (params[has](attr)) {
3303                 if (availableAnimAttrs[has](attr) || element.paper.customAttributes[has](attr)) {
3304                     from[attr] = element.attr(attr);
3305                     (from[attr] == null) && (from[attr] = availableAttrs[attr]);
3306                     to[attr] = params[attr];
3307                     switch (availableAnimAttrs[attr]) {
3308                         case nu:
3309                             diff[attr] = (to[attr] - from[attr]) / ms;
3310                             break;
3311                         case "colour":
3312                             from[attr] = R.getRGB(from[attr]);
3313                             var toColour = R.getRGB(to[attr]);
3314                             diff[attr] = {
3315                                 r: (toColour.r - from[attr].r) / ms,
3316                                 g: (toColour.g - from[attr].g) / ms,
3317                                 b: (toColour.b - from[attr].b) / ms
3318                             };
3319                             break;
3320                         case "path":
3321                             var pathes = path2curve(from[attr], to[attr]),
3322                                 toPath = pathes[1];
3323                             from[attr] = pathes[0];
3324                             diff[attr] = [];
3325                             for (i = 0, ii = from[attr].length; i < ii; i++) {
3326                                 diff[attr][i] = [0];
3327                                 for (var j = 1, jj = from[attr][i].length; j < jj; j++) {
3328                                     diff[attr][i][j] = (toPath[i][j] - from[attr][i][j]) / ms;
3329                                 }
3330                             }
3331                             break;
3332                         case "transform":
3333                             var _ = element._,
3334                                 eq = equaliseTransform(_[attr], to[attr]);
3335                             if (eq) {
3336                                 from[attr] = eq.from;
3337                                 to[attr] = eq.to;
3338                                 diff[attr] = [];
3339                                 diff[attr].real = true;
3340                                 for (i = 0, ii = from[attr].length; i < ii; i++) {
3341                                     diff[attr][i] = [from[attr][i][0]];
3342                                     for (j = 1, jj = from[attr][i].length; j < jj; j++) {
3343                                         diff[attr][i][j] = (to[attr][i][j] - from[attr][i][j]) / ms;
3344                                     }
3345                                 }
3346                             } else {
3347                                 var m = (element.matrix || new Matrix),
3348                                     to2 = {
3349                                         _: {transform: _.transform},
3350                                         getBBox: function () {
3351                                             return element.getBBox(1);
3352                                         }
3353                                     };
3354                                 from[attr] = [
3355                                     m.a,
3356                                     m.b,
3357                                     m.c,
3358                                     m.d,
3359                                     m.e,
3360                                     m.f
3361                                 ];
3362                                 extractTransform(to2, to[attr]);
3363                                 to[attr] = to2._.transform;
3364                                 diff[attr] = [
3365                                     (to2.matrix.a - m.a) / ms,
3366                                     (to2.matrix.b - m.b) / ms,
3367                                     (to2.matrix.c - m.c) / ms,
3368                                     (to2.matrix.d - m.d) / ms,
3369                                     (to2.matrix.e - m.e) / ms,
3370                                     (to2.matrix.e - m.f) / ms
3371                                 ];
3372                                 // from[attr] = [_.sx, _.sy, _.deg, _.dx, _.dy];
3373                                 // var to2 = {_:{}, getBBox: function () { return element.getBBox(); }};
3374                                 // extractTransform(to2, to[attr]);
3375                                 // diff[attr] = [
3376                                 //     (to2._.sx - _.sx) / ms,
3377                                 //     (to2._.sy - _.sy) / ms,
3378                                 //     (to2._.deg - _.deg) / ms,
3379                                 //     (to2._.dx - _.dx) / ms,
3380                                 //     (to2._.dy - _.dy) / ms
3381                                 // ];
3382                             }
3383                             break;
3384                         case "csv":
3385                             var values = Str(params[attr]).split(separator),
3386                                 from2 = Str(from[attr]).split(separator);
3387                             if (attr == "clip-rect") {
3388                                 from[attr] = from2;
3389                                 diff[attr] = [];
3390                                 i = from2.length;
3391                                 while (i--) {
3392                                     diff[attr][i] = (values[i] - from[attr][i]) / ms;
3393                                 }
3394                             }
3395                             to[attr] = values;
3396                             break;
3397                         default:
3398                             values = [].concat(params[attr]);
3399                             from2 = [].concat(from[attr]);
3400                             diff[attr] = [];
3401                             i = element.paper.customAttributes[attr].length;
3402                             while (i--) {
3403                                 diff[attr][i] = ((values[i] || 0) - (from2[i] || 0)) / ms;
3404                             }
3405                             break;
3406                     }
3407                 }
3408             }
3409             var easing = params.easing,
3410                 easyeasy = R.easing_formulas[easing];
3411             if (!easyeasy) {
3412                 easyeasy = Str(easing).match(bezierrg);
3413                 if (easyeasy && easyeasy.length == 5) {
3414                     var curve = easyeasy;
3415                     easyeasy = function (t) {
3416                         return CubicBezierAtTime(t, +curve[1], +curve[2], +curve[3], +curve[4], ms);
3417                     };
3418                 } else {
3419                     easyeasy = pipe;
3420                 }
3421             }
3422             timestamp = params.start || anim.start || +new Date;
3423             e = {
3424                 anim: anim,
3425                 percent: percent,
3426                 timestamp: timestamp,
3427                 start: timestamp + (anim.del || 0),
3428                 status: 0,
3429                 initstatus: status || 0,
3430                 stop: false,
3431                 ms: ms,
3432                 easing: easyeasy,
3433                 from: from,
3434                 diff: diff,
3435                 to: to,
3436                 el: element,
3437                 callback: params.callback,
3438                 prev: prev,
3439                 next: next,
3440                 repeat: times || anim.times,
3441                 origin: element.attr(),
3442                 totalOrigin: totalOrigin
3443             };
3444             animationElements.push(e);
3445             if (status && !isInAnim) {
3446                 e.stop = true;
3447                 e.start = new Date - ms * status;
3448                 if (animationElements.length == 1) {
3449                     return animation();
3450                 }
3451             }
3452             animationElements.length == 1 && requestAnimFrame(animation);
3453         } else {
3454             isInAnim.initstatus = status;
3455             isInAnim.start = new Date - isInAnim.ms * status;
3456         }
3457         eve("anim.start." + element.id, element, anim);
3458     }
3459     /*\
3460      * Raphael.animation
3461      [ method ]
3462      **
3463      * Creates an animation object that can be passed to the @Element.animate or @Element.animateWith methods.
3464      * See also @Animation.delay and @Animation.repeat methods.
3465      **
3466      > Parameters
3467      **
3468      - params (object) final attributes for the element, see also @Element.attr
3469      - ms (number) number of milliseconds for animation to run
3470      - easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cubic&#x2010;bezier(XX,&#160;XX,&#160;XX,&#160;XX)`
3471      - callback (function) #optional callback function. Will be called at the end of animation.
3472      **
3473      = (object) @Animation
3474     \*/
3475     R.animation = function (params, ms, easing, callback) {
3476         if (R.is(easing, "function") || !easing) {
3477             callback = callback || easing || null;
3478             easing = null;
3479         }
3480         params = Object(params);
3481         ms = +ms || 0;
3482         var p = {},
3483             json,
3484             attr;
3485         for (attr in params) if (params[has](attr) && toFloat(attr) != attr) {
3486             json = true;
3487             p[attr] = params[attr];
3488         }
3489         if (!json) {
3490             return new Animation(params, ms);
3491         } else {
3492             easing && (p.easing = easing);
3493             callback && (p.callback = callback);
3494             return new Animation({100: p}, ms);
3495         }
3496     };
3497     /*\
3498      * Element.animate
3499      [ method ]
3500      **
3501      * Creates and starts animation for given element.
3502      **
3503      > Parameters
3504      **
3505      - params (object) final attributes for the element, see also @Element.attr
3506      - ms (number) number of milliseconds for animation to run
3507      - easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cubic&#x2010;bezier(XX,&#160;XX,&#160;XX,&#160;XX)`
3508      - callback (function) #optional callback function. Will be called at the end of animation.
3509      * or
3510      - animation (object) animation object, see @Raphael.animation
3511      **
3512      = (object) original element
3513     \*/
3514     elproto.animate = function (params, ms, easing, callback) {
3515         var element = this;
3516         if (element.removed) {
3517             callback && callback.call(element);
3518             return element;
3519         }
3520         var anim = params instanceof Animation ? params : R.animation(params, ms, easing, callback);
3521         runAnimation(anim, element, anim.percents[0], null, element.attr());
3522         return element;
3523     };
3524     /*\
3525      * Element.setTime
3526      [ method ]
3527      **
3528      * Sets the status of animation of the element in milliseconds. Similar to @Element.status method.
3529      **
3530      > Parameters
3531      **
3532      - anim (object) animation object
3533      - value (number) number of milliseconds from the beginning of the animation
3534      **
3535      = (object) original element if `value` is specified
3536      * Note, that during animation following events are triggered:
3537      *
3538      * On each animation frame event `anim.frame.<id>`, on start `anim.start.<id>` and on end `anim.finish.<id>`.
3539     \*/
3540     elproto.setTime = function (anim, value) {
3541         if (anim && value != null) {
3542             this.status(anim, mmin(value, anim.ms) / anim.ms);
3543         }
3544         return this;
3545     };
3546     /*\
3547      * Element.status
3548      [ method ]
3549      **
3550      * Gets or sets the status of animation of the element.
3551      **
3552      > Parameters
3553      **
3554      - anim (object) #optional animation object
3555      - value (number) #optional 0 – 1. If specified, method works like a setter and sets the status of a given animation to the value. This will cause animation to jump to the given position.
3556      **
3557      = (number) status
3558      * or
3559      = (array) status if `anim` is not specified. Array of objects in format:
3560      o {
3561      o     anim: (object) animation object
3562      o     status: (number) status
3563      o }
3564      * or
3565      = (object) original element if `value` is specified
3566     \*/
3567     elproto.status = function (anim, value) {
3568         var out = [],
3569             i = 0,
3570             len,
3571             e;
3572         if (value != null) {
3573             runAnimation(anim, this, -1, mmin(value, 1));
3574             return this;
3575         } else {
3576             len = animationElements.length;
3577             for (; i < len; i++) {
3578                 e = animationElements[i];
3579                 if (e.el.id == this.id && (!anim || e.anim == anim)) {
3580                     if (anim) {
3581                         return e.status;
3582                     }
3583                     out.push({anim: e.anim, status: e.status});
3584                 }
3585             }
3586             if (anim) {
3587                 return 0;
3588             }
3589             return out;
3590         }
3591     };
3592     /*\
3593      * Element.pause
3594      [ method ]
3595      **
3596      * Stops animation of the element with ability to resume it later on.
3597      **
3598      > Parameters
3599      **
3600      - anim (object) #optional animation object
3601      **
3602      = (object) original element
3603     \*/
3604     elproto.pause = function (anim) {
3605         for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!anim || animationElements[i].anim == anim)) {
3606             if (eve("anim.pause." + this.id, this, animationElements[i].anim) !== false) {
3607                 animationElements[i].paused = true;
3608             }
3609         }
3610         return this;
3611     };
3612     /*\
3613      * Element.resume
3614      [ method ]
3615      **
3616      * Resumes animation if it was paused with @Element.pause method.
3617      **
3618      > Parameters
3619      **
3620      - anim (object) #optional animation object
3621      **
3622      = (object) original element
3623     \*/
3624     elproto.resume = function (anim) {
3625         for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!anim || animationElements[i].anim == anim)) {
3626             var e = animationElements[i];
3627             if (eve("anim.resume." + this.id, this, e.anim) !== false) {
3628                 delete e.paused;
3629                 this.status(e.anim, e.status);
3630             }
3631         }
3632         return this;
3633     };
3634     /*\
3635      * Element.stop
3636      [ method ]
3637      **
3638      * Stops animation of the element.
3639      **
3640      > Parameters
3641      **
3642      - anim (object) #optional animation object
3643      **
3644      = (object) original element
3645     \*/
3646     elproto.stop = function (anim) {
3647         for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!anim || animationElements[i].anim == anim)) {
3648             if (eve("anim.stop." + this.id, this, animationElements[i].anim) !== false) {
3649                 animationElements.splice(i--, 1);
3650             }
3651         }
3652         return this;
3653     };
3654     elproto.toString = function () {
3655         return "Rapha\xebl\u2019s object";
3656     };
3657
3658     // Set
3659     var Set = function (items) {
3660         this.items = [];
3661         this.length = 0;
3662         this.type = "set";
3663         if (items) {
3664             for (var i = 0, ii = items.length; i < ii; i++) {
3665                 if (items[i] && (items[i].constructor == elproto.constructor || items[i].constructor == Set)) {
3666                     this[this.items.length] = this.items[this.items.length] = items[i];
3667                     this.length++;
3668                 }
3669             }
3670         }
3671     },
3672     setproto = Set.prototype;
3673     /*\
3674      * Set.push
3675      [ method ]
3676      **
3677      * Adds each argument to the current set.
3678      = (object) original element
3679     \*/
3680     setproto.push = function () {
3681         var item,
3682             len;
3683         for (var i = 0, ii = arguments.length; i < ii; i++) {
3684             item = arguments[i];
3685             if (item && (item.constructor == elproto.constructor || item.constructor == Set)) {
3686                 len = this.items.length;
3687                 this[len] = this.items[len] = item;
3688                 this.length++;
3689             }
3690         }
3691         return this;
3692     };
3693     /*\
3694      * Set.pop
3695      [ method ]
3696      **
3697      * Removes last element and returns it.
3698      = (object) element
3699     \*/
3700     setproto.pop = function () {
3701         this.length && delete this[this.length--];
3702         return this.items.pop();
3703     };
3704     /*\
3705      * Set.forEach
3706      [ method ]
3707      **
3708      * Executes given function for each element in the set.
3709      *
3710      * If function returns `false` it will stop loop running.
3711      **
3712      > Parameters
3713      **
3714      - callback (function) function to run
3715      - thisArg (object) context object for the callback
3716      = (object) Set object
3717     \*/
3718     setproto.forEach = function (callback, thisArg) {
3719         for (var i = 0, ii = this.items.length; i < ii; i++) {
3720             if (callback.call(thisArg, this.items[i]) === false) {
3721                 return this;
3722             }
3723         }
3724         return this;
3725     };
3726     for (var method in elproto) if (elproto[has](method)) {
3727         setproto[method] = (function (methodname) {
3728             return function () {
3729                 var arg = arguments;
3730                 return this.forEach(function (el) {
3731                     el[methodname][apply](el, arg);
3732                 });
3733             };
3734         })(method);
3735     }
3736     setproto.attr = function (name, value) {
3737         if (name && R.is(name, array) && R.is(name[0], "object")) {
3738             for (var j = 0, jj = name.length; j < jj; j++) {
3739                 this.items[j].attr(name[j]);
3740             }
3741         } else {
3742             for (var i = 0, ii = this.items.length; i < ii; i++) {
3743                 this.items[i].attr(name, value);
3744             }
3745         }
3746         return this;
3747     };
3748     setproto.clear = function () {
3749         while (this.length) {
3750             this.pop();
3751         }
3752     };
3753     setproto.animate = function (params, ms, easing, callback) {
3754         (R.is(easing, "function") || !easing) && (callback = easing || null);
3755         var len = this.items.length,
3756             i = len,
3757             item,
3758             set = this,
3759             collector;
3760         if (!len) {
3761             return this;
3762         }
3763         callback && (collector = function () {
3764             !--len && callback.call(set);
3765         });
3766         easing = R.is(easing, string) ? easing : collector;
3767         var anim = params instanceof Animation ? params : R.animation(params, ms, easing, collector);
3768         item = this.items[--i].animate(anim);
3769         while (i--) {
3770             this.items[i] && !this.items[i].removed && this.items[i].animateWith(item, anim);
3771         }
3772         return this;
3773     };
3774     setproto.insertAfter = function (el) {
3775         var i = this.items.length;
3776         while (i--) {
3777             this.items[i].insertAfter(el);
3778         }
3779         return this;
3780     };
3781     setproto.getBBox = function () {
3782         var x = [],
3783             y = [],
3784             w = [],
3785             h = [];
3786         for (var i = this.items.length; i--;) if (!this.items[i].removed) {
3787             var box = this.items[i].getBBox();
3788             x.push(box.x);
3789             y.push(box.y);
3790             w.push(box.x + box.width);
3791             h.push(box.y + box.height);
3792         }
3793         x = mmin[apply](0, x);
3794         y = mmin[apply](0, y);
3795         return {
3796             x: x,
3797             y: y,
3798             width: mmax[apply](0, w) - x,
3799             height: mmax[apply](0, h) - y
3800         };
3801     };
3802     setproto.clone = function (s) {
3803         s = new Set;
3804         for (var i = 0, ii = this.items.length; i < ii; i++) {
3805             s.push(this.items[i].clone());
3806         }
3807         return s;
3808     };
3809     setproto.toString = function () {
3810         return "Rapha\xebl\u2018s set";
3811     };
3812
3813     R.registerFont = function (font) {
3814         if (!font.face) {
3815             return font;
3816         }
3817         this.fonts = this.fonts || {};
3818         var fontcopy = {
3819                 w: font.w,
3820                 face: {},
3821                 glyphs: {}
3822             },
3823             family = font.face["font-family"];
3824         for (var prop in font.face) if (font.face[has](prop)) {
3825             fontcopy.face[prop] = font.face[prop];
3826         }
3827         if (this.fonts[family]) {
3828             this.fonts[family].push(fontcopy);
3829         } else {
3830             this.fonts[family] = [fontcopy];
3831         }
3832         if (!font.svg) {
3833             fontcopy.face["units-per-em"] = toInt(font.face["units-per-em"], 10);
3834             for (var glyph in font.glyphs) if (font.glyphs[has](glyph)) {
3835                 var path = font.glyphs[glyph];
3836                 fontcopy.glyphs[glyph] = {
3837                     w: path.w,
3838                     k: {},
3839                     d: path.d && "M" + path.d.replace(/[mlcxtrv]/g, function (command) {
3840                             return {l: "L", c: "C", x: "z", t: "m", r: "l", v: "c"}[command] || "M";
3841                         }) + "z"
3842                 };
3843                 if (path.k) {
3844                     for (var k in path.k) if (path[has](k)) {
3845                         fontcopy.glyphs[glyph].k[k] = path.k[k];
3846                     }
3847                 }
3848             }
3849         }
3850         return font;
3851     };
3852     paperproto.getFont = function (family, weight, style, stretch) {
3853         stretch = stretch || "normal";
3854         style = style || "normal";
3855         weight = +weight || {normal: 400, bold: 700, lighter: 300, bolder: 800}[weight] || 400;
3856         if (!R.fonts) {
3857             return;
3858         }
3859         var font = R.fonts[family];
3860         if (!font) {
3861             var name = new RegExp("(^|\\s)" + family.replace(/[^\w\d\s+!~.:_-]/g, E) + "(\\s|$)", "i");
3862             for (var fontName in R.fonts) if (R.fonts[has](fontName)) {
3863                 if (name.test(fontName)) {
3864                     font = R.fonts[fontName];
3865                     break;
3866                 }
3867             }
3868         }
3869         var thefont;
3870         if (font) {
3871             for (var i = 0, ii = font.length; i < ii; i++) {
3872                 thefont = font[i];
3873                 if (thefont.face["font-weight"] == weight && (thefont.face["font-style"] == style || !thefont.face["font-style"]) && thefont.face["font-stretch"] == stretch) {
3874                     break;
3875                 }
3876             }
3877         }
3878         return thefont;
3879     };
3880     paperproto.print = function (x, y, string, font, size, origin, letter_spacing) {
3881         origin = origin || "middle"; // baseline|middle
3882         letter_spacing = mmax(mmin(letter_spacing || 0, 1), -1);
3883         var out = this.set(),
3884             letters = Str(string).split(E),
3885             shift = 0,
3886             path = E,
3887             scale;
3888         R.is(font, string) && (font = this.getFont(font));
3889         if (font) {
3890             scale = (size || 16) / font.face["units-per-em"];
3891             var bb = font.face.bbox.split(separator),
3892                 top = +bb[0],
3893                 height = +bb[1] + (origin == "baseline" ? bb[3] - bb[1] + (+font.face.descent) : (bb[3] - bb[1]) / 2);
3894             for (var i = 0, ii = letters.length; i < ii; i++) {
3895                 var prev = i && font.glyphs[letters[i - 1]] || {},
3896                     curr = font.glyphs[letters[i]];
3897                 shift += i ? (prev.w || font.w) + (prev.k && prev.k[letters[i]] || 0) + (font.w * letter_spacing) : 0;
3898                 curr && curr.d && out.push(this.path(curr.d).attr({fill: "#000", stroke: "none", transform: [["t", shift, 0]]}));
3899             }
3900             out.scale(scale, scale, top, height).translate(x - top, y - height);
3901         }
3902         return out;
3903     };
3904
3905     R.format = function (token, params) {
3906         var args = R.is(params, array) ? [0][concat](params) : arguments;
3907         token && R.is(token, string) && args.length - 1 && (token = token.replace(formatrg, function (str, i) {
3908             return args[++i] == null ? E : args[i];
3909         }));
3910         return token || E;
3911     };
3912     R.ninja = function () {
3913         oldRaphael.was ? (g.win.Raphael = oldRaphael.is) : delete Raphael;
3914         return R;
3915     };
3916     /*\
3917      * Raphael.st
3918      [ property (object) ]
3919      **
3920      * You can add your own method to elements. This is usefull when you want to hack default functionality or
3921      * want to wrap some common transformation or attributes in one method. In difference to canvas methods,
3922      * you can redefine element method at any time. Expending element methods wouldn’t affect set.
3923      > Usage
3924      | Raphael.el.red = function () {
3925      |     this.attr({fill: "#f00"});
3926      | };
3927      | // then use it
3928      | paper.circle(100, 100, 20).red();
3929     \*/
3930     R.st = setproto;
3931     // Firefox <3.6 fix: http://webreflection.blogspot.com/2009/11/195-chars-to-help-lazy-loading.html
3932     (function (doc, loaded, f) {
3933         if (doc.readyState == null && doc.addEventListener){
3934             doc.addEventListener(loaded, f = function () {
3935                 doc.removeEventListener(loaded, f, false);
3936                 doc.readyState = "complete";
3937             }, false);
3938             doc.readyState = "loading";
3939         }
3940         function isLoaded() {
3941             (/in/).test(doc.readyState) ? setTimeout(isLoaded, 9) : R.eve("DOMload");
3942         }
3943         isLoaded();
3944     })(document, "DOMContentLoaded");
3945
3946     oldRaphael.was ? (g.win.Raphael = R) : (Raphael = R);
3947
3948     /*
3949      * Eve 0.2.3 - JavaScript Events Library
3950      *
3951      * Copyright (c) 2010 Dmitry Baranovskiy (http://dmitry.baranovskiy.com/)
3952      * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
3953      */
3954
3955     var eve = R.eve = (function () {
3956         var version = "0.2.3",
3957             has = "hasOwnProperty",
3958             separator = /[\.\/]/,
3959             wildcard = "*",
3960             fun = function () {},
3961             numsort = function (a, b) {
3962                 return a - b;
3963             },
3964             current_event,
3965             events = {n: {}},
3966         /*\
3967          * eve
3968          [ method ]
3969          **
3970          * Fires event with given `name`, given scope and other parameters.
3971          **
3972          > Arguments
3973          **
3974          - name (string) name of the event, dot (`.`) or slash (`/`) separated
3975          - scope (object) context for the event handlers
3976          - varargs (...) the rest of arguments will be sent to event handlers
3977          **
3978          = (array) array of errors, if any. Each element of the array is in format:
3979          o {
3980          o     error (string) error message
3981          o     func (function) handler that caused error
3982          o }
3983         \*/
3984             eve = function (name, scope) {
3985                 var e = events,
3986                     args = Array.prototype.slice.call(arguments, 2),
3987                     listeners = eve.listeners(name),
3988                     z = 0,
3989                     f = false,
3990                     l,
3991                     indexed = [],
3992                     queue = {},
3993                     errors = [];
3994                 current_event = name;
3995                 for (var i = 0, ii = listeners.length; i < ii; i++) if ("zIndex" in listeners[i]) {
3996                     indexed.push(listeners[i].zIndex);
3997                     if (listeners[i].zIndex < 0) {
3998                         queue[listeners[i].zIndex] = listeners[i];
3999                     }
4000                 }
4001                 indexed.sort(numsort);
4002                 while (indexed[z] < 0) {
4003                     l = queue[indexed[z++]];
4004                     if (l.apply(scope, args) === f) {
4005                         return f;
4006                     }
4007                 }
4008                 for (i = 0; i < ii; i++) {
4009                     l = listeners[i];
4010                     if ("zIndex" in l) {
4011                         if (l.zIndex == indexed[z]) {
4012                             if (l.apply(scope, args) === f) {
4013                                 return f;
4014                             }
4015                             do {
4016                                 z++;
4017                                 l = queue[indexed[z]];
4018                                 if (l) {
4019                                     if (l.apply(scope, args) === f) {
4020                                         return f;
4021                                     }
4022                                 }
4023                             } while (l)
4024                         } else {
4025                             queue[l.zIndex] = l;
4026                         }
4027                     } else {
4028                         if (l.apply(scope, args) === f) {
4029                             return f;
4030                         }
4031                     }
4032                 }
4033             };
4034         /*\
4035          * eve.listeners
4036          [ method ]
4037          **
4038          * Internal method which gives you array of all event handlers that will be triggered by the given `name`.
4039          **
4040          > Arguments
4041          **
4042          - name (string) name of the event, dot (`.`) or slash (`/`) separated
4043          **
4044          = (array) array of event handlers
4045         \*/
4046         eve.listeners = function (name) {
4047             var names = name.split(separator),
4048                 e = events,
4049                 item,
4050                 items,
4051                 k,
4052                 i,
4053                 ii,
4054                 j,
4055                 jj,
4056                 nes,
4057                 es = [e],
4058                 out = [];
4059             for (i = 0, ii = names.length; i < ii; i++) {
4060                 nes = [];
4061                 for (j = 0, jj = es.length; j < jj; j++) {
4062                     e = es[j].n;
4063                     items = [e[names[i]], e[wildcard]];
4064                     k = 2;
4065                     while (k--) {
4066                         item = items[k];
4067                         if (item) {
4068                             nes.push(item);
4069                             out = out.concat(item.f || []);
4070                         }
4071                     }
4072                 }
4073                 es = nes;
4074             }
4075             return out;
4076         };
4077     
4078         /*\
4079          * eve.on
4080          [ method ]
4081          **
4082          * Binds given event handler with a given name. You can use wildcards “`*`” for the names:
4083          | eve.on("*.under.*", f);
4084          | eve("mouse.under.floor"); // triggers f
4085          * Use @eve to trigger the listener.
4086          **
4087          > Arguments
4088          **
4089          - name (string) name of the event, dot (`.`) or slash (`/`) separated, with optional wildcards
4090          - f (function) event handler function
4091          **
4092          = (function) returned function accept one number parameter that represents z-index of the handler. It is optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment. 
4093          > Example:
4094          | eve.on("mouse", eat)(2);
4095          | eve.on("mouse", scream);
4096          | eve.on("mouse", catch)(1);
4097          * This will ensure that `catch` function will be called before `eat`.
4098          * If you want to put you hadler before not indexed handlers specify negative value.
4099          * Note: I assume most of the time you don’t need to worry about z-index, but it’s nice to have this feature “just in case”.
4100         \*/
4101         eve.on = function (name, f) {
4102             var names = name.split(separator),
4103                 e = events;
4104             for (var i = 0, ii = names.length; i < ii; i++) {
4105                 e = e.n;
4106                 !e[names[i]] && (e[names[i]] = {n: {}});
4107                 e = e[names[i]];
4108             }
4109             e.f = e.f || [];
4110             for (i = 0, ii = e.f.length; i < ii; i++) if (e.f[i] == f) {
4111                 return fun;
4112             }
4113             e.f.push(f);
4114             return function (zIndex) {
4115                 if (+zIndex == +zIndex) {
4116                     f.zIndex = +zIndex;
4117                 }
4118             };
4119         };
4120         /*\
4121          * eve.nt
4122          [ method ]
4123          **
4124          * Could be used inside event handler to figure out actual name of the event.
4125          **
4126          > Arguments
4127          **
4128          - subname (string) #optional subname of the event
4129          **
4130          = (string) name of the event, if `subname` is not specified
4131          * or
4132          = (boolean) `true`, if current event’s name contains `subname`
4133         \*/
4134         eve.nt = function (subname) {
4135             if (subname) {
4136                 return new RegExp("(?:\\.|\\/|^)" + subname + "(?:\\.|\\/|$)").test(current_event);
4137             }
4138             return current_event;
4139         };
4140         /*\
4141          * eve.unbind
4142          [ method ]
4143          **
4144          * Removes given function from the list of event listeners assigned to given name.
4145          **
4146          > Arguments
4147          **
4148          - name (string) name of the event, dot (`.`) or slash (`/`) separated, with optional wildcards
4149          - f (function) event handler function
4150         \*/
4151         eve.unbind = function (name, f) {
4152             var names = name.split(separator),
4153                 e,
4154                 key,
4155                 splice,
4156                 cur = [events];
4157             for (var i = 0, ii = names.length; i < ii; i++) {
4158                 for (var j = 0; j < cur.length; j += splice.length - 2) {
4159                     splice = [j, 1];
4160                     e = cur[j].n;
4161                     if (names[i] != wildcard) {
4162                         if (e[names[i]]) {
4163                             splice.push(e[names[i]]);
4164                         }
4165                     } else {
4166                         for (key in e) if (e[has](key)) {
4167                             splice.push(e[key]);
4168                         }
4169                     }
4170                     cur.splice.apply(cur, splice);
4171                 }
4172             }
4173             for (i = 0, ii = cur.length; i < ii; i++) {
4174                 e = cur[i];
4175                 while (e.n) {
4176                     if (f) {
4177                         if (e.f) {
4178                             for (i = 0, ii = e.f.length; i < ii; i++) if (e.f[i] == f) {
4179                                 e.f.splice(i, 1);
4180                                 break;
4181                             }
4182                             !e.f.length && delete e.f;
4183                         }
4184                         for (key in e.n) if (e.n[has](key) && e.n[key].f) {
4185                             var funcs = e.n[key].f;
4186                             for (i = 0, ii = funcs.length; i < ii; i++) if (funcs[i] == f) {
4187                                 funcs.splice(i, 1);
4188                                 break;
4189                             }
4190                             !funcs.length && delete e.n[key].f;
4191                         }
4192                     } else {
4193                         delete e.f;
4194                         for (key in e.n) if (e.n[has](key) && e.n[key].f) {
4195                             delete e.n[key].f;
4196                         }
4197                     }
4198                     e = e.n;
4199                 }
4200             }
4201         };
4202         /*\
4203          * eve.version
4204          [ property (string) ]
4205          **
4206          * Current version of the library.
4207         \*/
4208         eve.version = version;
4209         eve.toString = function () {
4210             return "You are running Eve " + version;
4211         };
4212         return eve;
4213     })();
4214     
4215     // Eve finished
4216     
4217     eve.on("DOMload", function () {
4218         loaded = true;
4219     });
4220 })();
4221
4222 // ┌─────────────────────────────────────────────────────────────────────┐ \\
4223 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
4224 // ├─────────────────────────────────────────────────────────────────────┤ \\
4225 // │ SVG Module                                                          │ \\
4226 // ├─────────────────────────────────────────────────────────────────────┤ \\
4227 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
4228 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
4229 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
4230 // └─────────────────────────────────────────────────────────────────────┘ \\
4231 window.Raphael.svg && function (R) {
4232     var has = "hasOwnProperty",
4233         Str = String,
4234         toFloat = parseFloat,
4235         toInt = parseInt,
4236         math = Math,
4237         mmax = math.max,
4238         abs = math.abs,
4239         separator = /[, ]+/,
4240         E = "";
4241     // SVG
4242     var xlink = "http://www.w3.org/1999/xlink",
4243         markers = {
4244             block: "M5,0 0,2.5 5,5z",
4245             classic: "M5,0 0,2.5 5,5 3.5,3 3.5,2z",
4246             diamond: "M2.5,0 5,2.5 2.5,5 0,2.5z",
4247             open: "M6,1 1,3.5 6,6",
4248             oval: "M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"
4249         },
4250         markerCounter = {};
4251     R.toString = function () {
4252         return  "Your browser supports SVG.\nYou are running Rapha\xebl " + this.version;
4253     };
4254     var $ = function (el, attr) {
4255         if (attr) {
4256             if (typeof el == "string") {
4257                 el = $(el);
4258             }
4259             for (var key in attr) if (attr[has](key)) {
4260                 if (key.substring(0, 6) == "xlink:") {
4261                     el.setAttributeNS(xlink, key.substring(6), Str(attr[key]));
4262                 } else {
4263                     el.setAttribute(key, Str(attr[key]));
4264                 }
4265             }
4266         } else {
4267             el = R._g.doc.createElementNS("http://www.w3.org/2000/svg", el);
4268             el.style && (el.style.webkitTapHighlightColor = "rgba(0,0,0,0)");
4269         }
4270         return el;
4271     },
4272     gradients = {},
4273     rgGrad = /^url\(#(.*)\)$/,
4274     removeGradientFill = function (node, paper) {
4275         var oid = node.getAttribute("fill");
4276         oid = oid && oid.match(rgGrad);
4277         if (oid && !--gradients[oid[1]]) {
4278             delete gradients[oid[1]];
4279             paper.defs.removeChild(g.doc.getElementById(oid[1]));
4280         }
4281     },
4282     addGradientFill = function (element, gradient) {
4283         var type = "linear",
4284             id = element.id + gradient,
4285             fx = .5, fy = .5,
4286             o = element.node,
4287             SVG = element.paper,
4288             s = o.style,
4289             el = R._g.doc.getElementById(id);
4290         if (!el) {
4291             gradient = Str(gradient).replace(R._radial_gradient, function (all, _fx, _fy) {
4292                 type = "radial";
4293                 if (_fx && _fy) {
4294                     fx = toFloat(_fx);
4295                     fy = toFloat(_fy);
4296                     var dir = ((fy > .5) * 2 - 1);
4297                     pow(fx - .5, 2) + pow(fy - .5, 2) > .25 &&
4298                         (fy = math.sqrt(.25 - pow(fx - .5, 2)) * dir + .5) &&
4299                         fy != .5 &&
4300                         (fy = fy.toFixed(5) - 1e-5 * dir);
4301                 }
4302                 return E;
4303             });
4304             gradient = gradient.split(/\s*\-\s*/);
4305             if (type == "linear") {
4306                 var angle = gradient.shift();
4307                 angle = -toFloat(angle);
4308                 if (isNaN(angle)) {
4309                     return null;
4310                 }
4311                 var vector = [0, 0, math.cos(R.rad(angle)), math.sin(R.rad(angle))],
4312                     max = 1 / (mmax(abs(vector[2]), abs(vector[3])) || 1);
4313                 vector[2] *= max;
4314                 vector[3] *= max;
4315                 if (vector[2] < 0) {
4316                     vector[0] = -vector[2];
4317                     vector[2] = 0;
4318                 }
4319                 if (vector[3] < 0) {
4320                     vector[1] = -vector[3];
4321                     vector[3] = 0;
4322                 }
4323             }
4324             var dots = R._parseDots(gradient);
4325             if (!dots) {
4326                 return null;
4327             }
4328             if (element.gradient) {
4329                 SVG.defs.removeChild(element.gradient);
4330                 delete element.gradient;
4331             }
4332
4333             id = id.replace(/[\(\)\s,\xb0#]/g, "-");
4334             el = $(type + "Gradient", {id: id});
4335             element.gradient = el;
4336             $(el, type == "radial" ? {
4337                 fx: fx,
4338                 fy: fy
4339             } : {
4340                 x1: vector[0],
4341                 y1: vector[1],
4342                 x2: vector[2],
4343                 y2: vector[3],
4344                 gradientTransform: element.matrix.invert()
4345             });
4346             SVG.defs.appendChild(el);
4347             for (var i = 0, ii = dots.length; i < ii; i++) {
4348                 el.appendChild($("stop", {
4349                     offset: dots[i].offset ? dots[i].offset : i ? "100%" : "0%",
4350                     "stop-color": dots[i].color || "#fff"
4351                 }));
4352             }
4353         }
4354         $(o, {
4355             fill: "url(#" + id + ")",
4356             opacity: 1,
4357             "fill-opacity": 1
4358         });
4359         s.fill = E;
4360         s.opacity = 1;
4361         s.fillOpacity = 1;
4362         return 1;
4363     },
4364     updatePosition = function (o) {
4365         var bbox = o.getBBox(1);
4366         $(o.pattern, {patternTransform: o.matrix.invert() + " translate(" + bbox.x + "," + bbox.y + ")"});
4367     },
4368     addArrow = function (o, value, isEnd) {
4369         if (o.type == "path") {
4370             var values = Str(value).toLowerCase().split("-"),
4371                 p = o.paper,
4372                 se = isEnd ? "end" : "start",
4373                 node = o.node,
4374                 attrs = o.attrs,
4375                 stroke = attrs["stroke-width"],
4376                 i = values.length,
4377                 type = "classic",
4378                 from,
4379                 to,
4380                 dx,
4381                 refX,
4382                 attr,
4383                 w = 3,
4384                 h = 3,
4385                 t = 5;
4386             while (i--) {
4387                 switch (values[i]) {
4388                     case "block":
4389                     case "classic":
4390                     case "oval":
4391                     case "diamond":
4392                     case "open":
4393                     case "none":
4394                         type = values[i];
4395                         break;
4396                     case "wide": h = 5; break;
4397                     case "narrow": h = 2; break;
4398                     case "long": w = 5; break;
4399                     case "short": w = 2; break;
4400                 }
4401             }
4402             if (type == "open") {
4403                 w += 2;
4404                 h += 2;
4405                 t += 2;
4406                 dx = 1;
4407                 refX = isEnd ? 4 : 1;
4408                 attr = {
4409                     fill: "none",
4410                     stroke: attrs.stroke
4411                 };
4412             } else {
4413                 refX = dx = w / 2;
4414                 attr = {
4415                     fill: attrs.stroke,
4416                     stroke: "none"
4417                 };
4418             }
4419             if (o._.arrows) {
4420                 if (isEnd) {
4421                     o._.arrows.endPath && markerCounter[o._.arrows.endPath]--;
4422                     o._.arrows.endMarker && markerCounter[o._.arrows.endMarker]--;
4423                 } else {
4424                     o._.arrows.startPath && markerCounter[o._.arrows.startPath]--;
4425                     o._.arrows.startMarker && markerCounter[o._.arrows.startMarker]--;
4426                 }
4427             } else {
4428                 o._.arrows = {};
4429             }
4430             if (type != "none") {
4431                 var pathId = "raphael-marker-" + type,
4432                     markerId = "raphael-marker-" + se + type + w + h;
4433                 if (!g.doc.getElementById(pathId)) {
4434                     p.defs.appendChild($($("path"), {
4435                         "stroke-linecap": "round",
4436                         d: markers[type],
4437                         id: pathId
4438                     }));
4439                     markerCounter[pathId] = 1;
4440                 } else {
4441                     markerCounter[pathId]++;
4442                 }
4443                 var marker = g.doc.getElementById(markerId),
4444                     use;
4445                 if (!marker) {
4446                     marker = $($("marker"), {
4447                         id: markerId,
4448                         markerHeight: h,
4449                         markerWidth: w,
4450                         orient: "auto",
4451                         refX: refX,
4452                         refY: h / 2
4453                     });
4454                     use = $($("use"), {
4455                         "xlink:href": "#" + pathId,
4456                         transform: (isEnd ? " rotate(180 " + w / 2 + " " + h / 2 + ") " : S) + "scale(" + w / t + "," + h / t + ")",
4457                         "stroke-width": 1 / ((w / t + h / t) / 2)
4458                     });
4459                     marker.appendChild(use);
4460                     p.defs.appendChild(marker);
4461                     markerCounter[markerId] = 1;
4462                 } else {
4463                     markerCounter[markerId]++;
4464                     use = marker.getElementsByTagName("use")[0];
4465                 }
4466                 $(use, attr);
4467                 var delta = dx * (type != "diamond" && type != "oval");
4468                 if (isEnd) {
4469                     from = o._.arrows.startdx * stroke || 0;
4470                     to = R.getTotalLength(attrs.path) - delta * stroke;
4471                 } else {
4472                     from = delta * stroke;
4473                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
4474                 }
4475                 attr = {};
4476                 attr["marker-" + se] = "url(#" + markerId + ")";
4477                 if (to || from) {
4478                     attr.d = Raphael.getSubpath(attrs.path, from, to);
4479                 }
4480                 $(node, attr);
4481                 o._.arrows[se + "Path"] = pathId;
4482                 o._.arrows[se + "Marker"] = markerId;
4483                 o._.arrows[se + "dx"] = delta;
4484                 o._.arrows[se + "Type"] = type;
4485                 o._.arrows[se + "String"] = value;
4486             } else {
4487                 if (isEnd) {
4488                     from = o._.arrows.startdx * stroke || 0;
4489                     to = R.getTotalLength(attrs.path) - from;
4490                 } else {
4491                     from = 0;
4492                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
4493                 }
4494                 o._.arrows[se + "Path"] && $(node, {d: Raphael.getSubpath(attrs.path, from, to)});
4495                 delete o._.arrows[se + "Path"];
4496                 delete o._.arrows[se + "Marker"];
4497                 delete o._.arrows[se + "dx"];
4498                 delete o._.arrows[se + "Type"];
4499                 delete o._.arrows[se + "String"];
4500             }
4501             for (attr in markerCounter) if (markerCounter[has](attr) && !markerCounter[attr]) {
4502                 var item = g.doc.getElementById(attr);
4503                 item && item.parentNode.removeChild(item);
4504             }
4505         }
4506     },
4507     setFillAndStroke = function (o, params) {
4508         var dasharray = {
4509                 "": [0],
4510                 "none": [0],
4511                 "-": [3, 1],
4512                 ".": [1, 1],
4513                 "-.": [3, 1, 1, 1],
4514                 "-..": [3, 1, 1, 1, 1, 1],
4515                 ". ": [1, 3],
4516                 "- ": [4, 3],
4517                 "--": [8, 3],
4518                 "- .": [4, 3, 1, 3],
4519                 "--.": [8, 3, 1, 3],
4520                 "--..": [8, 3, 1, 3, 1, 3]
4521             },
4522             node = o.node,
4523             attrs = o.attrs,
4524             addDashes = function (o, value) {
4525                 value = dasharray[lowerCase.call(value)];
4526                 if (value) {
4527                     var width = o.attrs["stroke-width"] || "1",
4528                         butt = {round: width, square: width, butt: 0}[o.attrs["stroke-linecap"] || params["stroke-linecap"]] || 0,
4529                         dashes = [],
4530                         i = value.length;
4531                     while (i--) {
4532                         dashes[i] = value[i] * width + ((i % 2) ? 1 : -1) * butt;
4533                     }
4534                     $(node, {"stroke-dasharray": dashes.join(",")});
4535                 }
4536             };
4537         for (var att in params) {
4538             if (params[has](att)) {
4539                 if (!R._availableAttrs[has](att)) {
4540                     continue;
4541                 }
4542                 var value = params[att];
4543                 attrs[att] = value;
4544                 switch (att) {
4545                     case "blur":
4546                         o.blur(value);
4547                         break;
4548                     case "href":
4549                     case "title":
4550                     case "target":
4551                         var pn = node.parentNode;
4552                         if (lowerCase.call(pn.tagName) != "a") {
4553                             var hl = $("a");
4554                             pn.insertBefore(hl, node);
4555                             hl.appendChild(node);
4556                             pn = hl;
4557                         }
4558                         if (att == "target" && value == "blank") {
4559                             pn.setAttributeNS(xlink, "show", "new");
4560                         } else {
4561                             pn.setAttributeNS(xlink, att, value);
4562                         }
4563                         break;
4564                     case "cursor":
4565                         node.style.cursor = value;
4566                         break;
4567                     case "transform":
4568                         o.transform(value);
4569                         break;
4570                     case "arrow-start":
4571                         addArrow(o, value);
4572                         break;
4573                     case "arrow-end":
4574                         addArrow(o, value, 1);
4575                         break;
4576                     case "clip-rect":
4577                         var rect = Str(value).split(separator);
4578                         if (rect.length == 4) {
4579                             o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode);
4580                             var el = $("clipPath"),
4581                                 rc = $("rect");
4582                             el.id = R._createUUID();
4583                             $(rc, {
4584                                 x: rect[0],
4585                                 y: rect[1],
4586                                 width: rect[2],
4587                                 height: rect[3]
4588                             });
4589                             el.appendChild(rc);
4590                             o.paper.defs.appendChild(el);
4591                             $(node, {"clip-path": "url(#" + el.id + ")"});
4592                             o.clip = rc;
4593                         }
4594                         if (!value) {
4595                             var clip = g.doc.getElementById(node.getAttribute("clip-path").replace(/(^url\(#|\)$)/g, E));
4596                             clip && clip.parentNode.removeChild(clip);
4597                             $(node, {"clip-path": E});
4598                             delete o.clip;
4599                         }
4600                     break;
4601                     case "path":
4602                         if (o.type == "path") {
4603                             $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
4604                             o._.dirty = 1;
4605                             if (o._.arrows) {
4606                                 "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
4607                                 "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
4608                             }
4609                         }
4610                         break;
4611                     case "width":
4612                         node.setAttribute(att, value);
4613                         o._.dirty = 1;
4614                         if (attrs.fx) {
4615                             att = "x";
4616                             value = attrs.x;
4617                         } else {
4618                             break;
4619                         }
4620                     case "x":
4621                         if (attrs.fx) {
4622                             value = -attrs.x - (attrs.width || 0);
4623                         }
4624                     case "rx":
4625                         if (att == "rx" && o.type == "rect") {
4626                             break;
4627                         }
4628                     case "cx":
4629                         node.setAttribute(att, value);
4630                         o.pattern && updatePosition(o);
4631                         o._.dirty = 1;
4632                         break;
4633                     case "height":
4634                         node.setAttribute(att, value);
4635                         o._.dirty = 1;
4636                         if (attrs.fy) {
4637                             att = "y";
4638                             value = attrs.y;
4639                         } else {
4640                             break;
4641                         }
4642                     case "y":
4643                         if (attrs.fy) {
4644                             value = -attrs.y - (attrs.height || 0);
4645                         }
4646                     case "ry":
4647                         if (att == "ry" && o.type == "rect") {
4648                             break;
4649                         }
4650                     case "cy":
4651                         node.setAttribute(att, value);
4652                         o.pattern && updatePosition(o);
4653                         o._.dirty = 1;
4654                         break;
4655                     case "r":
4656                         if (o.type == "rect") {
4657                             $(node, {rx: value, ry: value});
4658                         } else {
4659                             node.setAttribute(att, value);
4660                         }
4661                         o._.dirty = 1;
4662                         break;
4663                     case "src":
4664                         if (o.type == "image") {
4665                             node.setAttributeNS(xlink, "href", value);
4666                         }
4667                         break;
4668                     case "stroke-width":
4669                         if (o._.sx != 1 || o._.sy != 1) {
4670                             value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
4671                         }
4672                         if (o.paper._vbSize) {
4673                             value *= o.paper._vbSize;
4674                         }
4675                         node.setAttribute(att, value);
4676                         if (attrs["stroke-dasharray"]) {
4677                             addDashes(o, attrs["stroke-dasharray"]);
4678                         }
4679                         if (o._.arrows) {
4680                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
4681                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
4682                         }
4683                         break;
4684                     case "stroke-dasharray":
4685                         addDashes(o, value);
4686                         break;
4687                     case "fill":
4688                         var isURL = Str(value).match(R._ISURL);
4689                         if (isURL) {
4690                             el = $("pattern");
4691                             var ig = $("image");
4692                             el.id = R._createUUID();
4693                             $(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1});
4694                             $(ig, {x: 0, y: 0, "xlink:href": isURL[1]});
4695                             el.appendChild(ig);
4696
4697                             (function (el) {
4698                                 R._preload(isURL[1], function () {
4699                                     var w = this.offsetWidth,
4700                                         h = this.offsetHeight;
4701                                     $(el, {width: w, height: h});
4702                                     $(ig, {width: w, height: h});
4703                                     o.paper.safari();
4704                                 });
4705                             })(el);
4706                             o.paper.defs.appendChild(el);
4707                             node.style.fill = "url(#" + el.id + ")";
4708                             $(node, {fill: "url(#" + el.id + ")"});
4709                             o.pattern = el;
4710                             o.pattern && updatePosition(o);
4711                             break;
4712                         }
4713                         var clr = R.getRGB(value);
4714                         if (!clr.error) {
4715                             delete params.gradient;
4716                             delete attrs.gradient;
4717                             !R.is(attrs.opacity, "undefined") &&
4718                                 R.is(params.opacity, "undefined") &&
4719                                 $(node, {opacity: attrs.opacity});
4720                             !R.is(attrs["fill-opacity"], "undefined") &&
4721                                 R.is(params["fill-opacity"], "undefined") &&
4722                                 $(node, {"fill-opacity": attrs["fill-opacity"]});
4723                         } else if ((o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value)) {
4724                             if ("opacity" in attrs || "fill-opacity" in attrs) {
4725                                 var gradient = g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
4726                                 if (gradient) {
4727                                     var stops = gradient.getElementsByTagName("stop");
4728                                     $(stops[stops.length - 1], {"stop-opacity": ("opacity" in attrs ? attrs.opacity : 1) * ("fill-opacity" in attrs ? attrs["fill-opacity"] : 1)});
4729                                 }
4730                             }
4731                             attrs.gradient = value;
4732                             attrs.fill = "none";
4733                             break;
4734                         }
4735                         clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
4736                     case "stroke":
4737                         clr = R.getRGB(value);
4738                         node.setAttribute(att, clr.hex);
4739                         att == "stroke" && clr[has]("opacity") && $(node, {"stroke-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
4740                         if (att == "stroke" && o._.arrows) {
4741                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
4742                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
4743                         }
4744                         break;
4745                     case "gradient":
4746                         (o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value);
4747                         break;
4748                     case "opacity":
4749                         if (attrs.gradient && !attrs[has]("stroke-opacity")) {
4750                             $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
4751                         }
4752                         // fall
4753                     case "fill-opacity":
4754                         if (attrs.gradient) {
4755                             gradient = g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
4756                             if (gradient) {
4757                                 stops = gradient.getElementsByTagName("stop");
4758                                 $(stops[stops.length - 1], {"stop-opacity": value});
4759                             }
4760                             break;
4761                         }
4762                     default:
4763                         att == "font-size" && (value = toInt(value, 10) + "px");
4764                         var cssrule = att.replace(/(\-.)/g, function (w) {
4765                             return w.substring(1).toUpperCase();
4766                         });
4767                         node.style[cssrule] = value;
4768                         o._.dirty = 1;
4769                         node.setAttribute(att, value);
4770                         break;
4771                 }
4772             }
4773         }
4774
4775         tuneText(o, params);
4776     },
4777     leading = 1.2,
4778     tuneText = function (el, params) {
4779         if (el.type != "text" || !(params[has]("text") || params[has]("font") || params[has]("font-size") || params[has]("x") || params[has]("y"))) {
4780             return;
4781         }
4782         var a = el.attrs,
4783             node = el.node,
4784             fontSize = node.firstChild ? toInt(R._g.doc.defaultView.getComputedStyle(node.firstChild, E).getPropertyValue("font-size"), 10) : 10;
4785
4786         if (params[has]("text")) {
4787             a.text = params.text;
4788             while (node.firstChild) {
4789                 node.removeChild(node.firstChild);
4790             }
4791             var texts = Str(params.text).split("\n"),
4792                 tspans = [],
4793                 tspan;
4794             for (var i = 0, ii = texts.length; i < ii; i++) {
4795                 tspan = $("tspan");
4796                 i && $(tspan, {dy: fontSize * leading, x: a.x});
4797                 tspan.appendChild(R._g.doc.createTextNode(texts[i]));
4798                 node.appendChild(tspan);
4799                 tspans[i] = tspan;
4800             }
4801         } else {
4802             tspans = node.getElementsByTagName("tspan");
4803             for (i = 0, ii = tspans.length; i < ii; i++) if (i) {
4804                 $(tspans[i], {dy: fontSize * leading, x: a.x});
4805             } else {
4806                 $(tspans[0], {dy: 0});
4807             }
4808         }
4809         $(node, {x: a.x, y: a.y});
4810         el._.dirty = 1;
4811         var bb = el._getBBox(),
4812             dif = a.y - (bb.y + bb.height / 2);
4813         dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
4814     },
4815     Element = function (node, svg) {
4816         var X = 0,
4817             Y = 0;
4818         /*\
4819          * Element.node
4820          [ property (object) ]
4821          **
4822          * Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
4823          > Usage
4824          | // draw a circle at coordinate 10,10 with radius of 10
4825          | var c = paper.circle(10, 10, 10);
4826          | c.node.onclick = function () {
4827          |     c.attr("fill", "red");
4828          | };
4829         \*/
4830         this[0] = this.node = node;
4831         /*\
4832          * Element.raphael
4833          [ property (object) ]
4834          **
4835          * Internal reference to @Raphael object. In case it is not available.
4836          > Usage
4837          | Raphael.el.red = function () {
4838          |     var hsb = this.paper.raphael.rgb2hsb(this.attr("fill"));
4839          |     hsb.h = 1;
4840          |     this.attr({fill: this.paper.raphael.hsb2rgb(hsb).hex});
4841          | }
4842         \*/
4843         node.raphael = true;
4844         /*\
4845          * Element.id
4846          [ property (number) ]
4847          **
4848          * Unique id of the element. Especially usesful when you want to listen to events of the element, 
4849          * because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
4850         \*/
4851         this.id = R._oid++;
4852         node.raphaelid = this.id;
4853         this.matrix = R.matrix();
4854         this.realPath = null;
4855         /*\
4856          * Element.paper
4857          [ property (object) ]
4858          **
4859          * Internal reference to “paper” where object drawn. Mainly for use in plugins and element extensions.
4860          > Usage
4861          | Raphael.el.cross = function () {
4862          |     this.attr({fill: "red"});
4863          |     this.paper.path("M10,10L50,50M50,10L10,50")
4864          |         .attr({stroke: "red"});
4865          | }
4866         \*/
4867         this.paper = svg;
4868         this.attrs = this.attrs || {};
4869         this._ = {
4870             transform: [],
4871             sx: 1,
4872             sy: 1,
4873             deg: 0,
4874             dx: 0,
4875             dy: 0,
4876             dirty: 1
4877         };
4878         !svg.bottom && (svg.bottom = this);
4879         /*\
4880          * Element.prev
4881          [ property (object) ]
4882          **
4883          * Reference to the previous element in the hierarchy.
4884         \*/
4885         this.prev = svg.top;
4886         svg.top && (svg.top.next = this);
4887         svg.top = this;
4888         /*\
4889          * Element.next
4890          [ property (object) ]
4891          **
4892          * Reference to the next element in the hierarchy.
4893         \*/
4894         this.next = null;
4895     },
4896     elproto = R.el;
4897
4898     Element.prototype = elproto;
4899     elproto.constructor = Element;
4900
4901     R._engine.path = function (pathString, SVG) {
4902         var el = $("path");
4903         SVG.canvas && SVG.canvas.appendChild(el);
4904         var p = new Element(el, SVG);
4905         p.type = "path";
4906         setFillAndStroke(p, {fill: "none", stroke: "#000", path: pathString});
4907         return p;
4908     };
4909     /*\
4910      * Element.rotate
4911      [ method ]
4912      **
4913      * Adds rotation by given angle around given point to the list of
4914      * transformations of the element.
4915      > Parameters
4916      - deg (number) angle in degrees
4917      - cx (number) #optional x coordinate of the centre of rotation
4918      - cy (number) #optional y coordinate of the centre of rotation
4919      * If cx & cy aren’t specified centre of the shape is used as a point of rotation.
4920      = (object) @Element
4921     \*/
4922     elproto.rotate = function (deg, cx, cy) {
4923         if (this.removed) {
4924             return this;
4925         }
4926         deg = Str(deg).split(separator);
4927         if (deg.length - 1) {
4928             cx = toFloat(deg[1]);
4929             cy = toFloat(deg[2]);
4930         }
4931         deg = toFloat(deg[0]);
4932         (cy == null) && (cx = cy);
4933         if (cx == null || cy == null) {
4934             var bbox = this.getBBox(1);
4935             cx = bbox.x + bbox.width / 2;
4936             cy = bbox.y + bbox.height / 2;
4937         }
4938         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
4939         return this;
4940     };
4941     /*\
4942      * Element.scale
4943      [ method ]
4944      **
4945      * Adds scale by given amount relative to given point to the list of
4946      * transformations of the element.
4947      > Parameters
4948      - sx (number) horisontal scale amount
4949      - sy (number) vertical scale amount
4950      - cx (number) #optional x coordinate of the centre of scale
4951      - cy (number) #optional y coordinate of the centre of scale
4952      * If cx & cy aren’t specified centre of the shape is used instead.
4953      = (object) @Element
4954     \*/
4955     elproto.scale = function (sx, sy, cx, cy) {
4956         if (this.removed) {
4957             return this;
4958         }
4959         sx = Str(sx).split(separator);
4960         if (sx.length - 1) {
4961             sy = toFloat(sx[1]);
4962             cx = toFloat(sx[2]);
4963             cy = toFloat(sx[3]);
4964         }
4965         sx = toFloat(sx[0]);
4966         (sy == null) && (sy = sx);
4967         (cy == null) && (cx = cy);
4968         if (cx == null || cy == null) {
4969             var bbox = this.getBBox(1);
4970         }
4971         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
4972         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
4973         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
4974         return this;
4975     };
4976     /*\
4977      * Element.translate
4978      [ method ]
4979      **
4980      * Adds translation by given amount to the list of transformations of the element.
4981      > Parameters
4982      - dx (number) horisontal shift
4983      - dy (number) vertical shift
4984      = (object) @Element
4985     \*/
4986     elproto.translate = function (dx, dy) {
4987         if (this.removed) {
4988             return this;
4989         }
4990         dx = Str(dx).split(separator);
4991         if (dx.length - 1) {
4992             dy = toFloat(dx[1]);
4993         }
4994         dx = toFloat(dx[0]) || 0;
4995         dy = +dy || 0;
4996         this.transform(this._.transform.concat([["t", dx, dy]]));
4997         return this;
4998     };
4999     /*\
5000      * Element.transform
5001      [ method ]
5002      **
5003      * Adds transformation to the element which is separate to other attributes,
5004      * i.e. translation doesn’t change `x` or `y` of the rectange. The format
5005      * of transformation string is similar to the path string syntax:
5006      | "t100,100r30,100,100s2,2,100,100r45s1.5"
5007      * Each letter is a command. There are four commands: `t` is for translate, `r` is for rotate, `s` is for
5008      * scale and `m` is for matrix.
5009      *
5010      * So, the example line above could be read like “translate by 100, 100; rotate 30° around 100, 100; scale twice around 100, 100;
5011      * rotate 45° around centre; scale 1.5 times relative to centre”. As you can see rotate and scale commands have origin
5012      * coordinates as optional parameters, the default is the centre point of the element.
5013      * Matrix accepts six parameters.
5014      > Usage
5015      | var el = paper.rect(10, 20, 300, 200);
5016      | // translate 100, 100, rotate 45°, translate -100, 0
5017      | el.transform("t100,100r45t-100,0");
5018      | // if you want you can append or prepend transformations
5019      | el.transform("...t50,50");
5020      | el.transform("s2...");
5021      | // or even wrap
5022      | el.transform("t50,50...t-50-50");
5023      | // to reset transformation call method with empty string
5024      | el.transform("");
5025      | // to get current value call it without parameters
5026      | console.log(el.transform());
5027      > Parameters
5028      - tstr (string) #optional transformation string
5029      * If tstr isn’t specified
5030      = (string) current transformation string
5031      * else
5032      = (object) @Element
5033     \*/
5034     elproto.transform = function (tstr) {
5035         var _ = this._;
5036         if (tstr == null) {
5037             return _.transform;
5038         }
5039         R._extractTransform(this, tstr);
5040
5041         this.clip && $(this.clip, {transform: this.matrix.invert()});
5042         this.pattern && updatePosition(this);
5043         this.node && $(this.node, {transform: this.matrix});
5044     
5045         if (_.sx != 1 || _.sy != 1) {
5046             var sw = this.attrs[has]("stroke-width") ? this.attrs["stroke-width"] : 1;
5047             this.attr({"stroke-width": sw});
5048         }
5049
5050         return this;
5051     };
5052     /*\
5053      * Element.hide
5054      [ method ]
5055      **
5056      * Makes element invisible. See @Element.show.
5057      = (object) @Element
5058     \*/
5059     elproto.hide = function () {
5060         !this.removed && this.paper.safari(this.node.style.display = "none");
5061         return this;
5062     };
5063     /*\
5064      * Element.show
5065      [ method ]
5066      **
5067      * Makes element visible. See @Element.hide.
5068      = (object) @Element
5069     \*/
5070     elproto.show = function () {
5071         !this.removed && this.paper.safari(this.node.style.display = "");
5072         return this;
5073     };
5074     /*\
5075      * Element.remove
5076      [ method ]
5077      **
5078      * Removes element form the paper.
5079     \*/
5080     elproto.remove = function () {
5081         if (this.removed) {
5082             return;
5083         }
5084         eve.unbind("*.*." + this.id);
5085         R._tear(this, this.paper);
5086         this.node.parentNode.removeChild(this.node);
5087         for (var i in this) {
5088             delete this[i];
5089         }
5090         this.removed = true;
5091     };
5092     elproto._getBBox = function () {
5093         if (this.node.style.display == "none") {
5094             this.show();
5095             var hide = true;
5096         }
5097         var bbox = {};
5098         try {
5099             bbox = this.node.getBBox();
5100         } catch(e) {
5101             // Firefox 3.0.x plays badly here
5102         } finally {
5103             bbox = bbox || {};
5104         }
5105         hide && this.hide();
5106         return bbox;
5107     };
5108     /*\
5109      * Element.attr
5110      [ method ]
5111      **
5112      * Sets the attributes of the element.
5113      > Parameters
5114      - attrName (string) attribute’s name
5115      - value (string) value
5116      * or
5117      - params (object) object of name/value pairs
5118      * or
5119      - attrName (string) attribute’s name
5120      * or
5121      - attrNames (array) in this case method returns array of current values for given attribute names
5122      = (object) @Element if attrsName & value or params are passed in.
5123      = (...) value of the attribute if only attrsName is passed in.
5124      = (array) array of values of the attribute if attrsNames is passed in.
5125      = (object) object of attributes if nothing is passed in.
5126      > Possible parameters
5127      # <p>Please refer to the <a href="http://www.w3.org/TR/SVG/" title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
5128      o arrow-end (string) arrowhead on the end of the path. The format for string is `<type>[-<width>[-<length>]]`. Possible types: `classic`, `block`, `open`, `oval`, `diamond`, `none`, width: `wide`, `narrow`, `midium`, length: `long`, `short`, `midium`.
5129      o clip-rect (string) comma or space separated values: x, y, width and height
5130      o cursor (string) CSS type of the cursor
5131      o cx (number)
5132      o cy (number)
5133      o fill (string) colour, gradient or image
5134      o fill-opacity (number)
5135      o font (string)
5136      o font-family (string)
5137      o font-size (number) font size in pixels
5138      o font-weight (string)
5139      o height (number)
5140      o href (string) URL, if specified element behaves as hyperlink
5141      o opacity (number)
5142      o path (string) SVG path string format
5143      o r (number)
5144      o rx (number)
5145      o ry (number)
5146      o src (string) image URL, only works for @Element.image element
5147      o stroke (string) stroke colour
5148      o stroke-dasharray (string) [“”, “`-`”, “`.`”, “`-.`”, “`-..`”, “`. `”, “`- `”, “`--`”, “`- .`”, “`--.`”, “`--..`”]
5149      o stroke-linecap (string) [“`butt`”, “`square`”, “`round`”]
5150      o stroke-linejoin (string) [“`bevel`”, “`round`”, “`miter`”]
5151      o stroke-miterlimit (number)
5152      o stroke-opacity (number)
5153      o stroke-width (number) stroke width in pixels, default is '1'
5154      o target (string) used with href
5155      o text (string) contents of the text element. Use `\n` for multiline text
5156      o text-anchor (string) [“`start`”, “`middle`”, “`end`”], default is “`middle`”
5157      o title (string) will create tooltip with a given text
5158      o transform (string) see @Element.transform
5159      o width (number)
5160      o x (number)
5161      o y (number)
5162      > Gradients
5163      * Linear gradient format: “`‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`90-#fff-#000`” – 90°
5164      * gradient from white to black or “`0-#fff-#f00:20-#000`” – 0° gradient from white via red (at 20%) to black.
5165      *
5166      * radial gradient: “`r[(‹fx›, ‹fy›)]‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`r#fff-#000`” –
5167      * gradient from white to black or “`r(0.25, 0.75)#fff-#000`” – gradient from white to black with focus point
5168      * at 0.25, 0.75. Focus point coordinates are in 0..1 range. Radial gradients can only be applied to circles and ellipses.
5169      > Path String
5170      # <p>Please refer to <a href="http://www.w3.org/TR/SVG/paths.html#PathData" title="Details of a path’s data attribute’s format are described in the SVG specification.">SVG documentation regarding path string</a>. Raphaël fully supports it.</p>
5171      > Colour Parsing
5172      # <ul>
5173      #     <li>Colour name (“<code>red</code>”, “<code>green</code>”, “<code>cornflowerblue</code>”, etc)</li>
5174      #     <li>#••• — shortened HTML colour: (“<code>#000</code>”, “<code>#fc0</code>”, etc)</li>
5175      #     <li>#•••••• — full length HTML colour: (“<code>#000000</code>”, “<code>#bd2300</code>”)</li>
5176      #     <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<code>rgb(200,&nbsp;100,&nbsp;0)</code>”)</li>
5177      #     <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<code>rgb(100%,&nbsp;175%,&nbsp;0%)</code>”)</li>
5178      #     <li>rgba(•••, •••, •••, •••) — red, green and blue channels’ values: (“<code>rgba(200,&nbsp;100,&nbsp;0, .5)</code>”)</li>
5179      #     <li>rgba(•••%, •••%, •••%, •••%) — same as above, but in %: (“<code>rgba(100%,&nbsp;175%,&nbsp;0%, 50%)</code>”)</li>
5180      #     <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<code>hsb(0.5,&nbsp;0.25,&nbsp;1)</code>”)</li>
5181      #     <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
5182      #     <li>hsba(•••, •••, •••, •••) — same as above, but with opacity</li>
5183      #     <li>hsl(•••, •••, •••) — almost the same as hsb, see <a href="http://en.wikipedia.org/wiki/HSL_and_HSV" title="HSL and HSV - Wikipedia, the free encyclopedia">Wikipedia page</a></li>
5184      #     <li>hsl(•••%, •••%, •••%) — same as above, but in %</li>
5185      #     <li>hsla(•••, •••, •••) — same as above, but with opacity</li>
5186      #     <li>Optionally for hsb and hsl you could specify hue as a degree: “<code>hsl(240deg,&nbsp;1,&nbsp;.5)</code>” or, if you want to go fancy, “<code>hsl(240°,&nbsp;1,&nbsp;.5)</code>”</li>
5187      # </ul>
5188     \*/
5189     elproto.attr = function (name, value) {
5190         if (this.removed) {
5191             return this;
5192         }
5193         if (name == null) {
5194             var res = {};
5195             for (var a in this.attrs) if (this.attrs[has](a)) {
5196                 res[a] = this.attrs[a];
5197             }
5198             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
5199             res.transform = this._.transform;
5200             return res;
5201         }
5202         if (value == null && R.is(name, "string")) {
5203             if (name == "fill" && this.attrs.fill == "none" && this.attrs.gradient) {
5204                 return this.attrs.gradient;
5205             }
5206             if (name == "transform") {
5207                 return this._.transform;
5208             }
5209             var names = name.split(separator),
5210                 out = {};
5211             for (var i = 0, ii = names.length; i < ii; i++) {
5212                 name = names[i];
5213                 if (name in this.attrs) {
5214                     out[name] = this.attrs[name];
5215                 } else if (R.is(this.paper.customAttributes[name], "function")) {
5216                     out[name] = this.paper.customAttributes[name].def;
5217                 } else {
5218                     out[name] = R._availableAttrs[name];
5219                 }
5220             }
5221             return ii - 1 ? out : out[names[0]];
5222         }
5223         if (value == null && R.is(name, "array")) {
5224             out = {};
5225             for (i = 0, ii = name.length; i < ii; i++) {
5226                 out[name[i]] = this.attr(name[i]);
5227             }
5228             return out;
5229         }
5230         if (value != null) {
5231             var params = {};
5232             params[name] = value;
5233         } else if (name != null && R.is(name, "object")) {
5234             params = name;
5235         }
5236         for (var key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
5237             var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
5238             this.attrs[key] = params[key];
5239             for (var subkey in par) if (par[has](subkey)) {
5240                 params[subkey] = par[subkey];
5241             }
5242         }
5243         setFillAndStroke(this, params);
5244         return this;
5245     };
5246     /*\
5247      * Element.toFront
5248      [ method ]
5249      **
5250      * Moves the element so it is the closest to the viewer’s eyes, on top of other elements.
5251      = (object) @Element
5252     \*/
5253     elproto.toFront = function () {
5254         if (this.removed) {
5255             return this;
5256         }
5257         this.node.parentNode.appendChild(this.node);
5258         var svg = this.paper;
5259         svg.top != this && R._tofront(this, svg);
5260         return this;
5261     };
5262     /*\
5263      * Element.toBack
5264      [ method ]
5265      **
5266      * Moves the element so it is the furthest from the viewer’s eyes, behind other elements.
5267      = (object) @Element
5268     \*/
5269     elproto.toBack = function () {
5270         if (this.removed) {
5271             return this;
5272         }
5273         if (this.node.parentNode.firstChild != this.node) {
5274             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
5275             R._toback(this, this.paper);
5276             var svg = this.paper;
5277         }
5278         return this;
5279     };
5280     /*\
5281      * Element.insertAfter
5282      [ method ]
5283      **
5284      * Inserts current object after the given one.
5285      = (object) @Element
5286     \*/
5287     elproto.insertAfter = function (element) {
5288         if (this.removed) {
5289             return this;
5290         }
5291         var node = element.node || element[element.length - 1].node;
5292         if (node.nextSibling) {
5293             node.parentNode.insertBefore(this.node, node.nextSibling);
5294         } else {
5295             node.parentNode.appendChild(this.node);
5296         }
5297         R._insertafter(this, element, this.paper);
5298         return this;
5299     };
5300     /*\
5301      * Element.insertBefore
5302      [ method ]
5303      **
5304      * Inserts current object before the given one.
5305      = (object) @Element
5306     \*/
5307     elproto.insertBefore = function (element) {
5308         if (this.removed) {
5309             return this;
5310         }
5311         var node = element.node || element[0].node;
5312         node.parentNode.insertBefore(this.node, node);
5313         R._insertbefore(this, element, this.paper);
5314         return this;
5315     };
5316     elproto.blur = function (size) {
5317         // Experimental. No Safari support. Use it on your own risk.
5318         var t = this;
5319         if (+size !== 0) {
5320             var fltr = $("filter"),
5321                 blur = $("feGaussianBlur");
5322             t.attrs.blur = size;
5323             fltr.id = R._createUUID();
5324             $(blur, {stdDeviation: +size || 1.5});
5325             fltr.appendChild(blur);
5326             t.paper.defs.appendChild(fltr);
5327             t._blur = fltr;
5328             $(t.node, {filter: "url(#" + fltr.id + ")"});
5329         } else {
5330             if (t._blur) {
5331                 t._blur.parentNode.removeChild(t._blur);
5332                 delete t._blur;
5333                 delete t.attrs.blur;
5334             }
5335             t.node.removeAttribute("filter");
5336         }
5337     };
5338     R._engine.circle = function (svg, x, y, r) {
5339         var el = $("circle");
5340         svg.canvas && svg.canvas.appendChild(el);
5341         var res = new Element(el, svg);
5342         res.attrs = {cx: x, cy: y, r: r, fill: "none", stroke: "#000"};
5343         res.type = "circle";
5344         $(el, res.attrs);
5345         return res;
5346     };
5347     R._engine.rect = function (svg, x, y, w, h, r) {
5348         var el = $("rect");
5349         svg.canvas && svg.canvas.appendChild(el);
5350         var res = new Element(el, svg);
5351         res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
5352         res.type = "rect";
5353         $(el, res.attrs);
5354         return res;
5355     };
5356     R._engine.ellipse = function (svg, x, y, rx, ry) {
5357         var el = $("ellipse");
5358         svg.canvas && svg.canvas.appendChild(el);
5359         var res = new Element(el, svg);
5360         res.attrs = {cx: x, cy: y, rx: rx, ry: ry, fill: "none", stroke: "#000"};
5361         res.type = "ellipse";
5362         $(el, res.attrs);
5363         return res;
5364     };
5365     R._engine.image = function (svg, src, x, y, w, h) {
5366         var el = $("image");
5367         $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
5368         el.setAttributeNS(xlink, "href", src);
5369         svg.canvas && svg.canvas.appendChild(el);
5370         var res = new Element(el, svg);
5371         res.attrs = {x: x, y: y, width: w, height: h, src: src};
5372         res.type = "image";
5373         return res;
5374     };
5375     R._engine.text = function (svg, x, y, text) {
5376         var el = $("text");
5377         // $(el, {x: x, y: y, "text-anchor": "middle"});
5378         svg.canvas && svg.canvas.appendChild(el);
5379         var res = new Element(el, svg);
5380         res.attrs = {
5381             x: x,
5382             y: y,
5383             "text-anchor": "middle",
5384             text: text,
5385             font: R._availableAttrs.font,
5386             stroke: "none",
5387             fill: "#000"
5388         };
5389         res.type = "text";
5390         setFillAndStroke(res, res.attrs);
5391         return res;
5392     };
5393     R._engine.setSize = function (width, height) {
5394         this.width = width || this.width;
5395         this.height = height || this.height;
5396         this.canvas.setAttribute("width", this.width);
5397         this.canvas.setAttribute("height", this.height);
5398         if (this._viewBox) {
5399             this.setViewBox.apply(this, this._viewBox);
5400         }
5401         return this;
5402     };
5403     R._engine.create = function () {
5404         var con = R._getContainer.apply(0, arguments),
5405             container = con && con.container,
5406             x = con.x,
5407             y = con.y,
5408             width = con.width,
5409             height = con.height;
5410         if (!container) {
5411             throw new Error("SVG container not found.");
5412         }
5413         var cnvs = $("svg"),
5414             css = "overflow:hidden;",
5415             isFloating;
5416         x = x || 0;
5417         y = y || 0;
5418         width = width || 512;
5419         height = height || 342;
5420         $(cnvs, {
5421             height: height,
5422             version: 1.1,
5423             width: width,
5424             xmlns: "http://www.w3.org/2000/svg"
5425         });
5426         if (container == 1) {
5427             cnvs.style.cssText = css + "position:absolute;left:" + x + "px;top:" + y + "px";
5428             R._g.doc.body.appendChild(cnvs);
5429             isFloating = 1;
5430         } else {
5431             cnvs.style.cssText = css + "position:relative";
5432             if (container.firstChild) {
5433                 container.insertBefore(cnvs, container.firstChild);
5434             } else {
5435                 container.appendChild(cnvs);
5436             }
5437         }
5438         container = new R._Paper;
5439         container.width = width;
5440         container.height = height;
5441         container.canvas = cnvs;
5442         // plugins.call(container, container, R.fn);
5443         container.clear();
5444         container._left = container._top = 0;
5445         isFloating && (container.renderfix = function () {});
5446         container.renderfix();
5447         return container;
5448     };
5449     R._engine.setViewBox = function (x, y, w, h, fit) {
5450         eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
5451         var size = mmax(w / this.width, h / this.height),
5452             top = this.top,
5453             aspectRatio = fit ? "meet" : "xMinYMin",
5454             vb,
5455             sw;
5456         if (x == null) {
5457             if (this._vbSize) {
5458                 size = 1;
5459             }
5460             delete this._vbSize;
5461             vb = "0 0 " + this.width + S + this.height;
5462         } else {
5463             this._vbSize = size;
5464             vb = x + S + y + S + w + S + h;
5465         }
5466         $(this.canvas, {
5467             viewBox: vb,
5468             preserveAspectRatio: aspectRatio
5469         });
5470         while (size && top) {
5471             sw = "stroke-width" in top.attrs ? top.attrs["stroke-width"] : 1;
5472             top.attr({"stroke-width": sw});
5473             top._.dirty = 1;
5474             top._.dirtyT = 1;
5475             top = top.prev;
5476         }
5477         this._viewBox = [x, y, w, h, !!fit];
5478         return this;
5479     };
5480     /*\
5481      * Paper.renderfix
5482      [ method ]
5483      **
5484      * Fixes the issue of Firefox and IE9 regarding subpixel rendering. If paper is dependant
5485      * on other elements after reflow it could shift half pixel which cause for lines to lost their crispness.
5486      * This method fixes the issue.
5487      **
5488        Special thanks to Mariusz Nowak (http://www.medikoo.com/) for this method.
5489     \*/
5490     R.prototype.renderfix = function () {
5491         var cnvs = this.canvas,
5492             s = cnvs.style,
5493             pos = cnvs.getScreenCTM(),
5494             left = -pos.e % 1,
5495             top = -pos.f % 1;
5496         if (left || top) {
5497             if (left) {
5498                 this._left = (this._left + left) % 1;
5499                 s.left = this._left + "px";
5500             }
5501             if (top) {
5502                 this._top = (this._top + top) % 1;
5503                 s.top = this._top + "px";
5504             }
5505         }
5506     };
5507     /*\
5508      * Paper.clear
5509      [ method ]
5510      **
5511      * Clears the paper, i.e. removes all the elements.
5512     \*/
5513     R.prototype.clear = function () {
5514         R.eve("clear", this);
5515         var c = this.canvas;
5516         while (c.firstChild) {
5517             c.removeChild(c.firstChild);
5518         }
5519         this.bottom = this.top = null;
5520         (this.desc = $("desc")).appendChild(R._g.doc.createTextNode("Created with Rapha\xebl " + R.version));
5521         c.appendChild(this.desc);
5522         c.appendChild(this.defs = $("defs"));
5523     };
5524     /*\
5525      * Paper.remove
5526      [ method ]
5527      **
5528      * Removes the paper from the DOM.
5529     \*/
5530     R.prototype.remove = function () {
5531         eve("remove", this);
5532         this.canvas.parentNode && this.canvas.parentNode.removeChild(this.canvas);
5533         for (var i in this) {
5534             this[i] = removed(i);
5535         }
5536     };
5537     var setproto = R.st;
5538     for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) {
5539         setproto[method] = (function (methodname) {
5540             return function () {
5541                 var arg = arguments;
5542                 return this.forEach(function (el) {
5543                     el[methodname].apply(el, arg);
5544                 });
5545             };
5546         })(method);
5547     }
5548 }(window.Raphael);
5549
5550 // ┌─────────────────────────────────────────────────────────────────────┐ \\
5551 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
5552 // ├─────────────────────────────────────────────────────────────────────┤ \\
5553 // │ VML Module                                                          │ \\
5554 // ├─────────────────────────────────────────────────────────────────────┤ \\
5555 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
5556 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
5557 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
5558 // └─────────────────────────────────────────────────────────────────────┘ \\
5559 window.Raphael.vml && function (R) {
5560     var has = "hasOwnProperty",
5561         Str = String,
5562         toFloat = parseFloat,
5563         math = Math,
5564         round = math.round,
5565         mmax = math.max,
5566         mmin = math.min,
5567         abs = math.abs,
5568         fillString = "fill",
5569         separator = /[, ]+/,
5570         S = " ",
5571         E = "";
5572     // VML
5573     var map = {M: "m", L: "l", C: "c", Z: "x", m: "t", l: "r", c: "v", z: "x"},
5574         bites = /([clmz]),?([^clmz]*)/gi,
5575         blurregexp = / progid:\S+Blur\([^\)]+\)/g,
5576         val = /-?[^,\s-]+/g,
5577         cssDot = "position:absolute;left:0;top:0;width:1px;height:1px",
5578         zoom = 21600,
5579         pathTypes = {path: 1, rect: 1},
5580         ovalTypes = {circle: 1, ellipse: 1},
5581         path2vml = function (path) {
5582             var total =  /[ahqstv]/ig,
5583                 command = R._pathToAbsolute;
5584             Str(path).match(total) && (command = path2curve);
5585             total = /[clmz]/g;
5586             if (command == R._pathToAbsolute && !Str(path).match(total)) {
5587                 var res = Str(path).replace(bites, function (all, command, args) {
5588                     var vals = [],
5589                         isMove = lowerCase.call(command) == "m",
5590                         res = map[command];
5591                     args.replace(val, function (value) {
5592                         if (isMove && vals.length == 2) {
5593                             res += vals + map[command == "m" ? "l" : "L"];
5594                             vals = [];
5595                         }
5596                         vals.push(round(value * zoom));
5597                     });
5598                     return res + vals;
5599                 });
5600                 return res;
5601             }
5602             var pa = command(path), p, r;
5603             res = [];
5604             for (var i = 0, ii = pa.length; i < ii; i++) {
5605                 p = pa[i];
5606                 r = pa[i][0].toLowerCase();
5607                 r == "z" && (r = "x");
5608                 for (var j = 1, jj = p.length; j < jj; j++) {
5609                     r += round(p[j] * zoom) + (j != jj - 1 ? "," : E);
5610                 }
5611                 res.push(r);
5612             }
5613             return res.join(S);
5614         },
5615         compensation = function (deg, dx, dy) {
5616             var m = R.matrix();
5617             m.rotate(-deg, .5, .5);
5618             return {
5619                 dx: m.x(dx, dy),
5620                 dy: m.y(dx, dy)
5621             };
5622         },
5623         setCoords = function (p, sx, sy, dx, dy, deg) {
5624             var _ = p._,
5625                 m = p.matrix,
5626                 fillpos = _.fillpos,
5627                 o = p.node,
5628                 s = o.style,
5629                 y = 1,
5630                 flip = "",
5631                 dxdy,
5632                 kx = zoom / sx,
5633                 ky = zoom / sy;
5634             s.visibility = "hidden";
5635             if (!sx || !sy) {
5636                 return;
5637             }
5638             o.coordsize = abs(kx) + S + abs(ky);
5639             s.rotation = deg * (sx * sy < 0 ? -1 : 1);
5640             if (deg) {
5641                 var c = compensation(deg, dx, dy);
5642                 dx = c.dx;
5643                 dy = c.dy;
5644             }
5645             sx < 0 && (flip += "x");
5646             sy < 0 && (flip += " y") && (y = -1);
5647             s.flip = flip;
5648             o.coordorigin = (dx * -kx) + S + (dy * -ky);
5649             if (fillpos || _.fillsize) {
5650                 var fill = o.getElementsByTagName(fillString);
5651                 fill = fill && fill[0];
5652                 o.removeChild(fill);
5653                 if (fillpos) {
5654                     c = compensation(deg, m.x(fillpos[0], fillpos[1]), m.y(fillpos[0], fillpos[1]));
5655                     fill.position = c.dx * y + S + c.dy * y;
5656                 }
5657                 if (_.fillsize) {
5658                     fill.size = _.fillsize[0] * abs(sx) + S + _.fillsize[1] * abs(sy);
5659                 }
5660                 o.appendChild(fill);
5661             }
5662             s.visibility = "visible";
5663         };
5664     R.toString = function () {
5665         return  "Your browser doesn\u2019t support SVG. Falling down to VML.\nYou are running Rapha\xebl " + this.version;
5666     };
5667     addArrow = function (o, value, isEnd) {
5668         var values = Str(value).toLowerCase().split("-"),
5669             se = isEnd ? "end" : "start",
5670             i = values.length,
5671             type = "classic",
5672             w = "medium",
5673             h = "medium";
5674         while (i--) {
5675             switch (values[i]) {
5676                 case "block":
5677                 case "classic":
5678                 case "oval":
5679                 case "diamond":
5680                 case "open":
5681                 case "none":
5682                     type = values[i];
5683                     break;
5684                 case "wide":
5685                 case "narrow": h = values[i]; break;
5686                 case "long":
5687                 case "short": w = values[i]; break;
5688             }
5689         }
5690         var stroke = o.node.getElementsByTagName("stroke")[0];
5691         stroke[se + "arrow"] = type;
5692         stroke[se + "arrowlength"] = w;
5693         stroke[se + "arrowwidth"] = h;
5694     };
5695     setFillAndStroke = function (o, params) {
5696         // o.paper.canvas.style.display = "none";
5697         o.attrs = o.attrs || {};
5698         var node = o.node,
5699             a = o.attrs,
5700             s = node.style,
5701             xy,
5702             newpath = pathTypes[o.type] && (params.x != a.x || params.y != a.y || params.width != a.width || params.height != a.height || params.cx != a.cx || params.cy != a.cy || params.rx != a.rx || params.ry != a.ry || params.r != a.r),
5703             isOval = ovalTypes[o.type] && (a.cx != params.cx || a.cy != params.cy || a.r != params.r || a.rx != params.rx || a.ry != params.ry),
5704             res = o;
5705
5706
5707         for (var par in params) if (params[has](par)) {
5708             a[par] = params[par];
5709         }
5710         if (newpath) {
5711             a.path = R._getPath[o.type](o);
5712             o._.dirty = 1;
5713         }
5714         params.href && (node.href = params.href);
5715         params.title && (node.title = params.title);
5716         params.target && (node.target = params.target);
5717         params.cursor && (s.cursor = params.cursor);
5718         "blur" in params && o.blur(params.blur);
5719         "transform" in params && o.transform(params.transform);
5720         if (params.path && o.type == "path" || newpath) {
5721             node.path = path2vml(a.path);
5722         }
5723         if (isOval) {
5724             var cx = a.cx,
5725                 cy = a.cy,
5726                 rx = a.rx || a.r || 0,
5727                 ry = a.ry || a.r || 0;
5728             node.path = R.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x", round((cx - rx) * zoom), round((cy - ry) * zoom), round((cx + rx) * zoom), round((cy + ry) * zoom), round(cx * zoom));
5729         }
5730         if ("clip-rect" in params) {
5731             var rect = Str(params["clip-rect"]).split(separator);
5732             if (rect.length == 4) {
5733                 rect[2] = +rect[2] + (+rect[0]);
5734                 rect[3] = +rect[3] + (+rect[1]);
5735                 var div = node.clipRect || g.doc.createElement("div"),
5736                     dstyle = div.style,
5737                     group = node.parentNode;
5738                 dstyle.clip = R.format("rect({1}px {2}px {3}px {0}px)", rect);
5739                 if (!node.clipRect) {
5740                     dstyle.position = "absolute";
5741                     dstyle.top = 0;
5742                     dstyle.left = 0;
5743                     dstyle.width = o.paper.width + "px";
5744                     dstyle.height = o.paper.height + "px";
5745                     group.parentNode.insertBefore(div, group);
5746                     div.appendChild(group);
5747                     node.clipRect = div;
5748                 }
5749             }
5750             if (!params["clip-rect"]) {
5751                 node.clipRect && (node.clipRect.style.clip = E);
5752             }
5753         }
5754         if (o.textpath) {
5755             var textpathStyle = o.textpath.style;
5756             params.font && (textpathStyle.font = params.font);
5757             params["font-family"] && (textpathStyle.fontFamily = '"' + params["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g, E) + '"');
5758             params["font-size"] && (textpathStyle.fontSize = params["font-size"]);
5759             params["font-weight"] && (textpathStyle.fontWeight = params["font-weight"]);
5760             params["font-style"] && (textpathStyle.fontStyle = params["font-style"]);
5761         }
5762         if ("arrow-start" in params) {
5763             addArrow(res, params["arrow-start"]);
5764         }
5765         if ("arrow-end" in params) {
5766             addArrow(res, params["arrow-end"], 1);
5767         }
5768         if (params.opacity != null || 
5769             params["stroke-width"] != null ||
5770             params.fill != null ||
5771             params.src != null ||
5772             params.stroke != null ||
5773             params["stroke-width"] != null ||
5774             params["stroke-opacity"] != null ||
5775             params["fill-opacity"] != null ||
5776             params["stroke-dasharray"] != null ||
5777             params["stroke-miterlimit"] != null ||
5778             params["stroke-linejoin"] != null ||
5779             params["stroke-linecap"] != null) {
5780             var fill = node.getElementsByTagName(fillString),
5781                 newfill = false;
5782             fill = fill && fill[0];
5783             !fill && (newfill = fill = createNode(fillString));
5784             if (o.type == "image" && params.src) {
5785                 fill.src = params.src;
5786             }
5787             params.fill && (fill.on = true);
5788             if (fill.on == null || params.fill == "none" || params.fill === null) {
5789                 fill.on = false;
5790             }
5791             if (fill.on && params.fill) {
5792                 var isURL = Str(params.fill).match(R._ISURL);
5793                 if (isURL) {
5794                     fill.parentNode == node && node.removeChild(fill);
5795                     fill.rotate = true;
5796                     fill.src = isURL[1];
5797                     fill.type = "tile";
5798                     var bbox = o.getBBox(1);
5799                     fill.position = bbox.x + S + bbox.y;
5800                     o._.fillpos = [bbox.x, bbox.y];
5801
5802                     R._preload(isURL[1], function () {
5803                         o._.fillsize = [this.offsetWidth, this.offsetHeight];
5804                     });
5805                 } else {
5806                     fill.color = R.getRGB(params.fill).hex;
5807                     fill.src = E;
5808                     fill.type = "solid";
5809                     if (R.getRGB(params.fill).error && (res.type in {circle: 1, ellipse: 1} || Str(params.fill).charAt() != "r") && addGradientFill(res, params.fill, fill)) {
5810                         a.fill = "none";
5811                         a.gradient = params.fill;
5812                         fill.rotate = false;
5813                     }
5814                 }
5815             }
5816             if ("fill-opacity" in params || "opacity" in params) {
5817                 var opacity = ((+a["fill-opacity"] + 1 || 2) - 1) * ((+a.opacity + 1 || 2) - 1) * ((+R.getRGB(params.fill).o + 1 || 2) - 1);
5818                 opacity = mmin(mmax(opacity, 0), 1);
5819                 fill.opacity = opacity;
5820                 if (fill.src) {
5821                     fill.color = "none";
5822                 }
5823             }
5824             node.appendChild(fill);
5825             var stroke = (node.getElementsByTagName("stroke") && node.getElementsByTagName("stroke")[0]),
5826             newstroke = false;
5827             !stroke && (newstroke = stroke = createNode("stroke"));
5828             if ((params.stroke && params.stroke != "none") ||
5829                 params["stroke-width"] ||
5830                 params["stroke-opacity"] != null ||
5831                 params["stroke-dasharray"] ||
5832                 params["stroke-miterlimit"] ||
5833                 params["stroke-linejoin"] ||
5834                 params["stroke-linecap"]) {
5835                 stroke.on = true;
5836             }
5837             (params.stroke == "none" || params.stroke === null || stroke.on == null || params.stroke == 0 || params["stroke-width"] == 0) && (stroke.on = false);
5838             var strokeColor = R.getRGB(params.stroke);
5839             stroke.on && params.stroke && (stroke.color = strokeColor.hex);
5840             opacity = ((+a["stroke-opacity"] + 1 || 2) - 1) * ((+a.opacity + 1 || 2) - 1) * ((+strokeColor.o + 1 || 2) - 1);
5841             var width = (toFloat(params["stroke-width"]) || 1) * .75;
5842             opacity = mmin(mmax(opacity, 0), 1);
5843             params["stroke-width"] == null && (width = a["stroke-width"]);
5844             params["stroke-width"] && (stroke.weight = width);
5845             width && width < 1 && (opacity *= width) && (stroke.weight = 1);
5846             stroke.opacity = opacity;
5847         
5848             params["stroke-linejoin"] && (stroke.joinstyle = params["stroke-linejoin"] || "miter");
5849             stroke.miterlimit = params["stroke-miterlimit"] || 8;
5850             params["stroke-linecap"] && (stroke.endcap = params["stroke-linecap"] == "butt" ? "flat" : params["stroke-linecap"] == "square" ? "square" : "round");
5851             if (params["stroke-dasharray"]) {
5852                 var dasharray = {
5853                     "-": "shortdash",
5854                     ".": "shortdot",
5855                     "-.": "shortdashdot",
5856                     "-..": "shortdashdotdot",
5857                     ". ": "dot",
5858                     "- ": "dash",
5859                     "--": "longdash",
5860                     "- .": "dashdot",
5861                     "--.": "longdashdot",
5862                     "--..": "longdashdotdot"
5863                 };
5864                 stroke.dashstyle = dasharray[has](params["stroke-dasharray"]) ? dasharray[params["stroke-dasharray"]] : E;
5865             }
5866             newstroke && node.appendChild(stroke);
5867         }
5868         if (res.type == "text") {
5869             res.paper.canvas.style.display = E;
5870             var span = res.paper.span,
5871                 m = 100,
5872                 fontSize = a.font && a.font.match(/\d+(?:\.\d*)?(?=px)/);
5873             s = span.style;
5874             a.font && (s.font = a.font);
5875             a["font-family"] && (s.fontFamily = a["font-family"]);
5876             a["font-weight"] && (s.fontWeight = a["font-weight"]);
5877             a["font-style"] && (s.fontStyle = a["font-style"]);
5878             fontSize = toFloat(fontSize ? fontSize[0] : a["font-size"]);
5879             s.fontSize = fontSize * m + "px";
5880             res.textpath.string && (span.innerHTML = Str(res.textpath.string).replace(/</g, "&#60;").replace(/&/g, "&#38;").replace(/\n/g, "<br>"));
5881             var brect = span.getBoundingClientRect();
5882             res.W = a.w = (brect.right - brect.left) / m;
5883             res.H = a.h = (brect.bottom - brect.top) / m;
5884             res.paper.canvas.style.display = "none";
5885             res.X = a.x;
5886             res.Y = a.y + res.H / 2;
5887
5888             ("x" in params || "y" in params) && (res.path.v = R.format("m{0},{1}l{2},{1}", round(a.x * zoom), round(a.y * zoom), round(a.x * zoom) + 1));
5889             var dirtyattrs = ["x", "y", "text", "font", "font-family", "font-weight", "font-style", "font-size"];
5890             for (var d = 0, dd = dirtyattrs.length; d < dd; d++) if (dirtyattrs[d] in params) {
5891                 res._.dirty = 1;
5892                 break;
5893             }
5894         
5895             // text-anchor emulation
5896             switch (a["text-anchor"]) {
5897                 case "start":
5898                     res.textpath.style["v-text-align"] = "left";
5899                     res.bbx = res.W / 2;
5900                 break;
5901                 case "end":
5902                     res.textpath.style["v-text-align"] = "right";
5903                     res.bbx = -res.W / 2;
5904                 break;
5905                 default:
5906                     res.textpath.style["v-text-align"] = "center";
5907                     res.bbx = 0;
5908                 break;
5909             }
5910             res.textpath.style["v-text-kern"] = true;
5911         }
5912         // res.paper.canvas.style.display = E;
5913     };
5914     addGradientFill = function (o, gradient, fill) {
5915         o.attrs = o.attrs || {};
5916         var attrs = o.attrs,
5917             opacity,
5918             oindex,
5919             type = "linear",
5920             fxfy = ".5 .5";
5921         o.attrs.gradient = gradient;
5922         gradient = Str(gradient).replace(R._radial_gradient, function (all, fx, fy) {
5923             type = "radial";
5924             if (fx && fy) {
5925                 fx = toFloat(fx);
5926                 fy = toFloat(fy);
5927                 pow(fx - .5, 2) + pow(fy - .5, 2) > .25 && (fy = math.sqrt(.25 - pow(fx - .5, 2)) * ((fy > .5) * 2 - 1) + .5);
5928                 fxfy = fx + S + fy;
5929             }
5930             return E;
5931         });
5932         gradient = gradient.split(/\s*\-\s*/);
5933         if (type == "linear") {
5934             var angle = gradient.shift();
5935             angle = -toFloat(angle);
5936             if (isNaN(angle)) {
5937                 return null;
5938             }
5939         }
5940         var dots = R._parseDots(gradient);
5941         if (!dots) {
5942             return null;
5943         }
5944         o = o.shape || o.node;
5945         if (dots.length) {
5946             o.removeChild(fill);
5947             fill.on = true;
5948             fill.method = "none";
5949             fill.color = dots[0].color;
5950             fill.color2 = dots[dots.length - 1].color;
5951             var clrs = [];
5952             for (var i = 0, ii = dots.length; i < ii; i++) {
5953                 dots[i].offset && clrs.push(dots[i].offset + S + dots[i].color);
5954             }
5955             fill.colors = clrs.length ? clrs.join() : "0% " + fill.color;
5956             if (type == "radial") {
5957                 fill.type = "gradientTitle";
5958                 fill.focus = "100%";
5959                 fill.focussize = "0 0";
5960                 fill.focusposition = fxfy;
5961                 fill.angle = 0;
5962             } else {
5963                 // fill.rotate= true;
5964                 fill.type = "gradient";
5965                 fill.angle = (270 - angle) % 360;
5966             }
5967             o.appendChild(fill);
5968         }
5969         return 1;
5970     };
5971     Element = function (node, vml) {
5972         this[0] = this.node = node;
5973         node.raphael = true;
5974         this.id = R._oid++;
5975         node.raphaelid = this.id;
5976         this.X = 0;
5977         this.Y = 0;
5978         this.attrs = {};
5979         this.paper = vml;
5980         this.matrix = R.matrix();
5981         this._ = {
5982             transform: [],
5983             sx: 1,
5984             sy: 1,
5985             dx: 0,
5986             dy: 0,
5987             deg: 0,
5988             dirty: 1,
5989             dirtyT: 1
5990         };
5991         !vml.bottom && (vml.bottom = this);
5992         this.prev = vml.top;
5993         vml.top && (vml.top.next = this);
5994         vml.top = this;
5995         this.next = null;
5996     };
5997     var elproto = R.el;
5998
5999     Element.prototype = elproto;
6000     elproto.constructor = Element;
6001     elproto.transform = function (tstr) {
6002         if (tstr == null) {
6003             return this._.transform;
6004         }
6005         R._extractTransform(this, tstr);
6006         var matrix = this.matrix.clone(),
6007             vbs = this.paper._viewBoxShift,
6008             skew = this.skew,
6009             o = this.node,
6010             split,
6011             isGrad = Str(this.attrs.fill).indexOf("-") + 1;
6012         matrix.translate(-.5, -.5);
6013         if (vbs) {
6014             matrix.scale(vbs.scale, vbs.scale, -1, -1);
6015             matrix.translate(vbs.dx, vbs.dy);
6016         }
6017         if (isGrad || this.type == "image") {
6018             skew.matrix = "1 0 0 1";
6019             skew.offset = "0 0";
6020             split = matrix.split();
6021             if ((isGrad && split.noRotation) || !split.isSimple) {
6022                 o.style.filter = matrix.toFilter();
6023                 var bb = this.getBBox(),
6024                     bbt = this.getBBox(1),
6025                     dx = bb.x - bbt.x,
6026                     dy = bb.y - bbt.y;
6027                 o.coordorigin = (dx * -zoom) + S + (dy * -zoom);
6028                 setCoords(this, 1, 1, dx, dy, 0);
6029             } else {
6030                 o.style.filter = E;
6031                 setCoords(this, split.scalex, split.scaley, split.dx, split.dy, split.rotate);
6032             }
6033         } else {
6034             o.style.filter = E;
6035             skew.matrix = Str(matrix);
6036             skew.offset = matrix.offset();
6037         }
6038         return this;
6039     };
6040     elproto.rotate = function (deg, cx, cy) {
6041         if (this.removed) {
6042             return this;
6043         }
6044         if (deg == null) {
6045             return;
6046         }
6047         deg = Str(deg).split(separator);
6048         if (deg.length - 1) {
6049             cx = toFloat(deg[1]);
6050             cy = toFloat(deg[2]);
6051         }
6052         deg = toFloat(deg[0]);
6053         (cy == null) && (cx = cy);
6054         if (cx == null || cy == null) {
6055             var bbox = this.getBBox(1);
6056             cx = bbox.x + bbox.width / 2;
6057             cy = bbox.y + bbox.height / 2;
6058         }
6059         this._.dirtyT = 1;
6060         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
6061         return this;
6062     };
6063     elproto.translate = function (dx, dy) {
6064         if (this.removed) {
6065             return this;
6066         }
6067         dx = Str(dx).split(separator);
6068         if (dx.length - 1) {
6069             dy = toFloat(dx[1]);
6070         }
6071         dx = toFloat(dx[0]) || 0;
6072         dy = +dy || 0;
6073         if (this._.bbox) {
6074             this._.bbox.x += dx;
6075             this._.bbox.y += dy;
6076         }
6077         this.transform(this._.transform.concat([["t", dx, dy]]));
6078         return this;
6079     };
6080     elproto.scale = function (sx, sy, cx, cy) {
6081         if (this.removed) {
6082             return this;
6083         }
6084         sx = Str(sx).split(separator);
6085         if (sx.length - 1) {
6086             sy = toFloat(sx[1]);
6087             cx = toFloat(sx[2]);
6088             cy = toFloat(sx[3]);
6089             isNaN(cx) && (cx = null);
6090             isNaN(cy) && (cy = null);
6091         }
6092         sx = toFloat(sx[0]);
6093         (sy == null) && (sy = sx);
6094         (cy == null) && (cx = cy);
6095         if (cx == null || cy == null) {
6096             var bbox = this.getBBox(1);
6097         }
6098         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
6099         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
6100     
6101         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
6102         this._.dirtyT = 1;
6103         return this;
6104     };
6105     elproto.hide = function () {
6106         !this.removed && (this.node.style.display = "none");
6107         return this;
6108     };
6109     elproto.show = function () {
6110         !this.removed && (this.node.style.display = E);
6111         return this;
6112     };
6113     elproto._getBBox = function () {
6114         if (this.removed) {
6115             return {};
6116         }
6117         if (this.type == "text") {
6118             return {
6119                 x: this.X + (this.bbx || 0) - this.W / 2,
6120                 y: this.Y - this.H,
6121                 width: this.W,
6122                 height: this.H
6123             };
6124         } else {
6125             return pathDimensions(this.attrs.path);
6126         }
6127     };
6128     elproto.remove = function () {
6129         if (this.removed) {
6130             return;
6131         }
6132         R.eve.unbind("*.*." + this.id);
6133         R._tear(this, this.paper);
6134         this.node.parentNode.removeChild(this.node);
6135         this.shape && this.shape.parentNode.removeChild(this.shape);
6136         for (var i in this) {
6137             delete this[i];
6138         }
6139         this.removed = true;
6140     };
6141     elproto.attr = function (name, value) {
6142         if (this.removed) {
6143             return this;
6144         }
6145         if (name == null) {
6146             var res = {};
6147             for (var a in this.attrs) if (this.attrs[has](a)) {
6148                 res[a] = this.attrs[a];
6149             }
6150             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
6151             res.transform = this._.transform;
6152             return res;
6153         }
6154         if (value == null && R.is(name, "string")) {
6155             if (name == fillString && this.attrs.fill == "none" && this.attrs.gradient) {
6156                 return this.attrs.gradient;
6157             }
6158             var names = name.split(separator),
6159                 out = {};
6160             for (var i = 0, ii = names.length; i < ii; i++) {
6161                 name = names[i];
6162                 if (name in this.attrs) {
6163                     out[name] = this.attrs[name];
6164                 } else if (R.is(this.paper.customAttributes[name], "function")) {
6165                     out[name] = this.paper.customAttributes[name].def;
6166                 } else {
6167                     out[name] = R._availableAttrs[name];
6168                 }
6169             }
6170             return ii - 1 ? out : out[names[0]];
6171         }
6172         if (this.attrs && value == null && R.is(name, "array")) {
6173             out = {};
6174             for (i = 0, ii = name.length; i < ii; i++) {
6175                 out[name[i]] = this.attr(name[i]);
6176             }
6177             return out;
6178         }
6179         var params;
6180         if (value != null) {
6181             params = {};
6182             params[name] = value;
6183         }
6184         value == null && R.is(name, "object") && (params = name);
6185         for (var key in params) {
6186             R.eve("attr." + key + "." + this.id, this, params[key]);
6187         }
6188         if (params) {
6189             for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
6190                 var par = this.paper.customAttributes[key].apply(this, [][concat](params[key]));
6191                 this.attrs[key] = params[key];
6192                 for (var subkey in par) if (par[has](subkey)) {
6193                     params[subkey] = par[subkey];
6194                 }
6195             }
6196             // this.paper.canvas.style.display = "none";
6197             if (params.text && this.type == "text") {
6198                 this.textpath.string = params.text;
6199             }
6200             setFillAndStroke(this, params);
6201             // this.paper.canvas.style.display = E;
6202         }
6203         return this;
6204     };
6205     elproto.toFront = function () {
6206         !this.removed && this.node.parentNode.appendChild(this.node);
6207         this.paper && this.paper.top != this && tofront(this, this.paper);
6208         return this;
6209     };
6210     elproto.toBack = function () {
6211         if (this.removed) {
6212             return this;
6213         }
6214         if (this.node.parentNode.firstChild != this.node) {
6215             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
6216             toback(this, this.paper);
6217         }
6218         return this;
6219     };
6220     elproto.insertAfter = function (element) {
6221         if (this.removed) {
6222             return this;
6223         }
6224         if (element.constructor == Set) {
6225             element = element[element.length - 1];
6226         }
6227         if (element.node.nextSibling) {
6228             element.node.parentNode.insertBefore(this.node, element.node.nextSibling);
6229         } else {
6230             element.node.parentNode.appendChild(this.node);
6231         }
6232         R._insertafter(this, element, this.paper);
6233         return this;
6234     };
6235     elproto.insertBefore = function (element) {
6236         if (this.removed) {
6237             return this;
6238         }
6239         if (element.constructor == Set) {
6240             element = element[0];
6241         }
6242         element.node.parentNode.insertBefore(this.node, element.node);
6243         R._insertbefore(this, element, this.paper);
6244         return this;
6245     };
6246     elproto.blur = function (size) {
6247         var s = this.node.runtimeStyle,
6248             f = s.filter;
6249         f = f.replace(blurregexp, E);
6250         if (+size !== 0) {
6251             this.attrs.blur = size;
6252             s.filter = f + S + ms + ".Blur(pixelradius=" + (+size || 1.5) + ")";
6253             s.margin = R.format("-{0}px 0 0 -{0}px", round(+size || 1.5));
6254         } else {
6255             s.filter = f;
6256             s.margin = 0;
6257             delete this.attrs.blur;
6258         }
6259     };
6260
6261     R._engine.path = function (pathString, vml) {
6262         var el = createNode("shape");
6263         el.style.cssText = cssDot;
6264         el.coordsize = zoom + S + zoom;
6265         el.coordorigin = vml.coordorigin;
6266         var p = new Element(el, vml),
6267             attr = {fill: "none", stroke: "#000"};
6268         pathString && (attr.path = pathString);
6269         p.type = "path";
6270         p.path = [];
6271         p.Path = E;
6272         setFillAndStroke(p, attr);
6273         vml.canvas.appendChild(el);
6274         var skew = createNode("skew");
6275         skew.on = true;
6276         el.appendChild(skew);
6277         p.skew = skew;
6278         p.transform(E);
6279         return p;
6280     };
6281     R._engine.rect = function (vml, x, y, w, h, r) {
6282         var path = R._rectPath(x, y, w, h, r),
6283             res = vml.path(path),
6284             a = res.attrs;
6285         res.X = a.x = x;
6286         res.Y = a.y = y;
6287         res.W = a.width = w;
6288         res.H = a.height = h;
6289         a.r = r;
6290         a.path = path;
6291         res.type = "rect";
6292         return res;
6293     };
6294     R._engine.ellipse = function (vml, x, y, rx, ry) {
6295         var res = vml.path(),
6296             a = res.attrs;
6297         res.X = x - rx;
6298         res.Y = y - ry;
6299         res.W = rx * 2;
6300         res.H = ry * 2;
6301         res.type = "ellipse";
6302         setFillAndStroke(res, {
6303             cx: x,
6304             cy: y,
6305             rx: rx,
6306             ry: ry
6307         });
6308         return res;
6309     };
6310     R._engine.circle = function (vml, x, y, r) {
6311         var res = vml.path(),
6312             a = res.attrs;
6313         res.X = x - r;
6314         res.Y = y - r;
6315         res.W = res.H = r * 2;
6316         res.type = "circle";
6317         setFillAndStroke(res, {
6318             cx: x,
6319             cy: y,
6320             r: r
6321         });
6322         return res;
6323     };
6324     R._engine.image = function (vml, src, x, y, w, h) {
6325         var path = R._rectPath(x, y, w, h),
6326             res = vml.path(path).attr({stroke: "none"}),
6327             a = res.attrs,
6328             node = res.node,
6329             fill = node.getElementsByTagName(fillString)[0];
6330         a.src = src;
6331         res.X = a.x = x;
6332         res.Y = a.y = y;
6333         res.W = a.width = w;
6334         res.H = a.height = h;
6335         a.path = path;
6336         res.type = "image";
6337         fill.parentNode == node && node.removeChild(fill);
6338         fill.rotate = true;
6339         fill.src = src;
6340         fill.type = "tile";
6341         res._.fillpos = [x, y];
6342         res._.fillsize = [w, h];
6343         node.appendChild(fill);
6344         setCoords(res, 1, 1, 0, 0, 0);
6345         return res;
6346     };
6347     R._engine.text = function (vml, x, y, text) {
6348         var el = createNode("shape"),
6349             path = createNode("path"),
6350             o = createNode("textpath");
6351         x = x || 0;
6352         y = y || 0;
6353         text = text || "";
6354         path.v = R.format("m{0},{1}l{2},{1}", round(x * zoom), round(y * zoom), round(x * zoom) + 1);
6355         path.textpathok = true;
6356         o.string = Str(text);
6357         o.on = true;
6358         el.style.cssText = "position:absolute;left:0;top:0;width:1px;height:1px";
6359         el.coordsize = zoom + S + zoom;
6360         el.coordorigin = "0 0";
6361         var p = new Element(el, vml),
6362             attr = {fill: "#000", stroke: "none", font: availableAttrs.font, text: text};
6363         p.shape = el;
6364         p.path = path;
6365         p.textpath = o;
6366         p.type = "text";
6367         p.attrs.text = Str(text);
6368         p.attrs.x = x;
6369         p.attrs.y = y;
6370         p.attrs.w = 1;
6371         p.attrs.h = 1;
6372         setFillAndStroke(p, attr);
6373         el.appendChild(o);
6374         el.appendChild(path);
6375         vml.canvas.appendChild(el);
6376         var skew = createNode("skew");
6377         skew.on = true;
6378         el.appendChild(skew);
6379         p.skew = skew;
6380         p.transform(E);
6381         return p;
6382     };
6383     R._engine.setSize = function (width, height) {
6384         var cs = this.canvas.style;
6385         this.width = width;
6386         this.height = height;
6387         width == +width && (width += "px");
6388         height == +height && (height += "px");
6389         cs.width = width;
6390         cs.height = height;
6391         cs.clip = "rect(0 " + width + " " + height + " 0)";
6392         if (this._viewBox) {
6393             setViewBox.apply(this, this._viewBox);
6394         }
6395         return this;
6396     };
6397     R._engine.setViewBox = function (x, y, w, h, fit) {
6398         R.eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
6399         var width = this.width,
6400             height = this.height,
6401             size = 1 / mmax(w / width, h / height),
6402             H, W;
6403         if (fit) {
6404             H = height / h;
6405             W = width / w;
6406             if (w * H < width) {
6407                 x -= (width - w * H) / 2 / H;
6408             }
6409             if (h * W < height) {
6410                 y -= (height - h * W) / 2 / W;
6411             }
6412         }
6413         this._viewBox = [x, y, w, h, !!fit];
6414         this._viewBoxShift = {
6415             dx: -x,
6416             dy: -y,
6417             scale: size
6418         };
6419         this.forEach(function (el) {
6420             el.transform("...");
6421         });
6422         return this;
6423     };
6424     var createNode,
6425         initWin = function (win) {
6426             var doc = win.document;
6427             doc.createStyleSheet().addRule(".rvml", "behavior:url(#default#VML)");
6428             try {
6429                 !doc.namespaces.rvml && doc.namespaces.add("rvml", "urn:schemas-microsoft-com:vml");
6430                 createNode = function (tagName) {
6431                     return doc.createElement('<rvml:' + tagName + ' class="rvml">');
6432                 };
6433             } catch (e) {
6434                 createNode = function (tagName) {
6435                     return doc.createElement('<' + tagName + ' xmlns="urn:schemas-microsoft.com:vml" class="rvml">');
6436                 };
6437             }
6438         };
6439     initWin(R._g.win);
6440     R._engine.create = function () {
6441         var con = R._getContainer.apply(0, arguments),
6442             container = con.container,
6443             height = con.height,
6444             s,
6445             width = con.width,
6446             x = con.x,
6447             y = con.y;
6448         if (!container) {
6449             throw new Error("VML container not found.");
6450         }
6451         var res = new R._Paper,
6452             c = res.canvas = R._g.doc.createElement("div"),
6453             cs = c.style;
6454         x = x || 0;
6455         y = y || 0;
6456         width = width || 512;
6457         height = height || 342;
6458         res.width = width;
6459         res.height = height;
6460         width == +width && (width += "px");
6461         height == +height && (height += "px");
6462         res.coordsize = zoom * 1e3 + S + zoom * 1e3;
6463         res.coordorigin = "0 0";
6464         res.span = R._g.doc.createElement("span");
6465         res.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;";
6466         c.appendChild(res.span);
6467         cs.cssText = R.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", width, height);
6468         if (container == 1) {
6469             R._g.doc.body.appendChild(c);
6470             cs.left = x + "px";
6471             cs.top = y + "px";
6472             cs.position = "absolute";
6473         } else {
6474             if (container.firstChild) {
6475                 container.insertBefore(c, container.firstChild);
6476             } else {
6477                 container.appendChild(c);
6478             }
6479         }
6480         // plugins.call(res, res, R.fn);
6481         res.renderfix = function () {};
6482         return res;
6483     };
6484     R.prototype.clear = function () {
6485         R.eve("clear", this);
6486         this.canvas.innerHTML = E;
6487         this.span = g.doc.createElement("span");
6488         this.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";
6489         this.canvas.appendChild(this.span);
6490         this.bottom = this.top = null;
6491     };
6492     R.prototype.remove = function () {
6493         R.eve("remove", this);
6494         this.canvas.parentNode.removeChild(this.canvas);
6495         for (var i in this) {
6496             this[i] = removed(i);
6497         }
6498         return true;
6499     };
6500 }(window.Raphael);