Skip to content

Instantly share code, notes, and snippets.

@tdhock
Created March 5, 2020 06:08
Show Gist options
  • Save tdhock/7e36fc8a7492dae08302173914a8a193 to your computer and use it in GitHub Desktop.
Save tdhock/7e36fc8a7492dae08302173914a8a193 to your computer and use it in GitHub Desktop.
Presence/absence of peaks in mixture and single-source samples
// Define functions to render linked interactive plots using d3.
// Another script should define e.g.
// <script>
// var plot = new animint("#plot","path/to/plot.json");
// </script>
// Constructor for animint Object.
var animint = function (to_select, json_file) {
function wait_until_then(timeout, condFun, readyFun) {
var args=arguments
function checkFun() {
if(condFun()) {
readyFun(args[3],args[4]);
} else{
setTimeout(checkFun, timeout);
}
}
checkFun();
}
function convert_R_types(resp_array, types){
return resp_array.map(function (d) {
for (var v_name in d) {
if(!is_interactive_aes(v_name)){
var r_type = types[v_name];
if (r_type == "integer") {
d[v_name] = parseInt(d[v_name]);
} else if (r_type == "numeric") {
d[v_name] = parseFloat(d[v_name]);
} else if (r_type == "factor" || r_type == "rgb"
|| r_type == "linetype" || r_type == "label"
|| r_type == "character") {
// keep it as a character
} else if (r_type == "character" & v_name == "outliers") {
d[v_name] = parseFloat(d[v_name].split(" @ "));
}
}
}
return d;
});
}
// replacing periods in variable with an underscore this makes sure
// that selector doesn't confuse . in name with css selectors
function safe_name(unsafe_name){
return unsafe_name.replace(/[ .]/g, '_');
}
function legend_class_name(selector_name){
return safe_name(selector_name) + "_variable";
}
function is_interactive_aes(v_name){
if(v_name.indexOf("clickSelects") > -1){
return true;
}
if(v_name.indexOf("showSelected") > -1){
return true;
}
return false;
}
var linetypesize2dasharray = function (lt, size) {
var isInt = function(n) {
return typeof n === 'number' && parseFloat(n) == parseInt(n, 10) && !isNaN(n);
};
if(isInt(lt)){ // R integer line types.
if(lt == 1){
return null;
}
var o = {
0: size * 0 + "," + size * 10,
2: size * 4 + "," + size * 4,
3: size + "," + size * 2,
4: size + "," + size * 2 + "," + size * 4 + "," + size * 2,
5: size * 8 + "," + size * 4,
6: size * 2 + "," + size * 2 + "," + size * 6 + "," + size * 2
};
} else { // R defined line types
if(lt == "solid" || lt === null){
return null;
}
var o = {
"blank": size * 0 + "," + size * 10,
"none": size * 0 + "," + size * 10,
"dashed": size * 4 + "," + size * 4,
"dotted": size + "," + size * 2,
"dotdash": size + "," + size * 2 + "," + size * 4 + "," + size * 2,
"longdash": size * 8 + "," + size * 4,
"twodash": size * 2 + "," + size * 2 + "," + size * 6 + "," + size * 2,
"22": size * 2 + "," + size * 2,
"42": size * 4 + "," + size * 2,
"44": size * 4 + "," + size * 4,"13": size + "," + size * 3,
"1343": size + "," + size * 3 + "," + size * 4 + "," + size * 3,
"73": size * 7 + "," + size * 3,
"2262": size * 2 + "," + size * 2 + "," + size * 6 + "," + size * 2,
"12223242": size + "," + size * 2 + "," + size * 2 + "," + size * 2 + "," + size * 3 + "," + size * 2 + "," + size * 4 + "," + size * 2,
"F282": size * 15 + "," + size * 2 + "," + size * 8 + "," + size * 2,
"F4448444": size * 15 + "," + size * 4 + "," + size * 4 + "," + size * 4 + "," + size * 8 + "," + size * 4 + "," + size * 4 + "," + size * 4,
"224282F2": size * 2 + "," + size * 2 + "," + size * 4 + "," + size * 2 + "," + size * 8 + "," + size * 2 + "," + size * 16 + "," + size * 2,
"F1": size * 16 + "," + size
};
}
if (lt in o){
return o[lt];
} else{ // manually specified line types
str = lt.split("");
strnum = str.map(function (d) {
return size * parseInt(d, 16);
});
return strnum;
}
};
var isArray = function(o) {
return Object.prototype.toString.call(o) === '[object Array]';
};
// create a dummy element, apply the appropriate classes,
// and then measure the element
// Inspired from http://jsfiddle.net/uzddx/2/
var measureText = function(pText, pFontSize, pAngle, pStyle) {
if (!pText || pText.length === 0) return {height: 0, width: 0};
if (pAngle === null || isNaN(pAngle)) pAngle = 0;
var container = element.append('svg');
// do we need to set the class so that styling is applied?
//.attr('class', classname);
container.append('text')
.attr({x: -1000, y: -1000})
.attr("transform", "rotate(" + pAngle + ")")
.attr("style", pStyle)
.attr("font-size", pFontSize)
.text(pText);
var bbox = container.node().getBBox();
container.remove();
return {height: bbox.height, width: bbox.width};
};
var nest_by_group = d3.nest().key(function(d){ return d.group; });
var dirs = json_file.split("/");
dirs.pop(); //if a directory path exists, remove the JSON file from dirs
var element = d3.select(to_select);
this.element = element;
var viz_id = element.attr("id");
var Widgets = {};
this.Widgets = Widgets;
var Selectors = {};
this.Selectors = Selectors;
var Plots = {};
this.Plots = Plots;
var Geoms = {};
this.Geoms = Geoms;
// SVGs must be stored separately from Geoms since they are
// initialized first, with the Plots.
var SVGs = {};
this.SVGs = SVGs;
var Animation = {};
this.Animation = Animation;
var all_geom_names = {};
this.all_geom_names = all_geom_names;
//creating an array to contain the selectize widgets
var selectized_array = [];
var data_object_geoms = {
"line":true,
"path":true,
"ribbon":true,
"polygon":true
};
var css = document.createElement('style');
css.type = 'text/css';
var styles = [".axis path{fill: none;stroke: black;shape-rendering: crispEdges;}",
".axis line{fill: none;stroke: black;shape-rendering: crispEdges;}",
".axis text {font-family: sans-serif;font-size: 11px;}"];
var add_geom = function (g_name, g_info) {
// Determine what style to use to show the selection for this
// geom. This is a hack and should be removed when we implement
// the selected.color, selected.size, etc aesthetics.
if(g_info.aes.hasOwnProperty("fill") &&
g_info.geom == "rect" &&
g_info.aes.hasOwnProperty("clickSelects")){
g_info.select_style = "stroke";
}else{
g_info.select_style = "opacity";
}
// Determine if data will be an object or an array.
if(g_info.geom in data_object_geoms){
g_info.data_is_object = true;
}else{
g_info.data_is_object = false;
}
// Add a row to the loading table.
g_info.tr = Widgets["loading"].append("tr");
g_info.tr.append("td").text(g_name);
g_info.tr.append("td").attr("class", "chunk");
g_info.tr.append("td").attr("class", "downloaded").text(0);
g_info.tr.append("td").text(g_info.total);
g_info.tr.append("td").attr("class", "status").text("initialized");
// load chunk tsv
g_info.data = {};
g_info.download_status = {};
Geoms[g_name] = g_info;
// Determine whether common chunk tsv exists
// If yes, load it
if(g_info.hasOwnProperty("columns") && g_info.columns.common){
var common_tsv = get_tsv(g_info, "_common");
g_info.common_tsv = common_tsv;
var common_path = getTSVpath(common_tsv);
d3.tsv(common_path, function (error, response) {
var converted = convert_R_types(response, g_info.types);
g_info.data[common_tsv] = nest_by_group.map(converted);
});
} else {
g_info.common_tsv = null;
}
// Save this geom and load it!
update_geom(g_name, null);
};
var add_plot = function (p_name, p_info) {
// Each plot may have one or more legends. To make space for the
// legends, we put each plot in a table with one row and two
// columns: tdLeft and tdRight.
var plot_table = element.append("table").style("display", "inline-block");
var plot_tr = plot_table.append("tr");
var tdLeft = plot_tr.append("td");
var tdRight = plot_tr.append("td").attr("class", p_name+"_legend");
if(viz_id === null){
p_info.plot_id = p_name;
}else{
p_info.plot_id = viz_id + "_" + p_name;
}
var svg = tdLeft.append("svg")
.attr("id", p_info.plot_id)
.attr("height", p_info.options.height)
.attr("width", p_info.options.width);
// divvy up width/height based on the panel layout
var nrows = Math.max.apply(null, p_info.layout.ROW);
var ncols = Math.max.apply(null, p_info.layout.COL);
var panel_names = p_info.layout.PANEL;
var npanels = Math.max.apply(null, panel_names);
// Note axis names are "shared" across panels (just like the title)
var xtitlepadding = 5 + measureText(p_info["xtitle"], 11).height;
var ytitlepadding = 5 + measureText(p_info["ytitle"], 11).height;
// 'margins' are fixed across panels and do not
// include title/axis/label padding (since these are not
// fixed across panels). They do, however, account for
// spacing between panels
var text_height_pixels = measureText("foo", 11).height;
var margin = {
left: 0,
right: text_height_pixels * p_info.panel_margin_lines,
top: text_height_pixels * p_info.panel_margin_lines,
bottom: 0
};
var plotdim = {
width: 0,
height: 0,
xstart: 0,
xend: 0,
ystart: 0,
yend: 0,
graph: {
width: 0,
height: 0
},
margin: margin,
xlab: {
x: 0,
y: 0
},
ylab: {
x: 0,
y: 0
},
title: {
x: 0,
y: 0
}
};
// Draw the title
var titlepadding = measureText(p_info.title, 20).height + 10;
// why are we giving the title padding if it is undefined?
if (p_info.title === undefined) titlepadding = 0;
plotdim.title.x = p_info.options.width / 2;
plotdim.title.y = titlepadding / 2;
svg.append("text")
.text(p_info.title)
.attr("class", "plottitle")
.attr("font-family", "sans-serif")
.attr("font-size", "20px")
.attr("transform", "translate(" + plotdim.title.x + "," +
plotdim.title.y + ")")
.style("text-anchor", "middle");
// grab max text size over axis labels and facet strip labels
var axispaddingy = 5;
if(p_info.hasOwnProperty("ylabs") && p_info.ylabs.length){
axispaddingy += Math.max.apply(null, p_info.ylabs.map(function(entry){
// + 5 to give a little extra space to avoid bad axis labels
// in shiny.
return measureText(entry, 11).width + 5;
}));
}
var axispaddingx = 10 + 20;
if(p_info.hasOwnProperty("xlabs") && p_info.xlabs.length){
// TODO: throw warning if text height is large portion of plot height?
axispaddingx += Math.max.apply(null, p_info.xlabs.map(function(entry){
return measureText(entry, 11, p_info.xangle).height;
}));
// TODO: carefully calculating this gets complicated with rotating xlabs
//margin.right += 5;
}
plotdim.margin = margin;
var strip_heights = p_info.strips.top.map(function(entry){
return measureText(entry, 11).height;
});
var strip_widths = p_info.strips.right.map(function(entry){
return measureText(entry, 11).height;
});
// compute the number of x/y axes, max strip height per row, and
// max strip width per columns, for calculating height/width of
// graphing region.
var row_strip_heights = [];
var col_strip_widths = [];
var n_xaxes = 0;
var n_yaxes = 0;
var current_row, current_col;
for (var layout_i = 0; layout_i < npanels; layout_i++) {
current_row = p_info.layout.ROW[layout_i] - 1;
current_col = p_info.layout.COL[layout_i] - 1;
if(row_strip_heights[current_row] === undefined){
row_strip_heights[current_row] = [];
}
if(col_strip_widths[current_col] === undefined){
col_strip_widths[current_col] = [];
}
row_strip_heights[current_row].push(strip_heights[layout_i]);
col_strip_widths[current_col].push(strip_widths[layout_i]);
if (p_info.layout.COL[layout_i] == 1) {
n_xaxes += p_info.layout.AXIS_X[layout_i];
}
if (p_info.layout.ROW[layout_i] == 1) {
n_yaxes += p_info.layout.AXIS_Y[layout_i];
}
}
function cumsum_array(array_of_arrays){
var cumsum = [], max_value, cumsum_value = 0;
for(var i=0; i<array_of_arrays.length; i++){
cumsum_value += d3.max(array_of_arrays[i]);
cumsum[i] = cumsum_value;
}
return cumsum;
}
var cum_height_per_row = cumsum_array(row_strip_heights);
var cum_width_per_col = cumsum_array(col_strip_widths);
var strip_width = d3.max(cum_width_per_col);
var strip_height = d3.max(cum_height_per_row);
// the *entire graph* height/width
var graph_width = p_info.options.width -
ncols * (margin.left + margin.right) -
strip_width -
n_yaxes * axispaddingy - ytitlepadding;
var graph_height = p_info.options.height -
nrows * (margin.top + margin.bottom) -
strip_height -
titlepadding - n_xaxes * axispaddingx - xtitlepadding;
// Impose the pixelated aspect ratio of the graph upon the width/height
// proportions calculated by the compiler. This has to be done on the
// rendering side since the precomputed proportions apply to the *graph*
// and the graph size depends upon results of measureText()
if (p_info.layout.coord_fixed[0]) {
var aspect = (graph_height / nrows) / (graph_width / ncols);
} else {
var aspect = 1;
}
var wp = p_info.layout.width_proportion.map(function(x){
return x * Math.min(1, aspect);
})
var hp = p_info.layout.height_proportion.map(function(x){
return x * Math.min(1, 1/aspect);
})
// track the proportion of the graph that should be 'blank'
// this is mainly used to implement coord_fixed()
var graph_height_blank = 1;
var graph_width_blank = 1;
for (var layout_i = 0; layout_i < npanels; layout_i++) {
if (p_info.layout.COL[layout_i] == 1) graph_height_blank -= hp[layout_i];
if (p_info.layout.ROW[layout_i] == 1) graph_width_blank -= wp[layout_i];
}
// cumulative portion of the graph used
var graph_width_cum = (graph_width_blank / 2) * graph_width;
var graph_height_cum = (graph_height_blank / 2) * graph_height;
// Bind plot data to this plot's SVG element
svg.plot = p_info;
Plots[p_name] = p_info;
p_info.geoms.forEach(function (g_name) {
var layer_g_element = svg.append("g").attr("class", g_name);
panel_names.forEach(function(PANEL){
layer_g_element.append("g").attr("class", "PANEL" + PANEL);
});
SVGs[g_name] = svg;
});
// create a grouping for strip labels (even if there are none).
var topStrip = svg.append("g")
.attr("class", "topStrip")
;
var rightStrip = svg.append("g")
.attr("class", "rightStrip")
;
// this will hold x/y scales for each panel
// eventually we inject this into Plots[p_name]
var scales = {};
n_xaxes = 0;
n_yaxes = 0;
// Draw a plot outline for every panel
for (var layout_i = 0; layout_i < npanels; layout_i++) {
var panel_i = layout_i + 1;
var axis = p_info["axis" + panel_i];
//forces values to be in an array
var xaxisvals = [];
var xaxislabs = [];
var yaxisvals = [];
var yaxislabs = [];
var outbreaks, outlabs;
//function to write labels and breaks to their respective arrays
var axislabs = function(breaks, labs, axis){
if(axis=="x"){
outbreaks = xaxisvals;
outlabs = xaxislabs;
} else {
outbreaks = yaxisvals;
outlabs = yaxislabs;
} // set appropriate variable names
if (isArray(breaks)) {
breaks.forEach(function (d) {
outbreaks.push(d);
})
} else {
//breaks can be an object!
for (key in breaks) {
outbreaks.push(breaks[key]);
}
}
if (labs){
labs.forEach(function (d) {
outlabs.push(d);
// push each label provided into the array
});
} else {
outbreaks.forEach(function (d) {
outlabs.push("");
// push a blank string to the array for each axis tick
// if the specified label is null
});
}
};
if(axis["xticks"]){
axislabs(axis.x, axis.xlab, "x");
}
if(axis["yticks"]){
axislabs(axis.y, axis.ylab, "y");
}
// compute the current panel height/width
plotdim.graph.height = graph_height * hp[layout_i];
plotdim.graph.width = graph_width * wp[layout_i];
current_row = p_info.layout.ROW[layout_i];
current_col = p_info.layout.COL[layout_i];
var draw_x = p_info.layout.AXIS_X[layout_i];
var draw_y = p_info.layout.AXIS_Y[layout_i];
// panels are drawn using a "typewriter approach" (left to right
// & top to bottom) if the carriage is returned (ie, there is a
// new row), change some parameters:
var new_row = current_col <= p_info.layout.COL[layout_i - 1]
if (new_row) {
n_yaxes = 0;
graph_width_cum = (graph_width_blank / 2) * graph_width;
graph_height_cum += graph_height * hp[layout_i-1];
}
n_xaxes += draw_x;
n_yaxes += draw_y;
// calculate panel specific locations to be used in placing
// axes, labels, etc.
plotdim.xstart = current_col * plotdim.margin.left +
(current_col - 1) * plotdim.margin.right +
graph_width_cum + n_yaxes * axispaddingy + ytitlepadding;
// room for right strips should be distributed evenly across
// panels to preserve aspect ratio
plotdim.xend = plotdim.xstart + plotdim.graph.width;
// total height of strips drawn thus far
var strip_h = cum_height_per_row[current_row-1];
plotdim.ystart = current_row * plotdim.margin.top +
(current_row - 1) * plotdim.margin.bottom +
graph_height_cum + titlepadding + strip_h;
// room for xaxis title should be distributed evenly across
// panels to preserve aspect ratio
plotdim.yend = plotdim.ystart + plotdim.graph.height;
// always add to the width (note it may have been reset earlier)
graph_width_cum = graph_width_cum + plotdim.graph.width;
// get the x position of the y-axis title (and add padding) when
// rendering the first plot.
if (layout_i === 0) {
var ytitle_x = (plotdim.xstart - axispaddingy - ytitlepadding / 2);
var xtitle_left = plotdim.xstart;
var ytitle_top = plotdim.ystart;
}
// get the y position of the x-axis title when drawing the last
// panel.
if (layout_i === (npanels - 1)) {
var xtitle_y = (plotdim.yend + axispaddingx);
var xtitle_right = plotdim.xend;
var ytitle_bottom = plotdim.yend;
}
var draw_strip = function(strip, side) {
if (strip == "") {
return(null);
}
var x, y, rotate, stripElement;
if (side == "right") {
x = plotdim.xend + strip_widths[layout_i] / 2 - 2;
y = (plotdim.ystart + plotdim.yend) / 2;
rotate = 90;
stripElement = rightStrip;
}else{ //top
x = (plotdim.xstart + plotdim.xend) / 2;
y = plotdim.ystart - strip_heights[layout_i] / 2 + 3;
rotate = 0;
stripElement = topStrip;
}
var trans_text = "translate(" + x + "," + y + ")";
var rot_text = "rotate(" + rotate + ")";
stripElement
.selectAll("." + side + "Strips")
.data(strip)
.enter()
.append("text")
.style("text-anchor", "middle")
.style("font-size", "11px")
.text(function(d) { return d; })
// NOTE: there could be multiple strips per panel
// TODO: is there a better way to manage spacing?
.attr("transform", trans_text + rot_text)
;
}
draw_strip([p_info.strips.top[layout_i]], "top");
draw_strip([p_info.strips.right[layout_i]], "right");
// for each of the x and y axes, there is a "real" and fake
// version. The real version will be used for plotting the
// data, and the fake version is just for the display of the
// axes.
scales[panel_i] = {};
scales[panel_i].x = d3.scale.linear()
.domain(axis.xrange)
.range([plotdim.xstart, plotdim.xend]);
scales[panel_i].y = d3.scale.linear()
.domain(axis.yrange)
.range([plotdim.yend, plotdim.ystart]);
if(draw_x){
var xaxis = d3.svg.axis()
.scale(scales[panel_i].x)
.tickValues(xaxisvals)
.tickFormat(function (d) {
return xaxislabs[xaxisvals.indexOf(d)].toString();
})
.orient("bottom")
;
var axis_panel = "xaxis" + "_" + panel_i;
var xaxis_g = svg.append("g")
.attr("class", "xaxis axis " + axis_panel)
.attr("transform", "translate(0," + plotdim.yend + ")")
.call(xaxis);
if(axis["xline"] == false){
var axis_path = xaxis_g.select("path.domain");
axis_path.remove();
}
xaxis_g.selectAll("text")
.style("text-anchor", p_info.xanchor)
.attr("transform", "rotate(" + p_info.xangle + " 0 9)");
}
if(draw_y){
var yaxis = d3.svg.axis()
.scale(scales[panel_i].y)
.tickValues(yaxisvals)
.tickFormat(function (d) {
return yaxislabs[yaxisvals.indexOf(d)].toString();
})
.orient("left");
var axis_panel = "yaxis" + "_" + panel_i;
var yaxis_g = svg.append("g")
.attr("class", "yaxis axis " + axis_panel)
.attr("transform", "translate(" + (plotdim.xstart) + ",0)")
.call(yaxis);
if(axis["yline"] == false){
var axis_path = yaxis_g.select("path.domain");
axis_path.remove();
}
}
if(!axis.xline) {
styles.push("#"+p_name+" #xaxis"+" path{stroke:none;}");
}
if(!axis.xticks) {
styles.push("#"+p_name+" #xaxis .tick"+" line{stroke:none;}");
}
if(!axis.yline) {
styles.push("#"+p_name+" #yaxis"+" path{stroke:none;}");
}
if(!axis.yticks) {
styles.push("#"+p_name+" #yaxis .tick"+" line{stroke:none;}");
}
// creating g element for background, grid lines, and border
// uses insert to draw it right before plot title
var background = svg.insert("g", ".plottitle")
.attr("class", "background bgr" + panel_i);
// drawing background
if(Object.keys(p_info.panel_background).length > 1) {
background.append("rect")
.attr("x", plotdim.xstart)
.attr("y", plotdim.ystart)
.attr("width", plotdim.xend - plotdim.xstart)
.attr("height", plotdim.yend - plotdim.ystart)
.attr("class", "background_rect")
.style("fill", p_info.panel_background.fill)
.style("stroke", p_info.panel_background.colour)
.style("stroke-dasharray", function() {
return linetypesize2dasharray(p_info.panel_background.linetype,
p_info.panel_background.size);
});
}
// drawing the grid lines
["grid_minor", "grid_major"].forEach(function(grid_class){
var grid_background = p_info[grid_class];
// if grid lines are defined
if(grid_background.hasOwnProperty("size")) {
var grid = background.append("g")
.attr("class", grid_class);
["x","y"].forEach(function(scale_var){
var const_var;
if(scale_var == "x"){
const_var = "y";
}else{
const_var = "x";
}
grid.append("g")
.attr("class", scale_var)
.selectAll("line")
.data(grid_background.loc[scale_var][layout_i])
.enter()
.append("line")
.attr(const_var + "1", plotdim[const_var + "start"])
.attr(const_var + "2", plotdim[const_var + "end"])
.attr(scale_var + "1", function(d) {
return scales[panel_i][scale_var](d);
})
.attr(scale_var + "2", function(d) {
return scales[panel_i][scale_var](d);
})
.style("stroke", grid_background.colour)
.style("stroke-linecap", grid_background.lineend)
.style("stroke-width", grid_background.size)
.style("stroke-dasharray", linetypesize2dasharray(
grid_background.linetype, grid_background.size))
;
});
}
});
// drawing border
// uses insert to draw it right before the #plottitle
if(Object.keys(p_info.panel_border).length > 1) {
background.append("rect")
.attr("x", plotdim.xstart)
.attr("y", plotdim.ystart)
.attr("width", plotdim.xend - plotdim.xstart)
.attr("height", plotdim.yend - plotdim.ystart)
.attr("class", "border_rect")
.style("fill", p_info.panel_border.fill)
.style("stroke", p_info.panel_border.colour)
.style("stroke-dasharray", function() {
return linetypesize2dasharray(p_info.panel_border.linetype,
p_info.panel_border.size);
});
}
} //end of for(layout_i
// After drawing all backgrounds, we can draw the axis labels.
if(p_info["ytitle"]){
svg.append("text")
.text(p_info["ytitle"])
.attr("class", "ytitle")
.style("text-anchor", "middle")
.style("font-size", "11px")
.attr("transform", "translate(" +
ytitle_x +
"," +
(ytitle_top + ytitle_bottom)/2 +
")rotate(270)")
;
}
if(p_info["xtitle"]){
svg.append("text")
.text(p_info["xtitle"])
.attr("class", "xtitle")
.style("text-anchor", "middle")
.style("font-size", "11px")
.attr("transform", "translate(" +
(xtitle_left + xtitle_right)/2 +
"," +
xtitle_y +
")")
;
}
Plots[p_name].scales = scales;
}; //end of add_plot()
function update_legend_opacity(v_name){
var s_info = Selectors[v_name];
s_info.legend_tds.style("opacity", s_info.legend_update_fun);
}
var add_selector = function (s_name, s_info) {
Selectors[s_name] = s_info;
if(s_info.type == "multiple"){
if(!isArray(s_info.selected)){
s_info.selected = [s_info.selected];
}
// legend_update_fun is evaluated in the context of the
// td.legend_entry_label.
s_info.legend_update_fun = function(d){
var i_value = s_info.selected.indexOf(this.textContent);
if(i_value == -1){
return 0.5;
}else{
return 1;
}
}
}else{
s_info.legend_update_fun = function(d){
if(this.textContent == s_info.selected){
return 1;
}else{
return 0.5;
}
}
}
s_info.legend_tds =
element.selectAll("tr."+legend_class_name(s_name)+" td.legend_entry_label")
;
update_legend_opacity(s_name);
}; //end of add_selector()
function get_tsv(g_info, chunk_id){
return g_info.classed + "_chunk" + chunk_id + ".tsv";
}
function getTSVpath(tsv_name){
return dirs.concat(tsv_name).join("/");
}
/**
* copy common chunk tsv to varied chunk tsv, returning an array of
* objects.
*/
function copy_chunk(g_info, varied_chunk) {
var varied_by_group = nest_by_group.map(varied_chunk);
var common_by_group = g_info.data[g_info.common_tsv];
var new_varied_chunk = [];
for(group_id in varied_by_group){
var varied_one_group = varied_by_group[group_id];
var common_one_group = common_by_group[group_id];
var common_i = 0;
for(var varied_i=0; varied_i < varied_one_group.length; varied_i++){
// there are two cases: each group of varied data is of length
// 1, or of length of the common data.
if(common_one_group.length == varied_one_group.length){
common_i = varied_i;
}
var varied_obj = varied_one_group[varied_i];
var common_obj = common_one_group[common_i];
for(col in common_obj){
if(col != "group"){
varied_obj[col] = common_obj[col];
}
}
new_varied_chunk.push(varied_obj);
}
}
return new_varied_chunk;
}
// update_geom is called from add_geom and update_selector. It
// downloads data if necessary, and then calls draw_geom.
var update_geom = function (g_name, selector_name) {
var g_info = Geoms[g_name];
// First apply chunk_order selector variables.
var chunk_id = g_info.chunks;
g_info.chunk_order.forEach(function (v_name) {
if(chunk_id == null){
return; // no data in a higher up chunk var.
}
var value = Selectors[v_name].selected;
if(chunk_id.hasOwnProperty(value)){
chunk_id = chunk_id[value];
}else{
chunk_id = null; // no data to show in this subset.
}
});
if(chunk_id == null){
draw_panels(g_info, [], selector_name); //draw nothing.
return;
}
var tsv_name = get_tsv(g_info, chunk_id);
// get the data if it has not yet been downloaded.
g_info.tr.select("td.chunk").text(tsv_name);
if(g_info.data.hasOwnProperty(tsv_name)){
draw_panels(g_info, g_info.data[tsv_name], selector_name);
}else{
g_info.tr.select("td.status").text("downloading");
var svg = SVGs[g_name];
var loading = svg.append("text")
.attr("class", "loading"+tsv_name)
.text("Downloading "+tsv_name+"...")
.attr("font-size", 9)
//.attr("x", svg.attr("width")/2)
.attr("y", 10)
.style("fill", "red");
download_chunk(g_info, tsv_name, function(chunk){
loading.remove();
draw_panels(g_info, chunk, selector_name);
});
}
};
var draw_panels = function(g_info, chunk, selector_name) {
// derive the plot name from the geometry name
var g_names = g_info.classed.split("_");
var p_name = g_names[g_names.length - 1];
var panels = Plots[p_name].layout.PANEL;
panels.forEach(function(panel) {
draw_geom(g_info, chunk, selector_name, panel);
});
};
function download_next(g_name){
var g_info = Geoms[g_name];
var selector_value = Animation.sequence[g_info.seq_i];
var chunk_id = g_info.chunks[selector_value];
var tsv_name = get_tsv(g_info, chunk_id);
g_info.seq_count += 1;
if(Animation.sequence.length == g_info.seq_count){
Animation.done_geoms[g_name] = 1;
return;
}
g_info.seq_i += 1;
if(g_info.seq_i == Animation.sequence.length){
g_info.seq_i = 0;
}
if(typeof(chunk_id) == "string"){
download_chunk(g_info, tsv_name, function(chunk){
download_next(g_name);
})
}else{
download_next(g_name);
}
}
// download_chunk is called from update_geom and download_next.
function download_chunk(g_info, tsv_name, funAfter){
if(g_info.download_status.hasOwnProperty(tsv_name)){
var chunk;
if(g_info.data_is_object){
chunk = {};
}else{
chunk = [];
}
funAfter(chunk);
return; // do not download twice.
}
g_info.download_status[tsv_name] = "downloading";
// prefix tsv file with appropriate path
var tsv_file = getTSVpath(tsv_name);
d3.tsv(tsv_file, function (error, response) {
// First convert to correct types.
g_info.download_status[tsv_name] = "processing";
response = convert_R_types(response, g_info.types);
wait_until_then(500, function(){
if(g_info.common_tsv) {
return g_info.data.hasOwnProperty(g_info.common_tsv);
}else{
return true;
}
}, function(){
if(g_info.common_tsv) {
// copy data from common tsv to varied tsv
response = copy_chunk(g_info, response);
}
var nest = d3.nest();
g_info.nest_order.forEach(function (v_name) {
nest.key(function (d) {
return d[v_name];
});
});
var chunk = nest.map(response);
g_info.data[tsv_name] = chunk;
g_info.tr.select("td.downloaded").text(d3.keys(g_info.data).length);
g_info.download_status[tsv_name] = "saved";
funAfter(chunk);
});
});
}//download_chunk.
// update_geom is responsible for obtaining a chunk of downloaded
// data, and then calling draw_geom to actually draw it.
var draw_geom = function(g_info, chunk, selector_name, PANEL){
g_info.tr.select("td.status").text("displayed");
var svg = SVGs[g_info.classed];
// derive the plot name from the geometry name
var g_names = g_info.classed.split("_");
var p_name = g_names[g_names.length - 1];
var scales = Plots[p_name].scales[PANEL];
var selected_arrays = [ [] ]; //double array necessary.
g_info.subset_order.forEach(function (aes_name) {
var selected, values;
var new_arrays = [];
if(0 < aes_name.indexOf(".variable")){
selected_arrays.forEach(function(old_array){
var some_data = chunk;
old_array.forEach(function(value){
if(some_data.hasOwnProperty(value)) {
some_data = some_data[value];
} else {
some_data = {};
}
})
values = d3.keys(some_data);
values.forEach(function(s_name){
var selected = Selectors[s_name].selected;
var new_array = old_array.concat(s_name).concat(selected);
new_arrays.push(new_array);
})
})
}else{//not .variable aes:
if(aes_name == "PANEL"){
selected = PANEL;
}else{
var s_name = g_info.aes[aes_name];
selected = Selectors[s_name].selected;
}
if(isArray(selected)){
values = selected; //multiple selection.
}else{
values = [selected]; //single selection.
}
values.forEach(function(value){
selected_arrays.forEach(function(old_array){
var new_array = old_array.concat(value);
new_arrays.push(new_array);
})
})
}
selected_arrays = new_arrays;
});
// data can be either an array[] if it will be directly involved
// in a data-bind, or an object{} if it will be involved in a
// data-bind by group (e.g. geom_line).
var data;
if(g_info.data_is_object){
data = {};
}else{
data = [];
}
selected_arrays.forEach(function(value_array){
var some_data = chunk;
value_array.forEach(function(value){
if (some_data.hasOwnProperty(value)) {
some_data = some_data[value];
} else {
if(g_info.data_is_object){
some_data = {};
}else{
some_data = [];
}
}
});
if(g_info.data_is_object){
if(isArray(some_data) && some_data.length){
data["0"] = some_data;
}else{
for(k in some_data){
data[k] = some_data[k];
}
}
}else{//some_data is an array.
data = data.concat(some_data);
}
});
var aes = g_info.aes;
var toXY = function (xy, a) {
return function (d) {
return scales[xy](d[a]);
};
};
var layer_g_element = svg.select("g." + g_info.classed);
var panel_g_element = layer_g_element.select("g.PANEL" + PANEL);
var elements = panel_g_element.selectAll(".geom");
// TODO: standardize this code across aes/styles.
var base_opacity = 1;
if (g_info.params.alpha) {
base_opacity = g_info.params.alpha;
}
//alert(g_info.classed+" "+base_opacity);
var get_alpha = function (d) {
var a;
if (aes.hasOwnProperty("alpha") && d.hasOwnProperty("alpha")) {
a = d["alpha"];
} else {
a = base_opacity;
}
return a;
};
var size = 2;
if(g_info.geom == "text"){
size = 12;
}
if (g_info.params.hasOwnProperty("size")) {
size = g_info.params.size;
}
var get_size = function (d) {
if (aes.hasOwnProperty("size") && d.hasOwnProperty("size")) {
return d["size"];
}
return size;
};
// stroke_width for geom_point
var stroke_width = 1; // by default ggplot2 has 0.5, animint has 1
if (g_info.params.hasOwnProperty("stroke")) {
stroke_width = g_info.params.stroke;
}
var get_stroke_width = function (d) {
if (aes.hasOwnProperty("stroke") && d.hasOwnProperty("stroke")) {
return d["stroke"];
}
return stroke_width;
}
var linetype = "solid";
if (g_info.params.linetype) {
linetype = g_info.params.linetype;
}
var get_dasharray = function (d) {
var lt = linetype;
if (aes.hasOwnProperty("linetype") && d.hasOwnProperty("linetype")) {
lt = d["linetype"];
}
return linetypesize2dasharray(lt, get_size(d));
};
var colour = "black";
var fill = "black";
var get_colour = function (d) {
if (d.hasOwnProperty("colour")) {
return d["colour"]
}
return colour;
};
var get_fill = function (d) {
if (d.hasOwnProperty("fill")) {
return d["fill"];
}
return fill;
};
if (g_info.params.colour) {
colour = g_info.params.colour;
}
if (g_info.params.fill) {
fill = g_info.params.fill;
}else if(g_info.params.colour){
fill = g_info.params.colour;
}
// For aes(hjust) the compiler should make an "anchor" column.
var text_anchor = "middle";
if(g_info.params.hasOwnProperty("anchor")){
text_anchor = g_info.params["anchor"];
}
var get_text_anchor;
if(g_info.aes.hasOwnProperty("hjust")) {
get_text_anchor = function(d){
return d["anchor"];
}
}else{
get_text_anchor = function(d){
return text_anchor;
}
}
var eActions, eAppend, linkActions;
var key_fun = null;
var id_fun = function(d){
return d.id;
};
if(g_info.aes.hasOwnProperty("key")){
key_fun = function(d){
return d.key;
};
}
if(g_info.data_is_object) {
// Lines, paths, polygons, and ribbons are a bit special. For
// every unique value of the group variable, we take the
// corresponding data rows and make 1 path. The tricky part is
// that to use d3 I do a data-bind of some "fake" data which are
// just group ids, which is the kv variable in the code below
// // case of only 1 line and no groups.
// if(!aes.hasOwnProperty("group")){
// kv = [{"key":0,"value":0}];
// data = {0:data};
// }else{
// // we need to use a path for each group.
// var kv = d3.entries(d3.keys(data));
// kv = kv.map(function(d){
// d[aes.group] = d.value;
// return d;
// });
// }
// For an example consider breakpointError$error which is
// defined using this R code
// geom_line(aes(segments, error, group=bases.per.probe,
// clickSelects=bases.per.probe), data=only.error, lwd=4)
// Inside update_geom the variables take the following values
// (pseudo-Javascript code)
// var kv = [{"key":"0","value":"133","bases.per.probe":"133"},
// {"key":"1","value":"2667","bases.per.probe":"2667"}];
// var data = {"133":[array of 20 points used to draw the line for group 133],
// "2667":[array of 20 points used to draw the line for group 2667]};
// I do elements.data(kv) so that when I set the d attribute of
// each path, I need to select the correct group before
// returning anything.
// e.attr("d",function(group_info){
// var one_group = data[group_info.value];
// return lineThing(one_group);
// })
// To make color work I think you just have to select the group
// and take the color of the first element, e.g.
// .style("stroke",function(group_info){
// var one_group = data[group_info.value];
// var one_row = one_group[0];
// return get_color(one_row);
// }
// In order to get d3 lines to play nice, bind fake "data" (group
// id's) -- the kv variable. Then each separate object is plotted
// using path (case of only 1 thing and no groups).
// we need to use a path for each group.
var keyed_data = {}, one_group, group_id, k;
for(group_id in data){
one_group = data[group_id];
one_row = one_group[0];
if(one_row.hasOwnProperty("key")){
k = one_row.key;
}else{
k = group_id;
}
keyed_data[k] = one_group;
}
var kv_array = d3.entries(d3.keys(keyed_data));
var kv = kv_array.map(function (d) {
//d[aes.group] = d.value;
// Need to store the clickSelects value that will
// be passed to the selector when we click on this
// item.
d.clickSelects = keyed_data[d.value][0].clickSelects;
return d;
});
// line, path, and polygon use d3.svg.line(),
// ribbon uses d3.svg.area()
// we have to define lineThing accordingly.
if (g_info.geom == "ribbon") {
var lineThing = d3.svg.area()
.x(toXY("x", "x"))
.y(toXY("y", "ymax"))
.y0(toXY("y", "ymin"));
} else {
var lineThing = d3.svg.line()
.x(toXY("x", "x"))
.y(toXY("y", "y"));
}
// select the correct group before returning anything.
key_fun = function(group_info){
return group_info.value;
};
id_fun = function(group_info){
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take key from first value in the group.
return one_row.id;
};
elements = elements.data(kv, key_fun);
linkActions = function(a_elements){
a_elements
.attr("xlink:href", function(group_info){
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
return one_row.href;
})
.attr("target", "_blank")
.attr("class", "geom")
;
};
eActions = function (e) {
e.attr("d", function (d) {
var one_group = keyed_data[d.value];
// filter NaN since they make the whole line disappear!
var no_na = one_group.filter(function(d){
if(g_info.geom == "ribbon"){
return !isNaN(d.x) && !isNaN(d.ymin) && !isNaN(d.ymax);
}else{
return !isNaN(d.x) && !isNaN(d.y);
}
});
return lineThing(no_na);
})
.style("fill", function (group_info) {
if (g_info.geom == "line" || g_info.geom == "path") {
return "none";
}
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take color for first value in the group
return get_fill(one_row);
})
.style("stroke-width", function (group_info) {
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take size for first value in the group
return get_size(one_row);
})
.style("stroke", function (group_info) {
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take color for first value in the group
return get_colour(one_row);
})
.style("stroke-dasharray", function (group_info) {
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take linetype for first value in the group
return get_dasharray(one_row);
})
.style("stroke-width", function (group_info) {
var one_group = keyed_data[group_info.value];
var one_row = one_group[0];
// take line size for first value in the group
return get_size(one_row);
});
};
eAppend = "path";
}else{
linkActions = function(a_elements){
a_elements.attr("xlink:href", function(d){ return d.href; })
.attr("target", "_blank")
.attr("class", "geom");
};
}
if (g_info.geom == "segment") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("x1", function (d) {
return scales.x(d["x"]);
})
.attr("x2", function (d) {
return scales.x(d["xend"]);
})
.attr("y1", function (d) {
return scales.y(d["y"]);
})
.attr("y2", function (d) {
return scales.y(d["yend"]);
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "line";
}
if (g_info.geom == "linerange") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("x1", function (d) {
return scales.x(d["x"]);
})
.attr("x2", function (d) {
return scales.x(d["x"]);
})
.attr("y1", function (d) {
return scales.y(d["ymax"]);
})
.attr("y2", function (d) {
return scales.y(d["ymin"]);
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "line";
}
if (g_info.geom == "vline") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("x1", toXY("x", "xintercept"))
.attr("x2", toXY("x", "xintercept"))
.attr("y1", scales.y.range()[0])
.attr("y2", scales.y.range()[1])
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "line";
}
if (g_info.geom == "hline") {
// pretty much a copy of geom_vline with obvious modifications
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("y1", toXY("y", "yintercept"))
.attr("y2", toXY("y", "yintercept"))
.attr("x1", scales.x.range()[0])
.attr("x2", scales.x.range()[1])
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "line";
}
if (g_info.geom == "text") {
elements = elements.data(data, key_fun);
// TODO: how to support vjust? firefox doensn't support
// baseline-shift... use paths?
// http://commons.oreilly.com/wiki/index.php/SVG_Essentials/Text
eActions = function (e) {
e.attr("x", toXY("x", "x"))
.attr("y", toXY("y", "y"))
.style("fill", get_colour)
.attr("font-size", get_size)
.style("text-anchor", get_text_anchor)
.text(function (d) {
return d.label;
});
};
eAppend = "text";
}
if (g_info.geom == "point") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("cx", toXY("x", "x"))
.attr("cy", toXY("y", "y"))
.attr("r", get_size)
.style("fill", get_fill)
.style("stroke", get_colour)
.style("stroke-width", get_stroke_width);
};
eAppend = "circle";
}
if (g_info.geom == "tallrect") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("x", toXY("x", "xmin"))
.attr("width", function (d) {
return scales.x(d["xmax"]) - scales.x(d["xmin"]);
})
.attr("y", scales.y.range()[1])
.attr("height", scales.y.range()[0] - scales.y.range()[1])
.style("fill", get_fill)
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "rect";
}
if (g_info.geom == "widerect") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("y", toXY("y", "ymax"))
.attr("height", function (d) {
return scales.y(d["ymin"]) - scales.y(d["ymax"]);
})
.attr("x", scales.x.range()[0])
.attr("width", scales.x.range()[1] - scales.x.range()[0])
.style("fill", get_fill)
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
eAppend = "rect";
}
if (g_info.geom == "rect") {
elements = elements.data(data, key_fun);
eActions = function (e) {
e.attr("x", toXY("x", "xmin"))
.attr("width", function (d) {
return Math.abs(scales.x(d.xmax) - scales.x(d.xmin));
})
.attr("y", toXY("y", "ymax"))
.attr("height", function (d) {
return Math.abs(scales.y(d.ymin) - scales.y(d.ymax));
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("fill", get_fill);
if(g_info.select_style != "stroke"){
e.style("stroke", get_colour);
}
};
eAppend = "rect";
}
if (g_info.geom == "boxplot") {
// TODO: currently boxplots are unsupported (we intentionally
// stop with an error in the R code). The reason why is that
// boxplots are drawn using multiple geoms and it is not
// straightforward to deal with that using our current JS
// code. After all, a boxplot could be produced by combing 3
// other geoms (rects, lines, and points) if you really wanted
// it.
fill = "white";
elements = elements.data(data);
eActions = function (e) {
e.append("line")
.attr("x1", function (d) {
return scales.x(d["x"]);
})
.attr("x2", function (d) {
return scales.x(d["x"]);
})
.attr("y1", function (d) {
return scales.y(d["ymin"]);
})
.attr("y2", function (d) {
return scales.y(d["lower"]);
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
e.append("line")
.attr("x1", function (d) {
return scales.x(d["x"]);
})
.attr("x2", function (d) {
return scales.x(d["x"]);
})
.attr("y1", function (d) {
return scales.y(d["upper"]);
})
.attr("y2", function (d) {
return scales.y(d["ymax"]);
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
e.append("rect")
.attr("x", function (d) {
return scales.x(d["xmin"]);
})
.attr("width", function (d) {
return scales.x(d["xmax"]) - scales.x(d["xmin"]);
})
.attr("y", function (d) {
return scales.y(d["upper"]);
})
.attr("height", function (d) {
return Math.abs(scales.y(d["upper"]) - scales.y(d["lower"]));
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour)
.style("fill", get_fill);
e.append("line")
.attr("x1", function (d) {
return scales.x(d["xmin"]);
})
.attr("x2", function (d) {
return scales.x(d["xmax"]);
})
.attr("y1", function (d) {
return scales.y(d["middle"]);
})
.attr("y2", function (d) {
return scales.y(d["middle"]);
})
.style("stroke-dasharray", get_dasharray)
.style("stroke-width", get_size)
.style("stroke", get_colour);
};
}
elements.exit().remove();
var enter = elements.enter();
if(g_info.aes.hasOwnProperty("href")){
enter = enter.append("svg:a")
.append("svg:"+eAppend);
}else{
enter = enter.append(eAppend)
.attr("class", "geom");
}
var has_clickSelects = g_info.aes.hasOwnProperty("clickSelects");
var has_clickSelects_variable =
g_info.aes.hasOwnProperty("clickSelects.variable");
if (has_clickSelects || has_clickSelects_variable) {
var selected_funs = {
"opacity":{
"mouseout":function (d) {
var alpha_on = get_alpha(d);
var alpha_off = get_alpha(d) - 0.5;
if(has_clickSelects){
return ifSelectedElse(d.clickSelects, g_info.aes.clickSelects,
alpha_on, alpha_off);
}else if(has_clickSelects_variable){
return ifSelectedElse(d["clickSelects.value"],
d["clickSelects.variable"],
alpha_on, alpha_off);
}
},
"mouseover":function (d) {
return get_alpha(d);
}
},
"stroke":{
"mouseout":function(d){
var stroke_on = "black";
var stroke_off = "transparent";
if(has_clickSelects){
return ifSelectedElse(d.clickSelects, g_info.aes.clickSelects,
stroke_on, stroke_off);
}else{
return ifSelectedElse(d["clickSelects.value"],
d["clickSelects.variable"],
stroke_on, stroke_off);
}
},
"mouseover":function(d){
return "black";
}
}
}; //selected_funs.
// My original design for clicking/interactivity/transparency:
// Basically I wanted a really simple way to show which element
// in a group of clickable geom elements is currently
// selected. So I decided that all the non-selected elements
// should have alpha transparency 0.5 less than normal, and the
// selected element should have normal alpha transparency. Also,
// the element currently under the mouse has normal alpha
// transparency, to visually indicate that it can be
// clicked. Looking at my examples, you will see that I
// basically use this in two ways:
// 1. By specifying
// geom_vline(aes(clickSelects=variable),alpha=0.5), which
// implies a normal alpha transparency of 0.5. So all the vlines
// are hidden (normal alpha 0.5 - 0.5 = 0), except the current
// selection and the current element under the mouse pointer are
// drawn a bit faded with alpha=0.5.
// 2. By specifying e.g. geom_point(aes(clickSelects=variable)),
// that implies a normal alpha=1. Thus the current selection and
// the current element under the mouse pointer are fully drawn
// with alpha=1 and the others are shown but a bit faded with
// alpha=0.5 (normal alpha 1 - 0.5 = 0.5).
// Edit 19 March 2014: Now there are two styles to show the
// selection, depending on the geom. For most geoms it is as
// described above. But for geoms like rects with
// aes(fill=numericVariable), using opacity to indicate the
// selection results in a misleading decoding of the fill
// variable. So in this case we set stroke to "black" for the
// current selection.
// TODO: user-configurable selection styles.
var style_funs = selected_funs[g_info.select_style];
var over_fun = function(e){
e.style(g_info.select_style, style_funs["mouseover"]);
};
var out_fun = function(e){
e.style(g_info.select_style, style_funs["mouseout"]);
};
elements.call(out_fun)
.on("mouseover", function (d) {
d3.select(this).call(over_fun);
})
.on("mouseout", function (d) {
d3.select(this).call(out_fun);
})
;
if(has_clickSelects){
elements.on("click", function (d) {
// The main idea of how clickSelects works: when we click
// something, we call update_selector with the clicked
// value.
var s_name = g_info.aes.clickSelects;
update_selector(s_name, d.clickSelects);
});
}else{
elements.on("click", function(d){
var s_name = d["clickSelects.variable"];
var s_value = d["clickSelects.value"];
update_selector(s_name, s_value);
});
}
}else{//has neither clickSelects nor clickSelects.variable.
elements.style("opacity", get_alpha);
}
var has_tooltip = g_info.aes.hasOwnProperty("tooltip");
if(has_clickSelects || has_tooltip || has_clickSelects_variable){
var text_fun, get_one;
if(g_info.data_is_object){
get_one = function(d_or_kv){
var one_group = keyed_data[d_or_kv.value];
return one_group[0];
};
}else{
get_one = function(d_or_kv){
return d_or_kv;
};
}
if(has_tooltip){
text_fun = function(d){
return d.tooltip;
};
}else if(has_clickSelects){
text_fun = function(d){
var v_name = g_info.aes.clickSelects;
return v_name + " " + d.clickSelects;
};
}else{ //clickSelects_variable
text_fun = function(d){
return d["clickSelects.variable"] + " " + d["clickSelects.value"];
};
}
// if elements have an existing title, remove it.
elements.selectAll("title").remove();
elements.append("svg:title")
.text(function(d_or_kv){
var d = get_one(d_or_kv);
return text_fun(d);
})
;
}
// Set attributes of only the entering elements. This is needed to
// prevent things from flying around from the upper left when they
// enter the plot.
eActions(enter); // DO NOT DELETE!
if(Selectors.hasOwnProperty(selector_name)){
var milliseconds = Selectors[selector_name].duration;
elements = elements.transition().duration(milliseconds);
}
if(g_info.aes.hasOwnProperty("id")){
elements.attr("id", id_fun);
}
if(g_info.aes.hasOwnProperty("href")){
// elements are <a>, children are e.g. <circle>
var linked_geoms = elements.select(eAppend);
// d3.select(linked_geoms).data(data, key_fun); // WHY did we need this?
eActions(linked_geoms);
linkActions(elements);
}else{
// elements are e.g. <circle>
eActions(elements); // Set the attributes of all elements (enter/exit/stay)
}
};
var value_tostring = function(selected_values) {
//function that is helpful to change the format of the string
var selector_url="#"
for (var selc_var in selected_values){
if(selected_values.hasOwnProperty(selc_var)){
var values_str=selected_values[selc_var].join();
var sub_url=selc_var.concat("=","{",values_str,"}");
selector_url=selector_url.concat(sub_url);
}
}
var url_nohash=window.location.href.match(/(^[^#]*)/)[0];
selector_url=url_nohash.concat(selector_url);
return selector_url;
};
var get_values=function(){
// function that is useful to get the selected values
var selected_values={}
for(var s_name in Selectors){
var s_info=Selectors[s_name];
var initial_selections = [];
if(s_info.type==="single"){
initial_selections=[s_info.selected];
}
else{
for(var i in s_info.selected) {
initial_selections[i] = s_info.selected[i];
}
}
selected_values[s_name]=initial_selections;
}
return selected_values;
};
// var counter=-1;
// var update_selector_url = function() {
// var selected_values=get_values();
// var url=value_tostring(selected_values);
// if(counter===-1){
// $(".table_selector_widgets").after("<table style='display:none' class='urltable'><tr class='selectorurl'></tr></table>");
// $(".selectorurl").append("<p>Current URL</p>");
// $(".selectorurl").append("<a href=''></a>");
// counter++;
// }
// $(".selectorurl a").attr("href",url).text(url);
// };
// update scales for the plots that have update_axes option in
// theme_animint
function update_scales(p_name, axes, v_name, value){
// Get pre-computed domain
var axis_domains = Plots[p_name]["axis_domains"];
if(!isArray(axes)){
axes = [axes];
}
if(axis_domains != null){
axes.forEach(function(xyaxis){
// For Each PANEL, update the axes
Plots[p_name].layout.PANEL.forEach(function(panel_i, i){
// Determine whether this panel has a scale or not
// If not we just update the scales according to the common
// scale and skip the updating of axis
var draw_axes = Plots[p_name].layout["AXIS_"+ xyaxis.toUpperCase()][i];
if(draw_axes){
var use_panel = panel_i;
}else{
var use_panel = Plots[p_name].layout.PANEL[0];
}
// We update the current selection of the plot every time
// and use it to index the correct domain
var curr_select = axis_domains[xyaxis].curr_select;
if(axis_domains[xyaxis].selectors.indexOf(v_name) > -1){
curr_select[v_name] = value;
var str = use_panel+".";
for(selec in curr_select){
str = str + curr_select[selec] + "_";
}
str = str.substring(0, str.length - 1); // Strip off trailing underscore
var use_domain = axis_domains[xyaxis]["domains"][str];
}
if(use_domain != null){
Plots[p_name]["scales"][panel_i][xyaxis].domain(use_domain);
var scales = Plots[p_name]["scales"][panel_i][xyaxis];
// major and minor grid lines as calculated in the compiler
var grid_vals = Plots[p_name]["axis_domains"][xyaxis]["grids"][str];
// Once scales are updated, update the axis ticks if needed
if(draw_axes){
// Tick values are same as major grid lines
update_axes(p_name, xyaxis, panel_i, grid_vals[1]);
}
// Update major and minor grid lines
update_grids(p_name, xyaxis, panel_i, grid_vals, scales);
}
});
});
}
}
// Update the axis ticks etc. once plot is zoomed in/out
// currently called from update_scales.
function update_axes(p_name, axes, panel_i, tick_vals){
var orientation;
if(axes == "x"){
orientation = "bottom";
}else{
orientation = "left";
}
if(!isArray(tick_vals)){
tick_vals = [tick_vals];
}
var xyaxis = d3.svg.axis()
.scale(Plots[p_name]["scales"][panel_i][axes])
.orient(orientation)
.tickValues(tick_vals);
// update existing axis
var xyaxis_g = element.select("#plot_"+p_name).select("."+axes+"axis_"+panel_i)
.transition()
.duration(1000)
.call(xyaxis);
}
// Update major/minor grids once axes ticks have been updated
function update_grids(p_name, axes, panel_i, grid_vals, scales){
// Select panel to update
var bgr = element.select("#plot_"+p_name).select(".bgr"+panel_i);
// Update major and minor grid lines
["minor", "major"].forEach(function(grid_class, j){
var lines = bgr.select(".grid_"+grid_class).select("."+axes);
var xy1, xy2;
if(axes == "x"){
xy1 = lines.select("line").attr("y1");
xy2 = lines.select("line").attr("y2");
}else{
xy1 = lines.select("line").attr("x1");
xy2 = lines.select("line").attr("x2");
}
// Get default values for grid lines like colour, stroke etc.
var grid_background = Plots[p_name]["grid_"+grid_class];
var col = grid_background.colour;
var lt = grid_background.linetype;
var size = grid_background.size;
var cap = grid_background.lineend;
// Remove old lines
lines.selectAll("line")
.remove();
if(!isArray(grid_vals[j])){
grid_vals[j] = [grid_vals[j]];
}
if(axes == "x"){
lines.selectAll("line")
.data(grid_vals[j])
.enter()
.append("line")
.attr("y1", xy1)
.attr("y2", xy2)
.attr("x1", function(d) { return scales(d); })
.attr("x2", function(d) { return scales(d); })
.style("stroke", col)
.style("stroke-linecap", cap)
.style("stroke-width", size)
.style("stroke-dasharray", function() {
return linetypesize2dasharray(lt, size);
});
}else{
lines.selectAll("line")
.data(grid_vals[j])
.enter()
.append("line")
.attr("x1", xy1)
.attr("x2", xy2)
.attr("y1", function(d) { return scales(d); })
.attr("y2", function(d) { return scales(d); })
.style("stroke", col)
.style("stroke-linecap", cap)
.style("stroke-width", size)
.style("stroke-dasharray", function() {
return linetypesize2dasharray(lt, size);
});
}
});
}
var update_selector = function (v_name, value) {
if(!Selectors.hasOwnProperty(v_name)){
return;
}
value = value + "";
var s_info = Selectors[v_name];
if(s_info.type == "single"){
// value is the new selection.
s_info.selected = value;
}else{
// value should be added or removed from the selection.
var i_value = s_info.selected.indexOf(value);
if(i_value == -1){
// not found, add to selection.
s_info.selected.push(value);
}else{
// found, remove from selection.
s_info.selected.splice(i_value, 1);
}
}
// update_selector_url()
// if there are levels, then there is a selectize widget which
// should be updated.
if(isArray(s_info.levels)){
// the jquery ids
if(s_info.type == "single") {
var selected_ids = v_name.concat("___", value);
} else {
var selected_ids = [];
for(i in s_info.selected) {
selected_ids[i] = v_name.concat("___", s_info.selected[i]);
}
}
// from
// https://github.com/brianreavis/selectize.js/blob/master/docs/api.md:
// setValue(value, silent) If "silent" is truthy, no change
// event will be fired on the original input.
selectized_array[v_name].setValue(selected_ids, true);
}
// For each updated geom, check if the axes of the plot need to be
// updated and update them
s_info.update.forEach(function(g_name){
var plot_name = g_name.split("_").pop();
var axes = Plots[plot_name]["options"]["update_axes"];
if(axes != null){
update_scales(plot_name, axes, v_name, value);
}
});
update_legend_opacity(v_name);
s_info.update.forEach(function(g_name){
update_geom(g_name, v_name);
});
};
var ifSelectedElse = function (s_value, s_name, selected, not_selected) {
var is_selected;
var s_info = Selectors[s_name];
if(s_info.type == "single"){
is_selected = s_value == s_info.selected;
}else{
is_selected = s_info.selected.indexOf(s_value) != -1;
}
if(is_selected){
return selected;
} else {
return not_selected;
}
};
function update_next_animation(){
var values = d3.values(Animation.done_geoms);
if(d3.sum(values) == values.length){
// If the values in done_geoms are all 1, then we have loaded
// all of the animation-related chunks, and we can start
// playing the animation.
var v_name = Animation.variable;
var cur = Selectors[v_name].selected;
var next = Animation.next[cur];
update_selector(v_name, next);
}
}
// The main idea of how legends work:
// 1. In getLegend in animint.R I export the legend entries as a
// list of rows that can be used in a data() bind in D3.
// 2. Here in add_legend I create a <table> for every legend, and
// then I bind the legend entries to <tr>, <td>, and <svg> elements.
var add_legend = function(p_name, p_info){
// case of multiple legends, d3 reads legend structure in as an array
var tdRight = element.select("td."+p_name+"_legend");
var legendkeys = d3.keys(p_info.legend);
for(var i=0; i<legendkeys.length; i++){
var legend_key = legendkeys[i];
var l_info = p_info.legend[legend_key];
// the table that contains one row for each legend element.
var legend_table = tdRight.append("table")
.attr("class", "legend")
;
var legend_class = legend_class_name(l_info["class"]);
var legend_id = p_info.plot_id + "_" + legend_class;
// the legend table with breaks/value/label .
// TODO: variable and value should be set in the compiler! What
// if label is different from the data value?
for(var entry_i=0; entry_i < l_info.entries.length; entry_i++){
var entry = l_info.entries[entry_i];
entry.variable = l_info.selector;
entry.value = entry.label;
entry.id = safe_name(legend_id + "_" + entry["label"]);
}
var legend_rows = legend_table.selectAll("tr")
.data(l_info.entries)
.enter()
.append("tr")
// in a good data viz there should not be more than one legend
// that shows the same thing, so there should be no duplicate
// id.
.attr("id", function(d) { return d["id"]; })
.attr("class", legend_class)
;
if(l_info.selector != null){
legend_rows
.on("click", function(d) {
update_selector(d.variable, d.value);
})
.attr("title", function(d) {
return "Toggle " + d.value;
})
.attr("style", "cursor:pointer")
;
}
var first_tr = legend_table.insert("tr", "tr");
var first_th = first_tr.append("th")
.attr("align", "left")
.attr("colspan", 2)
.text(l_info.title)
.attr("class", legend_class)
;
var legend_svgs = legend_rows.append("td")
.append("svg")
.attr("id", function(d){return d["id"]+"_svg";})
.attr("height", 14)
.attr("width", 20);
var pointscale = d3.scale.linear().domain([0,7]).range([1,4]);
// scale points so they are visible in the legend. (does not
// affect plot scaling)
var linescale = d3.scale.linear().domain([0,6]).range([1,4]);
// scale lines so they are visible in the legend. (does not
// affect plot scaling)
if(l_info.geoms.indexOf("polygon")>-1){
// aesthetics that would draw a rect
legend_svgs.append("rect")
.attr("x", 2)
.attr("y", 2)
.attr("width", 10)
.attr("height", 10)
.style("stroke-width", function(d){return d["polygonsize"]||1;})
.style("stroke-dasharray", function(d){
return linetypesize2dasharray(d["polygonlinetype"], d["size"]||2);
})
.style("stroke", function(d){return d["polygoncolour"] || "#000000";})
.style("fill", function(d){return d["polygonfill"] || "#FFFFFF";})
.style("opacity", function(d){return d["polygonalpha"]||1;});
}
if(l_info.geoms.indexOf("text")>-1){
// aesthetics that would draw a rect
legend_svgs.append("text")
.attr("x", 10)
.attr("y", 14)
.style("fill", function(d){return d["textcolour"]||1;})
.style("text-anchor", "middle")
.attr("font-size", function(d){return d["textsize"]||1;})
.text("a");
}
if(l_info.geoms.indexOf("path")>-1){
// aesthetics that would draw a line
legend_svgs.append("line")
.attr("x1", 1).attr("x2", 19).attr("y1", 7).attr("y2", 7)
.style("stroke-width", function(d){
return linescale(d["pathsize"])||2;
})
.style("stroke-dasharray", function(d){
return linetypesize2dasharray(d["pathlinetype"], d["pathsize"] || 2);
})
.style("stroke", function(d){return d["pathcolour"] || "#000000";})
.style("opacity", function(d){return d["pathalpha"]||1;});
}
if(l_info.geoms.indexOf("point")>-1){
// aesthetics that would draw a point
legend_svgs.append("circle")
.attr("cx", 10)
.attr("cy", 7)
.attr("r", function(d){return pointscale(d["pointsize"])||4;})
.style("stroke", function(d){return d["pointcolour"] || "#000000";})
.style("fill", function(d){
return d["pointfill"] || d["pointcolour"] || "#000000";
})
.style("opacity", function(d){return d["pointalpha"]||1;});
}
legend_rows.append("td")
.attr("align", "left") // TODO: right for numbers?
.attr("class", "legend_entry_label")
.attr("id", function(d){ return d["id"]+"_label"; })
.text(function(d){ return d["label"];});
}
}
// Download the main description of the interactive plot.
d3.json(json_file, function (error, response) {
if(response.hasOwnProperty("title")){
// This selects the title of the web page, outside of wherever
// the animint is defined, usually a <div> -- so it is OK to use
// global d3.select here.
d3.select("title").text(response.title);
}
// Add plots.
for (var p_name in response.plots) {
add_plot(p_name, response.plots[p_name]);
add_legend(p_name, response.plots[p_name]);
// Append style sheet to document head.
css.appendChild(document.createTextNode(styles.join(" ")));
document.head.appendChild(css);
}
// Then add selectors and start downloading the first data subset.
for (var s_name in response.selectors) {
add_selector(s_name, response.selectors[s_name]);
}
// Update the scales/axes of the plots if needed
// We do this so that the plots zoom in initially after loading
for (var p_name in response.plots) {
if(response.plots[p_name].axis_domains !== null){
for(var xy in response.plots[p_name].axis_domains){
var selectors = response.plots[p_name].axis_domains[xy].selectors;
if(!isArray(selectors)){
selectors = [selectors];
}
update_scales(p_name, xy, selectors[0],
response.selectors[selectors[0]].selected);
}
}
}
////////////////////////////////////////////
// Widgets at bottom of page
////////////////////////////////////////////
element.append("br");
// loading table.
var show_hide_table = element.append("button")
.text("Show download status table");
show_hide_table
.on("click", function(){
if(this.textContent == "Show download status table"){
loading.style("display", "");
show_hide_table.text("Hide download status table");
}else{
loading.style("display", "none");
show_hide_table.text("Show download status table");
}
});
var loading = element.append("table")
.style("display", "none");
Widgets["loading"] = loading;
var tr = loading.append("tr");
tr.append("th").text("geom");
tr.append("th").attr("class", "chunk").text("selected chunk");
tr.append("th").attr("class", "downloaded").text("downloaded");
tr.append("th").attr("class", "total").text("total");
tr.append("th").attr("class", "status").text("status");
// Add geoms and construct nest operators.
for (var g_name in response.geoms) {
add_geom(g_name, response.geoms[g_name]);
}
// Animation control widgets.
var show_message = "Show animation controls";
// add a button to view the animation widgets
var show_hide_animation_controls = element.append("button")
.text(show_message)
.attr("id", viz_id + "_show_hide_animation_controls")
.on("click", function(){
if(this.textContent == show_message){
time_table.style("display", "");
show_hide_animation_controls.text("Hide animation controls");
}else{
time_table.style("display", "none");
show_hide_animation_controls.text(show_message);
}
})
;
// table of the animint widgets
var time_table = element.append("table")
.style("display", "none");
var first_tr = time_table.append("tr");
var first_th = first_tr.append("th");
// if there's a time variable, add a button to pause the animint
if(response.time){
Animation.next = {};
Animation.ms = response.time.ms;
Animation.variable = response.time.variable;
Animation.sequence = response.time.sequence;
Widgets["play_pause"] = first_th.append("button")
.text("Play")
.attr("id", "play_pause")
.on("click", function(){
if(this.textContent == "Play"){
Animation.play();
}else{
Animation.pause(false);
}
})
;
}
first_tr.append("th").text("milliseconds");
if(response.time){
var second_tr = time_table.append("tr");
second_tr.append("td").text("updates");
second_tr.append("td").append("input")
.attr("id", "updates_ms")
.attr("type", "text")
.attr("value", Animation.ms)
.on("change", function(){
Animation.pause(false);
Animation.ms = this.value;
Animation.play();
})
;
}
for(s_name in Selectors){
var s_info = Selectors[s_name];
if(!s_info.hasOwnProperty("duration")){
s_info.duration = 0;
}
}
var selector_array = d3.keys(Selectors);
var duration_rows = time_table.selectAll("tr.duration")
.data(selector_array)
.enter()
.append("tr");
duration_rows
.append("td")
.text(function(s_name){return s_name;});
var duration_tds = duration_rows.append("td");
var duration_inputs = duration_tds
.append("input")
.attr("id", function(s_name){
return viz_id + "_duration_ms_" + s_name;
})
.attr("type", "text")
.on("change", function(s_name){
Selectors[s_name].duration = this.value;
})
.attr("value", function(s_name){
return Selectors[s_name].duration;
});
// selector widgets
var toggle_message = "Show selection menus";
var show_or_hide_fun = function(){
if(this.textContent == toggle_message){
selector_table.style("display", "");
show_hide_selector_widgets.text("Hide selection menus");
d3.select(".urltable").style("display","")
}else{
selector_table.style("display", "none");
show_hide_selector_widgets.text(toggle_message);
d3.select(".urltable").style("display","none")
}
}
var show_hide_selector_widgets = element.append("button")
.text(toggle_message)
.attr("class", "show_hide_selector_widgets")
.on("click", show_or_hide_fun)
;
// adding a table for selector widgets
var selector_table = element.append("table")
.style("display", "none")
.attr("class", "table_selector_widgets")
;
var selector_first_tr = selector_table.append("tr");
selector_first_tr
.append("th")
.text("Variable")
;
selector_first_tr
.append("th")
.text("Selected value(s)")
;
// looping through and adding a row for each selector
for(s_name in Selectors) {
var s_info = Selectors[s_name];
// for .variable .value selectors, levels is undefined and we do
// not want to make a selectize widget.
// TODO: why does it take so long to initialize the selectize
// widget when there are many (>1000) values?
if(isArray(s_info.levels)){
// If there were no geoms that specified clickSelects for this
// selector, then there is no way to select it other than the
// selectize widgets (and possibly legends). So in this case
// we show the selectize widgets by default.
var selector_widgets_hidden =
show_hide_selector_widgets.text() == toggle_message;
var has_no_clickSelects =
!Selectors[s_name].hasOwnProperty("clickSelects")
var has_no_legend =
!Selectors[s_name].hasOwnProperty("legend")
if(selector_widgets_hidden && has_no_clickSelects && has_no_legend){
var node = show_hide_selector_widgets.node();
show_or_hide_fun.apply(node);
}
// removing "." from name so it can be used in ids
var s_name_id = legend_class_name(s_name);
// adding a row for each selector
var selector_widget_row = selector_table
.append("tr")
.attr("class", function() { return s_name_id + "_selector_widget"; })
;
selector_widget_row.append("td").text(s_name);
// adding the selector
var selector_widget_select = selector_widget_row
.append("td")
.append("select")
.attr("class", function() { return s_name_id + "_input"; })
.attr("placeholder", function() { return "Toggle " + s_name; });
// adding an option for each level of the variable
selector_widget_select.selectAll("option")
.data(s_info.levels)
.enter()
.append("option")
.attr("value", function(d) { return d; })
.text(function(d) { return d; });
// making sure that the first option is blank
selector_widget_select
.insert("option")
.attr("value", "")
.text(function() { return "Toggle " + s_name; });
// calling selectize
var selectize_selector = to_select + ' .' + s_name_id + "_input";
if(s_info.type == "single") {
// setting up array of selector and options
var selector_values = [];
for(i in s_info.levels) {
selector_values[i] = {
id: s_name.concat("___", s_info.levels[i]),
text: s_info.levels[i]
};
}
// the id of the first selector
var selected_id = s_name.concat("___", s_info.selected);
// if single selection, only allow one item
var $temp = $(selectize_selector)
.selectize({
create: false,
valueField: 'id',
labelField: 'text',
searchField: ['text'],
options: selector_values,
items: [selected_id],
maxItems: 1,
allowEmptyOption: true,
onChange: function(value) {
// extracting the name and the level to update
var selector_name = value.split("___")[0];
var selected_level = value.split("___")[1];
// updating the selector
update_selector(selector_name, selected_level);
}
})
;
} else { // multiple selection:
// setting up array of selector and options
var selector_values = [];
if(typeof s_info.levels == "object") {
for(i in s_info.levels) {
selector_values[i] = {
id: s_name.concat("___", s_info.levels[i]),
text: s_info.levels[i]
};
}
} else {
selector_values[0] = {
id: s_name.concat("___", s_info.levels),
text: s_info.levels
};
}
// setting up an array to contain the initally selected elements
var initial_selections = [];
for(i in s_info.selected) {
initial_selections[i] = s_name.concat("___", s_info.selected[i]);
}
// construct the selectize
var $temp = $(selectize_selector)
.selectize({
create: false,
valueField: 'id',
labelField: 'text',
searchField: ['text'],
options: selector_values,
items: initial_selections,
maxItems: s_info.levels.length,
allowEmptyOption: true,
onChange: function(value) {
// if nothing is selected, remove what is currently selected
if(value == null) {
// extracting the selector ids from the options
var the_ids = Object.keys($(this)[0].options);
// the name of the appropriate selector
var selector_name = the_ids[0].split("___")[0];
// the previously selected elements
var old_selections = Selectors[selector_name].selected;
// updating the selector for each of the old selections
old_selections.forEach(function(element) {
update_selector(selector_name, element);
});
} else { // value is not null:
// grabbing the name of the selector from the selected value
var selector_name = value[0].split("___")[0];
// identifying the levels that should be selected
var specified_levels = [];
for(i in value) {
specified_levels[i] = value[i].split("___")[1];
}
// the previously selected entries
old_selections = Selectors[selector_name].selected;
// the levels that need to have selections turned on
specified_levels
.filter(function(n) {
return old_selections.indexOf(n) == -1;
})
.forEach(function(element) {
update_selector(selector_name, element);
})
;
// the levels that need to be turned off
// - same approach
old_selections
.filter(function(n) {
return specified_levels.indexOf(n) == -1;
})
.forEach(function(element) {
update_selector(selector_name, element);
})
;
}//value==null
}//onChange
})//selectize
;
}//single or multiple selection.
selectized_array[s_name] = $temp[0].selectize;
}//levels, is.variable.value
} // close for loop through selector widgets
// If this is an animation, then start downloading all the rest of
// the data, and start the animation.
if (response.time) {
var i, prev, cur;
for (var i = 0; i < Animation.sequence.length; i++) {
if (i == 0) {
prev = Animation.sequence[Animation.sequence.length-1];
} else {
prev = Animation.sequence[i - 1];
}
cur = Animation.sequence[i];
Animation.next[prev] = cur;
}
Animation.timer = null;
Animation.play = function(){
if(Animation.timer == null){ // only play if not already playing.
// as shown on http://bl.ocks.org/mbostock/3808234
Animation.timer = setInterval(update_next_animation, Animation.ms);
Widgets["play_pause"].text("Pause");
}
};
Animation.play_after_visible = false;
Animation.pause = function(play_after_visible){
Animation.play_after_visible = play_after_visible;
clearInterval(Animation.timer);
Animation.timer = null;
Widgets["play_pause"].text("Play");
};
var s_info = Selectors[Animation.variable];
Animation.done_geoms = {};
s_info.update.forEach(function(g_name){
var g_info = Geoms[g_name];
if(g_info.chunk_order.length == 1 &&
g_info.chunk_order[0] == Animation.variable){
g_info.seq_i = Animation.sequence.indexOf(s_info.selected);
g_info.seq_count = 0;
Animation.done_geoms[g_name] = 0;
download_next(g_name);
}
});
Animation.play();
all_geom_names = d3.keys(response.geoms);
// This code starts/stops the animation timer when the page is
// hidden, inspired by
// http://stackoverflow.com/questions/1060008
function onchange (evt) {
if(document.visibilityState == "visible"){
if(Animation.play_after_visible){
Animation.play();
}
}else{
if(Widgets["play_pause"].text() == "Pause"){
Animation.pause(true);
}
}
};
document.addEventListener("visibilitychange", onchange);
}
// update_selector_url()
var check_func=function(){
var status_array = $('.status').map(function(){
return $.trim($(this).text());
}).get();
status_array=status_array.slice(1)
return status_array.every(function(elem){ return elem === "displayed"});
}
if(window.location.hash) {
var fragment=window.location.hash;
fragment=fragment.slice(1);
fragment=decodeURI(fragment)
var frag_array=fragment.split(/(.*?})/);
frag_array=frag_array.filter(function(x){ return x!=""})
frag_array.forEach(function(selector_string){
var selector_hash=selector_string.split("=");
var selector_nam=selector_hash[0];
var selector_values=selector_hash[1];
var re = /\{(.*?)\}/;
selector_values = re.exec(selector_values)[1];
var array_values = selector_values.split(',');
if(Selectors.hasOwnProperty(selector_nam)){
var s_info = Selectors[selector_nam]
if(s_info.type=="single"){//TODO fix
array_values.forEach(function(element) {
wait_until_then(100, check_func, update_selector,selector_nam,element)
if(response.time)Animation.pause(true)
});
}else{
var old_selections = Selectors[selector_nam].selected;
// the levels that need to have selections turned on
array_values
.filter(function(n) {
return old_selections.indexOf(n) == -1;
})
.forEach(function(element) {
wait_until_then(100, check_func, update_selector,selector_nam,element)
if(response.time){
Animation.pause(true)
}
});
old_selections
.filter(function(n) {
return array_values.indexOf(n) == -1;
})
.forEach(function(element) {
wait_until_then(100, check_func, update_selector,selector_nam,element)
if(response.time){
Animation.pause(true)
}
});
}//if(single) else multiple selection
}//if(Selectors.hasOwnProperty(selector_nam))
})//frag_array.forEach
}//if(window.location.hash)
});
};
// Copyright (c) 2013, Michael Bostock
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * The name Michael Bostock may not be used to endorse or promote products
// derived from this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
d3 = function() {
var π = Math.PI, ε = 1e-6, d3 = {
version: "3.0.6"
}, d3_radians = π / 180, d3_degrees = 180 / π, d3_document = document, d3_window = window;
function d3_target(d) {
return d.target;
}
function d3_source(d) {
return d.source;
}
var d3_format_decimalPoint = ".", d3_format_thousandsSeparator = ",", d3_format_grouping = [ 3, 3 ];
if (!Date.now) Date.now = function() {
return +new Date();
};
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
} catch (error) {
var d3_style_prototype = d3_window.CSSStyleDeclaration.prototype, d3_style_setProperty = d3_style_prototype.setProperty;
d3_style_prototype.setProperty = function(name, value, priority) {
d3_style_setProperty.call(this, name, value + "", priority);
};
}
function d3_class(ctor, properties) {
try {
for (var key in properties) {
Object.defineProperty(ctor.prototype, key, {
value: properties[key],
enumerable: false
});
}
} catch (e) {
ctor.prototype = properties;
}
}
var d3_array = d3_arraySlice;
function d3_arrayCopy(pseudoarray) {
var i = -1, n = pseudoarray.length, array = [];
while (++i < n) array.push(pseudoarray[i]);
return array;
}
function d3_arraySlice(pseudoarray) {
return Array.prototype.slice.call(pseudoarray);
}
try {
d3_array(d3_document.documentElement.childNodes)[0].nodeType;
} catch (e) {
d3_array = d3_arrayCopy;
}
var d3_arraySubclass = [].__proto__ ? function(array, prototype) {
array.__proto__ = prototype;
} : function(array, prototype) {
for (var property in prototype) array[property] = prototype[property];
};
d3.map = function(object) {
var map = new d3_Map();
for (var key in object) map.set(key, object[key]);
return map;
};
function d3_Map() {}
d3_class(d3_Map, {
has: function(key) {
return d3_map_prefix + key in this;
},
get: function(key) {
return this[d3_map_prefix + key];
},
set: function(key, value) {
return this[d3_map_prefix + key] = value;
},
remove: function(key) {
key = d3_map_prefix + key;
return key in this && delete this[key];
},
keys: function() {
var keys = [];
this.forEach(function(key) {
keys.push(key);
});
return keys;
},
values: function() {
var values = [];
this.forEach(function(key, value) {
values.push(value);
});
return values;
},
entries: function() {
var entries = [];
this.forEach(function(key, value) {
entries.push({
key: key,
value: value
});
});
return entries;
},
forEach: function(f) {
for (var key in this) {
if (key.charCodeAt(0) === d3_map_prefixCode) {
f.call(this, key.substring(1), this[key]);
}
}
}
});
var d3_map_prefix = "\0", d3_map_prefixCode = d3_map_prefix.charCodeAt(0);
function d3_identity(d) {
return d;
}
function d3_true() {
return true;
}
function d3_functor(v) {
return typeof v === "function" ? v : function() {
return v;
};
}
d3.functor = d3_functor;
d3.rebind = function(target, source) {
var i = 1, n = arguments.length, method;
while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]);
return target;
};
function d3_rebind(target, source, method) {
return function() {
var value = method.apply(source, arguments);
return arguments.length ? target : value;
};
}
d3.ascending = function(a, b) {
return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
};
d3.descending = function(a, b) {
return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
};
d3.mean = function(array, f) {
var n = array.length, a, m = 0, i = -1, j = 0;
if (arguments.length === 1) {
while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;
} else {
while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;
}
return j ? m : undefined;
};
d3.median = function(array, f) {
if (arguments.length > 1) array = array.map(f);
array = array.filter(d3_number);
return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;
};
d3.min = function(array, f) {
var i = -1, n = array.length, a, b;
if (arguments.length === 1) {
while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;
while (++i < n) if ((b = array[i]) != null && a > b) a = b;
} else {
while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;
while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;
}
return a;
};
d3.max = function(array, f) {
var i = -1, n = array.length, a, b;
if (arguments.length === 1) {
while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;
while (++i < n) if ((b = array[i]) != null && b > a) a = b;
} else {
while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;
while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;
}
return a;
};
d3.extent = function(array, f) {
var i = -1, n = array.length, a, b, c;
if (arguments.length === 1) {
while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined;
while (++i < n) if ((b = array[i]) != null) {
if (a > b) a = b;
if (c < b) c = b;
}
} else {
while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined;
while (++i < n) if ((b = f.call(array, array[i], i)) != null) {
if (a > b) a = b;
if (c < b) c = b;
}
}
return [ a, c ];
};
d3.random = {
normal: function(µ, σ) {
var n = arguments.length;
if (n < 2) σ = 1;
if (n < 1) µ = 0;
return function() {
var x, y, r;
do {
x = Math.random() * 2 - 1;
y = Math.random() * 2 - 1;
r = x * x + y * y;
} while (!r || r > 1);
return µ + σ * x * Math.sqrt(-2 * Math.log(r) / r);
};
},
logNormal: function() {
var random = d3.random.normal.apply(d3, arguments);
return function() {
return Math.exp(random());
};
},
irwinHall: function(m) {
return function() {
for (var s = 0, j = 0; j < m; j++) s += Math.random();
return s / m;
};
}
};
function d3_number(x) {
return x != null && !isNaN(x);
}
d3.sum = function(array, f) {
var s = 0, n = array.length, a, i = -1;
if (arguments.length === 1) {
while (++i < n) if (!isNaN(a = +array[i])) s += a;
} else {
while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;
}
return s;
};
d3.quantile = function(values, p) {
var H = (values.length - 1) * p + 1, h = Math.floor(H), v = +values[h - 1], e = H - h;
return e ? v + e * (values[h] - v) : v;
};
d3.shuffle = function(array) {
var m = array.length, t, i;
while (m) {
i = Math.random() * m-- | 0;
t = array[m], array[m] = array[i], array[i] = t;
}
return array;
};
d3.transpose = function(matrix) {
return d3.zip.apply(d3, matrix);
};
d3.zip = function() {
if (!(n = arguments.length)) return [];
for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m; ) {
for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n; ) {
zip[j] = arguments[j][i];
}
}
return zips;
};
function d3_zipLength(d) {
return d.length;
}
d3.bisector = function(f) {
return {
left: function(a, x, lo, hi) {
if (arguments.length < 3) lo = 0;
if (arguments.length < 4) hi = a.length;
while (lo < hi) {
var mid = lo + hi >>> 1;
if (f.call(a, a[mid], mid) < x) lo = mid + 1; else hi = mid;
}
return lo;
},
right: function(a, x, lo, hi) {
if (arguments.length < 3) lo = 0;
if (arguments.length < 4) hi = a.length;
while (lo < hi) {
var mid = lo + hi >>> 1;
if (x < f.call(a, a[mid], mid)) hi = mid; else lo = mid + 1;
}
return lo;
}
};
};
var d3_bisector = d3.bisector(function(d) {
return d;
});
d3.bisectLeft = d3_bisector.left;
d3.bisect = d3.bisectRight = d3_bisector.right;
d3.nest = function() {
var nest = {}, keys = [], sortKeys = [], sortValues, rollup;
function map(array, depth) {
if (depth >= keys.length) return rollup ? rollup.call(nest, array) : sortValues ? array.sort(sortValues) : array;
var i = -1, n = array.length, key = keys[depth++], keyValue, object, valuesByKey = new d3_Map(), values, o = {};
while (++i < n) {
if (values = valuesByKey.get(keyValue = key(object = array[i]))) {
values.push(object);
} else {
valuesByKey.set(keyValue, [ object ]);
}
}
valuesByKey.forEach(function(keyValue, values) {
o[keyValue] = map(values, depth);
});
return o;
}
function entries(map, depth) {
if (depth >= keys.length) return map;
var a = [], sortKey = sortKeys[depth++], key;
for (key in map) {
a.push({
key: key,
values: entries(map[key], depth)
});
}
if (sortKey) a.sort(function(a, b) {
return sortKey(a.key, b.key);
});
return a;
}
nest.map = function(array) {
return map(array, 0);
};
nest.entries = function(array) {
return entries(map(array, 0), 0);
};
nest.key = function(d) {
keys.push(d);
return nest;
};
nest.sortKeys = function(order) {
sortKeys[keys.length - 1] = order;
return nest;
};
nest.sortValues = function(order) {
sortValues = order;
return nest;
};
nest.rollup = function(f) {
rollup = f;
return nest;
};
return nest;
};
d3.keys = function(map) {
var keys = [];
for (var key in map) keys.push(key);
return keys;
};
d3.values = function(map) {
var values = [];
for (var key in map) values.push(map[key]);
return values;
};
d3.entries = function(map) {
var entries = [];
for (var key in map) entries.push({
key: key,
value: map[key]
});
return entries;
};
d3.permute = function(array, indexes) {
var permutes = [], i = -1, n = indexes.length;
while (++i < n) permutes[i] = array[indexes[i]];
return permutes;
};
d3.merge = function(arrays) {
return Array.prototype.concat.apply([], arrays);
};
function d3_collapse(s) {
return s.trim().replace(/\s+/g, " ");
}
d3.range = function(start, stop, step) {
if (arguments.length < 3) {
step = 1;
if (arguments.length < 2) {
stop = start;
start = 0;
}
}
if ((stop - start) / step === Infinity) throw new Error("infinite range");
var range = [], k = d3_range_integerScale(Math.abs(step)), i = -1, j;
start *= k, stop *= k, step *= k;
if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k); else while ((j = start + step * ++i) < stop) range.push(j / k);
return range;
};
function d3_range_integerScale(x) {
var k = 1;
while (x * k % 1) k *= 10;
return k;
}
d3.requote = function(s) {
return s.replace(d3_requote_re, "\\$&");
};
var d3_requote_re = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;
d3.round = function(x, n) {
return n ? Math.round(x * (n = Math.pow(10, n))) / n : Math.round(x);
};
d3.xhr = function(url, mimeType, callback) {
var xhr = {}, dispatch = d3.dispatch("progress", "load", "error"), headers = {}, response = d3_identity, request = new (d3_window.XDomainRequest && /^(http(s)?:)?\/\//.test(url) ? XDomainRequest : XMLHttpRequest)();
"onload" in request ? request.onload = request.onerror = respond : request.onreadystatechange = function() {
request.readyState > 3 && respond();
};
function respond() {
var s = request.status;
!s && request.responseText || s >= 200 && s < 300 || s === 304 ? dispatch.load.call(xhr, response.call(xhr, request)) : dispatch.error.call(xhr, request);
}
request.onprogress = function(event) {
var o = d3.event;
d3.event = event;
try {
dispatch.progress.call(xhr, request);
} finally {
d3.event = o;
}
};
xhr.header = function(name, value) {
name = (name + "").toLowerCase();
if (arguments.length < 2) return headers[name];
if (value == null) delete headers[name]; else headers[name] = value + "";
return xhr;
};
xhr.mimeType = function(value) {
if (!arguments.length) return mimeType;
mimeType = value == null ? null : value + "";
return xhr;
};
xhr.response = function(value) {
response = value;
return xhr;
};
[ "get", "post" ].forEach(function(method) {
xhr[method] = function() {
return xhr.send.apply(xhr, [ method ].concat(d3_array(arguments)));
};
});
xhr.send = function(method, data, callback) {
if (arguments.length === 2 && typeof data === "function") callback = data, data = null;
request.open(method, url, true);
if (mimeType != null && !("accept" in headers)) headers["accept"] = mimeType + ",*/*";
if (request.setRequestHeader) for (var name in headers) request.setRequestHeader(name, headers[name]);
if (mimeType != null && request.overrideMimeType) request.overrideMimeType(mimeType);
if (callback != null) xhr.on("error", callback).on("load", function(request) {
callback(null, request);
});
request.send(data == null ? null : data);
return xhr;
};
xhr.abort = function() {
request.abort();
return xhr;
};
d3.rebind(xhr, dispatch, "on");
if (arguments.length === 2 && typeof mimeType === "function") callback = mimeType,
mimeType = null;
return callback == null ? xhr : xhr.get(d3_xhr_fixCallback(callback));
};
function d3_xhr_fixCallback(callback) {
return callback.length === 1 ? function(error, request) {
callback(error == null ? request : null);
} : callback;
}
d3.text = function() {
return d3.xhr.apply(d3, arguments).response(d3_text);
};
function d3_text(request) {
return request.responseText;
}
d3.json = function(url, callback) {
return d3.xhr(url, "application/json", callback).response(d3_json);
};
function d3_json(request) {
return JSON.parse(request.responseText);
}
d3.html = function(url, callback) {
return d3.xhr(url, "text/html", callback).response(d3_html);
};
function d3_html(request) {
var range = d3_document.createRange();
range.selectNode(d3_document.body);
return range.createContextualFragment(request.responseText);
}
d3.xml = function() {
return d3.xhr.apply(d3, arguments).response(d3_xml);
};
function d3_xml(request) {
return request.responseXML;
}
var d3_nsPrefix = {
svg: "http://www.w3.org/2000/svg",
xhtml: "http://www.w3.org/1999/xhtml",
xlink: "http://www.w3.org/1999/xlink",
xml: "http://www.w3.org/XML/1998/namespace",
xmlns: "http://www.w3.org/2000/xmlns/"
};
d3.ns = {
prefix: d3_nsPrefix,
qualify: function(name) {
var i = name.indexOf(":"), prefix = name;
if (i >= 0) {
prefix = name.substring(0, i);
name = name.substring(i + 1);
}
return d3_nsPrefix.hasOwnProperty(prefix) ? {
space: d3_nsPrefix[prefix],
local: name
} : name;
}
};
d3.dispatch = function() {
var dispatch = new d3_dispatch(), i = -1, n = arguments.length;
while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);
return dispatch;
};
function d3_dispatch() {}
d3_dispatch.prototype.on = function(type, listener) {
var i = type.indexOf("."), name = "";
if (i > 0) {
name = type.substring(i + 1);
type = type.substring(0, i);
}
return arguments.length < 2 ? this[type].on(name) : this[type].on(name, listener);
};
function d3_dispatch_event(dispatch) {
var listeners = [], listenerByName = new d3_Map();
function event() {
var z = listeners, i = -1, n = z.length, l;
while (++i < n) if (l = z[i].on) l.apply(this, arguments);
return dispatch;
}
event.on = function(name, listener) {
var l = listenerByName.get(name), i;
if (arguments.length < 2) return l && l.on;
if (l) {
l.on = null;
listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1));
listenerByName.remove(name);
}
if (listener) listeners.push(listenerByName.set(name, {
on: listener
}));
return dispatch;
};
return event;
}
d3.format = function(specifier) {
var match = d3_format_re.exec(specifier), fill = match[1] || " ", align = match[2] || ">", sign = match[3] || "", basePrefix = match[4] || "", zfill = match[5], width = +match[6], comma = match[7], precision = match[8], type = match[9], scale = 1, suffix = "", integer = false;
if (precision) precision = +precision.substring(1);
if (zfill || fill === "0" && align === "=") {
zfill = fill = "0";
align = "=";
if (comma) width -= Math.floor((width - 1) / 4);
}
switch (type) {
case "n":
comma = true;
type = "g";
break;
case "%":
scale = 100;
suffix = "%";
type = "f";
break;
case "p":
scale = 100;
suffix = "%";
type = "r";
break;
case "b":
case "o":
case "x":
case "X":
if (basePrefix) basePrefix = "0" + type.toLowerCase();
case "c":
case "d":
integer = true;
precision = 0;
break;
case "s":
scale = -1;
type = "r";
break;
}
if (basePrefix === "#") basePrefix = "";
if (type == "r" && !precision) type = "g";
type = d3_format_types.get(type) || d3_format_typeDefault;
var zcomma = zfill && comma;
return function(value) {
if (integer && value % 1) return "";
var negative = value < 0 || value === 0 && 1 / value < 0 ? (value = -value, "-") : sign;
if (scale < 0) {
var prefix = d3.formatPrefix(value, precision);
value = prefix.scale(value);
suffix = prefix.symbol;
} else {
value *= scale;
}
value = type(value, precision);
if (!zfill && comma) value = d3_format_group(value);
var length = basePrefix.length + value.length + (zcomma ? 0 : negative.length), padding = length < width ? new Array(length = width - length + 1).join(fill) : "";
if (zcomma) value = d3_format_group(padding + value);
if (d3_format_decimalPoint) value.replace(".", d3_format_decimalPoint);
negative += basePrefix;
return (align === "<" ? negative + value + padding : align === ">" ? padding + negative + value : align === "^" ? padding.substring(0, length >>= 1) + negative + value + padding.substring(length) : negative + (zcomma ? value : padding + value)) + suffix;
};
};
var d3_format_re = /(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/;
var d3_format_types = d3.map({
b: function(x) {
return x.toString(2);
},
c: function(x) {
return String.fromCharCode(x);
},
o: function(x) {
return x.toString(8);
},
x: function(x) {
return x.toString(16);
},
X: function(x) {
return x.toString(16).toUpperCase();
},
g: function(x, p) {
return x.toPrecision(p);
},
e: function(x, p) {
return x.toExponential(p);
},
f: function(x, p) {
return x.toFixed(p);
},
r: function(x, p) {
return (x = d3.round(x, d3_format_precision(x, p))).toFixed(Math.max(0, Math.min(20, d3_format_precision(x * (1 + 1e-15), p))));
}
});
function d3_format_precision(x, p) {
return p - (x ? Math.ceil(Math.log(x) / Math.LN10) : 1);
}
function d3_format_typeDefault(x) {
return x + "";
}
var d3_format_group = d3_identity;
if (d3_format_grouping) {
var d3_format_groupingLength = d3_format_grouping.length;
d3_format_group = function(value) {
var i = value.lastIndexOf("."), f = i >= 0 ? "." + value.substring(i + 1) : (i = value.length,
""), t = [], j = 0, g = d3_format_grouping[0];
while (i > 0 && g > 0) {
t.push(value.substring(i -= g, i + g));
g = d3_format_grouping[j = (j + 1) % d3_format_groupingLength];
}
return t.reverse().join(d3_format_thousandsSeparator || "") + f;
};
}
var d3_formatPrefixes = [ "y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y" ].map(d3_formatPrefix);
d3.formatPrefix = function(value, precision) {
var i = 0;
if (value) {
if (value < 0) value *= -1;
if (precision) value = d3.round(value, d3_format_precision(value, precision));
i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);
i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));
}
return d3_formatPrefixes[8 + i / 3];
};
function d3_formatPrefix(d, i) {
var k = Math.pow(10, Math.abs(8 - i) * 3);
return {
scale: i > 8 ? function(d) {
return d / k;
} : function(d) {
return d * k;
},
symbol: d
};
}
var d3_ease_default = function() {
return d3_identity;
};
var d3_ease = d3.map({
linear: d3_ease_default,
poly: d3_ease_poly,
quad: function() {
return d3_ease_quad;
},
cubic: function() {
return d3_ease_cubic;
},
sin: function() {
return d3_ease_sin;
},
exp: function() {
return d3_ease_exp;
},
circle: function() {
return d3_ease_circle;
},
elastic: d3_ease_elastic,
back: d3_ease_back,
bounce: function() {
return d3_ease_bounce;
}
});
var d3_ease_mode = d3.map({
"in": d3_identity,
out: d3_ease_reverse,
"in-out": d3_ease_reflect,
"out-in": function(f) {
return d3_ease_reflect(d3_ease_reverse(f));
}
});
d3.ease = function(name) {
var i = name.indexOf("-"), t = i >= 0 ? name.substring(0, i) : name, m = i >= 0 ? name.substring(i + 1) : "in";
t = d3_ease.get(t) || d3_ease_default;
m = d3_ease_mode.get(m) || d3_identity;
return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1))));
};
function d3_ease_clamp(f) {
return function(t) {
return t <= 0 ? 0 : t >= 1 ? 1 : f(t);
};
}
function d3_ease_reverse(f) {
return function(t) {
return 1 - f(1 - t);
};
}
function d3_ease_reflect(f) {
return function(t) {
return .5 * (t < .5 ? f(2 * t) : 2 - f(2 - 2 * t));
};
}
function d3_ease_quad(t) {
return t * t;
}
function d3_ease_cubic(t) {
return t * t * t;
}
function d3_ease_cubicInOut(t) {
if (t <= 0) return 0;
if (t >= 1) return 1;
var t2 = t * t, t3 = t2 * t;
return 4 * (t < .5 ? t3 : 3 * (t - t2) + t3 - .75);
}
function d3_ease_poly(e) {
return function(t) {
return Math.pow(t, e);
};
}
function d3_ease_sin(t) {
return 1 - Math.cos(t * π / 2);
}
function d3_ease_exp(t) {
return Math.pow(2, 10 * (t - 1));
}
function d3_ease_circle(t) {
return 1 - Math.sqrt(1 - t * t);
}
function d3_ease_elastic(a, p) {
var s;
if (arguments.length < 2) p = .45;
if (arguments.length) s = p / (2 * π) * Math.asin(1 / a); else a = 1, s = p / 4;
return function(t) {
return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * π / p);
};
}
function d3_ease_back(s) {
if (!s) s = 1.70158;
return function(t) {
return t * t * ((s + 1) * t - s);
};
}
function d3_ease_bounce(t) {
return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;
}
d3.event = null;
function d3_eventCancel() {
d3.event.stopPropagation();
d3.event.preventDefault();
}
function d3_eventSource() {
var e = d3.event, s;
while (s = e.sourceEvent) e = s;
return e;
}
function d3_eventDispatch(target) {
var dispatch = new d3_dispatch(), i = 0, n = arguments.length;
while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);
dispatch.of = function(thiz, argumentz) {
return function(e1) {
try {
var e0 = e1.sourceEvent = d3.event;
e1.target = target;
d3.event = e1;
dispatch[e1.type].apply(thiz, argumentz);
} finally {
d3.event = e0;
}
};
};
return dispatch;
}
d3.transform = function(string) {
var g = d3_document.createElementNS(d3.ns.prefix.svg, "g");
return (d3.transform = function(string) {
g.setAttribute("transform", string);
var t = g.transform.baseVal.consolidate();
return new d3_transform(t ? t.matrix : d3_transformIdentity);
})(string);
};
function d3_transform(m) {
var r0 = [ m.a, m.b ], r1 = [ m.c, m.d ], kx = d3_transformNormalize(r0), kz = d3_transformDot(r0, r1), ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0;
if (r0[0] * r1[1] < r1[0] * r0[1]) {
r0[0] *= -1;
r0[1] *= -1;
kx *= -1;
kz *= -1;
}
this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_degrees;
this.translate = [ m.e, m.f ];
this.scale = [ kx, ky ];
this.skew = ky ? Math.atan2(kz, ky) * d3_degrees : 0;
}
d3_transform.prototype.toString = function() {
return "translate(" + this.translate + ")rotate(" + this.rotate + ")skewX(" + this.skew + ")scale(" + this.scale + ")";
};
function d3_transformDot(a, b) {
return a[0] * b[0] + a[1] * b[1];
}
function d3_transformNormalize(a) {
var k = Math.sqrt(d3_transformDot(a, a));
if (k) {
a[0] /= k;
a[1] /= k;
}
return k;
}
function d3_transformCombine(a, b, k) {
a[0] += k * b[0];
a[1] += k * b[1];
return a;
}
var d3_transformIdentity = {
a: 1,
b: 0,
c: 0,
d: 1,
e: 0,
f: 0
};
d3.interpolate = function(a, b) {
var i = d3.interpolators.length, f;
while (--i >= 0 && !(f = d3.interpolators[i](a, b))) ;
return f;
};
d3.interpolateNumber = function(a, b) {
b -= a;
return function(t) {
return a + b * t;
};
};
d3.interpolateRound = function(a, b) {
b -= a;
return function(t) {
return Math.round(a + b * t);
};
};
d3.interpolateString = function(a, b) {
var m, i, j, s0 = 0, s1 = 0, s = [], q = [], n, o;
d3_interpolate_number.lastIndex = 0;
for (i = 0; m = d3_interpolate_number.exec(b); ++i) {
if (m.index) s.push(b.substring(s0, s1 = m.index));
q.push({
i: s.length,
x: m[0]
});
s.push(null);
s0 = d3_interpolate_number.lastIndex;
}
if (s0 < b.length) s.push(b.substring(s0));
for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {
o = q[i];
if (o.x == m[0]) {
if (o.i) {
if (s[o.i + 1] == null) {
s[o.i - 1] += o.x;
s.splice(o.i, 1);
for (j = i + 1; j < n; ++j) q[j].i--;
} else {
s[o.i - 1] += o.x + s[o.i + 1];
s.splice(o.i, 2);
for (j = i + 1; j < n; ++j) q[j].i -= 2;
}
} else {
if (s[o.i + 1] == null) {
s[o.i] = o.x;
} else {
s[o.i] = o.x + s[o.i + 1];
s.splice(o.i + 1, 1);
for (j = i + 1; j < n; ++j) q[j].i--;
}
}
q.splice(i, 1);
n--;
i--;
} else {
o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));
}
}
while (i < n) {
o = q.pop();
if (s[o.i + 1] == null) {
s[o.i] = o.x;
} else {
s[o.i] = o.x + s[o.i + 1];
s.splice(o.i + 1, 1);
}
n--;
}
if (s.length === 1) {
return s[0] == null ? q[0].x : function() {
return b;
};
}
return function(t) {
for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);
return s.join("");
};
};
d3.interpolateTransform = function(a, b) {
var s = [], q = [], n, A = d3.transform(a), B = d3.transform(b), ta = A.translate, tb = B.translate, ra = A.rotate, rb = B.rotate, wa = A.skew, wb = B.skew, ka = A.scale, kb = B.scale;
if (ta[0] != tb[0] || ta[1] != tb[1]) {
s.push("translate(", null, ",", null, ")");
q.push({
i: 1,
x: d3.interpolateNumber(ta[0], tb[0])
}, {
i: 3,
x: d3.interpolateNumber(ta[1], tb[1])
});
} else if (tb[0] || tb[1]) {
s.push("translate(" + tb + ")");
} else {
s.push("");
}
if (ra != rb) {
if (ra - rb > 180) rb += 360; else if (rb - ra > 180) ra += 360;
q.push({
i: s.push(s.pop() + "rotate(", null, ")") - 2,
x: d3.interpolateNumber(ra, rb)
});
} else if (rb) {
s.push(s.pop() + "rotate(" + rb + ")");
}
if (wa != wb) {
q.push({
i: s.push(s.pop() + "skewX(", null, ")") - 2,
x: d3.interpolateNumber(wa, wb)
});
} else if (wb) {
s.push(s.pop() + "skewX(" + wb + ")");
}
if (ka[0] != kb[0] || ka[1] != kb[1]) {
n = s.push(s.pop() + "scale(", null, ",", null, ")");
q.push({
i: n - 4,
x: d3.interpolateNumber(ka[0], kb[0])
}, {
i: n - 2,
x: d3.interpolateNumber(ka[1], kb[1])
});
} else if (kb[0] != 1 || kb[1] != 1) {
s.push(s.pop() + "scale(" + kb + ")");
}
n = q.length;
return function(t) {
var i = -1, o;
while (++i < n) s[(o = q[i]).i] = o.x(t);
return s.join("");
};
};
d3.interpolateRgb = function(a, b) {
a = d3.rgb(a);
b = d3.rgb(b);
var ar = a.r, ag = a.g, ab = a.b, br = b.r - ar, bg = b.g - ag, bb = b.b - ab;
return function(t) {
return "#" + d3_rgb_hex(Math.round(ar + br * t)) + d3_rgb_hex(Math.round(ag + bg * t)) + d3_rgb_hex(Math.round(ab + bb * t));
};
};
d3.interpolateHsl = function(a, b) {
a = d3.hsl(a);
b = d3.hsl(b);
var h0 = a.h, s0 = a.s, l0 = a.l, h1 = b.h - h0, s1 = b.s - s0, l1 = b.l - l0;
if (h1 > 180) h1 -= 360; else if (h1 < -180) h1 += 360;
return function(t) {
return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t) + "";
};
};
d3.interpolateLab = function(a, b) {
a = d3.lab(a);
b = d3.lab(b);
var al = a.l, aa = a.a, ab = a.b, bl = b.l - al, ba = b.a - aa, bb = b.b - ab;
return function(t) {
return d3_lab_rgb(al + bl * t, aa + ba * t, ab + bb * t) + "";
};
};
d3.interpolateHcl = function(a, b) {
a = d3.hcl(a);
b = d3.hcl(b);
var ah = a.h, ac = a.c, al = a.l, bh = b.h - ah, bc = b.c - ac, bl = b.l - al;
if (bh > 180) bh -= 360; else if (bh < -180) bh += 360;
return function(t) {
return d3_hcl_lab(ah + bh * t, ac + bc * t, al + bl * t) + "";
};
};
d3.interpolateArray = function(a, b) {
var x = [], c = [], na = a.length, nb = b.length, n0 = Math.min(a.length, b.length), i;
for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));
for (;i < na; ++i) c[i] = a[i];
for (;i < nb; ++i) c[i] = b[i];
return function(t) {
for (i = 0; i < n0; ++i) c[i] = x[i](t);
return c;
};
};
d3.interpolateObject = function(a, b) {
var i = {}, c = {}, k;
for (k in a) {
if (k in b) {
i[k] = d3_interpolateByName(k)(a[k], b[k]);
} else {
c[k] = a[k];
}
}
for (k in b) {
if (!(k in a)) {
c[k] = b[k];
}
}
return function(t) {
for (k in i) c[k] = i[k](t);
return c;
};
};
var d3_interpolate_number = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;
function d3_interpolateByName(name) {
return name == "transform" ? d3.interpolateTransform : d3.interpolate;
}
d3.interpolators = [ d3.interpolateObject, function(a, b) {
return b instanceof Array && d3.interpolateArray(a, b);
}, function(a, b) {
return (typeof a === "string" || typeof b === "string") && d3.interpolateString(a + "", b + "");
}, function(a, b) {
return (typeof b === "string" ? d3_rgb_names.has(b) || /^(#|rgb\(|hsl\()/.test(b) : b instanceof d3_Color) && d3.interpolateRgb(a, b);
}, function(a, b) {
return !isNaN(a = +a) && !isNaN(b = +b) && d3.interpolateNumber(a, b);
} ];
function d3_uninterpolateNumber(a, b) {
b = b - (a = +a) ? 1 / (b - a) : 0;
return function(x) {
return (x - a) * b;
};
}
function d3_uninterpolateClamp(a, b) {
b = b - (a = +a) ? 1 / (b - a) : 0;
return function(x) {
return Math.max(0, Math.min(1, (x - a) * b));
};
}
function d3_Color() {}
d3_Color.prototype.toString = function() {
return this.rgb() + "";
};
d3.rgb = function(r, g, b) {
return arguments.length === 1 ? r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b) : d3_rgb_parse("" + r, d3_rgb, d3_hsl_rgb) : d3_rgb(~~r, ~~g, ~~b);
};
function d3_rgb(r, g, b) {
return new d3_Rgb(r, g, b);
}
function d3_Rgb(r, g, b) {
this.r = r;
this.g = g;
this.b = b;
}
var d3_rgbPrototype = d3_Rgb.prototype = new d3_Color();
d3_rgbPrototype.brighter = function(k) {
k = Math.pow(.7, arguments.length ? k : 1);
var r = this.r, g = this.g, b = this.b, i = 30;
if (!r && !g && !b) return d3_rgb(i, i, i);
if (r && r < i) r = i;
if (g && g < i) g = i;
if (b && b < i) b = i;
return d3_rgb(Math.min(255, Math.floor(r / k)), Math.min(255, Math.floor(g / k)), Math.min(255, Math.floor(b / k)));
};
d3_rgbPrototype.darker = function(k) {
k = Math.pow(.7, arguments.length ? k : 1);
return d3_rgb(Math.floor(k * this.r), Math.floor(k * this.g), Math.floor(k * this.b));
};
d3_rgbPrototype.hsl = function() {
return d3_rgb_hsl(this.r, this.g, this.b);
};
d3_rgbPrototype.toString = function() {
return "#" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);
};
function d3_rgb_hex(v) {
return v < 16 ? "0" + Math.max(0, v).toString(16) : Math.min(255, v).toString(16);
}
function d3_rgb_parse(format, rgb, hsl) {
var r = 0, g = 0, b = 0, m1, m2, name;
m1 = /([a-z]+)\((.*)\)/i.exec(format);
if (m1) {
m2 = m1[2].split(",");
switch (m1[1]) {
case "hsl":
{
return hsl(parseFloat(m2[0]), parseFloat(m2[1]) / 100, parseFloat(m2[2]) / 100);
}
case "rgb":
{
return rgb(d3_rgb_parseNumber(m2[0]), d3_rgb_parseNumber(m2[1]), d3_rgb_parseNumber(m2[2]));
}
}
}
if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b);
if (format != null && format.charAt(0) === "#") {
if (format.length === 4) {
r = format.charAt(1);
r += r;
g = format.charAt(2);
g += g;
b = format.charAt(3);
b += b;
} else if (format.length === 7) {
r = format.substring(1, 3);
g = format.substring(3, 5);
b = format.substring(5, 7);
}
r = parseInt(r, 16);
g = parseInt(g, 16);
b = parseInt(b, 16);
}
return rgb(r, g, b);
}
function d3_rgb_hsl(r, g, b) {
var min = Math.min(r /= 255, g /= 255, b /= 255), max = Math.max(r, g, b), d = max - min, h, s, l = (max + min) / 2;
if (d) {
s = l < .5 ? d / (max + min) : d / (2 - max - min);
if (r == max) h = (g - b) / d + (g < b ? 6 : 0); else if (g == max) h = (b - r) / d + 2; else h = (r - g) / d + 4;
h *= 60;
} else {
s = h = 0;
}
return d3_hsl(h, s, l);
}
function d3_rgb_lab(r, g, b) {
r = d3_rgb_xyz(r);
g = d3_rgb_xyz(g);
b = d3_rgb_xyz(b);
var x = d3_xyz_lab((.4124564 * r + .3575761 * g + .1804375 * b) / d3_lab_X), y = d3_xyz_lab((.2126729 * r + .7151522 * g + .072175 * b) / d3_lab_Y), z = d3_xyz_lab((.0193339 * r + .119192 * g + .9503041 * b) / d3_lab_Z);
return d3_lab(116 * y - 16, 500 * (x - y), 200 * (y - z));
}
function d3_rgb_xyz(r) {
return (r /= 255) <= .04045 ? r / 12.92 : Math.pow((r + .055) / 1.055, 2.4);
}
function d3_rgb_parseNumber(c) {
var f = parseFloat(c);
return c.charAt(c.length - 1) === "%" ? Math.round(f * 2.55) : f;
}
var d3_rgb_names = d3.map({
aliceblue: "#f0f8ff",
antiquewhite: "#faebd7",
aqua: "#00ffff",
aquamarine: "#7fffd4",
azure: "#f0ffff",
beige: "#f5f5dc",
bisque: "#ffe4c4",
black: "#000000",
blanchedalmond: "#ffebcd",
blue: "#0000ff",
blueviolet: "#8a2be2",
brown: "#a52a2a",
burlywood: "#deb887",
cadetblue: "#5f9ea0",
chartreuse: "#7fff00",
chocolate: "#d2691e",
coral: "#ff7f50",
cornflowerblue: "#6495ed",
cornsilk: "#fff8dc",
crimson: "#dc143c",
cyan: "#00ffff",
darkblue: "#00008b",
darkcyan: "#008b8b",
darkgoldenrod: "#b8860b",
darkgray: "#a9a9a9",
darkgreen: "#006400",
darkgrey: "#a9a9a9",
darkkhaki: "#bdb76b",
darkmagenta: "#8b008b",
darkolivegreen: "#556b2f",
darkorange: "#ff8c00",
darkorchid: "#9932cc",
darkred: "#8b0000",
darksalmon: "#e9967a",
darkseagreen: "#8fbc8f",
darkslateblue: "#483d8b",
darkslategray: "#2f4f4f",
darkslategrey: "#2f4f4f",
darkturquoise: "#00ced1",
darkviolet: "#9400d3",
deeppink: "#ff1493",
deepskyblue: "#00bfff",
dimgray: "#696969",
dimgrey: "#696969",
dodgerblue: "#1e90ff",
firebrick: "#b22222",
floralwhite: "#fffaf0",
forestgreen: "#228b22",
fuchsia: "#ff00ff",
gainsboro: "#dcdcdc",
ghostwhite: "#f8f8ff",
gold: "#ffd700",
goldenrod: "#daa520",
gray: "#808080",
green: "#008000",
greenyellow: "#adff2f",
grey: "#808080",
honeydew: "#f0fff0",
hotpink: "#ff69b4",
indianred: "#cd5c5c",
indigo: "#4b0082",
ivory: "#fffff0",
khaki: "#f0e68c",
lavender: "#e6e6fa",
lavenderblush: "#fff0f5",
lawngreen: "#7cfc00",
lemonchiffon: "#fffacd",
lightblue: "#add8e6",
lightcoral: "#f08080",
lightcyan: "#e0ffff",
lightgoldenrodyellow: "#fafad2",
lightgray: "#d3d3d3",
lightgreen: "#90ee90",
lightgrey: "#d3d3d3",
lightpink: "#ffb6c1",
lightsalmon: "#ffa07a",
lightseagreen: "#20b2aa",
lightskyblue: "#87cefa",
lightslategray: "#778899",
lightslategrey: "#778899",
lightsteelblue: "#b0c4de",
lightyellow: "#ffffe0",
lime: "#00ff00",
limegreen: "#32cd32",
linen: "#faf0e6",
magenta: "#ff00ff",
maroon: "#800000",
mediumaquamarine: "#66cdaa",
mediumblue: "#0000cd",
mediumorchid: "#ba55d3",
mediumpurple: "#9370db",
mediumseagreen: "#3cb371",
mediumslateblue: "#7b68ee",
mediumspringgreen: "#00fa9a",
mediumturquoise: "#48d1cc",
mediumvioletred: "#c71585",
midnightblue: "#191970",
mintcream: "#f5fffa",
mistyrose: "#ffe4e1",
moccasin: "#ffe4b5",
navajowhite: "#ffdead",
navy: "#000080",
oldlace: "#fdf5e6",
olive: "#808000",
olivedrab: "#6b8e23",
orange: "#ffa500",
orangered: "#ff4500",
orchid: "#da70d6",
palegoldenrod: "#eee8aa",
palegreen: "#98fb98",
paleturquoise: "#afeeee",
palevioletred: "#db7093",
papayawhip: "#ffefd5",
peachpuff: "#ffdab9",
peru: "#cd853f",
pink: "#ffc0cb",
plum: "#dda0dd",
powderblue: "#b0e0e6",
purple: "#800080",
red: "#ff0000",
rosybrown: "#bc8f8f",
royalblue: "#4169e1",
saddlebrown: "#8b4513",
salmon: "#fa8072",
sandybrown: "#f4a460",
seagreen: "#2e8b57",
seashell: "#fff5ee",
sienna: "#a0522d",
silver: "#c0c0c0",
skyblue: "#87ceeb",
slateblue: "#6a5acd",
slategray: "#708090",
slategrey: "#708090",
snow: "#fffafa",
springgreen: "#00ff7f",
steelblue: "#4682b4",
tan: "#d2b48c",
teal: "#008080",
thistle: "#d8bfd8",
tomato: "#ff6347",
turquoise: "#40e0d0",
violet: "#ee82ee",
wheat: "#f5deb3",
white: "#ffffff",
whitesmoke: "#f5f5f5",
yellow: "#ffff00",
yellowgreen: "#9acd32"
});
d3_rgb_names.forEach(function(key, value) {
d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb));
});
d3.hsl = function(h, s, l) {
return arguments.length === 1 ? h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l) : d3_rgb_parse("" + h, d3_rgb_hsl, d3_hsl) : d3_hsl(+h, +s, +l);
};
function d3_hsl(h, s, l) {
return new d3_Hsl(h, s, l);
}
function d3_Hsl(h, s, l) {
this.h = h;
this.s = s;
this.l = l;
}
var d3_hslPrototype = d3_Hsl.prototype = new d3_Color();
d3_hslPrototype.brighter = function(k) {
k = Math.pow(.7, arguments.length ? k : 1);
return d3_hsl(this.h, this.s, this.l / k);
};
d3_hslPrototype.darker = function(k) {
k = Math.pow(.7, arguments.length ? k : 1);
return d3_hsl(this.h, this.s, k * this.l);
};
d3_hslPrototype.rgb = function() {
return d3_hsl_rgb(this.h, this.s, this.l);
};
function d3_hsl_rgb(h, s, l) {
var m1, m2;
h = h % 360;
if (h < 0) h += 360;
s = s < 0 ? 0 : s > 1 ? 1 : s;
l = l < 0 ? 0 : l > 1 ? 1 : l;
m2 = l <= .5 ? l * (1 + s) : l + s - l * s;
m1 = 2 * l - m2;
function v(h) {
if (h > 360) h -= 360; else if (h < 0) h += 360;
if (h < 60) return m1 + (m2 - m1) * h / 60;
if (h < 180) return m2;
if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;
return m1;
}
function vv(h) {
return Math.round(v(h) * 255);
}
return d3_rgb(vv(h + 120), vv(h), vv(h - 120));
}
d3.hcl = function(h, c, l) {
return arguments.length === 1 ? h instanceof d3_Hcl ? d3_hcl(h.h, h.c, h.l) : h instanceof d3_Lab ? d3_lab_hcl(h.l, h.a, h.b) : d3_lab_hcl((h = d3_rgb_lab((h = d3.rgb(h)).r, h.g, h.b)).l, h.a, h.b) : d3_hcl(+h, +c, +l);
};
function d3_hcl(h, c, l) {
return new d3_Hcl(h, c, l);
}
function d3_Hcl(h, c, l) {
this.h = h;
this.c = c;
this.l = l;
}
var d3_hclPrototype = d3_Hcl.prototype = new d3_Color();
d3_hclPrototype.brighter = function(k) {
return d3_hcl(this.h, this.c, Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1)));
};
d3_hclPrototype.darker = function(k) {
return d3_hcl(this.h, this.c, Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1)));
};
d3_hclPrototype.rgb = function() {
return d3_hcl_lab(this.h, this.c, this.l).rgb();
};
function d3_hcl_lab(h, c, l) {
return d3_lab(l, Math.cos(h *= d3_radians) * c, Math.sin(h) * c);
}
d3.lab = function(l, a, b) {
return arguments.length === 1 ? l instanceof d3_Lab ? d3_lab(l.l, l.a, l.b) : l instanceof d3_Hcl ? d3_hcl_lab(l.l, l.c, l.h) : d3_rgb_lab((l = d3.rgb(l)).r, l.g, l.b) : d3_lab(+l, +a, +b);
};
function d3_lab(l, a, b) {
return new d3_Lab(l, a, b);
}
function d3_Lab(l, a, b) {
this.l = l;
this.a = a;
this.b = b;
}
var d3_lab_K = 18;
var d3_lab_X = .95047, d3_lab_Y = 1, d3_lab_Z = 1.08883;
var d3_labPrototype = d3_Lab.prototype = new d3_Color();
d3_labPrototype.brighter = function(k) {
return d3_lab(Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1)), this.a, this.b);
};
d3_labPrototype.darker = function(k) {
return d3_lab(Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1)), this.a, this.b);
};
d3_labPrototype.rgb = function() {
return d3_lab_rgb(this.l, this.a, this.b);
};
function d3_lab_rgb(l, a, b) {
var y = (l + 16) / 116, x = y + a / 500, z = y - b / 200;
x = d3_lab_xyz(x) * d3_lab_X;
y = d3_lab_xyz(y) * d3_lab_Y;
z = d3_lab_xyz(z) * d3_lab_Z;
return d3_rgb(d3_xyz_rgb(3.2404542 * x - 1.5371385 * y - .4985314 * z), d3_xyz_rgb(-.969266 * x + 1.8760108 * y + .041556 * z), d3_xyz_rgb(.0556434 * x - .2040259 * y + 1.0572252 * z));
}
function d3_lab_hcl(l, a, b) {
return d3_hcl(Math.atan2(b, a) / π * 180, Math.sqrt(a * a + b * b), l);
}
function d3_lab_xyz(x) {
return x > .206893034 ? x * x * x : (x - 4 / 29) / 7.787037;
}
function d3_xyz_lab(x) {
return x > .008856 ? Math.pow(x, 1 / 3) : 7.787037 * x + 4 / 29;
}
function d3_xyz_rgb(r) {
return Math.round(255 * (r <= .00304 ? 12.92 * r : 1.055 * Math.pow(r, 1 / 2.4) - .055));
}
function d3_selection(groups) {
d3_arraySubclass(groups, d3_selectionPrototype);
return groups;
}
var d3_select = function(s, n) {
return n.querySelector(s);
}, d3_selectAll = function(s, n) {
return n.querySelectorAll(s);
}, d3_selectRoot = d3_document.documentElement, d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector, d3_selectMatches = function(n, s) {
return d3_selectMatcher.call(n, s);
};
if (typeof Sizzle === "function") {
d3_select = function(s, n) {
return Sizzle(s, n)[0] || null;
};
d3_selectAll = function(s, n) {
return Sizzle.uniqueSort(Sizzle(s, n));
};
d3_selectMatches = Sizzle.matchesSelector;
}
var d3_selectionPrototype = [];
d3.selection = function() {
return d3_selectionRoot;
};
d3.selection.prototype = d3_selectionPrototype;
d3_selectionPrototype.select = function(selector) {
var subgroups = [], subgroup, subnode, group, node;
if (typeof selector !== "function") selector = d3_selection_selector(selector);
for (var j = -1, m = this.length; ++j < m; ) {
subgroups.push(subgroup = []);
subgroup.parentNode = (group = this[j]).parentNode;
for (var i = -1, n = group.length; ++i < n; ) {
if (node = group[i]) {
subgroup.push(subnode = selector.call(node, node.__data__, i));
if (subnode && "__data__" in node) subnode.__data__ = node.__data__;
} else {
subgroup.push(null);
}
}
}
return d3_selection(subgroups);
};
function d3_selection_selector(selector) {
return function() {
return d3_select(selector, this);
};
}
d3_selectionPrototype.selectAll = function(selector) {
var subgroups = [], subgroup, node;
if (typeof selector !== "function") selector = d3_selection_selectorAll(selector);
for (var j = -1, m = this.length; ++j < m; ) {
for (var group = this[j], i = -1, n = group.length; ++i < n; ) {
if (node = group[i]) {
subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));
subgroup.parentNode = node;
}
}
}
return d3_selection(subgroups);
};
function d3_selection_selectorAll(selector) {
return function() {
return d3_selectAll(selector, this);
};
}
d3_selectionPrototype.attr = function(name, value) {
if (arguments.length < 2) {
if (typeof name === "string") {
var node = this.node();
name = d3.ns.qualify(name);
return name.local ? node.getAttributeNS(name.space, name.local) : node.getAttribute(name);
}
for (value in name) this.each(d3_selection_attr(value, name[value]));
return this;
}
return this.each(d3_selection_attr(name, value));
};
function d3_selection_attr(name, value) {
name = d3.ns.qualify(name);
function attrNull() {
this.removeAttribute(name);
}
function attrNullNS() {
this.removeAttributeNS(name.space, name.local);
}
function attrConstant() {
this.setAttribute(name, value);
}
function attrConstantNS() {
this.setAttributeNS(name.space, name.local, value);
}
function attrFunction() {
var x = value.apply(this, arguments);
if (x == null) this.removeAttribute(name); else this.setAttribute(name, x);
}
function attrFunctionNS() {
var x = value.apply(this, arguments);
if (x == null) this.removeAttributeNS(name.space, name.local); else this.setAttributeNS(name.space, name.local, x);
}
return value == null ? name.local ? attrNullNS : attrNull : typeof value === "function" ? name.local ? attrFunctionNS : attrFunction : name.local ? attrConstantNS : attrConstant;
}
d3_selectionPrototype.classed = function(name, value) {
if (arguments.length < 2) {
if (typeof name === "string") {
var node = this.node(), n = (name = name.trim().split(/^|\s+/g)).length, i = -1;
if (value = node.classList) {
while (++i < n) if (!value.contains(name[i])) return false;
} else {
value = node.className;
if (value.baseVal != null) value = value.baseVal;
while (++i < n) if (!d3_selection_classedRe(name[i]).test(value)) return false;
}
return true;
}
for (value in name) this.each(d3_selection_classed(value, name[value]));
return this;
}
return this.each(d3_selection_classed(name, value));
};
function d3_selection_classedRe(name) {
return new RegExp("(?:^|\\s+)" + d3.requote(name) + "(?:\\s+|$)", "g");
}
function d3_selection_classed(name, value) {
name = name.trim().split(/\s+/).map(d3_selection_classedName);
var n = name.length;
function classedConstant() {
var i = -1;
while (++i < n) name[i](this, value);
}
function classedFunction() {
var i = -1, x = value.apply(this, arguments);
while (++i < n) name[i](this, x);
}
return typeof value === "function" ? classedFunction : classedConstant;
}
function d3_selection_classedName(name) {
var re = d3_selection_classedRe(name);
return function(node, value) {
if (c = node.classList) return value ? c.add(name) : c.remove(name);
var c = node.className, cb = c.baseVal != null, cv = cb ? c.baseVal : c;
if (value) {
re.lastIndex = 0;
if (!re.test(cv)) {
cv = d3_collapse(cv + " " + name);
if (cb) c.baseVal = cv; else node.className = cv;
}
} else if (cv) {
cv = d3_collapse(cv.replace(re, " "));
if (cb) c.baseVal = cv; else node.className = cv;
}
};
}
d3_selectionPrototype.style = function(name, value, priority) {
var n = arguments.length;
if (n < 3) {
if (typeof name !== "string") {
if (n < 2) value = "";
for (priority in name) this.each(d3_selection_style(priority, name[priority], value));
return this;
}
if (n < 2) return d3_window.getComputedStyle(this.node(), null).getPropertyValue(name);
priority = "";
}
return this.each(d3_selection_style(name, value, priority));
};
function d3_selection_style(name, value, priority) {
function styleNull() {
this.style.removeProperty(name);
}
function styleConstant() {
this.style.setProperty(name, value, priority);
}
function styleFunction() {
var x = value.apply(this, arguments);
if (x == null) this.style.removeProperty(name); else this.style.setProperty(name, x, priority);
}
return value == null ? styleNull : typeof value === "function" ? styleFunction : styleConstant;
}
d3_selectionPrototype.property = function(name, value) {
if (arguments.length < 2) {
if (typeof name === "string") return this.node()[name];
for (value in name) this.each(d3_selection_property(value, name[value]));
return this;
}
return this.each(d3_selection_property(name, value));
};
function d3_selection_property(name, value) {
function propertyNull() {
delete this[name];
}
function propertyConstant() {
this[name] = value;
}
function propertyFunction() {
var x = value.apply(this, arguments);
if (x == null) delete this[name]; else this[name] = x;
}
return value == null ? propertyNull : typeof value === "function" ? propertyFunction : propertyConstant;
}
d3_selectionPrototype.text = function(value) {
return arguments.length ? this.each(typeof value === "function" ? function() {
var v = value.apply(this, arguments);
this.textContent = v == null ? "" : v;
} : value == null ? function() {
this.textContent = "";
} : function() {
this.textContent = value;
}) : this.node().textContent;
};
d3_selectionPrototype.html = function(value) {
return arguments.length ? this.each(typeof value === "function" ? function() {
var v = value.apply(this, arguments);
this.innerHTML = v == null ? "" : v;
} : value == null ? function() {
this.innerHTML = "";
} : function() {
this.innerHTML = value;
}) : this.node().innerHTML;
};
d3_selectionPrototype.append = function(name) {
name = d3.ns.qualify(name);
function append() {
return this.appendChild(d3_document.createElementNS(this.namespaceURI, name));
}
function appendNS() {
return this.appendChild(d3_document.createElementNS(name.space, name.local));
}
return this.select(name.local ? appendNS : append);
};
d3_selectionPrototype.insert = function(name, before) {
name = d3.ns.qualify(name);
function insert() {
return this.insertBefore(d3_document.createElementNS(this.namespaceURI, name), d3_select(before, this));
}
function insertNS() {
return this.insertBefore(d3_document.createElementNS(name.space, name.local), d3_select(before, this));
}
return this.select(name.local ? insertNS : insert);
};
d3_selectionPrototype.remove = function() {
return this.each(function() {
var parent = this.parentNode;
if (parent) parent.removeChild(this);
});
};
d3_selectionPrototype.data = function(value, key) {
var i = -1, n = this.length, group, node;
if (!arguments.length) {
value = new Array(n = (group = this[0]).length);
while (++i < n) {
if (node = group[i]) {
value[i] = node.__data__;
}
}
return value;
}
function bind(group, groupData) {
var i, n = group.length, m = groupData.length, n0 = Math.min(n, m), updateNodes = new Array(m), enterNodes = new Array(m), exitNodes = new Array(n), node, nodeData;
if (key) {
var nodeByKeyValue = new d3_Map(), dataByKeyValue = new d3_Map(), keyValues = [], keyValue;
for (i = -1; ++i < n; ) {
keyValue = key.call(node = group[i], node.__data__, i);
if (nodeByKeyValue.has(keyValue)) {
exitNodes[i] = node;
} else {
nodeByKeyValue.set(keyValue, node);
}
keyValues.push(keyValue);
}
for (i = -1; ++i < m; ) {
keyValue = key.call(groupData, nodeData = groupData[i], i);
if (node = nodeByKeyValue.get(keyValue)) {
updateNodes[i] = node;
node.__data__ = nodeData;
} else if (!dataByKeyValue.has(keyValue)) {
enterNodes[i] = d3_selection_dataNode(nodeData);
}
dataByKeyValue.set(keyValue, nodeData);
nodeByKeyValue.remove(keyValue);
}
for (i = -1; ++i < n; ) {
if (nodeByKeyValue.has(keyValues[i])) {
exitNodes[i] = group[i];
}
}
} else {
for (i = -1; ++i < n0; ) {
node = group[i];
nodeData = groupData[i];
if (node) {
node.__data__ = nodeData;
updateNodes[i] = node;
} else {
enterNodes[i] = d3_selection_dataNode(nodeData);
}
}
for (;i < m; ++i) {
enterNodes[i] = d3_selection_dataNode(groupData[i]);
}
for (;i < n; ++i) {
exitNodes[i] = group[i];
}
}
enterNodes.update = updateNodes;
enterNodes.parentNode = updateNodes.parentNode = exitNodes.parentNode = group.parentNode;
enter.push(enterNodes);
update.push(updateNodes);
exit.push(exitNodes);
}
var enter = d3_selection_enter([]), update = d3_selection([]), exit = d3_selection([]);
if (typeof value === "function") {
while (++i < n) {
bind(group = this[i], value.call(group, group.parentNode.__data__, i));
}
} else {
while (++i < n) {
bind(group = this[i], value);
}
}
update.enter = function() {
return enter;
};
update.exit = function() {
return exit;
};
return update;
};
function d3_selection_dataNode(data) {
return {
__data__: data
};
}
d3_selectionPrototype.datum = function(value) {
return arguments.length ? this.property("__data__", value) : this.property("__data__");
};
d3_selectionPrototype.filter = function(filter) {
var subgroups = [], subgroup, group, node;
if (typeof filter !== "function") filter = d3_selection_filter(filter);
for (var j = 0, m = this.length; j < m; j++) {
subgroups.push(subgroup = []);
subgroup.parentNode = (group = this[j]).parentNode;
for (var i = 0, n = group.length; i < n; i++) {
if ((node = group[i]) && filter.call(node, node.__data__, i)) {
subgroup.push(node);
}
}
}
return d3_selection(subgroups);
};
function d3_selection_filter(selector) {
return function() {
return d3_selectMatches(this, selector);
};
}
d3_selectionPrototype.order = function() {
for (var j = -1, m = this.length; ++j < m; ) {
for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0; ) {
if (node = group[i]) {
if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next);
next = node;
}
}
}
return this;
};
d3_selectionPrototype.sort = function(comparator) {
comparator = d3_selection_sortComparator.apply(this, arguments);
for (var j = -1, m = this.length; ++j < m; ) this[j].sort(comparator);
return this.order();
};
function d3_selection_sortComparator(comparator) {
if (!arguments.length) comparator = d3.ascending;
return function(a, b) {
return !a - !b || comparator(a.__data__, b.__data__);
};
}
d3_selectionPrototype.on = function(type, listener, capture) {
var n = arguments.length;
if (n < 3) {
if (typeof type !== "string") {
if (n < 2) listener = false;
for (capture in type) this.each(d3_selection_on(capture, type[capture], listener));
return this;
}
if (n < 2) return (n = this.node()["__on" + type]) && n._;
capture = false;
}
return this.each(d3_selection_on(type, listener, capture));
};
function d3_selection_on(type, listener, capture) {
var name = "__on" + type, i = type.indexOf(".");
if (i > 0) type = type.substring(0, i);
function onRemove() {
var wrapper = this[name];
if (wrapper) {
this.removeEventListener(type, wrapper, wrapper.$);
delete this[name];
}
}
function onAdd() {
var node = this, args = d3_array(arguments);
onRemove.call(this);
this.addEventListener(type, this[name] = wrapper, wrapper.$ = capture);
wrapper._ = listener;
function wrapper(e) {
var o = d3.event;
d3.event = e;
args[0] = node.__data__;
try {
listener.apply(node, args);
} finally {
d3.event = o;
}
}
}
return listener ? onAdd : onRemove;
}
d3_selectionPrototype.each = function(callback) {
return d3_selection_each(this, function(node, i, j) {
callback.call(node, node.__data__, i, j);
});
};
function d3_selection_each(groups, callback) {
for (var j = 0, m = groups.length; j < m; j++) {
for (var group = groups[j], i = 0, n = group.length, node; i < n; i++) {
if (node = group[i]) callback(node, i, j);
}
}
return groups;
}
d3_selectionPrototype.call = function(callback) {
var args = d3_array(arguments);
callback.apply(args[0] = this, args);
return this;
};
d3_selectionPrototype.empty = function() {
return !this.node();
};
d3_selectionPrototype.node = function() {
for (var j = 0, m = this.length; j < m; j++) {
for (var group = this[j], i = 0, n = group.length; i < n; i++) {
var node = group[i];
if (node) return node;
}
}
return null;
};
d3_selectionPrototype.transition = function() {
var id = d3_transitionInheritId || ++d3_transitionId, subgroups = [], subgroup, node, transition = Object.create(d3_transitionInherit);
transition.time = Date.now();
for (var j = -1, m = this.length; ++j < m; ) {
subgroups.push(subgroup = []);
for (var group = this[j], i = -1, n = group.length; ++i < n; ) {
if (node = group[i]) d3_transitionNode(node, i, id, transition);
subgroup.push(node);
}
}
return d3_transition(subgroups, id);
};
var d3_selectionRoot = d3_selection([ [ d3_document ] ]);
d3_selectionRoot[0].parentNode = d3_selectRoot;
d3.select = function(selector) {
return typeof selector === "string" ? d3_selectionRoot.select(selector) : d3_selection([ [ selector ] ]);
};
d3.selectAll = function(selector) {
return typeof selector === "string" ? d3_selectionRoot.selectAll(selector) : d3_selection([ d3_array(selector) ]);
};
function d3_selection_enter(selection) {
d3_arraySubclass(selection, d3_selection_enterPrototype);
return selection;
}
var d3_selection_enterPrototype = [];
d3.selection.enter = d3_selection_enter;
d3.selection.enter.prototype = d3_selection_enterPrototype;
d3_selection_enterPrototype.append = d3_selectionPrototype.append;
d3_selection_enterPrototype.insert = d3_selectionPrototype.insert;
d3_selection_enterPrototype.empty = d3_selectionPrototype.empty;
d3_selection_enterPrototype.node = d3_selectionPrototype.node;
d3_selection_enterPrototype.select = function(selector) {
var subgroups = [], subgroup, subnode, upgroup, group, node;
for (var j = -1, m = this.length; ++j < m; ) {
upgroup = (group = this[j]).update;
subgroups.push(subgroup = []);
subgroup.parentNode = group.parentNode;
for (var i = -1, n = group.length; ++i < n; ) {
if (node = group[i]) {
subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));
subnode.__data__ = node.__data__;
} else {
subgroup.push(null);
}
}
}
return d3_selection(subgroups);
};
function d3_transition(groups, id) {
d3_arraySubclass(groups, d3_transitionPrototype);
groups.id = id;
return groups;
}
var d3_transitionPrototype = [], d3_transitionId = 0, d3_transitionInheritId, d3_transitionInherit = {
ease: d3_ease_cubicInOut,
delay: 0,
duration: 250
};
d3_transitionPrototype.call = d3_selectionPrototype.call;
d3_transitionPrototype.empty = d3_selectionPrototype.empty;
d3_transitionPrototype.node = d3_selectionPrototype.node;
d3.transition = function(selection) {
return arguments.length ? d3_transitionInheritId ? selection.transition() : selection : d3_selectionRoot.transition();
};
d3.transition.prototype = d3_transitionPrototype;
function d3_transitionNode(node, i, id, inherit) {
var lock = node.__transition__ || (node.__transition__ = {
active: 0,
count: 0
}), transition = lock[id];
if (!transition) {
var time = inherit.time;
transition = lock[id] = {
tween: new d3_Map(),
event: d3.dispatch("start", "end"),
time: time,
ease: inherit.ease,
delay: inherit.delay,
duration: inherit.duration
};
++lock.count;
d3.timer(function(elapsed) {
var d = node.__data__, ease = transition.ease, event = transition.event, delay = transition.delay, duration = transition.duration, tweened = [];
return delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time), 1;
function start(elapsed) {
if (lock.active > id) return stop();
lock.active = id;
event.start.call(node, d, i);
transition.tween.forEach(function(key, value) {
if (value = value.call(node, d, i)) {
tweened.push(value);
}
});
if (!tick(elapsed)) d3.timer(tick, 0, time);
return 1;
}
function tick(elapsed) {
if (lock.active !== id) return stop();
var t = (elapsed - delay) / duration, e = ease(t), n = tweened.length;
while (n > 0) {
tweened[--n].call(node, e);
}
if (t >= 1) {
stop();
event.end.call(node, d, i);
return 1;
}
}
function stop() {
if (--lock.count) delete lock[id]; else delete node.__transition__;
return 1;
}
}, 0, time);
return transition;
}
}
d3_transitionPrototype.select = function(selector) {
var id = this.id, subgroups = [], subgroup, subnode, node;
if (typeof selector !== "function") selector = d3_selection_selector(selector);
for (var j = -1, m = this.length; ++j < m; ) {
subgroups.push(subgroup = []);
for (var group = this[j], i = -1, n = group.length; ++i < n; ) {
if ((node = group[i]) && (subnode = selector.call(node, node.__data__, i))) {
if ("__data__" in node) subnode.__data__ = node.__data__;
d3_transitionNode(subnode, i, id, node.__transition__[id]);
subgroup.push(subnode);
} else {
subgroup.push(null);
}
}
}
return d3_transition(subgroups, id);
};
d3_transitionPrototype.selectAll = function(selector) {
var id = this.id, subgroups = [], subgroup, subnodes, node, subnode, transition;
if (typeof selector !== "function") selector = d3_selection_selectorAll(selector);
for (var j = -1, m = this.length; ++j < m; ) {
for (var group = this[j], i = -1, n = group.length; ++i < n; ) {
if (node = group[i]) {
transition = node.__transition__[id];
subnodes = selector.call(node, node.__data__, i);
subgroups.push(subgroup = []);
for (var k = -1, o = subnodes.length; ++k < o; ) {
d3_transitionNode(subnode = subnodes[k], k, id, transition);
subgroup.push(subnode);
}
}
}
}
return d3_transition(subgroups, id);
};
d3_transitionPrototype.filter = function(filter) {
var subgroups = [], subgroup, group, node;
if (typeof filter !== "function") filter = d3_selection_filter(filter);
for (var j = 0, m = this.length; j < m; j++) {
subgroups.push(subgroup = []);
for (var group = this[j], i = 0, n = group.length; i < n; i++) {
if ((node = group[i]) && filter.call(node, node.__data__, i)) {
subgroup.push(node);
}
}
}
return d3_transition(subgroups, this.id, this.time).ease(this.ease());
};
d3_transitionPrototype.attr = function(nameNS, value) {
if (arguments.length < 2) {
for (value in nameNS) this.attr(value, nameNS[value]);
return this;
}
var interpolate = d3_interpolateByName(nameNS), name = d3.ns.qualify(nameNS);
function attrNull() {
this.removeAttribute(name);
}
function attrNullNS() {
this.removeAttributeNS(name.space, name.local);
}
return d3_transition_tween(this, "attr." + nameNS, value, function(b) {
function attrString() {
var a = this.getAttribute(name), i;
return a !== b && (i = interpolate(a, b), function(t) {
this.setAttribute(name, i(t));
});
}
function attrStringNS() {
var a = this.getAttributeNS(name.space, name.local), i;
return a !== b && (i = interpolate(a, b), function(t) {
this.setAttributeNS(name.space, name.local, i(t));
});
}
return b == null ? name.local ? attrNullNS : attrNull : (b += "", name.local ? attrStringNS : attrString);
});
};
d3_transitionPrototype.attrTween = function(nameNS, tween) {
var name = d3.ns.qualify(nameNS);
function attrTween(d, i) {
var f = tween.call(this, d, i, this.getAttribute(name));
return f && function(t) {
this.setAttribute(name, f(t));
};
}
function attrTweenNS(d, i) {
var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));
return f && function(t) {
this.setAttributeNS(name.space, name.local, f(t));
};
}
return this.tween("attr." + nameNS, name.local ? attrTweenNS : attrTween);
};
d3_transitionPrototype.style = function(name, value, priority) {
var n = arguments.length;
if (n < 3) {
if (typeof name !== "string") {
if (n < 2) value = "";
for (priority in name) this.style(priority, name[priority], value);
return this;
}
priority = "";
}
var interpolate = d3_interpolateByName(name);
function styleNull() {
this.style.removeProperty(name);
}
return d3_transition_tween(this, "style." + name, value, function(b) {
function styleString() {
var a = d3_window.getComputedStyle(this, null).getPropertyValue(name), i;
return a !== b && (i = interpolate(a, b), function(t) {
this.style.setProperty(name, i(t), priority);
});
}
return b == null ? styleNull : (b += "", styleString);
});
};
d3_transitionPrototype.styleTween = function(name, tween, priority) {
if (arguments.length < 3) priority = "";
return this.tween("style." + name, function(d, i) {
var f = tween.call(this, d, i, d3_window.getComputedStyle(this, null).getPropertyValue(name));
return f && function(t) {
this.style.setProperty(name, f(t), priority);
};
});
};
d3_transitionPrototype.text = function(value) {
return d3_transition_tween(this, "text", value, d3_transition_text);
};
function d3_transition_text(b) {
if (b == null) b = "";
return function() {
this.textContent = b;
};
}
d3_transitionPrototype.remove = function() {
return this.each("end.transition", function() {
var p;
if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);
});
};
d3_transitionPrototype.ease = function(value) {
var id = this.id;
if (arguments.length < 1) return this.node().__transition__[id].ease;
if (typeof value !== "function") value = d3.ease.apply(d3, arguments);
return d3_selection_each(this, function(node) {
node.__transition__[id].ease = value;
});
};
d3_transitionPrototype.delay = function(value) {
var id = this.id;
return d3_selection_each(this, typeof value === "function" ? function(node, i, j) {
node.__transition__[id].delay = value.call(node, node.__data__, i, j) | 0;
} : (value |= 0, function(node) {
node.__transition__[id].delay = value;
}));
};
d3_transitionPrototype.duration = function(value) {
var id = this.id;
return d3_selection_each(this, typeof value === "function" ? function(node, i, j) {
node.__transition__[id].duration = Math.max(1, value.call(node, node.__data__, i, j) | 0);
} : (value = Math.max(1, value | 0), function(node) {
node.__transition__[id].duration = value;
}));
};
d3_transitionPrototype.each = function(type, listener) {
var id = this.id;
if (arguments.length < 2) {
var inherit = d3_transitionInherit, inheritId = d3_transitionInheritId;
d3_transitionInheritId = id;
d3_selection_each(this, function(node, i, j) {
d3_transitionInherit = node.__transition__[id];
type.call(node, node.__data__, i, j);
});
d3_transitionInherit = inherit;
d3_transitionInheritId = inheritId;
} else {
d3_selection_each(this, function(node) {
node.__transition__[id].event.on(type, listener);
});
}
return this;
};
d3_transitionPrototype.transition = function() {
var id0 = this.id, id1 = ++d3_transitionId, subgroups = [], subgroup, group, node, transition;
for (var j = 0, m = this.length; j < m; j++) {
subgroups.push(subgroup = []);
for (var group = this[j], i = 0, n = group.length; i < n; i++) {
if (node = group[i]) {
transition = Object.create(node.__transition__[id0]);
transition.delay += transition.duration;
d3_transitionNode(node, i, id1, transition);
}
subgroup.push(node);
}
}
return d3_transition(subgroups, id1);
};
d3_transitionPrototype.tween = function(name, tween) {
var id = this.id;
if (arguments.length < 2) return this.node().__transition__[id].tween.get(name);
return d3_selection_each(this, tween == null ? function(node) {
node.__transition__[id].tween.remove(name);
} : function(node) {
node.__transition__[id].tween.set(name, tween);
});
};
function d3_transition_tween(groups, name, value, tween) {
var id = groups.id;
return d3_selection_each(groups, typeof value === "function" ? function(node, i, j) {
node.__transition__[id].tween.set(name, tween(value.call(node, node.__data__, i, j)));
} : (value = tween(value), function(node) {
node.__transition__[id].tween.set(name, value);
}));
}
var d3_timer_id = 0, d3_timer_byId = {}, d3_timer_queue = null, d3_timer_interval, d3_timer_timeout;
d3.timer = function(callback, delay, then) {
if (arguments.length < 3) {
if (arguments.length < 2) delay = 0; else if (!isFinite(delay)) return;
then = Date.now();
}
var timer = d3_timer_byId[callback.id];
if (timer && timer.callback === callback) {
timer.then = then;
timer.delay = delay;
} else d3_timer_byId[callback.id = ++d3_timer_id] = d3_timer_queue = {
callback: callback,
then: then,
delay: delay,
next: d3_timer_queue
};
if (!d3_timer_interval) {
d3_timer_timeout = clearTimeout(d3_timer_timeout);
d3_timer_interval = 1;
d3_timer_frame(d3_timer_step);
}
};
function d3_timer_step() {
var elapsed, now = Date.now(), t1 = d3_timer_queue;
while (t1) {
elapsed = now - t1.then;
if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);
t1 = t1.next;
}
var delay = d3_timer_flush() - now;
if (delay > 24) {
if (isFinite(delay)) {
clearTimeout(d3_timer_timeout);
d3_timer_timeout = setTimeout(d3_timer_step, delay);
}
d3_timer_interval = 0;
} else {
d3_timer_interval = 1;
d3_timer_frame(d3_timer_step);
}
}
d3.timer.flush = function() {
var elapsed, now = Date.now(), t1 = d3_timer_queue;
while (t1) {
elapsed = now - t1.then;
if (!t1.delay) t1.flush = t1.callback(elapsed);
t1 = t1.next;
}
d3_timer_flush();
};
function d3_timer_flush() {
var t0 = null, t1 = d3_timer_queue, then = Infinity;
while (t1) {
if (t1.flush) {
delete d3_timer_byId[t1.callback.id];
t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;
} else {
then = Math.min(then, t1.then + t1.delay);
t1 = (t0 = t1).next;
}
}
return then;
}
var d3_timer_frame = d3_window.requestAnimationFrame || d3_window.webkitRequestAnimationFrame || d3_window.mozRequestAnimationFrame || d3_window.oRequestAnimationFrame || d3_window.msRequestAnimationFrame || function(callback) {
setTimeout(callback, 17);
};
d3.mouse = function(container) {
return d3_mousePoint(container, d3_eventSource());
};
var d3_mouse_bug44083 = /WebKit/.test(d3_window.navigator.userAgent) ? -1 : 0;
function d3_mousePoint(container, e) {
var svg = container.ownerSVGElement || container;
if (svg.createSVGPoint) {
var point = svg.createSVGPoint();
if (d3_mouse_bug44083 < 0 && (d3_window.scrollX || d3_window.scrollY)) {
svg = d3.select(d3_document.body).append("svg").style("position", "absolute").style("top", 0).style("left", 0);
var ctm = svg[0][0].getScreenCTM();
d3_mouse_bug44083 = !(ctm.f || ctm.e);
svg.remove();
}
if (d3_mouse_bug44083) {
point.x = e.pageX;
point.y = e.pageY;
} else {
point.x = e.clientX;
point.y = e.clientY;
}
point = point.matrixTransform(container.getScreenCTM().inverse());
return [ point.x, point.y ];
}
var rect = container.getBoundingClientRect();
return [ e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop ];
}
d3.touches = function(container, touches) {
if (arguments.length < 2) touches = d3_eventSource().touches;
return touches ? d3_array(touches).map(function(touch) {
var point = d3_mousePoint(container, touch);
point.identifier = touch.identifier;
return point;
}) : [];
};
function d3_noop() {}
d3.scale = {};
function d3_scaleExtent(domain) {
var start = domain[0], stop = domain[domain.length - 1];
return start < stop ? [ start, stop ] : [ stop, start ];
}
function d3_scaleRange(scale) {
return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range());
}
function d3_scale_nice(domain, nice) {
var i0 = 0, i1 = domain.length - 1, x0 = domain[i0], x1 = domain[i1], dx;
if (x1 < x0) {
dx = i0, i0 = i1, i1 = dx;
dx = x0, x0 = x1, x1 = dx;
}
if (nice = nice(x1 - x0)) {
domain[i0] = nice.floor(x0);
domain[i1] = nice.ceil(x1);
}
return domain;
}
function d3_scale_niceDefault() {
return Math;
}
d3.scale.linear = function() {
return d3_scale_linear([ 0, 1 ], [ 0, 1 ], d3.interpolate, false);
};
function d3_scale_linear(domain, range, interpolate, clamp) {
var output, input;
function rescale() {
var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear, uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;
output = linear(domain, range, uninterpolate, interpolate);
input = linear(range, domain, uninterpolate, d3.interpolate);
return scale;
}
function scale(x) {
return output(x);
}
scale.invert = function(y) {
return input(y);
};
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = x.map(Number);
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.rangeRound = function(x) {
return scale.range(x).interpolate(d3.interpolateRound);
};
scale.clamp = function(x) {
if (!arguments.length) return clamp;
clamp = x;
return rescale();
};
scale.interpolate = function(x) {
if (!arguments.length) return interpolate;
interpolate = x;
return rescale();
};
scale.ticks = function(m) {
return d3_scale_linearTicks(domain, m);
};
scale.tickFormat = function(m) {
return d3_scale_linearTickFormat(domain, m);
};
scale.nice = function() {
d3_scale_nice(domain, d3_scale_linearNice);
return rescale();
};
scale.copy = function() {
return d3_scale_linear(domain, range, interpolate, clamp);
};
return rescale();
}
function d3_scale_linearRebind(scale, linear) {
return d3.rebind(scale, linear, "range", "rangeRound", "interpolate", "clamp");
}
function d3_scale_linearNice(dx) {
dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);
return dx && {
floor: function(x) {
return Math.floor(x / dx) * dx;
},
ceil: function(x) {
return Math.ceil(x / dx) * dx;
}
};
}
function d3_scale_linearTickRange(domain, m) {
var extent = d3_scaleExtent(domain), span = extent[1] - extent[0], step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)), err = m / span * step;
if (err <= .15) step *= 10; else if (err <= .35) step *= 5; else if (err <= .75) step *= 2;
extent[0] = Math.ceil(extent[0] / step) * step;
extent[1] = Math.floor(extent[1] / step) * step + step * .5;
extent[2] = step;
return extent;
}
function d3_scale_linearTicks(domain, m) {
return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));
}
function d3_scale_linearTickFormat(domain, m) {
return d3.format(",." + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + "f");
}
function d3_scale_bilinear(domain, range, uninterpolate, interpolate) {
var u = uninterpolate(domain[0], domain[1]), i = interpolate(range[0], range[1]);
return function(x) {
return i(u(x));
};
}
function d3_scale_polylinear(domain, range, uninterpolate, interpolate) {
var u = [], i = [], j = 0, k = Math.min(domain.length, range.length) - 1;
if (domain[k] < domain[0]) {
domain = domain.slice().reverse();
range = range.slice().reverse();
}
while (++j <= k) {
u.push(uninterpolate(domain[j - 1], domain[j]));
i.push(interpolate(range[j - 1], range[j]));
}
return function(x) {
var j = d3.bisect(domain, x, 1, k) - 1;
return i[j](u[j](x));
};
}
d3.scale.log = function() {
return d3_scale_log(d3.scale.linear(), d3_scale_logp);
};
function d3_scale_log(linear, log) {
var pow = log.pow;
function scale(x) {
return linear(log(x));
}
scale.invert = function(x) {
return pow(linear.invert(x));
};
scale.domain = function(x) {
if (!arguments.length) return linear.domain().map(pow);
log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;
pow = log.pow;
linear.domain(x.map(log));
return scale;
};
scale.nice = function() {
linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));
return scale;
};
scale.ticks = function() {
var extent = d3_scaleExtent(linear.domain()), ticks = [];
if (extent.every(isFinite)) {
var i = Math.floor(extent[0]), j = Math.ceil(extent[1]), u = pow(extent[0]), v = pow(extent[1]);
if (log === d3_scale_logn) {
ticks.push(pow(i));
for (;i++ < j; ) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);
} else {
for (;i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);
ticks.push(pow(i));
}
for (i = 0; ticks[i] < u; i++) {}
for (j = ticks.length; ticks[j - 1] > v; j--) {}
ticks = ticks.slice(i, j);
}
return ticks;
};
scale.tickFormat = function(n, format) {
if (arguments.length < 2) format = d3_scale_logFormat;
if (!arguments.length) return format;
var k = Math.max(.1, n / scale.ticks().length), f = log === d3_scale_logn ? (e = -1e-12,
Math.floor) : (e = 1e-12, Math.ceil), e;
return function(d) {
return d / pow(f(log(d) + e)) <= k ? format(d) : "";
};
};
scale.copy = function() {
return d3_scale_log(linear.copy(), log);
};
return d3_scale_linearRebind(scale, linear);
}
var d3_scale_logFormat = d3.format(".0e");
function d3_scale_logp(x) {
return Math.log(x < 0 ? 0 : x) / Math.LN10;
}
function d3_scale_logn(x) {
return -Math.log(x > 0 ? 0 : -x) / Math.LN10;
}
d3_scale_logp.pow = function(x) {
return Math.pow(10, x);
};
d3_scale_logn.pow = function(x) {
return -Math.pow(10, -x);
};
d3.scale.pow = function() {
return d3_scale_pow(d3.scale.linear(), 1);
};
function d3_scale_pow(linear, exponent) {
var powp = d3_scale_powPow(exponent), powb = d3_scale_powPow(1 / exponent);
function scale(x) {
return linear(powp(x));
}
scale.invert = function(x) {
return powb(linear.invert(x));
};
scale.domain = function(x) {
if (!arguments.length) return linear.domain().map(powb);
linear.domain(x.map(powp));
return scale;
};
scale.ticks = function(m) {
return d3_scale_linearTicks(scale.domain(), m);
};
scale.tickFormat = function(m) {
return d3_scale_linearTickFormat(scale.domain(), m);
};
scale.nice = function() {
return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));
};
scale.exponent = function(x) {
if (!arguments.length) return exponent;
var domain = scale.domain();
powp = d3_scale_powPow(exponent = x);
powb = d3_scale_powPow(1 / exponent);
return scale.domain(domain);
};
scale.copy = function() {
return d3_scale_pow(linear.copy(), exponent);
};
return d3_scale_linearRebind(scale, linear);
}
function d3_scale_powPow(e) {
return function(x) {
return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);
};
}
d3.scale.sqrt = function() {
return d3.scale.pow().exponent(.5);
};
d3.scale.ordinal = function() {
return d3_scale_ordinal([], {
t: "range",
a: [ [] ]
});
};
function d3_scale_ordinal(domain, ranger) {
var index, range, rangeBand;
function scale(x) {
return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length];
}
function steps(start, step) {
return d3.range(domain.length).map(function(i) {
return start + step * i;
});
}
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = [];
index = new d3_Map();
var i = -1, n = x.length, xi;
while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi));
return scale[ranger.t].apply(scale, ranger.a);
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
rangeBand = 0;
ranger = {
t: "range",
a: arguments
};
return scale;
};
scale.rangePoints = function(x, padding) {
if (arguments.length < 2) padding = 0;
var start = x[0], stop = x[1], step = (stop - start) / (Math.max(1, domain.length - 1) + padding);
range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step);
rangeBand = 0;
ranger = {
t: "rangePoints",
a: arguments
};
return scale;
};
scale.rangeBands = function(x, padding, outerPadding) {
if (arguments.length < 2) padding = 0;
if (arguments.length < 3) outerPadding = padding;
var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = (stop - start) / (domain.length - padding + 2 * outerPadding);
range = steps(start + step * outerPadding, step);
if (reverse) range.reverse();
rangeBand = step * (1 - padding);
ranger = {
t: "rangeBands",
a: arguments
};
return scale;
};
scale.rangeRoundBands = function(x, padding, outerPadding) {
if (arguments.length < 2) padding = 0;
if (arguments.length < 3) outerPadding = padding;
var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = Math.floor((stop - start) / (domain.length - padding + 2 * outerPadding)), error = stop - start - (domain.length - padding) * step;
range = steps(start + Math.round(error / 2), step);
if (reverse) range.reverse();
rangeBand = Math.round(step * (1 - padding));
ranger = {
t: "rangeRoundBands",
a: arguments
};
return scale;
};
scale.rangeBand = function() {
return rangeBand;
};
scale.rangeExtent = function() {
return d3_scaleExtent(ranger.a[0]);
};
scale.copy = function() {
return d3_scale_ordinal(domain, ranger);
};
return scale.domain(domain);
}
d3.scale.category10 = function() {
return d3.scale.ordinal().range(d3_category10);
};
d3.scale.category20 = function() {
return d3.scale.ordinal().range(d3_category20);
};
d3.scale.category20b = function() {
return d3.scale.ordinal().range(d3_category20b);
};
d3.scale.category20c = function() {
return d3.scale.ordinal().range(d3_category20c);
};
var d3_category10 = [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf" ];
var d3_category20 = [ "#1f77b4", "#aec7e8", "#ff7f0e", "#ffbb78", "#2ca02c", "#98df8a", "#d62728", "#ff9896", "#9467bd", "#c5b0d5", "#8c564b", "#c49c94", "#e377c2", "#f7b6d2", "#7f7f7f", "#c7c7c7", "#bcbd22", "#dbdb8d", "#17becf", "#9edae5" ];
var d3_category20b = [ "#393b79", "#5254a3", "#6b6ecf", "#9c9ede", "#637939", "#8ca252", "#b5cf6b", "#cedb9c", "#8c6d31", "#bd9e39", "#e7ba52", "#e7cb94", "#843c39", "#ad494a", "#d6616b", "#e7969c", "#7b4173", "#a55194", "#ce6dbd", "#de9ed6" ];
var d3_category20c = [ "#3182bd", "#6baed6", "#9ecae1", "#c6dbef", "#e6550d", "#fd8d3c", "#fdae6b", "#fdd0a2", "#31a354", "#74c476", "#a1d99b", "#c7e9c0", "#756bb1", "#9e9ac8", "#bcbddc", "#dadaeb", "#636363", "#969696", "#bdbdbd", "#d9d9d9" ];
d3.scale.quantile = function() {
return d3_scale_quantile([], []);
};
function d3_scale_quantile(domain, range) {
var thresholds;
function rescale() {
var k = 0, q = range.length;
thresholds = [];
while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);
return scale;
}
function scale(x) {
if (isNaN(x = +x)) return NaN;
return range[d3.bisect(thresholds, x)];
}
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = x.filter(function(d) {
return !isNaN(d);
}).sort(d3.ascending);
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.quantiles = function() {
return thresholds;
};
scale.copy = function() {
return d3_scale_quantile(domain, range);
};
return rescale();
}
d3.scale.quantize = function() {
return d3_scale_quantize(0, 1, [ 0, 1 ]);
};
function d3_scale_quantize(x0, x1, range) {
var kx, i;
function scale(x) {
return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];
}
function rescale() {
kx = range.length / (x1 - x0);
i = range.length - 1;
return scale;
}
scale.domain = function(x) {
if (!arguments.length) return [ x0, x1 ];
x0 = +x[0];
x1 = +x[x.length - 1];
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.copy = function() {
return d3_scale_quantize(x0, x1, range);
};
return rescale();
}
d3.scale.threshold = function() {
return d3_scale_threshold([ .5 ], [ 0, 1 ]);
};
function d3_scale_threshold(domain, range) {
function scale(x) {
return range[d3.bisect(domain, x)];
}
scale.domain = function(_) {
if (!arguments.length) return domain;
domain = _;
return scale;
};
scale.range = function(_) {
if (!arguments.length) return range;
range = _;
return scale;
};
scale.copy = function() {
return d3_scale_threshold(domain, range);
};
return scale;
}
d3.scale.identity = function() {
return d3_scale_identity([ 0, 1 ]);
};
function d3_scale_identity(domain) {
function identity(x) {
return +x;
}
identity.invert = identity;
identity.domain = identity.range = function(x) {
if (!arguments.length) return domain;
domain = x.map(identity);
return identity;
};
identity.ticks = function(m) {
return d3_scale_linearTicks(domain, m);
};
identity.tickFormat = function(m) {
return d3_scale_linearTickFormat(domain, m);
};
identity.copy = function() {
return d3_scale_identity(domain);
};
return identity;
}
d3.svg = {};
d3.svg.arc = function() {
var innerRadius = d3_svg_arcInnerRadius, outerRadius = d3_svg_arcOuterRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle;
function arc() {
var r0 = innerRadius.apply(this, arguments), r1 = outerRadius.apply(this, arguments), a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset, a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset, da = (a1 < a0 && (da = a0,
a0 = a1, a1 = da), a1 - a0), df = da < π ? "0" : "1", c0 = Math.cos(a0), s0 = Math.sin(a0), c1 = Math.cos(a1), s1 = Math.sin(a1);
return da >= d3_svg_arcMax ? r0 ? "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "M0," + r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + -r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + r0 + "Z" : "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "Z" : r0 ? "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L" + r0 * c1 + "," + r0 * s1 + "A" + r0 + "," + r0 + " 0 " + df + ",0 " + r0 * c0 + "," + r0 * s0 + "Z" : "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L0,0" + "Z";
}
arc.innerRadius = function(v) {
if (!arguments.length) return innerRadius;
innerRadius = d3_functor(v);
return arc;
};
arc.outerRadius = function(v) {
if (!arguments.length) return outerRadius;
outerRadius = d3_functor(v);
return arc;
};
arc.startAngle = function(v) {
if (!arguments.length) return startAngle;
startAngle = d3_functor(v);
return arc;
};
arc.endAngle = function(v) {
if (!arguments.length) return endAngle;
endAngle = d3_functor(v);
return arc;
};
arc.centroid = function() {
var r = (innerRadius.apply(this, arguments) + outerRadius.apply(this, arguments)) / 2, a = (startAngle.apply(this, arguments) + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;
return [ Math.cos(a) * r, Math.sin(a) * r ];
};
return arc;
};
var d3_svg_arcOffset = -π / 2, d3_svg_arcMax = 2 * π - 1e-6;
function d3_svg_arcInnerRadius(d) {
return d.innerRadius;
}
function d3_svg_arcOuterRadius(d) {
return d.outerRadius;
}
function d3_svg_arcStartAngle(d) {
return d.startAngle;
}
function d3_svg_arcEndAngle(d) {
return d.endAngle;
}
function d3_svg_line(projection) {
var x = d3_svg_lineX, y = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, tension = .7;
function line(data) {
var segments = [], points = [], i = -1, n = data.length, d, fx = d3_functor(x), fy = d3_functor(y);
function segment() {
segments.push("M", interpolate(projection(points), tension));
}
while (++i < n) {
if (defined.call(this, d = data[i], i)) {
points.push([ +fx.call(this, d, i), +fy.call(this, d, i) ]);
} else if (points.length) {
segment();
points = [];
}
}
if (points.length) segment();
return segments.length ? segments.join("") : null;
}
line.x = function(_) {
if (!arguments.length) return x;
x = _;
return line;
};
line.y = function(_) {
if (!arguments.length) return y;
y = _;
return line;
};
line.defined = function(_) {
if (!arguments.length) return defined;
defined = _;
return line;
};
line.interpolate = function(_) {
if (!arguments.length) return interpolateKey;
if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key;
return line;
};
line.tension = function(_) {
if (!arguments.length) return tension;
tension = _;
return line;
};
return line;
}
d3.svg.line = function() {
return d3_svg_line(d3_identity);
};
function d3_svg_lineX(d) {
return d[0];
}
function d3_svg_lineY(d) {
return d[1];
}
var d3_svg_lineInterpolators = d3.map({
linear: d3_svg_lineLinear,
"linear-closed": d3_svg_lineLinearClosed,
"step-before": d3_svg_lineStepBefore,
"step-after": d3_svg_lineStepAfter,
basis: d3_svg_lineBasis,
"basis-open": d3_svg_lineBasisOpen,
"basis-closed": d3_svg_lineBasisClosed,
bundle: d3_svg_lineBundle,
cardinal: d3_svg_lineCardinal,
"cardinal-open": d3_svg_lineCardinalOpen,
"cardinal-closed": d3_svg_lineCardinalClosed,
monotone: d3_svg_lineMonotone
});
d3_svg_lineInterpolators.forEach(function(key, value) {
value.key = key;
value.closed = /-closed$/.test(key);
});
function d3_svg_lineLinear(points) {
return points.join("L");
}
function d3_svg_lineLinearClosed(points) {
return d3_svg_lineLinear(points) + "Z";
}
function d3_svg_lineStepBefore(points) {
var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ];
while (++i < n) path.push("V", (p = points[i])[1], "H", p[0]);
return path.join("");
}
function d3_svg_lineStepAfter(points) {
var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ];
while (++i < n) path.push("H", (p = points[i])[0], "V", p[1]);
return path.join("");
}
function d3_svg_lineCardinalOpen(points, tension) {
return points.length < 4 ? d3_svg_lineLinear(points) : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1), d3_svg_lineCardinalTangents(points, tension));
}
function d3_svg_lineCardinalClosed(points, tension) {
return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite((points.push(points[0]),
points), d3_svg_lineCardinalTangents([ points[points.length - 2] ].concat(points, [ points[1] ]), tension));
}
function d3_svg_lineCardinal(points, tension) {
return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineCardinalTangents(points, tension));
}
function d3_svg_lineHermite(points, tangents) {
if (tangents.length < 1 || points.length != tangents.length && points.length != tangents.length + 2) {
return d3_svg_lineLinear(points);
}
var quad = points.length != tangents.length, path = "", p0 = points[0], p = points[1], t0 = tangents[0], t = t0, pi = 1;
if (quad) {
path += "Q" + (p[0] - t0[0] * 2 / 3) + "," + (p[1] - t0[1] * 2 / 3) + "," + p[0] + "," + p[1];
p0 = points[1];
pi = 2;
}
if (tangents.length > 1) {
t = tangents[1];
p = points[pi];
pi++;
path += "C" + (p0[0] + t0[0]) + "," + (p0[1] + t0[1]) + "," + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1];
for (var i = 2; i < tangents.length; i++, pi++) {
p = points[pi];
t = tangents[i];
path += "S" + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1];
}
}
if (quad) {
var lp = points[pi];
path += "Q" + (p[0] + t[0] * 2 / 3) + "," + (p[1] + t[1] * 2 / 3) + "," + lp[0] + "," + lp[1];
}
return path;
}
function d3_svg_lineCardinalTangents(points, tension) {
var tangents = [], a = (1 - tension) / 2, p0, p1 = points[0], p2 = points[1], i = 1, n = points.length;
while (++i < n) {
p0 = p1;
p1 = p2;
p2 = points[i];
tangents.push([ a * (p2[0] - p0[0]), a * (p2[1] - p0[1]) ]);
}
return tangents;
}
function d3_svg_lineBasis(points) {
if (points.length < 3) return d3_svg_lineLinear(points);
var i = 1, n = points.length, pi = points[0], x0 = pi[0], y0 = pi[1], px = [ x0, x0, x0, (pi = points[1])[0] ], py = [ y0, y0, y0, pi[1] ], path = [ x0, ",", y0 ];
d3_svg_lineBasisBezier(path, px, py);
while (++i < n) {
pi = points[i];
px.shift();
px.push(pi[0]);
py.shift();
py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
i = -1;
while (++i < 2) {
px.shift();
px.push(pi[0]);
py.shift();
py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
function d3_svg_lineBasisOpen(points) {
if (points.length < 4) return d3_svg_lineLinear(points);
var path = [], i = -1, n = points.length, pi, px = [ 0 ], py = [ 0 ];
while (++i < 3) {
pi = points[i];
px.push(pi[0]);
py.push(pi[1]);
}
path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px) + "," + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));
--i;
while (++i < n) {
pi = points[i];
px.shift();
px.push(pi[0]);
py.shift();
py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
function d3_svg_lineBasisClosed(points) {
var path, i = -1, n = points.length, m = n + 4, pi, px = [], py = [];
while (++i < 4) {
pi = points[i % n];
px.push(pi[0]);
py.push(pi[1]);
}
path = [ d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, py) ];
--i;
while (++i < m) {
pi = points[i % n];
px.shift();
px.push(pi[0]);
py.shift();
py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
function d3_svg_lineBundle(points, tension) {
var n = points.length - 1;
if (n) {
var x0 = points[0][0], y0 = points[0][1], dx = points[n][0] - x0, dy = points[n][1] - y0, i = -1, p, t;
while (++i <= n) {
p = points[i];
t = i / n;
p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);
p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);
}
}
return d3_svg_lineBasis(points);
}
function d3_svg_lineDot4(a, b) {
return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];
}
var d3_svg_lineBasisBezier1 = [ 0, 2 / 3, 1 / 3, 0 ], d3_svg_lineBasisBezier2 = [ 0, 1 / 3, 2 / 3, 0 ], d3_svg_lineBasisBezier3 = [ 0, 1 / 6, 2 / 3, 1 / 6 ];
function d3_svg_lineBasisBezier(path, x, y) {
path.push("C", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));
}
function d3_svg_lineSlope(p0, p1) {
return (p1[1] - p0[1]) / (p1[0] - p0[0]);
}
function d3_svg_lineFiniteDifferences(points) {
var i = 0, j = points.length - 1, m = [], p0 = points[0], p1 = points[1], d = m[0] = d3_svg_lineSlope(p0, p1);
while (++i < j) {
m[i] = (d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]))) / 2;
}
m[i] = d;
return m;
}
function d3_svg_lineMonotoneTangents(points) {
var tangents = [], d, a, b, s, m = d3_svg_lineFiniteDifferences(points), i = -1, j = points.length - 1;
while (++i < j) {
d = d3_svg_lineSlope(points[i], points[i + 1]);
if (Math.abs(d) < 1e-6) {
m[i] = m[i + 1] = 0;
} else {
a = m[i] / d;
b = m[i + 1] / d;
s = a * a + b * b;
if (s > 9) {
s = d * 3 / Math.sqrt(s);
m[i] = s * a;
m[i + 1] = s * b;
}
}
}
i = -1;
while (++i <= j) {
s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0]) / (6 * (1 + m[i] * m[i]));
tangents.push([ s || 0, m[i] * s || 0 ]);
}
return tangents;
}
function d3_svg_lineMonotone(points) {
return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));
}
d3.svg.line.radial = function() {
var line = d3_svg_line(d3_svg_lineRadial);
line.radius = line.x, delete line.x;
line.angle = line.y, delete line.y;
return line;
};
function d3_svg_lineRadial(points) {
var point, i = -1, n = points.length, r, a;
while (++i < n) {
point = points[i];
r = point[0];
a = point[1] + d3_svg_arcOffset;
point[0] = r * Math.cos(a);
point[1] = r * Math.sin(a);
}
return points;
}
function d3_svg_area(projection) {
var x0 = d3_svg_lineX, x1 = d3_svg_lineX, y0 = 0, y1 = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, interpolateReverse = interpolate, L = "L", tension = .7;
function area(data) {
var segments = [], points0 = [], points1 = [], i = -1, n = data.length, d, fx0 = d3_functor(x0), fy0 = d3_functor(y0), fx1 = x0 === x1 ? function() {
return x;
} : d3_functor(x1), fy1 = y0 === y1 ? function() {
return y;
} : d3_functor(y1), x, y;
function segment() {
segments.push("M", interpolate(projection(points1), tension), L, interpolateReverse(projection(points0.reverse()), tension), "Z");
}
while (++i < n) {
if (defined.call(this, d = data[i], i)) {
points0.push([ x = +fx0.call(this, d, i), y = +fy0.call(this, d, i) ]);
points1.push([ +fx1.call(this, d, i), +fy1.call(this, d, i) ]);
} else if (points0.length) {
segment();
points0 = [];
points1 = [];
}
}
if (points0.length) segment();
return segments.length ? segments.join("") : null;
}
area.x = function(_) {
if (!arguments.length) return x1;
x0 = x1 = _;
return area;
};
area.x0 = function(_) {
if (!arguments.length) return x0;
x0 = _;
return area;
};
area.x1 = function(_) {
if (!arguments.length) return x1;
x1 = _;
return area;
};
area.y = function(_) {
if (!arguments.length) return y1;
y0 = y1 = _;
return area;
};
area.y0 = function(_) {
if (!arguments.length) return y0;
y0 = _;
return area;
};
area.y1 = function(_) {
if (!arguments.length) return y1;
y1 = _;
return area;
};
area.defined = function(_) {
if (!arguments.length) return defined;
defined = _;
return area;
};
area.interpolate = function(_) {
if (!arguments.length) return interpolateKey;
if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key;
interpolateReverse = interpolate.reverse || interpolate;
L = interpolate.closed ? "M" : "L";
return area;
};
area.tension = function(_) {
if (!arguments.length) return tension;
tension = _;
return area;
};
return area;
}
d3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;
d3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;
d3.svg.area = function() {
return d3_svg_area(d3_identity);
};
d3.svg.area.radial = function() {
var area = d3_svg_area(d3_svg_lineRadial);
area.radius = area.x, delete area.x;
area.innerRadius = area.x0, delete area.x0;
area.outerRadius = area.x1, delete area.x1;
area.angle = area.y, delete area.y;
area.startAngle = area.y0, delete area.y0;
area.endAngle = area.y1, delete area.y1;
return area;
};
d3.svg.chord = function() {
var source = d3_source, target = d3_target, radius = d3_svg_chordRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle;
function chord(d, i) {
var s = subgroup(this, source, d, i), t = subgroup(this, target, d, i);
return "M" + s.p0 + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t) ? curve(s.r, s.p1, s.r, s.p0) : curve(s.r, s.p1, t.r, t.p0) + arc(t.r, t.p1, t.a1 - t.a0) + curve(t.r, t.p1, s.r, s.p0)) + "Z";
}
function subgroup(self, f, d, i) {
var subgroup = f.call(self, d, i), r = radius.call(self, subgroup, i), a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset, a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;
return {
r: r,
a0: a0,
a1: a1,
p0: [ r * Math.cos(a0), r * Math.sin(a0) ],
p1: [ r * Math.cos(a1), r * Math.sin(a1) ]
};
}
function equals(a, b) {
return a.a0 == b.a0 && a.a1 == b.a1;
}
function arc(r, p, a) {
return "A" + r + "," + r + " 0 " + +(a > π) + ",1 " + p;
}
function curve(r0, p0, r1, p1) {
return "Q 0,0 " + p1;
}
chord.radius = function(v) {
if (!arguments.length) return radius;
radius = d3_functor(v);
return chord;
};
chord.source = function(v) {
if (!arguments.length) return source;
source = d3_functor(v);
return chord;
};
chord.target = function(v) {
if (!arguments.length) return target;
target = d3_functor(v);
return chord;
};
chord.startAngle = function(v) {
if (!arguments.length) return startAngle;
startAngle = d3_functor(v);
return chord;
};
chord.endAngle = function(v) {
if (!arguments.length) return endAngle;
endAngle = d3_functor(v);
return chord;
};
return chord;
};
function d3_svg_chordRadius(d) {
return d.radius;
}
d3.svg.diagonal = function() {
var source = d3_source, target = d3_target, projection = d3_svg_diagonalProjection;
function diagonal(d, i) {
var p0 = source.call(this, d, i), p3 = target.call(this, d, i), m = (p0.y + p3.y) / 2, p = [ p0, {
x: p0.x,
y: m
}, {
x: p3.x,
y: m
}, p3 ];
p = p.map(projection);
return "M" + p[0] + "C" + p[1] + " " + p[2] + " " + p[3];
}
diagonal.source = function(x) {
if (!arguments.length) return source;
source = d3_functor(x);
return diagonal;
};
diagonal.target = function(x) {
if (!arguments.length) return target;
target = d3_functor(x);
return diagonal;
};
diagonal.projection = function(x) {
if (!arguments.length) return projection;
projection = x;
return diagonal;
};
return diagonal;
};
function d3_svg_diagonalProjection(d) {
return [ d.x, d.y ];
}
d3.svg.diagonal.radial = function() {
var diagonal = d3.svg.diagonal(), projection = d3_svg_diagonalProjection, projection_ = diagonal.projection;
diagonal.projection = function(x) {
return arguments.length ? projection_(d3_svg_diagonalRadialProjection(projection = x)) : projection;
};
return diagonal;
};
function d3_svg_diagonalRadialProjection(projection) {
return function() {
var d = projection.apply(this, arguments), r = d[0], a = d[1] + d3_svg_arcOffset;
return [ r * Math.cos(a), r * Math.sin(a) ];
};
}
d3.svg.symbol = function() {
var type = d3_svg_symbolType, size = d3_svg_symbolSize;
function symbol(d, i) {
return (d3_svg_symbols.get(type.call(this, d, i)) || d3_svg_symbolCircle)(size.call(this, d, i));
}
symbol.type = function(x) {
if (!arguments.length) return type;
type = d3_functor(x);
return symbol;
};
symbol.size = function(x) {
if (!arguments.length) return size;
size = d3_functor(x);
return symbol;
};
return symbol;
};
function d3_svg_symbolSize() {
return 64;
}
function d3_svg_symbolType() {
return "circle";
}
function d3_svg_symbolCircle(size) {
var r = Math.sqrt(size / π);
return "M0," + r + "A" + r + "," + r + " 0 1,1 0," + -r + "A" + r + "," + r + " 0 1,1 0," + r + "Z";
}
var d3_svg_symbols = d3.map({
circle: d3_svg_symbolCircle,
cross: function(size) {
var r = Math.sqrt(size / 5) / 2;
return "M" + -3 * r + "," + -r + "H" + -r + "V" + -3 * r + "H" + r + "V" + -r + "H" + 3 * r + "V" + r + "H" + r + "V" + 3 * r + "H" + -r + "V" + r + "H" + -3 * r + "Z";
},
diamond: function(size) {
var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)), rx = ry * d3_svg_symbolTan30;
return "M0," + -ry + "L" + rx + ",0" + " 0," + ry + " " + -rx + ",0" + "Z";
},
square: function(size) {
var r = Math.sqrt(size) / 2;
return "M" + -r + "," + -r + "L" + r + "," + -r + " " + r + "," + r + " " + -r + "," + r + "Z";
},
"triangle-down": function(size) {
var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2;
return "M0," + ry + "L" + rx + "," + -ry + " " + -rx + "," + -ry + "Z";
},
"triangle-up": function(size) {
var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2;
return "M0," + -ry + "L" + rx + "," + ry + " " + -rx + "," + ry + "Z";
}
});
d3.svg.symbolTypes = d3_svg_symbols.keys();
var d3_svg_symbolSqrt3 = Math.sqrt(3), d3_svg_symbolTan30 = Math.tan(30 * d3_radians);
d3.svg.axis = function() {
var scale = d3.scale.linear(), orient = d3_svg_axisDefaultOrient, tickMajorSize = 6, tickMinorSize = 6, tickEndSize = 6, tickPadding = 3, tickArguments_ = [ 10 ], tickValues = null, tickFormat_, tickSubdivide = 0;
function axis(g) {
g.each(function() {
var g = d3.select(this);
var ticks = tickValues == null ? scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain() : tickValues, tickFormat = tickFormat_ == null ? scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String : tickFormat_;
var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide), subtick = g.selectAll(".tick.minor").data(subticks, String), subtickEnter = subtick.enter().insert("line", ".tick").attr("class", "tick minor").style("opacity", 1e-6), subtickExit = d3.transition(subtick.exit()).style("opacity", 1e-6).remove(), subtickUpdate = d3.transition(subtick).style("opacity", 1);
var tick = g.selectAll(".tick.major").data(ticks, String), tickEnter = tick.enter().insert("g", "path").attr("class", "tick major").style("opacity", 1e-6), tickExit = d3.transition(tick.exit()).style("opacity", 1e-6).remove(), tickUpdate = d3.transition(tick).style("opacity", 1), tickTransform;
var range = d3_scaleRange(scale), path = g.selectAll(".domain").data([ 0 ]), pathUpdate = (path.enter().append("path").attr("class", "domain"),
d3.transition(path));
var scale1 = scale.copy(), scale0 = this.__chart__ || scale1;
this.__chart__ = scale1;
tickEnter.append("line");
tickEnter.append("text");
var lineEnter = tickEnter.select("line"), lineUpdate = tickUpdate.select("line"), text = tick.select("text").text(tickFormat), textEnter = tickEnter.select("text"), textUpdate = tickUpdate.select("text");
switch (orient) {
case "bottom":
{
tickTransform = d3_svg_axisX;
subtickEnter.attr("y2", tickMinorSize);
subtickUpdate.attr("x2", 0).attr("y2", tickMinorSize);
lineEnter.attr("y2", tickMajorSize);
textEnter.attr("y", Math.max(tickMajorSize, 0) + tickPadding);
lineUpdate.attr("x2", 0).attr("y2", tickMajorSize);
textUpdate.attr("x", 0).attr("y", Math.max(tickMajorSize, 0) + tickPadding);
text.attr("dy", ".71em").style("text-anchor", "middle");
pathUpdate.attr("d", "M" + range[0] + "," + tickEndSize + "V0H" + range[1] + "V" + tickEndSize);
break;
}
case "top":
{
tickTransform = d3_svg_axisX;
subtickEnter.attr("y2", -tickMinorSize);
subtickUpdate.attr("x2", 0).attr("y2", -tickMinorSize);
lineEnter.attr("y2", -tickMajorSize);
textEnter.attr("y", -(Math.max(tickMajorSize, 0) + tickPadding));
lineUpdate.attr("x2", 0).attr("y2", -tickMajorSize);
textUpdate.attr("x", 0).attr("y", -(Math.max(tickMajorSize, 0) + tickPadding));
text.attr("dy", "0em").style("text-anchor", "middle");
pathUpdate.attr("d", "M" + range[0] + "," + -tickEndSize + "V0H" + range[1] + "V" + -tickEndSize);
break;
}
case "left":
{
tickTransform = d3_svg_axisY;
subtickEnter.attr("x2", -tickMinorSize);
subtickUpdate.attr("x2", -tickMinorSize).attr("y2", 0);
lineEnter.attr("x2", -tickMajorSize);
textEnter.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding));
lineUpdate.attr("x2", -tickMajorSize).attr("y2", 0);
textUpdate.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("y", 0);
text.attr("dy", ".32em").style("text-anchor", "end");
pathUpdate.attr("d", "M" + -tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + -tickEndSize);
break;
}
case "right":
{
tickTransform = d3_svg_axisY;
subtickEnter.attr("x2", tickMinorSize);
subtickUpdate.attr("x2", tickMinorSize).attr("y2", 0);
lineEnter.attr("x2", tickMajorSize);
textEnter.attr("x", Math.max(tickMajorSize, 0) + tickPadding);
lineUpdate.attr("x2", tickMajorSize).attr("y2", 0);
textUpdate.attr("x", Math.max(tickMajorSize, 0) + tickPadding).attr("y", 0);
text.attr("dy", ".32em").style("text-anchor", "start");
pathUpdate.attr("d", "M" + tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + tickEndSize);
break;
}
}
if (scale.ticks) {
tickEnter.call(tickTransform, scale0);
tickUpdate.call(tickTransform, scale1);
tickExit.call(tickTransform, scale1);
subtickEnter.call(tickTransform, scale0);
subtickUpdate.call(tickTransform, scale1);
subtickExit.call(tickTransform, scale1);
} else {
var dx = scale1.rangeBand() / 2, x = function(d) {
return scale1(d) + dx;
};
tickEnter.call(tickTransform, x);
tickUpdate.call(tickTransform, x);
}
});
}
axis.scale = function(x) {
if (!arguments.length) return scale;
scale = x;
return axis;
};
axis.orient = function(x) {
if (!arguments.length) return orient;
orient = x in d3_svg_axisOrients ? x + "" : d3_svg_axisDefaultOrient;
return axis;
};
axis.ticks = function() {
if (!arguments.length) return tickArguments_;
tickArguments_ = arguments;
return axis;
};
axis.tickValues = function(x) {
if (!arguments.length) return tickValues;
tickValues = x;
return axis;
};
axis.tickFormat = function(x) {
if (!arguments.length) return tickFormat_;
tickFormat_ = x;
return axis;
};
axis.tickSize = function(x, y) {
if (!arguments.length) return tickMajorSize;
var n = arguments.length - 1;
tickMajorSize = +x;
tickMinorSize = n > 1 ? +y : tickMajorSize;
tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;
return axis;
};
axis.tickPadding = function(x) {
if (!arguments.length) return tickPadding;
tickPadding = +x;
return axis;
};
axis.tickSubdivide = function(x) {
if (!arguments.length) return tickSubdivide;
tickSubdivide = +x;
return axis;
};
return axis;
};
var d3_svg_axisDefaultOrient = "bottom", d3_svg_axisOrients = {
top: 1,
right: 1,
bottom: 1,
left: 1
};
function d3_svg_axisX(selection, x) {
selection.attr("transform", function(d) {
return "translate(" + x(d) + ",0)";
});
}
function d3_svg_axisY(selection, y) {
selection.attr("transform", function(d) {
return "translate(0," + y(d) + ")";
});
}
function d3_svg_axisSubdivide(scale, ticks, m) {
subticks = [];
if (m && ticks.length > 1) {
var extent = d3_scaleExtent(scale.domain()), subticks, i = -1, n = ticks.length, d = (ticks[1] - ticks[0]) / ++m, j, v;
while (++i < n) {
for (j = m; --j > 0; ) {
if ((v = +ticks[i] - j * d) >= extent[0]) {
subticks.push(v);
}
}
}
for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1]; ) {
subticks.push(v);
}
}
return subticks;
}
d3.svg.brush = function() {
var event = d3_eventDispatch(brush, "brushstart", "brush", "brushend"), x = null, y = null, resizes = d3_svg_brushResizes[0], extent = [ [ 0, 0 ], [ 0, 0 ] ], extentDomain;
function brush(g) {
g.each(function() {
var g = d3.select(this), bg = g.selectAll(".background").data([ 0 ]), fg = g.selectAll(".extent").data([ 0 ]), tz = g.selectAll(".resize").data(resizes, String), e;
g.style("pointer-events", "all").on("mousedown.brush", brushstart).on("touchstart.brush", brushstart);
bg.enter().append("rect").attr("class", "background").style("visibility", "hidden").style("cursor", "crosshair");
fg.enter().append("rect").attr("class", "extent").style("cursor", "move");
tz.enter().append("g").attr("class", function(d) {
return "resize " + d;
}).style("cursor", function(d) {
return d3_svg_brushCursor[d];
}).append("rect").attr("x", function(d) {
return /[ew]$/.test(d) ? -3 : null;
}).attr("y", function(d) {
return /^[ns]/.test(d) ? -3 : null;
}).attr("width", 6).attr("height", 6).style("visibility", "hidden");
tz.style("display", brush.empty() ? "none" : null);
tz.exit().remove();
if (x) {
e = d3_scaleRange(x);
bg.attr("x", e[0]).attr("width", e[1] - e[0]);
redrawX(g);
}
if (y) {
e = d3_scaleRange(y);
bg.attr("y", e[0]).attr("height", e[1] - e[0]);
redrawY(g);
}
redraw(g);
});
}
function redraw(g) {
g.selectAll(".resize").attr("transform", function(d) {
return "translate(" + extent[+/e$/.test(d)][0] + "," + extent[+/^s/.test(d)][1] + ")";
});
}
function redrawX(g) {
g.select(".extent").attr("x", extent[0][0]);
g.selectAll(".extent,.n>rect,.s>rect").attr("width", extent[1][0] - extent[0][0]);
}
function redrawY(g) {
g.select(".extent").attr("y", extent[0][1]);
g.selectAll(".extent,.e>rect,.w>rect").attr("height", extent[1][1] - extent[0][1]);
}
function brushstart() {
var target = this, eventTarget = d3.select(d3.event.target), event_ = event.of(target, arguments), g = d3.select(target), resizing = eventTarget.datum(), resizingX = !/^(n|s)$/.test(resizing) && x, resizingY = !/^(e|w)$/.test(resizing) && y, dragging = eventTarget.classed("extent"), center, origin = mouse(), offset;
var w = d3.select(d3_window).on("mousemove.brush", brushmove).on("mouseup.brush", brushend).on("touchmove.brush", brushmove).on("touchend.brush", brushend).on("keydown.brush", keydown).on("keyup.brush", keyup);
if (dragging) {
origin[0] = extent[0][0] - origin[0];
origin[1] = extent[0][1] - origin[1];
} else if (resizing) {
var ex = +/w$/.test(resizing), ey = +/^n/.test(resizing);
offset = [ extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1] ];
origin[0] = extent[ex][0];
origin[1] = extent[ey][1];
} else if (d3.event.altKey) center = origin.slice();
g.style("pointer-events", "none").selectAll(".resize").style("display", null);
d3.select("body").style("cursor", eventTarget.style("cursor"));
event_({
type: "brushstart"
});
brushmove();
d3_eventCancel();
function mouse() {
var touches = d3.event.changedTouches;
return touches ? d3.touches(target, touches)[0] : d3.mouse(target);
}
function keydown() {
if (d3.event.keyCode == 32) {
if (!dragging) {
center = null;
origin[0] -= extent[1][0];
origin[1] -= extent[1][1];
dragging = 2;
}
d3_eventCancel();
}
}
function keyup() {
if (d3.event.keyCode == 32 && dragging == 2) {
origin[0] += extent[1][0];
origin[1] += extent[1][1];
dragging = 0;
d3_eventCancel();
}
}
function brushmove() {
var point = mouse(), moved = false;
if (offset) {
point[0] += offset[0];
point[1] += offset[1];
}
if (!dragging) {
if (d3.event.altKey) {
if (!center) center = [ (extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2 ];
origin[0] = extent[+(point[0] < center[0])][0];
origin[1] = extent[+(point[1] < center[1])][1];
} else center = null;
}
if (resizingX && move1(point, x, 0)) {
redrawX(g);
moved = true;
}
if (resizingY && move1(point, y, 1)) {
redrawY(g);
moved = true;
}
if (moved) {
redraw(g);
event_({
type: "brush",
mode: dragging ? "move" : "resize"
});
}
}
function move1(point, scale, i) {
var range = d3_scaleRange(scale), r0 = range[0], r1 = range[1], position = origin[i], size = extent[1][i] - extent[0][i], min, max;
if (dragging) {
r0 -= position;
r1 -= size + position;
}
min = Math.max(r0, Math.min(r1, point[i]));
if (dragging) {
max = (min += position) + size;
} else {
if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min));
if (position < min) {
max = min;
min = position;
} else {
max = position;
}
}
if (extent[0][i] !== min || extent[1][i] !== max) {
extentDomain = null;
extent[0][i] = min;
extent[1][i] = max;
return true;
}
}
function brushend() {
brushmove();
g.style("pointer-events", "all").selectAll(".resize").style("display", brush.empty() ? "none" : null);
d3.select("body").style("cursor", null);
w.on("mousemove.brush", null).on("mouseup.brush", null).on("touchmove.brush", null).on("touchend.brush", null).on("keydown.brush", null).on("keyup.brush", null);
event_({
type: "brushend"
});
d3_eventCancel();
}
}
brush.x = function(z) {
if (!arguments.length) return x;
x = z;
resizes = d3_svg_brushResizes[!x << 1 | !y];
return brush;
};
brush.y = function(z) {
if (!arguments.length) return y;
y = z;
resizes = d3_svg_brushResizes[!x << 1 | !y];
return brush;
};
brush.extent = function(z) {
var x0, x1, y0, y1, t;
if (!arguments.length) {
z = extentDomain || extent;
if (x) {
x0 = z[0][0], x1 = z[1][0];
if (!extentDomain) {
x0 = extent[0][0], x1 = extent[1][0];
if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1);
if (x1 < x0) t = x0, x0 = x1, x1 = t;
}
}
if (y) {
y0 = z[0][1], y1 = z[1][1];
if (!extentDomain) {
y0 = extent[0][1], y1 = extent[1][1];
if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1);
if (y1 < y0) t = y0, y0 = y1, y1 = t;
}
}
return x && y ? [ [ x0, y0 ], [ x1, y1 ] ] : x ? [ x0, x1 ] : y && [ y0, y1 ];
}
extentDomain = [ [ 0, 0 ], [ 0, 0 ] ];
if (x) {
x0 = z[0], x1 = z[1];
if (y) x0 = x0[0], x1 = x1[0];
extentDomain[0][0] = x0, extentDomain[1][0] = x1;
if (x.invert) x0 = x(x0), x1 = x(x1);
if (x1 < x0) t = x0, x0 = x1, x1 = t;
extent[0][0] = x0 | 0, extent[1][0] = x1 | 0;
}
if (y) {
y0 = z[0], y1 = z[1];
if (x) y0 = y0[1], y1 = y1[1];
extentDomain[0][1] = y0, extentDomain[1][1] = y1;
if (y.invert) y0 = y(y0), y1 = y(y1);
if (y1 < y0) t = y0, y0 = y1, y1 = t;
extent[0][1] = y0 | 0, extent[1][1] = y1 | 0;
}
return brush;
};
brush.clear = function() {
extentDomain = null;
extent[0][0] = extent[0][1] = extent[1][0] = extent[1][1] = 0;
return brush;
};
brush.empty = function() {
return x && extent[0][0] === extent[1][0] || y && extent[0][1] === extent[1][1];
};
return d3.rebind(brush, event, "on");
};
var d3_svg_brushCursor = {
n: "ns-resize",
e: "ew-resize",
s: "ns-resize",
w: "ew-resize",
nw: "nwse-resize",
ne: "nesw-resize",
se: "nwse-resize",
sw: "nesw-resize"
};
var d3_svg_brushResizes = [ [ "n", "e", "s", "w", "nw", "ne", "se", "sw" ], [ "e", "w" ], [ "n", "s" ], [] ];
d3.behavior = {};
d3.behavior.drag = function() {
var event = d3_eventDispatch(drag, "drag", "dragstart", "dragend"), origin = null;
function drag() {
this.on("mousedown.drag", mousedown).on("touchstart.drag", mousedown);
}
function mousedown() {
var target = this, event_ = event.of(target, arguments), eventTarget = d3.event.target, touchId = d3.event.touches ? d3.event.changedTouches[0].identifier : null, offset, origin_ = point(), moved = 0;
var w = d3.select(d3_window).on(touchId != null ? "touchmove.drag-" + touchId : "mousemove.drag", dragmove).on(touchId != null ? "touchend.drag-" + touchId : "mouseup.drag", dragend, true);
if (origin) {
offset = origin.apply(target, arguments);
offset = [ offset.x - origin_[0], offset.y - origin_[1] ];
} else {
offset = [ 0, 0 ];
}
if (touchId == null) d3_eventCancel();
event_({
type: "dragstart"
});
function point() {
var p = target.parentNode;
return touchId != null ? d3.touches(p).filter(function(p) {
return p.identifier === touchId;
})[0] : d3.mouse(p);
}
function dragmove() {
if (!target.parentNode) return dragend();
var p = point(), dx = p[0] - origin_[0], dy = p[1] - origin_[1];
moved |= dx | dy;
origin_ = p;
d3_eventCancel();
event_({
type: "drag",
x: p[0] + offset[0],
y: p[1] + offset[1],
dx: dx,
dy: dy
});
}
function dragend() {
event_({
type: "dragend"
});
if (moved) {
d3_eventCancel();
if (d3.event.target === eventTarget) w.on("click.drag", click, true);
}
w.on(touchId != null ? "touchmove.drag-" + touchId : "mousemove.drag", null).on(touchId != null ? "touchend.drag-" + touchId : "mouseup.drag", null);
}
function click() {
d3_eventCancel();
w.on("click.drag", null);
}
}
drag.origin = function(x) {
if (!arguments.length) return origin;
origin = x;
return drag;
};
return d3.rebind(drag, event, "on");
};
d3.behavior.zoom = function() {
var translate = [ 0, 0 ], translate0, scale = 1, scale0, scaleExtent = d3_behavior_zoomInfinity, event = d3_eventDispatch(zoom, "zoom"), x0, x1, y0, y1, touchtime;
function zoom() {
this.on("mousedown.zoom", mousedown).on("mousemove.zoom", mousemove).on(d3_behavior_zoomWheel + ".zoom", mousewheel).on("dblclick.zoom", dblclick).on("touchstart.zoom", touchstart).on("touchmove.zoom", touchmove).on("touchend.zoom", touchstart);
}
zoom.translate = function(x) {
if (!arguments.length) return translate;
translate = x.map(Number);
rescale();
return zoom;
};
zoom.scale = function(x) {
if (!arguments.length) return scale;
scale = +x;
rescale();
return zoom;
};
zoom.scaleExtent = function(x) {
if (!arguments.length) return scaleExtent;
scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number);
return zoom;
};
zoom.x = function(z) {
if (!arguments.length) return x1;
x1 = z;
x0 = z.copy();
translate = [ 0, 0 ];
scale = 1;
return zoom;
};
zoom.y = function(z) {
if (!arguments.length) return y1;
y1 = z;
y0 = z.copy();
translate = [ 0, 0 ];
scale = 1;
return zoom;
};
function location(p) {
return [ (p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale ];
}
function point(l) {
return [ l[0] * scale + translate[0], l[1] * scale + translate[1] ];
}
function scaleTo(s) {
scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s));
}
function translateTo(p, l) {
l = point(l);
translate[0] += p[0] - l[0];
translate[1] += p[1] - l[1];
}
function rescale() {
if (x1) x1.domain(x0.range().map(function(x) {
return (x - translate[0]) / scale;
}).map(x0.invert));
if (y1) y1.domain(y0.range().map(function(y) {
return (y - translate[1]) / scale;
}).map(y0.invert));
}
function dispatch(event) {
rescale();
d3.event.preventDefault();
event({
type: "zoom",
scale: scale,
translate: translate
});
}
function mousedown() {
var target = this, event_ = event.of(target, arguments), eventTarget = d3.event.target, moved = 0, w = d3.select(d3_window).on("mousemove.zoom", mousemove).on("mouseup.zoom", mouseup), l = location(d3.mouse(target));
d3_window.focus();
d3_eventCancel();
function mousemove() {
moved = 1;
translateTo(d3.mouse(target), l);
dispatch(event_);
}
function mouseup() {
if (moved) d3_eventCancel();
w.on("mousemove.zoom", null).on("mouseup.zoom", null);
if (moved && d3.event.target === eventTarget) w.on("click.zoom", click, true);
}
function click() {
d3_eventCancel();
w.on("click.zoom", null);
}
}
function mousewheel() {
if (!translate0) translate0 = location(d3.mouse(this));
scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale);
translateTo(d3.mouse(this), translate0);
dispatch(event.of(this, arguments));
}
function mousemove() {
translate0 = null;
}
function dblclick() {
var p = d3.mouse(this), l = location(p), k = Math.log(scale) / Math.LN2;
scaleTo(Math.pow(2, d3.event.shiftKey ? Math.ceil(k) - 1 : Math.floor(k) + 1));
translateTo(p, l);
dispatch(event.of(this, arguments));
}
function touchstart() {
var touches = d3.touches(this), now = Date.now();
scale0 = scale;
translate0 = {};
touches.forEach(function(t) {
translate0[t.identifier] = location(t);
});
d3_eventCancel();
if (touches.length === 1) {
if (now - touchtime < 500) {
var p = touches[0], l = location(touches[0]);
scaleTo(scale * 2);
translateTo(p, l);
dispatch(event.of(this, arguments));
}
touchtime = now;
}
}
function touchmove() {
var touches = d3.touches(this), p0 = touches[0], l0 = translate0[p0.identifier];
if (p1 = touches[1]) {
var p1, l1 = translate0[p1.identifier];
p0 = [ (p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2 ];
l0 = [ (l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2 ];
scaleTo(d3.event.scale * scale0);
}
translateTo(p0, l0);
touchtime = null;
dispatch(event.of(this, arguments));
}
return d3.rebind(zoom, event, "on");
};
var d3_behavior_zoomInfinity = [ 0, Infinity ];
var d3_behavior_zoomDelta, d3_behavior_zoomWheel = "onwheel" in document ? (d3_behavior_zoomDelta = function() {
return -d3.event.deltaY * (d3.event.deltaMode ? 120 : 1);
}, "wheel") : "onmousewheel" in document ? (d3_behavior_zoomDelta = function() {
return d3.event.wheelDelta;
}, "mousewheel") : (d3_behavior_zoomDelta = function() {
return -d3.event.detail;
}, "MozMousePixelScroll");
d3.layout = {};
d3.layout.bundle = function() {
return function(links) {
var paths = [], i = -1, n = links.length;
while (++i < n) paths.push(d3_layout_bundlePath(links[i]));
return paths;
};
};
function d3_layout_bundlePath(link) {
var start = link.source, end = link.target, lca = d3_layout_bundleLeastCommonAncestor(start, end), points = [ start ];
while (start !== lca) {
start = start.parent;
points.push(start);
}
var k = points.length;
while (end !== lca) {
points.splice(k, 0, end);
end = end.parent;
}
return points;
}
function d3_layout_bundleAncestors(node) {
var ancestors = [], parent = node.parent;
while (parent != null) {
ancestors.push(node);
node = parent;
parent = parent.parent;
}
ancestors.push(node);
return ancestors;
}
function d3_layout_bundleLeastCommonAncestor(a, b) {
if (a === b) return a;
var aNodes = d3_layout_bundleAncestors(a), bNodes = d3_layout_bundleAncestors(b), aNode = aNodes.pop(), bNode = bNodes.pop(), sharedNode = null;
while (aNode === bNode) {
sharedNode = aNode;
aNode = aNodes.pop();
bNode = bNodes.pop();
}
return sharedNode;
}
d3.layout.chord = function() {
var chord = {}, chords, groups, matrix, n, padding = 0, sortGroups, sortSubgroups, sortChords;
function relayout() {
var subgroups = {}, groupSums = [], groupIndex = d3.range(n), subgroupIndex = [], k, x, x0, i, j;
chords = [];
groups = [];
k = 0, i = -1;
while (++i < n) {
x = 0, j = -1;
while (++j < n) {
x += matrix[i][j];
}
groupSums.push(x);
subgroupIndex.push(d3.range(n));
k += x;
}
if (sortGroups) {
groupIndex.sort(function(a, b) {
return sortGroups(groupSums[a], groupSums[b]);
});
}
if (sortSubgroups) {
subgroupIndex.forEach(function(d, i) {
d.sort(function(a, b) {
return sortSubgroups(matrix[i][a], matrix[i][b]);
});
});
}
k = (2 * π - padding * n) / k;
x = 0, i = -1;
while (++i < n) {
x0 = x, j = -1;
while (++j < n) {
var di = groupIndex[i], dj = subgroupIndex[di][j], v = matrix[di][dj], a0 = x, a1 = x += v * k;
subgroups[di + "-" + dj] = {
index: di,
subindex: dj,
startAngle: a0,
endAngle: a1,
value: v
};
}
groups[di] = {
index: di,
startAngle: x0,
endAngle: x,
value: (x - x0) / k
};
x += padding;
}
i = -1;
while (++i < n) {
j = i - 1;
while (++j < n) {
var source = subgroups[i + "-" + j], target = subgroups[j + "-" + i];
if (source.value || target.value) {
chords.push(source.value < target.value ? {
source: target,
target: source
} : {
source: source,
target: target
});
}
}
}
if (sortChords) resort();
}
function resort() {
chords.sort(function(a, b) {
return sortChords((a.source.value + a.target.value) / 2, (b.source.value + b.target.value) / 2);
});
}
chord.matrix = function(x) {
if (!arguments.length) return matrix;
n = (matrix = x) && matrix.length;
chords = groups = null;
return chord;
};
chord.padding = function(x) {
if (!arguments.length) return padding;
padding = x;
chords = groups = null;
return chord;
};
chord.sortGroups = function(x) {
if (!arguments.length) return sortGroups;
sortGroups = x;
chords = groups = null;
return chord;
};
chord.sortSubgroups = function(x) {
if (!arguments.length) return sortSubgroups;
sortSubgroups = x;
chords = null;
return chord;
};
chord.sortChords = function(x) {
if (!arguments.length) return sortChords;
sortChords = x;
if (chords) resort();
return chord;
};
chord.chords = function() {
if (!chords) relayout();
return chords;
};
chord.groups = function() {
if (!groups) relayout();
return groups;
};
return chord;
};
d3.layout.force = function() {
var force = {}, event = d3.dispatch("start", "tick", "end"), size = [ 1, 1 ], drag, alpha, friction = .9, linkDistance = d3_layout_forceLinkDistance, linkStrength = d3_layout_forceLinkStrength, charge = -30, gravity = .1, theta = .8, nodes = [], links = [], distances, strengths, charges;
function repulse(node) {
return function(quad, x1, _, x2) {
if (quad.point !== node) {
var dx = quad.cx - node.x, dy = quad.cy - node.y, dn = 1 / Math.sqrt(dx * dx + dy * dy);
if ((x2 - x1) * dn < theta) {
var k = quad.charge * dn * dn;
node.px -= dx * k;
node.py -= dy * k;
return true;
}
if (quad.point && isFinite(dn)) {
var k = quad.pointCharge * dn * dn;
node.px -= dx * k;
node.py -= dy * k;
}
}
return !quad.charge;
};
}
force.tick = function() {
if ((alpha *= .99) < .005) {
event.end({
type: "end",
alpha: alpha = 0
});
return true;
}
var n = nodes.length, m = links.length, q, i, o, s, t, l, k, x, y;
for (i = 0; i < m; ++i) {
o = links[i];
s = o.source;
t = o.target;
x = t.x - s.x;
y = t.y - s.y;
if (l = x * x + y * y) {
l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l;
x *= l;
y *= l;
t.x -= x * (k = s.weight / (t.weight + s.weight));
t.y -= y * k;
s.x += x * (k = 1 - k);
s.y += y * k;
}
}
if (k = alpha * gravity) {
x = size[0] / 2;
y = size[1] / 2;
i = -1;
if (k) while (++i < n) {
o = nodes[i];
o.x += (x - o.x) * k;
o.y += (y - o.y) * k;
}
}
if (charge) {
d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges);
i = -1;
while (++i < n) {
if (!(o = nodes[i]).fixed) {
q.visit(repulse(o));
}
}
}
i = -1;
while (++i < n) {
o = nodes[i];
if (o.fixed) {
o.x = o.px;
o.y = o.py;
} else {
o.x -= (o.px - (o.px = o.x)) * friction;
o.y -= (o.py - (o.py = o.y)) * friction;
}
}
event.tick({
type: "tick",
alpha: alpha
});
};
force.nodes = function(x) {
if (!arguments.length) return nodes;
nodes = x;
return force;
};
force.links = function(x) {
if (!arguments.length) return links;
links = x;
return force;
};
force.size = function(x) {
if (!arguments.length) return size;
size = x;
return force;
};
force.linkDistance = function(x) {
if (!arguments.length) return linkDistance;
linkDistance = typeof x === "function" ? x : +x;
return force;
};
force.distance = force.linkDistance;
force.linkStrength = function(x) {
if (!arguments.length) return linkStrength;
linkStrength = typeof x === "function" ? x : +x;
return force;
};
force.friction = function(x) {
if (!arguments.length) return friction;
friction = +x;
return force;
};
force.charge = function(x) {
if (!arguments.length) return charge;
charge = typeof x === "function" ? x : +x;
return force;
};
force.gravity = function(x) {
if (!arguments.length) return gravity;
gravity = +x;
return force;
};
force.theta = function(x) {
if (!arguments.length) return theta;
theta = +x;
return force;
};
force.alpha = function(x) {
if (!arguments.length) return alpha;
x = +x;
if (alpha) {
if (x > 0) alpha = x; else alpha = 0;
} else if (x > 0) {
event.start({
type: "start",
alpha: alpha = x
});
d3.timer(force.tick);
}
return force;
};
force.start = function() {
var i, j, n = nodes.length, m = links.length, w = size[0], h = size[1], neighbors, o;
for (i = 0; i < n; ++i) {
(o = nodes[i]).index = i;
o.weight = 0;
}
for (i = 0; i < m; ++i) {
o = links[i];
if (typeof o.source == "number") o.source = nodes[o.source];
if (typeof o.target == "number") o.target = nodes[o.target];
++o.source.weight;
++o.target.weight;
}
for (i = 0; i < n; ++i) {
o = nodes[i];
if (isNaN(o.x)) o.x = position("x", w);
if (isNaN(o.y)) o.y = position("y", h);
if (isNaN(o.px)) o.px = o.x;
if (isNaN(o.py)) o.py = o.y;
}
distances = [];
if (typeof linkDistance === "function") for (i = 0; i < m; ++i) distances[i] = +linkDistance.call(this, links[i], i); else for (i = 0; i < m; ++i) distances[i] = linkDistance;
strengths = [];
if (typeof linkStrength === "function") for (i = 0; i < m; ++i) strengths[i] = +linkStrength.call(this, links[i], i); else for (i = 0; i < m; ++i) strengths[i] = linkStrength;
charges = [];
if (typeof charge === "function") for (i = 0; i < n; ++i) charges[i] = +charge.call(this, nodes[i], i); else for (i = 0; i < n; ++i) charges[i] = charge;
function position(dimension, size) {
var neighbors = neighbor(i), j = -1, m = neighbors.length, x;
while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;
return Math.random() * size;
}
function neighbor() {
if (!neighbors) {
neighbors = [];
for (j = 0; j < n; ++j) {
neighbors[j] = [];
}
for (j = 0; j < m; ++j) {
var o = links[j];
neighbors[o.source.index].push(o.target);
neighbors[o.target.index].push(o.source);
}
}
return neighbors[i];
}
return force.resume();
};
force.resume = function() {
return force.alpha(.1);
};
force.stop = function() {
return force.alpha(0);
};
force.drag = function() {
if (!drag) drag = d3.behavior.drag().origin(d3_identity).on("dragstart.force", d3_layout_forceDragstart).on("drag.force", dragmove).on("dragend.force", d3_layout_forceDragend);
if (!arguments.length) return drag;
this.on("mouseover.force", d3_layout_forceMouseover).on("mouseout.force", d3_layout_forceMouseout).call(drag);
};
function dragmove(d) {
d.px = d3.event.x, d.py = d3.event.y;
force.resume();
}
return d3.rebind(force, event, "on");
};
function d3_layout_forceDragstart(d) {
d.fixed |= 2;
}
function d3_layout_forceDragend(d) {
d.fixed &= ~6;
}
function d3_layout_forceMouseover(d) {
d.fixed |= 4;
d.px = d.x, d.py = d.y;
}
function d3_layout_forceMouseout(d) {
d.fixed &= ~4;
}
function d3_layout_forceAccumulate(quad, alpha, charges) {
var cx = 0, cy = 0;
quad.charge = 0;
if (!quad.leaf) {
var nodes = quad.nodes, n = nodes.length, i = -1, c;
while (++i < n) {
c = nodes[i];
if (c == null) continue;
d3_layout_forceAccumulate(c, alpha, charges);
quad.charge += c.charge;
cx += c.charge * c.cx;
cy += c.charge * c.cy;
}
}
if (quad.point) {
if (!quad.leaf) {
quad.point.x += Math.random() - .5;
quad.point.y += Math.random() - .5;
}
var k = alpha * charges[quad.point.index];
quad.charge += quad.pointCharge = k;
cx += k * quad.point.x;
cy += k * quad.point.y;
}
quad.cx = cx / quad.charge;
quad.cy = cy / quad.charge;
}
var d3_layout_forceLinkDistance = 20, d3_layout_forceLinkStrength = 1;
d3.layout.partition = function() {
var hierarchy = d3.layout.hierarchy(), size = [ 1, 1 ];
function position(node, x, dx, dy) {
var children = node.children;
node.x = x;
node.y = node.depth * dy;
node.dx = dx;
node.dy = dy;
if (children && (n = children.length)) {
var i = -1, n, c, d;
dx = node.value ? dx / node.value : 0;
while (++i < n) {
position(c = children[i], x, d = c.value * dx, dy);
x += d;
}
}
}
function depth(node) {
var children = node.children, d = 0;
if (children && (n = children.length)) {
var i = -1, n;
while (++i < n) d = Math.max(d, depth(children[i]));
}
return 1 + d;
}
function partition(d, i) {
var nodes = hierarchy.call(this, d, i);
position(nodes[0], 0, size[0], size[1] / depth(nodes[0]));
return nodes;
}
partition.size = function(x) {
if (!arguments.length) return size;
size = x;
return partition;
};
return d3_layout_hierarchyRebind(partition, hierarchy);
};
d3.layout.pie = function() {
var value = Number, sort = d3_layout_pieSortByValue, startAngle = 0, endAngle = 2 * π;
function pie(data) {
var values = data.map(function(d, i) {
return +value.call(pie, d, i);
});
var a = +(typeof startAngle === "function" ? startAngle.apply(this, arguments) : startAngle);
var k = ((typeof endAngle === "function" ? endAngle.apply(this, arguments) : endAngle) - startAngle) / d3.sum(values);
var index = d3.range(data.length);
if (sort != null) index.sort(sort === d3_layout_pieSortByValue ? function(i, j) {
return values[j] - values[i];
} : function(i, j) {
return sort(data[i], data[j]);
});
var arcs = [];
index.forEach(function(i) {
var d;
arcs[i] = {
data: data[i],
value: d = values[i],
startAngle: a,
endAngle: a += d * k
};
});
return arcs;
}
pie.value = function(x) {
if (!arguments.length) return value;
value = x;
return pie;
};
pie.sort = function(x) {
if (!arguments.length) return sort;
sort = x;
return pie;
};
pie.startAngle = function(x) {
if (!arguments.length) return startAngle;
startAngle = x;
return pie;
};
pie.endAngle = function(x) {
if (!arguments.length) return endAngle;
endAngle = x;
return pie;
};
return pie;
};
var d3_layout_pieSortByValue = {};
d3.layout.stack = function() {
var values = d3_identity, order = d3_layout_stackOrderDefault, offset = d3_layout_stackOffsetZero, out = d3_layout_stackOut, x = d3_layout_stackX, y = d3_layout_stackY;
function stack(data, index) {
var series = data.map(function(d, i) {
return values.call(stack, d, i);
});
var points = series.map(function(d) {
return d.map(function(v, i) {
return [ x.call(stack, v, i), y.call(stack, v, i) ];
});
});
var orders = order.call(stack, points, index);
series = d3.permute(series, orders);
points = d3.permute(points, orders);
var offsets = offset.call(stack, points, index);
var n = series.length, m = series[0].length, i, j, o;
for (j = 0; j < m; ++j) {
out.call(stack, series[0][j], o = offsets[j], points[0][j][1]);
for (i = 1; i < n; ++i) {
out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]);
}
}
return data;
}
stack.values = function(x) {
if (!arguments.length) return values;
values = x;
return stack;
};
stack.order = function(x) {
if (!arguments.length) return order;
order = typeof x === "function" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault;
return stack;
};
stack.offset = function(x) {
if (!arguments.length) return offset;
offset = typeof x === "function" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero;
return stack;
};
stack.x = function(z) {
if (!arguments.length) return x;
x = z;
return stack;
};
stack.y = function(z) {
if (!arguments.length) return y;
y = z;
return stack;
};
stack.out = function(z) {
if (!arguments.length) return out;
out = z;
return stack;
};
return stack;
};
function d3_layout_stackX(d) {
return d.x;
}
function d3_layout_stackY(d) {
return d.y;
}
function d3_layout_stackOut(d, y0, y) {
d.y0 = y0;
d.y = y;
}
var d3_layout_stackOrders = d3.map({
"inside-out": function(data) {
var n = data.length, i, j, max = data.map(d3_layout_stackMaxIndex), sums = data.map(d3_layout_stackReduceSum), index = d3.range(n).sort(function(a, b) {
return max[a] - max[b];
}), top = 0, bottom = 0, tops = [], bottoms = [];
for (i = 0; i < n; ++i) {
j = index[i];
if (top < bottom) {
top += sums[j];
tops.push(j);
} else {
bottom += sums[j];
bottoms.push(j);
}
}
return bottoms.reverse().concat(tops);
},
reverse: function(data) {
return d3.range(data.length).reverse();
},
"default": d3_layout_stackOrderDefault
});
var d3_layout_stackOffsets = d3.map({
silhouette: function(data) {
var n = data.length, m = data[0].length, sums = [], max = 0, i, j, o, y0 = [];
for (j = 0; j < m; ++j) {
for (i = 0, o = 0; i < n; i++) o += data[i][j][1];
if (o > max) max = o;
sums.push(o);
}
for (j = 0; j < m; ++j) {
y0[j] = (max - sums[j]) / 2;
}
return y0;
},
wiggle: function(data) {
var n = data.length, x = data[0], m = x.length, i, j, k, s1, s2, s3, dx, o, o0, y0 = [];
y0[0] = o = o0 = 0;
for (j = 1; j < m; ++j) {
for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1];
for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) {
for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) {
s3 += (data[k][j][1] - data[k][j - 1][1]) / dx;
}
s2 += s3 * data[i][j][1];
}
y0[j] = o -= s1 ? s2 / s1 * dx : 0;
if (o < o0) o0 = o;
}
for (j = 0; j < m; ++j) y0[j] -= o0;
return y0;
},
expand: function(data) {
var n = data.length, m = data[0].length, k = 1 / n, i, j, o, y0 = [];
for (j = 0; j < m; ++j) {
for (i = 0, o = 0; i < n; i++) o += data[i][j][1];
if (o) for (i = 0; i < n; i++) data[i][j][1] /= o; else for (i = 0; i < n; i++) data[i][j][1] = k;
}
for (j = 0; j < m; ++j) y0[j] = 0;
return y0;
},
zero: d3_layout_stackOffsetZero
});
function d3_layout_stackOrderDefault(data) {
return d3.range(data.length);
}
function d3_layout_stackOffsetZero(data) {
var j = -1, m = data[0].length, y0 = [];
while (++j < m) y0[j] = 0;
return y0;
}
function d3_layout_stackMaxIndex(array) {
var i = 1, j = 0, v = array[0][1], k, n = array.length;
for (;i < n; ++i) {
if ((k = array[i][1]) > v) {
j = i;
v = k;
}
}
return j;
}
function d3_layout_stackReduceSum(d) {
return d.reduce(d3_layout_stackSum, 0);
}
function d3_layout_stackSum(p, d) {
return p + d[1];
}
d3.layout.histogram = function() {
var frequency = true, valuer = Number, ranger = d3_layout_histogramRange, binner = d3_layout_histogramBinSturges;
function histogram(data, i) {
var bins = [], values = data.map(valuer, this), range = ranger.call(this, values, i), thresholds = binner.call(this, range, values, i), bin, i = -1, n = values.length, m = thresholds.length - 1, k = frequency ? 1 : 1 / n, x;
while (++i < m) {
bin = bins[i] = [];
bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]);
bin.y = 0;
}
if (m > 0) {
i = -1;
while (++i < n) {
x = values[i];
if (x >= range[0] && x <= range[1]) {
bin = bins[d3.bisect(thresholds, x, 1, m) - 1];
bin.y += k;
bin.push(data[i]);
}
}
}
return bins;
}
histogram.value = function(x) {
if (!arguments.length) return valuer;
valuer = x;
return histogram;
};
histogram.range = function(x) {
if (!arguments.length) return ranger;
ranger = d3_functor(x);
return histogram;
};
histogram.bins = function(x) {
if (!arguments.length) return binner;
binner = typeof x === "number" ? function(range) {
return d3_layout_histogramBinFixed(range, x);
} : d3_functor(x);
return histogram;
};
histogram.frequency = function(x) {
if (!arguments.length) return frequency;
frequency = !!x;
return histogram;
};
return histogram;
};
function d3_layout_histogramBinSturges(range, values) {
return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1));
}
function d3_layout_histogramBinFixed(range, n) {
var x = -1, b = +range[0], m = (range[1] - b) / n, f = [];
while (++x <= n) f[x] = m * x + b;
return f;
}
function d3_layout_histogramRange(values) {
return [ d3.min(values), d3.max(values) ];
}
d3.layout.hierarchy = function() {
var sort = d3_layout_hierarchySort, children = d3_layout_hierarchyChildren, value = d3_layout_hierarchyValue;
function recurse(node, depth, nodes) {
var childs = children.call(hierarchy, node, depth);
node.depth = depth;
nodes.push(node);
if (childs && (n = childs.length)) {
var i = -1, n, c = node.children = [], v = 0, j = depth + 1, d;
while (++i < n) {
d = recurse(childs[i], j, nodes);
d.parent = node;
c.push(d);
v += d.value;
}
if (sort) c.sort(sort);
if (value) node.value = v;
} else if (value) {
node.value = +value.call(hierarchy, node, depth) || 0;
}
return node;
}
function revalue(node, depth) {
var children = node.children, v = 0;
if (children && (n = children.length)) {
var i = -1, n, j = depth + 1;
while (++i < n) v += revalue(children[i], j);
} else if (value) {
v = +value.call(hierarchy, node, depth) || 0;
}
if (value) node.value = v;
return v;
}
function hierarchy(d) {
var nodes = [];
recurse(d, 0, nodes);
return nodes;
}
hierarchy.sort = function(x) {
if (!arguments.length) return sort;
sort = x;
return hierarchy;
};
hierarchy.children = function(x) {
if (!arguments.length) return children;
children = x;
return hierarchy;
};
hierarchy.value = function(x) {
if (!arguments.length) return value;
value = x;
return hierarchy;
};
hierarchy.revalue = function(root) {
revalue(root, 0);
return root;
};
return hierarchy;
};
function d3_layout_hierarchyRebind(object, hierarchy) {
d3.rebind(object, hierarchy, "sort", "children", "value");
object.nodes = object;
object.links = d3_layout_hierarchyLinks;
return object;
}
function d3_layout_hierarchyChildren(d) {
return d.children;
}
function d3_layout_hierarchyValue(d) {
return d.value;
}
function d3_layout_hierarchySort(a, b) {
return b.value - a.value;
}
function d3_layout_hierarchyLinks(nodes) {
return d3.merge(nodes.map(function(parent) {
return (parent.children || []).map(function(child) {
return {
source: parent,
target: child
};
});
}));
}
d3.layout.pack = function() {
var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort), padding = 0, size = [ 1, 1 ];
function pack(d, i) {
var nodes = hierarchy.call(this, d, i), root = nodes[0];
root.x = 0;
root.y = 0;
d3_layout_treeVisitAfter(root, function(d) {
d.r = Math.sqrt(d.value);
});
d3_layout_treeVisitAfter(root, d3_layout_packSiblings);
var w = size[0], h = size[1], k = Math.max(2 * root.r / w, 2 * root.r / h);
if (padding > 0) {
var dr = padding * k / 2;
d3_layout_treeVisitAfter(root, function(d) {
d.r += dr;
});
d3_layout_treeVisitAfter(root, d3_layout_packSiblings);
d3_layout_treeVisitAfter(root, function(d) {
d.r -= dr;
});
k = Math.max(2 * root.r / w, 2 * root.r / h);
}
d3_layout_packTransform(root, w / 2, h / 2, 1 / k);
return nodes;
}
pack.size = function(x) {
if (!arguments.length) return size;
size = x;
return pack;
};
pack.padding = function(_) {
if (!arguments.length) return padding;
padding = +_;
return pack;
};
return d3_layout_hierarchyRebind(pack, hierarchy);
};
function d3_layout_packSort(a, b) {
return a.value - b.value;
}
function d3_layout_packInsert(a, b) {
var c = a._pack_next;
a._pack_next = b;
b._pack_prev = a;
b._pack_next = c;
c._pack_prev = b;
}
function d3_layout_packSplice(a, b) {
a._pack_next = b;
b._pack_prev = a;
}
function d3_layout_packIntersects(a, b) {
var dx = b.x - a.x, dy = b.y - a.y, dr = a.r + b.r;
return dr * dr - dx * dx - dy * dy > .001;
}
function d3_layout_packSiblings(node) {
if (!(nodes = node.children) || !(n = nodes.length)) return;
var nodes, xMin = Infinity, xMax = -Infinity, yMin = Infinity, yMax = -Infinity, a, b, c, i, j, k, n;
function bound(node) {
xMin = Math.min(node.x - node.r, xMin);
xMax = Math.max(node.x + node.r, xMax);
yMin = Math.min(node.y - node.r, yMin);
yMax = Math.max(node.y + node.r, yMax);
}
nodes.forEach(d3_layout_packLink);
a = nodes[0];
a.x = -a.r;
a.y = 0;
bound(a);
if (n > 1) {
b = nodes[1];
b.x = b.r;
b.y = 0;
bound(b);
if (n > 2) {
c = nodes[2];
d3_layout_packPlace(a, b, c);
bound(c);
d3_layout_packInsert(a, c);
a._pack_prev = c;
d3_layout_packInsert(c, b);
b = a._pack_next;
for (i = 3; i < n; i++) {
d3_layout_packPlace(a, b, c = nodes[i]);
var isect = 0, s1 = 1, s2 = 1;
for (j = b._pack_next; j !== b; j = j._pack_next, s1++) {
if (d3_layout_packIntersects(j, c)) {
isect = 1;
break;
}
}
if (isect == 1) {
for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) {
if (d3_layout_packIntersects(k, c)) {
break;
}
}
}
if (isect) {
if (s1 < s2 || s1 == s2 && b.r < a.r) d3_layout_packSplice(a, b = j); else d3_layout_packSplice(a = k, b);
i--;
} else {
d3_layout_packInsert(a, c);
b = c;
bound(c);
}
}
}
}
var cx = (xMin + xMax) / 2, cy = (yMin + yMax) / 2, cr = 0;
for (i = 0; i < n; i++) {
c = nodes[i];
c.x -= cx;
c.y -= cy;
cr = Math.max(cr, c.r + Math.sqrt(c.x * c.x + c.y * c.y));
}
node.r = cr;
nodes.forEach(d3_layout_packUnlink);
}
function d3_layout_packLink(node) {
node._pack_next = node._pack_prev = node;
}
function d3_layout_packUnlink(node) {
delete node._pack_next;
delete node._pack_prev;
}
function d3_layout_packTransform(node, x, y, k) {
var children = node.children;
node.x = x += k * node.x;
node.y = y += k * node.y;
node.r *= k;
if (children) {
var i = -1, n = children.length;
while (++i < n) d3_layout_packTransform(children[i], x, y, k);
}
}
function d3_layout_packPlace(a, b, c) {
var db = a.r + c.r, dx = b.x - a.x, dy = b.y - a.y;
if (db && (dx || dy)) {
var da = b.r + c.r, dc = dx * dx + dy * dy;
da *= da;
db *= db;
var x = .5 + (db - da) / (2 * dc), y = Math.sqrt(Math.max(0, 2 * da * (db + dc) - (db -= dc) * db - da * da)) / (2 * dc);
c.x = a.x + x * dx + y * dy;
c.y = a.y + x * dy - y * dx;
} else {
c.x = a.x + db;
c.y = a.y;
}
}
d3.layout.cluster = function() {
var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ];
function cluster(d, i) {
var nodes = hierarchy.call(this, d, i), root = nodes[0], previousNode, x = 0;
d3_layout_treeVisitAfter(root, function(node) {
var children = node.children;
if (children && children.length) {
node.x = d3_layout_clusterX(children);
node.y = d3_layout_clusterY(children);
} else {
node.x = previousNode ? x += separation(node, previousNode) : 0;
node.y = 0;
previousNode = node;
}
});
var left = d3_layout_clusterLeft(root), right = d3_layout_clusterRight(root), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2;
d3_layout_treeVisitAfter(root, function(node) {
node.x = (node.x - x0) / (x1 - x0) * size[0];
node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1];
});
return nodes;
}
cluster.separation = function(x) {
if (!arguments.length) return separation;
separation = x;
return cluster;
};
cluster.size = function(x) {
if (!arguments.length) return size;
size = x;
return cluster;
};
return d3_layout_hierarchyRebind(cluster, hierarchy);
};
function d3_layout_clusterY(children) {
return 1 + d3.max(children, function(child) {
return child.y;
});
}
function d3_layout_clusterX(children) {
return children.reduce(function(x, child) {
return x + child.x;
}, 0) / children.length;
}
function d3_layout_clusterLeft(node) {
var children = node.children;
return children && children.length ? d3_layout_clusterLeft(children[0]) : node;
}
function d3_layout_clusterRight(node) {
var children = node.children, n;
return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node;
}
d3.layout.tree = function() {
var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ];
function tree(d, i) {
var nodes = hierarchy.call(this, d, i), root = nodes[0];
function firstWalk(node, previousSibling) {
var children = node.children, layout = node._tree;
if (children && (n = children.length)) {
var n, firstChild = children[0], previousChild, ancestor = firstChild, child, i = -1;
while (++i < n) {
child = children[i];
firstWalk(child, previousChild);
ancestor = apportion(child, previousChild, ancestor);
previousChild = child;
}
d3_layout_treeShift(node);
var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim);
if (previousSibling) {
layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);
layout.mod = layout.prelim - midpoint;
} else {
layout.prelim = midpoint;
}
} else {
if (previousSibling) {
layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);
}
}
}
function secondWalk(node, x) {
node.x = node._tree.prelim + x;
var children = node.children;
if (children && (n = children.length)) {
var i = -1, n;
x += node._tree.mod;
while (++i < n) {
secondWalk(children[i], x);
}
}
}
function apportion(node, previousSibling, ancestor) {
if (previousSibling) {
var vip = node, vop = node, vim = previousSibling, vom = node.parent.children[0], sip = vip._tree.mod, sop = vop._tree.mod, sim = vim._tree.mod, som = vom._tree.mod, shift;
while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) {
vom = d3_layout_treeLeft(vom);
vop = d3_layout_treeRight(vop);
vop._tree.ancestor = node;
shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip);
if (shift > 0) {
d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift);
sip += shift;
sop += shift;
}
sim += vim._tree.mod;
sip += vip._tree.mod;
som += vom._tree.mod;
sop += vop._tree.mod;
}
if (vim && !d3_layout_treeRight(vop)) {
vop._tree.thread = vim;
vop._tree.mod += sim - sop;
}
if (vip && !d3_layout_treeLeft(vom)) {
vom._tree.thread = vip;
vom._tree.mod += sip - som;
ancestor = node;
}
}
return ancestor;
}
d3_layout_treeVisitAfter(root, function(node, previousSibling) {
node._tree = {
ancestor: node,
prelim: 0,
mod: 0,
change: 0,
shift: 0,
number: previousSibling ? previousSibling._tree.number + 1 : 0
};
});
firstWalk(root);
secondWalk(root, -root._tree.prelim);
var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost), right = d3_layout_treeSearch(root, d3_layout_treeRightmost), deep = d3_layout_treeSearch(root, d3_layout_treeDeepest), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2, y1 = deep.depth || 1;
d3_layout_treeVisitAfter(root, function(node) {
node.x = (node.x - x0) / (x1 - x0) * size[0];
node.y = node.depth / y1 * size[1];
delete node._tree;
});
return nodes;
}
tree.separation = function(x) {
if (!arguments.length) return separation;
separation = x;
return tree;
};
tree.size = function(x) {
if (!arguments.length) return size;
size = x;
return tree;
};
return d3_layout_hierarchyRebind(tree, hierarchy);
};
function d3_layout_treeSeparation(a, b) {
return a.parent == b.parent ? 1 : 2;
}
function d3_layout_treeLeft(node) {
var children = node.children;
return children && children.length ? children[0] : node._tree.thread;
}
function d3_layout_treeRight(node) {
var children = node.children, n;
return children && (n = children.length) ? children[n - 1] : node._tree.thread;
}
function d3_layout_treeSearch(node, compare) {
var children = node.children;
if (children && (n = children.length)) {
var child, n, i = -1;
while (++i < n) {
if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) {
node = child;
}
}
}
return node;
}
function d3_layout_treeRightmost(a, b) {
return a.x - b.x;
}
function d3_layout_treeLeftmost(a, b) {
return b.x - a.x;
}
function d3_layout_treeDeepest(a, b) {
return a.depth - b.depth;
}
function d3_layout_treeVisitAfter(node, callback) {
function visit(node, previousSibling) {
var children = node.children;
if (children && (n = children.length)) {
var child, previousChild = null, i = -1, n;
while (++i < n) {
child = children[i];
visit(child, previousChild);
previousChild = child;
}
}
callback(node, previousSibling);
}
visit(node, null);
}
function d3_layout_treeShift(node) {
var shift = 0, change = 0, children = node.children, i = children.length, child;
while (--i >= 0) {
child = children[i]._tree;
child.prelim += shift;
child.mod += shift;
shift += child.shift + (change += child.change);
}
}
function d3_layout_treeMove(ancestor, node, shift) {
ancestor = ancestor._tree;
node = node._tree;
var change = shift / (node.number - ancestor.number);
ancestor.change += change;
node.change -= change;
node.shift += shift;
node.prelim += shift;
node.mod += shift;
}
function d3_layout_treeAncestor(vim, node, ancestor) {
return vim._tree.ancestor.parent == node.parent ? vim._tree.ancestor : ancestor;
}
d3.layout.treemap = function() {
var hierarchy = d3.layout.hierarchy(), round = Math.round, size = [ 1, 1 ], padding = null, pad = d3_layout_treemapPadNull, sticky = false, stickies, mode = "squarify", ratio = .5 * (1 + Math.sqrt(5));
function scale(children, k) {
var i = -1, n = children.length, child, area;
while (++i < n) {
area = (child = children[i]).value * (k < 0 ? 0 : k);
child.area = isNaN(area) || area <= 0 ? 0 : area;
}
}
function squarify(node) {
var children = node.children;
if (children && children.length) {
var rect = pad(node), row = [], remaining = children.slice(), child, best = Infinity, score, u = mode === "slice" ? rect.dx : mode === "dice" ? rect.dy : mode === "slice-dice" ? node.depth & 1 ? rect.dy : rect.dx : Math.min(rect.dx, rect.dy), n;
scale(remaining, rect.dx * rect.dy / node.value);
row.area = 0;
while ((n = remaining.length) > 0) {
row.push(child = remaining[n - 1]);
row.area += child.area;
if (mode !== "squarify" || (score = worst(row, u)) <= best) {
remaining.pop();
best = score;
} else {
row.area -= row.pop().area;
position(row, u, rect, false);
u = Math.min(rect.dx, rect.dy);
row.length = row.area = 0;
best = Infinity;
}
}
if (row.length) {
position(row, u, rect, true);
row.length = row.area = 0;
}
children.forEach(squarify);
}
}
function stickify(node) {
var children = node.children;
if (children && children.length) {
var rect = pad(node), remaining = children.slice(), child, row = [];
scale(remaining, rect.dx * rect.dy / node.value);
row.area = 0;
while (child = remaining.pop()) {
row.push(child);
row.area += child.area;
if (child.z != null) {
position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length);
row.length = row.area = 0;
}
}
children.forEach(stickify);
}
}
function worst(row, u) {
var s = row.area, r, rmax = 0, rmin = Infinity, i = -1, n = row.length;
while (++i < n) {
if (!(r = row[i].area)) continue;
if (r < rmin) rmin = r;
if (r > rmax) rmax = r;
}
s *= s;
u *= u;
return s ? Math.max(u * rmax * ratio / s, s / (u * rmin * ratio)) : Infinity;
}
function position(row, u, rect, flush) {
var i = -1, n = row.length, x = rect.x, y = rect.y, v = u ? round(row.area / u) : 0, o;
if (u == rect.dx) {
if (flush || v > rect.dy) v = rect.dy;
while (++i < n) {
o = row[i];
o.x = x;
o.y = y;
o.dy = v;
x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0);
}
o.z = true;
o.dx += rect.x + rect.dx - x;
rect.y += v;
rect.dy -= v;
} else {
if (flush || v > rect.dx) v = rect.dx;
while (++i < n) {
o = row[i];
o.x = x;
o.y = y;
o.dx = v;
y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0);
}
o.z = false;
o.dy += rect.y + rect.dy - y;
rect.x += v;
rect.dx -= v;
}
}
function treemap(d) {
var nodes = stickies || hierarchy(d), root = nodes[0];
root.x = 0;
root.y = 0;
root.dx = size[0];
root.dy = size[1];
if (stickies) hierarchy.revalue(root);
scale([ root ], root.dx * root.dy / root.value);
(stickies ? stickify : squarify)(root);
if (sticky) stickies = nodes;
return nodes;
}
treemap.size = function(x) {
if (!arguments.length) return size;
size = x;
return treemap;
};
treemap.padding = function(x) {
if (!arguments.length) return padding;
function padFunction(node) {
var p = x.call(treemap, node, node.depth);
return p == null ? d3_layout_treemapPadNull(node) : d3_layout_treemapPad(node, typeof p === "number" ? [ p, p, p, p ] : p);
}
function padConstant(node) {
return d3_layout_treemapPad(node, x);
}
var type;
pad = (padding = x) == null ? d3_layout_treemapPadNull : (type = typeof x) === "function" ? padFunction : type === "number" ? (x = [ x, x, x, x ],
padConstant) : padConstant;
return treemap;
};
treemap.round = function(x) {
if (!arguments.length) return round != Number;
round = x ? Math.round : Number;
return treemap;
};
treemap.sticky = function(x) {
if (!arguments.length) return sticky;
sticky = x;
stickies = null;
return treemap;
};
treemap.ratio = function(x) {
if (!arguments.length) return ratio;
ratio = x;
return treemap;
};
treemap.mode = function(x) {
if (!arguments.length) return mode;
mode = x + "";
return treemap;
};
return d3_layout_hierarchyRebind(treemap, hierarchy);
};
function d3_layout_treemapPadNull(node) {
return {
x: node.x,
y: node.y,
dx: node.dx,
dy: node.dy
};
}
function d3_layout_treemapPad(node, padding) {
var x = node.x + padding[3], y = node.y + padding[0], dx = node.dx - padding[1] - padding[3], dy = node.dy - padding[0] - padding[2];
if (dx < 0) {
x += dx / 2;
dx = 0;
}
if (dy < 0) {
y += dy / 2;
dy = 0;
}
return {
x: x,
y: y,
dx: dx,
dy: dy
};
}
function d3_dsv(delimiter, mimeType) {
var reFormat = new RegExp('["' + delimiter + "\n]"), delimiterCode = delimiter.charCodeAt(0);
function dsv(url, callback) {
return d3.xhr(url, mimeType, callback).response(response);
}
function response(request) {
return dsv.parse(request.responseText);
}
dsv.parse = function(text) {
var o;
return dsv.parseRows(text, function(row) {
if (o) return o(row);
o = new Function("d", "return {" + row.map(function(name, i) {
return JSON.stringify(name) + ": d[" + i + "]";
}).join(",") + "}");
});
};
dsv.parseRows = function(text, f) {
var EOL = {}, EOF = {}, rows = [], N = text.length, I = 0, n = 0, t, eol;
function token() {
if (I >= N) return EOF;
if (eol) return eol = false, EOL;
var j = I;
if (text.charCodeAt(j) === 34) {
var i = j;
while (i++ < N) {
if (text.charCodeAt(i) === 34) {
if (text.charCodeAt(i + 1) !== 34) break;
++i;
}
}
I = i + 2;
var c = text.charCodeAt(i + 1);
if (c === 13) {
eol = true;
if (text.charCodeAt(i + 2) === 10) ++I;
} else if (c === 10) {
eol = true;
}
return text.substring(j + 1, i).replace(/""/g, '"');
}
while (I < N) {
var c = text.charCodeAt(I++), k = 1;
if (c === 10) eol = true; else if (c === 13) {
eol = true;
if (text.charCodeAt(I) === 10) ++I, ++k;
} else if (c !== delimiterCode) continue;
return text.substring(j, I - k);
}
return text.substring(j);
}
while ((t = token()) !== EOF) {
var a = [];
while (t !== EOL && t !== EOF) {
a.push(t);
t = token();
}
if (f && !(a = f(a, n++))) continue;
rows.push(a);
}
return rows;
};
dsv.format = function(rows) {
return rows.map(formatRow).join("\n");
};
function formatRow(row) {
return row.map(formatValue).join(delimiter);
}
function formatValue(text) {
return reFormat.test(text) ? '"' + text.replace(/\"/g, '""') + '"' : text;
}
return dsv;
}
d3.csv = d3_dsv(",", "text/csv");
d3.tsv = d3_dsv(" ", "text/tab-separated-values");
d3.geo = {};
d3.geo.stream = function(object, listener) {
if (d3_geo_streamObjectType.hasOwnProperty(object.type)) {
d3_geo_streamObjectType[object.type](object, listener);
} else {
d3_geo_streamGeometry(object, listener);
}
};
function d3_geo_streamGeometry(geometry, listener) {
if (d3_geo_streamGeometryType.hasOwnProperty(geometry.type)) {
d3_geo_streamGeometryType[geometry.type](geometry, listener);
}
}
var d3_geo_streamObjectType = {
Feature: function(feature, listener) {
d3_geo_streamGeometry(feature.geometry, listener);
},
FeatureCollection: function(object, listener) {
var features = object.features, i = -1, n = features.length;
while (++i < n) d3_geo_streamGeometry(features[i].geometry, listener);
}
};
var d3_geo_streamGeometryType = {
Sphere: function(object, listener) {
listener.sphere();
},
Point: function(object, listener) {
var coordinate = object.coordinates;
listener.point(coordinate[0], coordinate[1]);
},
MultiPoint: function(object, listener) {
var coordinates = object.coordinates, i = -1, n = coordinates.length, coordinate;
while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]);
},
LineString: function(object, listener) {
d3_geo_streamLine(object.coordinates, listener, 0);
},
MultiLineString: function(object, listener) {
var coordinates = object.coordinates, i = -1, n = coordinates.length;
while (++i < n) d3_geo_streamLine(coordinates[i], listener, 0);
},
Polygon: function(object, listener) {
d3_geo_streamPolygon(object.coordinates, listener);
},
MultiPolygon: function(object, listener) {
var coordinates = object.coordinates, i = -1, n = coordinates.length;
while (++i < n) d3_geo_streamPolygon(coordinates[i], listener);
},
GeometryCollection: function(object, listener) {
var geometries = object.geometries, i = -1, n = geometries.length;
while (++i < n) d3_geo_streamGeometry(geometries[i], listener);
}
};
function d3_geo_streamLine(coordinates, listener, closed) {
var i = -1, n = coordinates.length - closed, coordinate;
listener.lineStart();
while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]);
listener.lineEnd();
}
function d3_geo_streamPolygon(coordinates, listener) {
var i = -1, n = coordinates.length;
listener.polygonStart();
while (++i < n) d3_geo_streamLine(coordinates[i], listener, 1);
listener.polygonEnd();
}
function d3_geo_spherical(cartesian) {
return [ Math.atan2(cartesian[1], cartesian[0]), Math.asin(Math.max(-1, Math.min(1, cartesian[2]))) ];
}
function d3_geo_sphericalEqual(a, b) {
return Math.abs(a[0] - b[0]) < ε && Math.abs(a[1] - b[1]) < ε;
}
function d3_geo_cartesian(spherical) {
var λ = spherical[0], φ = spherical[1], cosφ = Math.cos(φ);
return [ cosφ * Math.cos(λ), cosφ * Math.sin(λ), Math.sin(φ) ];
}
function d3_geo_cartesianDot(a, b) {
return a[0] * b[0] + a[1] * b[1] + a[2] * b[2];
}
function d3_geo_cartesianCross(a, b) {
return [ a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], a[0] * b[1] - a[1] * b[0] ];
}
function d3_geo_cartesianAdd(a, b) {
a[0] += b[0];
a[1] += b[1];
a[2] += b[2];
}
function d3_geo_cartesianScale(vector, k) {
return [ vector[0] * k, vector[1] * k, vector[2] * k ];
}
function d3_geo_cartesianNormalize(d) {
var l = Math.sqrt(d[0] * d[0] + d[1] * d[1] + d[2] * d[2]);
d[0] /= l;
d[1] /= l;
d[2] /= l;
}
function d3_geo_resample(project) {
var δ2 = .5, maxDepth = 16;
function resample(stream) {
var λ0, x0, y0, a0, b0, c0;
var resample = {
point: point,
lineStart: lineStart,
lineEnd: lineEnd,
polygonStart: function() {
stream.polygonStart();
resample.lineStart = polygonLineStart;
},
polygonEnd: function() {
stream.polygonEnd();
resample.lineStart = lineStart;
}
};
function point(x, y) {
x = project(x, y);
stream.point(x[0], x[1]);
}
function lineStart() {
x0 = NaN;
resample.point = linePoint;
stream.lineStart();
}
function linePoint(λ, φ) {
var c = d3_geo_cartesian([ λ, φ ]), p = project(λ, φ);
resampleLineTo(x0, y0, λ0, a0, b0, c0, x0 = p[0], y0 = p[1], λ0 = λ, a0 = c[0], b0 = c[1], c0 = c[2], maxDepth, stream);
stream.point(x0, y0);
}
function lineEnd() {
resample.point = point;
stream.lineEnd();
}
function polygonLineStart() {
var λ00, φ00, x00, y00, a00, b00, c00;
lineStart();
resample.point = function(λ, φ) {
linePoint(λ00 = λ, φ00 = φ), x00 = x0, y00 = y0, a00 = a0, b00 = b0, c00 = c0;
resample.point = linePoint;
};
resample.lineEnd = function() {
resampleLineTo(x0, y0, λ0, a0, b0, c0, x00, y00, λ00, a00, b00, c00, maxDepth, stream);
resample.lineEnd = lineEnd;
lineEnd();
};
}
return resample;
}
function resampleLineTo(x0, y0, λ0, a0, b0, c0, x1, y1, λ1, a1, b1, c1, depth, stream) {
var dx = x1 - x0, dy = y1 - y0, d2 = dx * dx + dy * dy;
if (d2 > 4 * δ2 && depth--) {
var a = a0 + a1, b = b0 + b1, c = c0 + c1, m = Math.sqrt(a * a + b * b + c * c), φ2 = Math.asin(c /= m), λ2 = Math.abs(Math.abs(c) - 1) < ε ? (λ0 + λ1) / 2 : Math.atan2(b, a), p = project(λ2, φ2), x2 = p[0], y2 = p[1], dx2 = x2 - x0, dy2 = y2 - y0, dz = dy * dx2 - dx * dy2;
if (dz * dz / d2 > δ2 || Math.abs((dx * dx2 + dy * dy2) / d2 - .5) > .3) {
resampleLineTo(x0, y0, λ0, a0, b0, c0, x2, y2, λ2, a /= m, b /= m, c, depth, stream);
stream.point(x2, y2);
resampleLineTo(x2, y2, λ2, a, b, c, x1, y1, λ1, a1, b1, c1, depth, stream);
}
}
}
resample.precision = function(_) {
if (!arguments.length) return Math.sqrt(δ2);
maxDepth = (δ2 = _ * _) > 0 && 16;
return resample;
};
return resample;
}
d3.geo.albersUsa = function() {
var lower48 = d3.geo.albers();
var alaska = d3.geo.albers().rotate([ 160, 0 ]).center([ 0, 60 ]).parallels([ 55, 65 ]);
var hawaii = d3.geo.albers().rotate([ 160, 0 ]).center([ 0, 20 ]).parallels([ 8, 18 ]);
var puertoRico = d3.geo.albers().rotate([ 60, 0 ]).center([ 0, 10 ]).parallels([ 8, 18 ]);
function albersUsa(coordinates) {
return projection(coordinates)(coordinates);
}
function projection(point) {
var lon = point[0], lat = point[1];
return lat > 50 ? alaska : lon < -140 ? hawaii : lat < 21 ? puertoRico : lower48;
}
albersUsa.scale = function(x) {
if (!arguments.length) return lower48.scale();
lower48.scale(x);
alaska.scale(x * .6);
hawaii.scale(x);
puertoRico.scale(x * 1.5);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(x) {
if (!arguments.length) return lower48.translate();
var dz = lower48.scale(), dx = x[0], dy = x[1];
lower48.translate(x);
alaska.translate([ dx - .4 * dz, dy + .17 * dz ]);
hawaii.translate([ dx - .19 * dz, dy + .2 * dz ]);
puertoRico.translate([ dx + .58 * dz, dy + .43 * dz ]);
return albersUsa;
};
return albersUsa.scale(lower48.scale());
};
function d3_geo_albers(φ0, φ1) {
var sinφ0 = Math.sin(φ0), n = (sinφ0 + Math.sin(φ1)) / 2, C = 1 + sinφ0 * (2 * n - sinφ0), ρ0 = Math.sqrt(C) / n;
function albers(λ, φ) {
var ρ = Math.sqrt(C - 2 * n * Math.sin(φ)) / n;
return [ ρ * Math.sin(λ *= n), ρ0 - ρ * Math.cos(λ) ];
}
albers.invert = function(x, y) {
var ρ0_y = ρ0 - y;
return [ Math.atan2(x, ρ0_y) / n, Math.asin((C - (x * x + ρ0_y * ρ0_y) * n * n) / (2 * n)) ];
};
return albers;
}
(d3.geo.albers = function() {
var φ0 = 29.5 * d3_radians, φ1 = 45.5 * d3_radians, m = d3_geo_projectionMutator(d3_geo_albers), p = m(φ0, φ1);
p.parallels = function(_) {
if (!arguments.length) return [ φ0 * d3_degrees, φ1 * d3_degrees ];
return m(φ0 = _[0] * d3_radians, φ1 = _[1] * d3_radians);
};
return p.rotate([ 98, 0 ]).center([ 0, 38 ]).scale(1e3);
}).raw = d3_geo_albers;
var d3_geo_azimuthalEqualArea = d3_geo_azimuthal(function(cosλcosφ) {
return Math.sqrt(2 / (1 + cosλcosφ));
}, function(ρ) {
return 2 * Math.asin(ρ / 2);
});
(d3.geo.azimuthalEqualArea = function() {
return d3_geo_projection(d3_geo_azimuthalEqualArea);
}).raw = d3_geo_azimuthalEqualArea;
var d3_geo_azimuthalEquidistant = d3_geo_azimuthal(function(cosλcosφ) {
var c = Math.acos(cosλcosφ);
return c && c / Math.sin(c);
}, d3_identity);
(d3.geo.azimuthalEquidistant = function() {
return d3_geo_projection(d3_geo_azimuthalEquidistant);
}).raw = d3_geo_azimuthalEquidistant;
d3.geo.bounds = d3_geo_bounds(d3_identity);
function d3_geo_bounds(projectStream) {
var x0, y0, x1, y1;
var bound = {
point: boundPoint,
lineStart: d3_noop,
lineEnd: d3_noop,
polygonStart: function() {
bound.lineEnd = boundPolygonLineEnd;
},
polygonEnd: function() {
bound.point = boundPoint;
}
};
function boundPoint(x, y) {
if (x < x0) x0 = x;
if (x > x1) x1 = x;
if (y < y0) y0 = y;
if (y > y1) y1 = y;
}
function boundPolygonLineEnd() {
bound.point = bound.lineEnd = d3_noop;
}
return function(feature) {
y1 = x1 = -(x0 = y0 = Infinity);
d3.geo.stream(feature, projectStream(bound));
return [ [ x0, y0 ], [ x1, y1 ] ];
};
}
d3.geo.centroid = function(object) {
d3_geo_centroidDimension = d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
d3.geo.stream(object, d3_geo_centroid);
var m;
if (d3_geo_centroidW && Math.abs(m = Math.sqrt(d3_geo_centroidX * d3_geo_centroidX + d3_geo_centroidY * d3_geo_centroidY + d3_geo_centroidZ * d3_geo_centroidZ)) > ε) {
return [ Math.atan2(d3_geo_centroidY, d3_geo_centroidX) * d3_degrees, Math.asin(Math.max(-1, Math.min(1, d3_geo_centroidZ / m))) * d3_degrees ];
}
};
var d3_geo_centroidDimension, d3_geo_centroidW, d3_geo_centroidX, d3_geo_centroidY, d3_geo_centroidZ;
var d3_geo_centroid = {
sphere: function() {
if (d3_geo_centroidDimension < 2) {
d3_geo_centroidDimension = 2;
d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
}
},
point: d3_geo_centroidPoint,
lineStart: d3_geo_centroidLineStart,
lineEnd: d3_geo_centroidLineEnd,
polygonStart: function() {
if (d3_geo_centroidDimension < 2) {
d3_geo_centroidDimension = 2;
d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
}
d3_geo_centroid.lineStart = d3_geo_centroidRingStart;
},
polygonEnd: function() {
d3_geo_centroid.lineStart = d3_geo_centroidLineStart;
}
};
function d3_geo_centroidPoint(λ, φ) {
if (d3_geo_centroidDimension) return;
++d3_geo_centroidW;
λ *= d3_radians;
var cosφ = Math.cos(φ *= d3_radians);
d3_geo_centroidX += (cosφ * Math.cos(λ) - d3_geo_centroidX) / d3_geo_centroidW;
d3_geo_centroidY += (cosφ * Math.sin(λ) - d3_geo_centroidY) / d3_geo_centroidW;
d3_geo_centroidZ += (Math.sin(φ) - d3_geo_centroidZ) / d3_geo_centroidW;
}
function d3_geo_centroidRingStart() {
var λ00, φ00;
d3_geo_centroidDimension = 1;
d3_geo_centroidLineStart();
d3_geo_centroidDimension = 2;
var linePoint = d3_geo_centroid.point;
d3_geo_centroid.point = function(λ, φ) {
linePoint(λ00 = λ, φ00 = φ);
};
d3_geo_centroid.lineEnd = function() {
d3_geo_centroid.point(λ00, φ00);
d3_geo_centroidLineEnd();
d3_geo_centroid.lineEnd = d3_geo_centroidLineEnd;
};
}
function d3_geo_centroidLineStart() {
var x0, y0, z0;
if (d3_geo_centroidDimension > 1) return;
if (d3_geo_centroidDimension < 1) {
d3_geo_centroidDimension = 1;
d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
}
d3_geo_centroid.point = function(λ, φ) {
λ *= d3_radians;
var cosφ = Math.cos(φ *= d3_radians);
x0 = cosφ * Math.cos(λ);
y0 = cosφ * Math.sin(λ);
z0 = Math.sin(φ);
d3_geo_centroid.point = nextPoint;
};
function nextPoint(λ, φ) {
λ *= d3_radians;
var cosφ = Math.cos(φ *= d3_radians), x = cosφ * Math.cos(λ), y = cosφ * Math.sin(λ), z = Math.sin(φ), w = Math.atan2(Math.sqrt((w = y0 * z - z0 * y) * w + (w = z0 * x - x0 * z) * w + (w = x0 * y - y0 * x) * w), x0 * x + y0 * y + z0 * z);
d3_geo_centroidW += w;
d3_geo_centroidX += w * (x0 + (x0 = x));
d3_geo_centroidY += w * (y0 + (y0 = y));
d3_geo_centroidZ += w * (z0 + (z0 = z));
}
}
function d3_geo_centroidLineEnd() {
d3_geo_centroid.point = d3_geo_centroidPoint;
}
d3.geo.circle = function() {
var origin = [ 0, 0 ], angle, precision = 6, interpolate;
function circle() {
var center = typeof origin === "function" ? origin.apply(this, arguments) : origin, rotate = d3_geo_rotation(-center[0] * d3_radians, -center[1] * d3_radians, 0).invert, ring = [];
interpolate(null, null, 1, {
point: function(x, y) {
ring.push(x = rotate(x, y));
x[0] *= d3_degrees, x[1] *= d3_degrees;
}
});
return {
type: "Polygon",
coordinates: [ ring ]
};
}
circle.origin = function(x) {
if (!arguments.length) return origin;
origin = x;
return circle;
};
circle.angle = function(x) {
if (!arguments.length) return angle;
interpolate = d3_geo_circleInterpolate((angle = +x) * d3_radians, precision * d3_radians);
return circle;
};
circle.precision = function(_) {
if (!arguments.length) return precision;
interpolate = d3_geo_circleInterpolate(angle * d3_radians, (precision = +_) * d3_radians);
return circle;
};
return circle.angle(90);
};
function d3_geo_circleInterpolate(radians, precision) {
var cr = Math.cos(radians), sr = Math.sin(radians);
return function(from, to, direction, listener) {
if (from != null) {
from = d3_geo_circleAngle(cr, from);
to = d3_geo_circleAngle(cr, to);
if (direction > 0 ? from < to : from > to) from += direction * 2 * π;
} else {
from = radians + direction * 2 * π;
to = radians;
}
var point;
for (var step = direction * precision, t = from; direction > 0 ? t > to : t < to; t -= step) {
listener.point((point = d3_geo_spherical([ cr, -sr * Math.cos(t), -sr * Math.sin(t) ]))[0], point[1]);
}
};
}
function d3_geo_circleAngle(cr, point) {
var a = d3_geo_cartesian(point);
a[0] -= cr;
d3_geo_cartesianNormalize(a);
var angle = Math.acos(Math.max(-1, Math.min(1, -a[1])));
return ((-a[2] < 0 ? -angle : angle) + 2 * Math.PI - ε) % (2 * Math.PI);
}
function d3_geo_clip(pointVisible, clipLine, interpolate) {
return function(listener) {
var line = clipLine(listener);
var clip = {
point: point,
lineStart: lineStart,
lineEnd: lineEnd,
polygonStart: function() {
clip.point = pointRing;
clip.lineStart = ringStart;
clip.lineEnd = ringEnd;
invisible = false;
invisibleArea = visibleArea = 0;
segments = [];
listener.polygonStart();
},
polygonEnd: function() {
clip.point = point;
clip.lineStart = lineStart;
clip.lineEnd = lineEnd;
segments = d3.merge(segments);
if (segments.length) {
d3_geo_clipPolygon(segments, interpolate, listener);
} else if (visibleArea < -ε || invisible && invisibleArea < -ε) {
listener.lineStart();
interpolate(null, null, 1, listener);
listener.lineEnd();
}
listener.polygonEnd();
segments = null;
},
sphere: function() {
listener.polygonStart();
listener.lineStart();
interpolate(null, null, 1, listener);
listener.lineEnd();
listener.polygonEnd();
}
};
function point(λ, φ) {
if (pointVisible(λ, φ)) listener.point(λ, φ);
}
function pointLine(λ, φ) {
line.point(λ, φ);
}
function lineStart() {
clip.point = pointLine;
line.lineStart();
}
function lineEnd() {
clip.point = point;
line.lineEnd();
}
var segments, visibleArea, invisibleArea, invisible;
var buffer = d3_geo_clipBufferListener(), ringListener = clipLine(buffer), ring;
function pointRing(λ, φ) {
ringListener.point(λ, φ);
ring.push([ λ, φ ]);
}
function ringStart() {
ringListener.lineStart();
ring = [];
}
function ringEnd() {
pointRing(ring[0][0], ring[0][1]);
ringListener.lineEnd();
var clean = ringListener.clean(), ringSegments = buffer.buffer(), segment, n = ringSegments.length;
if (!n) {
invisible = true;
invisibleArea += d3_geo_clipAreaRing(ring, -1);
ring = null;
return;
}
ring = null;
if (clean & 1) {
segment = ringSegments[0];
visibleArea += d3_geo_clipAreaRing(segment, 1);
var n = segment.length - 1, i = -1, point;
listener.lineStart();
while (++i < n) listener.point((point = segment[i])[0], point[1]);
listener.lineEnd();
return;
}
if (n > 1 && clean & 2) ringSegments.push(ringSegments.pop().concat(ringSegments.shift()));
segments.push(ringSegments.filter(d3_geo_clipSegmentLength1));
}
return clip;
};
}
function d3_geo_clipPolygon(segments, interpolate, listener) {
var subject = [], clip = [];
segments.forEach(function(segment) {
var n = segment.length;
if (n <= 1) return;
var p0 = segment[0], p1 = segment[n - 1], a = {
point: p0,
points: segment,
other: null,
visited: false,
entry: true,
subject: true
}, b = {
point: p0,
points: [ p0 ],
other: a,
visited: false,
entry: false,
subject: false
};
a.other = b;
subject.push(a);
clip.push(b);
a = {
point: p1,
points: [ p1 ],
other: null,
visited: false,
entry: false,
subject: true
};
b = {
point: p1,
points: [ p1 ],
other: a,
visited: false,
entry: true,
subject: false
};
a.other = b;
subject.push(a);
clip.push(b);
});
clip.sort(d3_geo_clipSort);
d3_geo_clipLinkCircular(subject);
d3_geo_clipLinkCircular(clip);
if (!subject.length) return;
var start = subject[0], current, points, point;
while (1) {
current = start;
while (current.visited) if ((current = current.next) === start) return;
points = current.points;
listener.lineStart();
do {
current.visited = current.other.visited = true;
if (current.entry) {
if (current.subject) {
for (var i = 0; i < points.length; i++) listener.point((point = points[i])[0], point[1]);
} else {
interpolate(current.point, current.next.point, 1, listener);
}
current = current.next;
} else {
if (current.subject) {
points = current.prev.points;
for (var i = points.length; --i >= 0; ) listener.point((point = points[i])[0], point[1]);
} else {
interpolate(current.point, current.prev.point, -1, listener);
}
current = current.prev;
}
current = current.other;
points = current.points;
} while (!current.visited);
listener.lineEnd();
}
}
function d3_geo_clipLinkCircular(array) {
if (!(n = array.length)) return;
var n, i = 0, a = array[0], b;
while (++i < n) {
a.next = b = array[i];
b.prev = a;
a = b;
}
a.next = b = array[0];
b.prev = a;
}
function d3_geo_clipSort(a, b) {
return ((a = a.point)[0] < 0 ? a[1] - π / 2 - ε : π / 2 - a[1]) - ((b = b.point)[0] < 0 ? b[1] - π / 2 - ε : π / 2 - b[1]);
}
function d3_geo_clipSegmentLength1(segment) {
return segment.length > 1;
}
function d3_geo_clipBufferListener() {
var lines = [], line;
return {
lineStart: function() {
lines.push(line = []);
},
point: function(λ, φ) {
line.push([ λ, φ ]);
},
lineEnd: d3_noop,
buffer: function() {
var buffer = lines;
lines = [];
line = null;
return buffer;
}
};
}
function d3_geo_clipAreaRing(ring, invisible) {
if (!(n = ring.length)) return 0;
var n, i = 0, area = 0, p = ring[0], λ = p[0], φ = p[1], cosφ = Math.cos(φ), x0 = Math.atan2(invisible * Math.sin(λ) * cosφ, Math.sin(φ)), y0 = 1 - invisible * Math.cos(λ) * cosφ, x1 = x0, x, y;
while (++i < n) {
p = ring[i];
cosφ = Math.cos(φ = p[1]);
x = Math.atan2(invisible * Math.sin(λ = p[0]) * cosφ, Math.sin(φ));
y = 1 - invisible * Math.cos(λ) * cosφ;
if (Math.abs(y0 - 2) < ε && Math.abs(y - 2) < ε) continue;
if (Math.abs(y) < ε || Math.abs(y0) < ε) {} else if (Math.abs(Math.abs(x - x0) - π) < ε) {
if (y + y0 > 2) area += 4 * (x - x0);
} else if (Math.abs(y0 - 2) < ε) area += 4 * (x - x1); else area += ((3 * π + x - x0) % (2 * π) - π) * (y0 + y);
x1 = x0, x0 = x, y0 = y;
}
return area;
}
var d3_geo_clipAntimeridian = d3_geo_clip(d3_true, d3_geo_clipAntimeridianLine, d3_geo_clipAntimeridianInterpolate);
function d3_geo_clipAntimeridianLine(listener) {
var λ0 = NaN, φ0 = NaN, sλ0 = NaN, clean;
return {
lineStart: function() {
listener.lineStart();
clean = 1;
},
point: function(λ1, φ1) {
var sλ1 = λ1 > 0 ? π : -π, dλ = Math.abs(λ1 - λ0);
if (Math.abs(dλ - π) < ε) {
listener.point(λ0, φ0 = (φ0 + φ1) / 2 > 0 ? π / 2 : -π / 2);
listener.point(sλ0, φ0);
listener.lineEnd();
listener.lineStart();
listener.point(sλ1, φ0);
listener.point(λ1, φ0);
clean = 0;
} else if (sλ0 !== sλ1 && dλ >= π) {
if (Math.abs(λ0 - sλ0) < ε) λ0 -= sλ0 * ε;
if (Math.abs(λ1 - sλ1) < ε) λ1 -= sλ1 * ε;
φ0 = d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1);
listener.point(sλ0, φ0);
listener.lineEnd();
listener.lineStart();
listener.point(sλ1, φ0);
clean = 0;
}
listener.point(λ0 = λ1, φ0 = φ1);
sλ0 = sλ1;
},
lineEnd: function() {
listener.lineEnd();
λ0 = φ0 = NaN;
},
clean: function() {
return 2 - clean;
}
};
}
function d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1) {
var cosφ0, cosφ1, sinλ0_λ1 = Math.sin(λ0 - λ1);
return Math.abs(sinλ0_λ1) > ε ? Math.atan((Math.sin(φ0) * (cosφ1 = Math.cos(φ1)) * Math.sin(λ1) - Math.sin(φ1) * (cosφ0 = Math.cos(φ0)) * Math.sin(λ0)) / (cosφ0 * cosφ1 * sinλ0_λ1)) : (φ0 + φ1) / 2;
}
function d3_geo_clipAntimeridianInterpolate(from, to, direction, listener) {
var φ;
if (from == null) {
φ = direction * π / 2;
listener.point(-π, φ);
listener.point(0, φ);
listener.point(π, φ);
listener.point(π, 0);
listener.point(π, -φ);
listener.point(0, -φ);
listener.point(-π, -φ);
listener.point(-π, 0);
listener.point(-π, φ);
} else if (Math.abs(from[0] - to[0]) > ε) {
var s = (from[0] < to[0] ? 1 : -1) * π;
φ = direction * s / 2;
listener.point(-s, φ);
listener.point(0, φ);
listener.point(s, φ);
} else {
listener.point(to[0], to[1]);
}
}
function d3_geo_clipCircle(degrees) {
var radians = degrees * d3_radians, cr = Math.cos(radians), interpolate = d3_geo_circleInterpolate(radians, 6 * d3_radians);
return d3_geo_clip(visible, clipLine, interpolate);
function visible(λ, φ) {
return Math.cos(λ) * Math.cos(φ) > cr;
}
function clipLine(listener) {
var point0, v0, v00, clean;
return {
lineStart: function() {
v00 = v0 = false;
clean = 1;
},
point: function(λ, φ) {
var point1 = [ λ, φ ], point2, v = visible(λ, φ);
if (!point0 && (v00 = v0 = v)) listener.lineStart();
if (v !== v0) {
point2 = intersect(point0, point1);
if (d3_geo_sphericalEqual(point0, point2) || d3_geo_sphericalEqual(point1, point2)) {
point1[0] += ε;
point1[1] += ε;
v = visible(point1[0], point1[1]);
}
}
if (v !== v0) {
clean = 0;
if (v0 = v) {
listener.lineStart();
point2 = intersect(point1, point0);
listener.point(point2[0], point2[1]);
} else {
point2 = intersect(point0, point1);
listener.point(point2[0], point2[1]);
listener.lineEnd();
}
point0 = point2;
}
if (v && (!point0 || !d3_geo_sphericalEqual(point0, point1))) listener.point(point1[0], point1[1]);
point0 = point1;
},
lineEnd: function() {
if (v0) listener.lineEnd();
point0 = null;
},
clean: function() {
return clean | (v00 && v0) << 1;
}
};
}
function intersect(a, b) {
var pa = d3_geo_cartesian(a, 0), pb = d3_geo_cartesian(b, 0);
var n1 = [ 1, 0, 0 ], n2 = d3_geo_cartesianCross(pa, pb), n2n2 = d3_geo_cartesianDot(n2, n2), n1n2 = n2[0], determinant = n2n2 - n1n2 * n1n2;
if (!determinant) return a;
var c1 = cr * n2n2 / determinant, c2 = -cr * n1n2 / determinant, n1xn2 = d3_geo_cartesianCross(n1, n2), A = d3_geo_cartesianScale(n1, c1), B = d3_geo_cartesianScale(n2, c2);
d3_geo_cartesianAdd(A, B);
var u = n1xn2, w = d3_geo_cartesianDot(A, u), uu = d3_geo_cartesianDot(u, u), t = Math.sqrt(w * w - uu * (d3_geo_cartesianDot(A, A) - 1)), q = d3_geo_cartesianScale(u, (-w - t) / uu);
d3_geo_cartesianAdd(q, A);
return d3_geo_spherical(q);
}
}
function d3_geo_compose(a, b) {
function compose(x, y) {
return x = a(x, y), b(x[0], x[1]);
}
if (a.invert && b.invert) compose.invert = function(x, y) {
return x = b.invert(x, y), x && a.invert(x[0], x[1]);
};
return compose;
}
function d3_geo_equirectangular(λ, φ) {
return [ λ, φ ];
}
(d3.geo.equirectangular = function() {
return d3_geo_projection(d3_geo_equirectangular).scale(250 / π);
}).raw = d3_geo_equirectangular.invert = d3_geo_equirectangular;
var d3_geo_gnomonic = d3_geo_azimuthal(function(cosλcosφ) {
return 1 / cosλcosφ;
}, Math.atan);
(d3.geo.gnomonic = function() {
return d3_geo_projection(d3_geo_gnomonic);
}).raw = d3_geo_gnomonic;
d3.geo.graticule = function() {
var x1, x0, y1, y0, dx = 22.5, dy = dx, x, y, precision = 2.5;
function graticule() {
return {
type: "MultiLineString",
coordinates: lines()
};
}
function lines() {
return d3.range(Math.ceil(x0 / dx) * dx, x1, dx).map(x).concat(d3.range(Math.ceil(y0 / dy) * dy, y1, dy).map(y));
}
graticule.lines = function() {
return lines().map(function(coordinates) {
return {
type: "LineString",
coordinates: coordinates
};
});
};
graticule.outline = function() {
return {
type: "Polygon",
coordinates: [ x(x0).concat(y(y1).slice(1), x(x1).reverse().slice(1), y(y0).reverse().slice(1)) ]
};
};
graticule.extent = function(_) {
if (!arguments.length) return [ [ x0, y0 ], [ x1, y1 ] ];
x0 = +_[0][0], x1 = +_[1][0];
y0 = +_[0][1], y1 = +_[1][1];
if (x0 > x1) _ = x0, x0 = x1, x1 = _;
if (y0 > y1) _ = y0, y0 = y1, y1 = _;
return graticule.precision(precision);
};
graticule.step = function(_) {
if (!arguments.length) return [ dx, dy ];
dx = +_[0], dy = +_[1];
return graticule;
};
graticule.precision = function(_) {
if (!arguments.length) return precision;
precision = +_;
x = d3_geo_graticuleX(y0, y1, precision);
y = d3_geo_graticuleY(x0, x1, precision);
return graticule;
};
return graticule.extent([ [ -180 + ε, -90 + ε ], [ 180 - ε, 90 - ε ] ]);
};
function d3_geo_graticuleX(y0, y1, dy) {
var y = d3.range(y0, y1 - ε, dy).concat(y1);
return function(x) {
return y.map(function(y) {
return [ x, y ];
});
};
}
function d3_geo_graticuleY(x0, x1, dx) {
var x = d3.range(x0, x1 - ε, dx).concat(x1);
return function(y) {
return x.map(function(x) {
return [ x, y ];
});
};
}
d3.geo.interpolate = function(source, target) {
return d3_geo_interpolate(source[0] * d3_radians, source[1] * d3_radians, target[0] * d3_radians, target[1] * d3_radians);
};
function d3_geo_interpolate(x0, y0, x1, y1) {
var cy0 = Math.cos(y0), sy0 = Math.sin(y0), cy1 = Math.cos(y1), sy1 = Math.sin(y1), kx0 = cy0 * Math.cos(x0), ky0 = cy0 * Math.sin(x0), kx1 = cy1 * Math.cos(x1), ky1 = cy1 * Math.sin(x1), d = Math.acos(Math.max(-1, Math.min(1, sy0 * sy1 + cy0 * cy1 * Math.cos(x1 - x0)))), k = 1 / Math.sin(d);
function interpolate(t) {
var B = Math.sin(t *= d) * k, A = Math.sin(d - t) * k, x = A * kx0 + B * kx1, y = A * ky0 + B * ky1, z = A * sy0 + B * sy1;
return [ Math.atan2(y, x) / d3_radians, Math.atan2(z, Math.sqrt(x * x + y * y)) / d3_radians ];
}
interpolate.distance = d;
return interpolate;
}
d3.geo.greatArc = function() {
var source = d3_source, source_, target = d3_target, target_, precision = 6 * d3_radians, interpolate;
function greatArc() {
var p0 = source_ || source.apply(this, arguments), p1 = target_ || target.apply(this, arguments), i = interpolate || d3.geo.interpolate(p0, p1), t = 0, dt = precision / i.distance, coordinates = [ p0 ];
while ((t += dt) < 1) coordinates.push(i(t));
coordinates.push(p1);
return {
type: "LineString",
coordinates: coordinates
};
}
greatArc.distance = function() {
return (interpolate || d3.geo.interpolate(source_ || source.apply(this, arguments), target_ || target.apply(this, arguments))).distance;
};
greatArc.source = function(_) {
if (!arguments.length) return source;
source = _, source_ = typeof _ === "function" ? null : _;
interpolate = source_ && target_ ? d3.geo.interpolate(source_, target_) : null;
return greatArc;
};
greatArc.target = function(_) {
if (!arguments.length) return target;
target = _, target_ = typeof _ === "function" ? null : _;
interpolate = source_ && target_ ? d3.geo.interpolate(source_, target_) : null;
return greatArc;
};
greatArc.precision = function(_) {
if (!arguments.length) return precision / d3_radians;
precision = _ * d3_radians;
return greatArc;
};
return greatArc;
};
function d3_geo_mercator(λ, φ) {
return [ λ / (2 * π), Math.max(-.5, Math.min(+.5, Math.log(Math.tan(π / 4 + φ / 2)) / (2 * π))) ];
}
d3_geo_mercator.invert = function(x, y) {
return [ 2 * π * x, 2 * Math.atan(Math.exp(2 * π * y)) - π / 2 ];
};
(d3.geo.mercator = function() {
return d3_geo_projection(d3_geo_mercator).scale(500);
}).raw = d3_geo_mercator;
var d3_geo_orthographic = d3_geo_azimuthal(function() {
return 1;
}, Math.asin);
(d3.geo.orthographic = function() {
return d3_geo_projection(d3_geo_orthographic);
}).raw = d3_geo_orthographic;
d3.geo.path = function() {
var pointRadius = 4.5, projection, context, projectStream, contextStream;
function path(object) {
if (object) d3.geo.stream(object, projectStream(contextStream.pointRadius(typeof pointRadius === "function" ? +pointRadius.apply(this, arguments) : pointRadius)));
return contextStream.result();
}
path.area = function(object) {
d3_geo_pathAreaSum = 0;
d3.geo.stream(object, projectStream(d3_geo_pathArea));
return d3_geo_pathAreaSum;
};
path.centroid = function(object) {
d3_geo_centroidDimension = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
d3.geo.stream(object, projectStream(d3_geo_pathCentroid));
return d3_geo_centroidZ ? [ d3_geo_centroidX / d3_geo_centroidZ, d3_geo_centroidY / d3_geo_centroidZ ] : undefined;
};
path.bounds = function(object) {
return d3_geo_bounds(projectStream)(object);
};
path.projection = function(_) {
if (!arguments.length) return projection;
projectStream = (projection = _) ? _.stream || d3_geo_pathProjectStream(_) : d3_identity;
return path;
};
path.context = function(_) {
if (!arguments.length) return context;
contextStream = (context = _) == null ? new d3_geo_pathBuffer() : new d3_geo_pathContext(_);
return path;
};
path.pointRadius = function(_) {
if (!arguments.length) return pointRadius;
pointRadius = typeof _ === "function" ? _ : +_;
return path;
};
return path.projection(d3.geo.albersUsa()).context(null);
};
function d3_geo_pathCircle(radius) {
return "m0," + radius + "a" + radius + "," + radius + " 0 1,1 0," + -2 * radius + "a" + radius + "," + radius + " 0 1,1 0," + +2 * radius + "z";
}
function d3_geo_pathProjectStream(project) {
var resample = d3_geo_resample(function(λ, φ) {
return project([ λ * d3_degrees, φ * d3_degrees ]);
});
return function(stream) {
stream = resample(stream);
return {
point: function(λ, φ) {
stream.point(λ * d3_radians, φ * d3_radians);
},
sphere: function() {
stream.sphere();
},
lineStart: function() {
stream.lineStart();
},
lineEnd: function() {
stream.lineEnd();
},
polygonStart: function() {
stream.polygonStart();
},
polygonEnd: function() {
stream.polygonEnd();
}
};
};
}
function d3_geo_pathBuffer() {
var pointCircle = d3_geo_pathCircle(4.5), buffer = [];
var stream = {
point: point,
lineStart: function() {
stream.point = pointLineStart;
},
lineEnd: lineEnd,
polygonStart: function() {
stream.lineEnd = lineEndPolygon;
},
polygonEnd: function() {
stream.lineEnd = lineEnd;
stream.point = point;
},
pointRadius: function(_) {
pointCircle = d3_geo_pathCircle(_);
return stream;
},
result: function() {
if (buffer.length) {
var result = buffer.join("");
buffer = [];
return result;
}
}
};
function point(x, y) {
buffer.push("M", x, ",", y, pointCircle);
}
function pointLineStart(x, y) {
buffer.push("M", x, ",", y);
stream.point = pointLine;
}
function pointLine(x, y) {
buffer.push("L", x, ",", y);
}
function lineEnd() {
stream.point = point;
}
function lineEndPolygon() {
buffer.push("Z");
}
return stream;
}
function d3_geo_pathContext(context) {
var pointRadius = 4.5;
var stream = {
point: point,
lineStart: function() {
stream.point = pointLineStart;
},
lineEnd: lineEnd,
polygonStart: function() {
stream.lineEnd = lineEndPolygon;
},
polygonEnd: function() {
stream.lineEnd = lineEnd;
stream.point = point;
},
pointRadius: function(_) {
pointRadius = _;
return stream;
},
result: d3_noop
};
function point(x, y) {
context.moveTo(x, y);
context.arc(x, y, pointRadius, 0, 2 * π);
}
function pointLineStart(x, y) {
context.moveTo(x, y);
stream.point = pointLine;
}
function pointLine(x, y) {
context.lineTo(x, y);
}
function lineEnd() {
stream.point = point;
}
function lineEndPolygon() {
context.closePath();
}
return stream;
}
var d3_geo_pathAreaSum, d3_geo_pathAreaPolygon, d3_geo_pathArea = {
point: d3_noop,
lineStart: d3_noop,
lineEnd: d3_noop,
polygonStart: function() {
d3_geo_pathAreaPolygon = 0;
d3_geo_pathArea.lineStart = d3_geo_pathAreaRingStart;
},
polygonEnd: function() {
d3_geo_pathArea.lineStart = d3_geo_pathArea.lineEnd = d3_geo_pathArea.point = d3_noop;
d3_geo_pathAreaSum += Math.abs(d3_geo_pathAreaPolygon / 2);
}
};
function d3_geo_pathAreaRingStart() {
var x00, y00, x0, y0;
d3_geo_pathArea.point = function(x, y) {
d3_geo_pathArea.point = nextPoint;
x00 = x0 = x, y00 = y0 = y;
};
function nextPoint(x, y) {
d3_geo_pathAreaPolygon += y0 * x - x0 * y;
x0 = x, y0 = y;
}
d3_geo_pathArea.lineEnd = function() {
nextPoint(x00, y00);
};
}
var d3_geo_pathCentroid = {
point: d3_geo_pathCentroidPoint,
lineStart: d3_geo_pathCentroidLineStart,
lineEnd: d3_geo_pathCentroidLineEnd,
polygonStart: function() {
d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidRingStart;
},
polygonEnd: function() {
d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint;
d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidLineStart;
d3_geo_pathCentroid.lineEnd = d3_geo_pathCentroidLineEnd;
}
};
function d3_geo_pathCentroidPoint(x, y) {
if (d3_geo_centroidDimension) return;
d3_geo_centroidX += x;
d3_geo_centroidY += y;
++d3_geo_centroidZ;
}
function d3_geo_pathCentroidLineStart() {
var x0, y0;
if (d3_geo_centroidDimension !== 1) {
if (d3_geo_centroidDimension < 1) {
d3_geo_centroidDimension = 1;
d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
} else return;
}
d3_geo_pathCentroid.point = function(x, y) {
d3_geo_pathCentroid.point = nextPoint;
x0 = x, y0 = y;
};
function nextPoint(x, y) {
var dx = x - x0, dy = y - y0, z = Math.sqrt(dx * dx + dy * dy);
d3_geo_centroidX += z * (x0 + x) / 2;
d3_geo_centroidY += z * (y0 + y) / 2;
d3_geo_centroidZ += z;
x0 = x, y0 = y;
}
}
function d3_geo_pathCentroidLineEnd() {
d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint;
}
function d3_geo_pathCentroidRingStart() {
var x00, y00, x0, y0;
if (d3_geo_centroidDimension < 2) {
d3_geo_centroidDimension = 2;
d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0;
}
d3_geo_pathCentroid.point = function(x, y) {
d3_geo_pathCentroid.point = nextPoint;
x00 = x0 = x, y00 = y0 = y;
};
function nextPoint(x, y) {
var z = y0 * x - x0 * y;
d3_geo_centroidX += z * (x0 + x);
d3_geo_centroidY += z * (y0 + y);
d3_geo_centroidZ += z * 3;
x0 = x, y0 = y;
}
d3_geo_pathCentroid.lineEnd = function() {
nextPoint(x00, y00);
};
}
d3.geo.area = function(object) {
d3_geo_areaSum = 0;
d3.geo.stream(object, d3_geo_area);
return d3_geo_areaSum;
};
var d3_geo_areaSum, d3_geo_areaRingU, d3_geo_areaRingV;
var d3_geo_area = {
sphere: function() {
d3_geo_areaSum += 4 * π;
},
point: d3_noop,
lineStart: d3_noop,
lineEnd: d3_noop,
polygonStart: function() {
d3_geo_areaRingU = 1, d3_geo_areaRingV = 0;
d3_geo_area.lineStart = d3_geo_areaRingStart;
},
polygonEnd: function() {
var area = 2 * Math.atan2(d3_geo_areaRingV, d3_geo_areaRingU);
d3_geo_areaSum += area < 0 ? 4 * π + area : area;
d3_geo_area.lineStart = d3_geo_area.lineEnd = d3_geo_area.point = d3_noop;
}
};
function d3_geo_areaRingStart() {
var λ00, φ00, λ0, cosφ0, sinφ0;
d3_geo_area.point = function(λ, φ) {
d3_geo_area.point = nextPoint;
λ0 = (λ00 = λ) * d3_radians, cosφ0 = Math.cos(φ = (φ00 = φ) * d3_radians / 2 + π / 4),
sinφ0 = Math.sin(φ);
};
function nextPoint(λ, φ) {
λ *= d3_radians;
φ = φ * d3_radians / 2 + π / 4;
var dλ = λ - λ0, cosφ = Math.cos(φ), sinφ = Math.sin(φ), k = sinφ0 * sinφ, u0 = d3_geo_areaRingU, v0 = d3_geo_areaRingV, u = cosφ0 * cosφ + k * Math.cos(dλ), v = k * Math.sin(dλ);
d3_geo_areaRingU = u0 * u - v0 * v;
d3_geo_areaRingV = v0 * u + u0 * v;
λ0 = λ, cosφ0 = cosφ, sinφ0 = sinφ;
}
d3_geo_area.lineEnd = function() {
nextPoint(λ00, φ00);
};
}
d3.geo.projection = d3_geo_projection;
d3.geo.projectionMutator = d3_geo_projectionMutator;
function d3_geo_projection(project) {
return d3_geo_projectionMutator(function() {
return project;
})();
}
function d3_geo_projectionMutator(projectAt) {
var project, rotate, projectRotate, projectResample = d3_geo_resample(function(x, y) {
x = project(x, y);
return [ x[0] * k + δx, δy - x[1] * k ];
}), k = 150, x = 480, y = 250, λ = 0, φ = 0, δλ = 0, δφ = 0, δγ = 0, δx, δy, clip = d3_geo_clipAntimeridian, clipAngle = null;
function projection(point) {
point = projectRotate(point[0] * d3_radians, point[1] * d3_radians);
return [ point[0] * k + δx, δy - point[1] * k ];
}
function invert(point) {
point = projectRotate.invert((point[0] - δx) / k, (δy - point[1]) / k);
return point && [ point[0] * d3_degrees, point[1] * d3_degrees ];
}
projection.stream = function(stream) {
return d3_geo_projectionRadiansRotate(rotate, clip(projectResample(stream)));
};
projection.clipAngle = function(_) {
if (!arguments.length) return clipAngle;
clip = _ == null ? (clipAngle = _, d3_geo_clipAntimeridian) : d3_geo_clipCircle(clipAngle = +_);
return projection;
};
projection.scale = function(_) {
if (!arguments.length) return k;
k = +_;
return reset();
};
projection.translate = function(_) {
if (!arguments.length) return [ x, y ];
x = +_[0];
y = +_[1];
return reset();
};
projection.center = function(_) {
if (!arguments.length) return [ λ * d3_degrees, φ * d3_degrees ];
λ = _[0] % 360 * d3_radians;
φ = _[1] % 360 * d3_radians;
return reset();
};
projection.rotate = function(_) {
if (!arguments.length) return [ δλ * d3_degrees, δφ * d3_degrees, δγ * d3_degrees ];
δλ = _[0] % 360 * d3_radians;
δφ = _[1] % 360 * d3_radians;
δγ = _.length > 2 ? _[2] % 360 * d3_radians : 0;
return reset();
};
d3.rebind(projection, projectResample, "precision");
function reset() {
projectRotate = d3_geo_compose(rotate = d3_geo_rotation(δλ, δφ, δγ), project);
var center = project(λ, φ);
δx = x - center[0] * k;
δy = y + center[1] * k;
return projection;
}
return function() {
project = projectAt.apply(this, arguments);
projection.invert = project.invert && invert;
return reset();
};
}
function d3_geo_projectionRadiansRotate(rotate, stream) {
return {
point: function(x, y) {
y = rotate(x * d3_radians, y * d3_radians), x = y[0];
stream.point(x > π ? x - 2 * π : x < -π ? x + 2 * π : x, y[1]);
},
sphere: function() {
stream.sphere();
},
lineStart: function() {
stream.lineStart();
},
lineEnd: function() {
stream.lineEnd();
},
polygonStart: function() {
stream.polygonStart();
},
polygonEnd: function() {
stream.polygonEnd();
}
};
}
function d3_geo_rotation(δλ, δφ, δγ) {
return δλ ? δφ || δγ ? d3_geo_compose(d3_geo_rotationλ(δλ), d3_geo_rotationφγ(δφ, δγ)) : d3_geo_rotationλ(δλ) : δφ || δγ ? d3_geo_rotationφγ(δφ, δγ) : d3_geo_equirectangular;
}
function d3_geo_forwardRotationλ(δλ) {
return function(λ, φ) {
return λ += δλ, [ λ > π ? λ - 2 * π : λ < -π ? λ + 2 * π : λ, φ ];
};
}
function d3_geo_rotationλ(δλ) {
var rotation = d3_geo_forwardRotationλ(δλ);
rotation.invert = d3_geo_forwardRotationλ(-δλ);
return rotation;
}
function d3_geo_rotationφγ(δφ, δγ) {
var cosδφ = Math.cos(δφ), sinδφ = Math.sin(δφ), cosδγ = Math.cos(δγ), sinδγ = Math.sin(δγ);
function rotation(λ, φ) {
var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδφ + x * sinδφ;
return [ Math.atan2(y * cosδγ - k * sinδγ, x * cosδφ - z * sinδφ), Math.asin(Math.max(-1, Math.min(1, k * cosδγ + y * sinδγ))) ];
}
rotation.invert = function(λ, φ) {
var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδγ - y * sinδγ;
return [ Math.atan2(y * cosδγ + z * sinδγ, x * cosδφ + k * sinδφ), Math.asin(Math.max(-1, Math.min(1, k * cosδφ - x * sinδφ))) ];
};
return rotation;
}
var d3_geo_stereographic = d3_geo_azimuthal(function(cosλcosφ) {
return 1 / (1 + cosλcosφ);
}, function(ρ) {
return 2 * Math.atan(ρ);
});
(d3.geo.stereographic = function() {
return d3_geo_projection(d3_geo_stereographic);
}).raw = d3_geo_stereographic;
function d3_geo_azimuthal(scale, angle) {
function azimuthal(λ, φ) {
var cosλ = Math.cos(λ), cosφ = Math.cos(φ), k = scale(cosλ * cosφ);
return [ k * cosφ * Math.sin(λ), k * Math.sin(φ) ];
}
azimuthal.invert = function(x, y) {
var ρ = Math.sqrt(x * x + y * y), c = angle(ρ), sinc = Math.sin(c), cosc = Math.cos(c);
return [ Math.atan2(x * sinc, ρ * cosc), Math.asin(ρ && y * sinc / ρ) ];
};
return azimuthal;
}
d3.geom = {};
d3.geom.hull = function(vertices) {
if (vertices.length < 3) return [];
var len = vertices.length, plen = len - 1, points = [], stack = [], i, j, h = 0, x1, y1, x2, y2, u, v, a, sp;
for (i = 1; i < len; ++i) {
if (vertices[i][1] < vertices[h][1]) {
h = i;
} else if (vertices[i][1] == vertices[h][1]) {
h = vertices[i][0] < vertices[h][0] ? i : h;
}
}
for (i = 0; i < len; ++i) {
if (i === h) continue;
y1 = vertices[i][1] - vertices[h][1];
x1 = vertices[i][0] - vertices[h][0];
points.push({
angle: Math.atan2(y1, x1),
index: i
});
}
points.sort(function(a, b) {
return a.angle - b.angle;
});
a = points[0].angle;
v = points[0].index;
u = 0;
for (i = 1; i < plen; ++i) {
j = points[i].index;
if (a == points[i].angle) {
x1 = vertices[v][0] - vertices[h][0];
y1 = vertices[v][1] - vertices[h][1];
x2 = vertices[j][0] - vertices[h][0];
y2 = vertices[j][1] - vertices[h][1];
if (x1 * x1 + y1 * y1 >= x2 * x2 + y2 * y2) {
points[i].index = -1;
} else {
points[u].index = -1;
a = points[i].angle;
u = i;
v = j;
}
} else {
a = points[i].angle;
u = i;
v = j;
}
}
stack.push(h);
for (i = 0, j = 0; i < 2; ++j) {
if (points[j].index !== -1) {
stack.push(points[j].index);
i++;
}
}
sp = stack.length;
for (;j < plen; ++j) {
if (points[j].index === -1) continue;
while (!d3_geom_hullCCW(stack[sp - 2], stack[sp - 1], points[j].index, vertices)) {
--sp;
}
stack[sp++] = points[j].index;
}
var poly = [];
for (i = 0; i < sp; ++i) {
poly.push(vertices[stack[i]]);
}
return poly;
};
function d3_geom_hullCCW(i1, i2, i3, v) {
var t, a, b, c, d, e, f;
t = v[i1];
a = t[0];
b = t[1];
t = v[i2];
c = t[0];
d = t[1];
t = v[i3];
e = t[0];
f = t[1];
return (f - b) * (c - a) - (d - b) * (e - a) > 0;
}
d3.geom.polygon = function(coordinates) {
coordinates.area = function() {
var i = 0, n = coordinates.length, area = coordinates[n - 1][1] * coordinates[0][0] - coordinates[n - 1][0] * coordinates[0][1];
while (++i < n) {
area += coordinates[i - 1][1] * coordinates[i][0] - coordinates[i - 1][0] * coordinates[i][1];
}
return area * .5;
};
coordinates.centroid = function(k) {
var i = -1, n = coordinates.length, x = 0, y = 0, a, b = coordinates[n - 1], c;
if (!arguments.length) k = -1 / (6 * coordinates.area());
while (++i < n) {
a = b;
b = coordinates[i];
c = a[0] * b[1] - b[0] * a[1];
x += (a[0] + b[0]) * c;
y += (a[1] + b[1]) * c;
}
return [ x * k, y * k ];
};
coordinates.clip = function(subject) {
var input, i = -1, n = coordinates.length, j, m, a = coordinates[n - 1], b, c, d;
while (++i < n) {
input = subject.slice();
subject.length = 0;
b = coordinates[i];
c = input[(m = input.length) - 1];
j = -1;
while (++j < m) {
d = input[j];
if (d3_geom_polygonInside(d, a, b)) {
if (!d3_geom_polygonInside(c, a, b)) {
subject.push(d3_geom_polygonIntersect(c, d, a, b));
}
subject.push(d);
} else if (d3_geom_polygonInside(c, a, b)) {
subject.push(d3_geom_polygonIntersect(c, d, a, b));
}
c = d;
}
a = b;
}
return subject;
};
return coordinates;
};
function d3_geom_polygonInside(p, a, b) {
return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]);
}
function d3_geom_polygonIntersect(c, d, a, b) {
var x1 = c[0], x3 = a[0], x21 = d[0] - x1, x43 = b[0] - x3, y1 = c[1], y3 = a[1], y21 = d[1] - y1, y43 = b[1] - y3, ua = (x43 * (y1 - y3) - y43 * (x1 - x3)) / (y43 * x21 - x43 * y21);
return [ x1 + ua * x21, y1 + ua * y21 ];
}
d3.geom.voronoi = function(vertices) {
var polygons = vertices.map(function() {
return [];
}), Z = 1e6;
d3_voronoi_tessellate(vertices, function(e) {
var s1, s2, x1, x2, y1, y2;
if (e.a === 1 && e.b >= 0) {
s1 = e.ep.r;
s2 = e.ep.l;
} else {
s1 = e.ep.l;
s2 = e.ep.r;
}
if (e.a === 1) {
y1 = s1 ? s1.y : -Z;
x1 = e.c - e.b * y1;
y2 = s2 ? s2.y : Z;
x2 = e.c - e.b * y2;
} else {
x1 = s1 ? s1.x : -Z;
y1 = e.c - e.a * x1;
x2 = s2 ? s2.x : Z;
y2 = e.c - e.a * x2;
}
var v1 = [ x1, y1 ], v2 = [ x2, y2 ];
polygons[e.region.l.index].push(v1, v2);
polygons[e.region.r.index].push(v1, v2);
});
polygons = polygons.map(function(polygon, i) {
var cx = vertices[i][0], cy = vertices[i][1], angle = polygon.map(function(v) {
return Math.atan2(v[0] - cx, v[1] - cy);
}), order = d3.range(polygon.length).sort(function(a, b) {
return angle[a] - angle[b];
});
return order.filter(function(d, i) {
return !i || angle[d] - angle[order[i - 1]] > ε;
}).map(function(d) {
return polygon[d];
});
});
polygons.forEach(function(polygon, i) {
var n = polygon.length;
if (!n) return polygon.push([ -Z, -Z ], [ -Z, Z ], [ Z, Z ], [ Z, -Z ]);
if (n > 2) return;
var p0 = vertices[i], p1 = polygon[0], p2 = polygon[1], x0 = p0[0], y0 = p0[1], x1 = p1[0], y1 = p1[1], x2 = p2[0], y2 = p2[1], dx = Math.abs(x2 - x1), dy = y2 - y1;
if (Math.abs(dy) < ε) {
var y = y0 < y1 ? -Z : Z;
polygon.push([ -Z, y ], [ Z, y ]);
} else if (dx < ε) {
var x = x0 < x1 ? -Z : Z;
polygon.push([ x, -Z ], [ x, Z ]);
} else {
var y = (x2 - x1) * (y1 - y0) < (x1 - x0) * (y2 - y1) ? Z : -Z, z = Math.abs(dy) - dx;
if (Math.abs(z) < ε) {
polygon.push([ dy < 0 ? y : -y, y ]);
} else {
if (z > 0) y *= -1;
polygon.push([ -Z, y ], [ Z, y ]);
}
}
});
return polygons;
};
var d3_voronoi_opposite = {
l: "r",
r: "l"
};
function d3_voronoi_tessellate(vertices, callback) {
var Sites = {
list: vertices.map(function(v, i) {
return {
index: i,
x: v[0],
y: v[1]
};
}).sort(function(a, b) {
return a.y < b.y ? -1 : a.y > b.y ? 1 : a.x < b.x ? -1 : a.x > b.x ? 1 : 0;
}),
bottomSite: null
};
var EdgeList = {
list: [],
leftEnd: null,
rightEnd: null,
init: function() {
EdgeList.leftEnd = EdgeList.createHalfEdge(null, "l");
EdgeList.rightEnd = EdgeList.createHalfEdge(null, "l");
EdgeList.leftEnd.r = EdgeList.rightEnd;
EdgeList.rightEnd.l = EdgeList.leftEnd;
EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd);
},
createHalfEdge: function(edge, side) {
return {
edge: edge,
side: side,
vertex: null,
l: null,
r: null
};
},
insert: function(lb, he) {
he.l = lb;
he.r = lb.r;
lb.r.l = he;
lb.r = he;
},
leftBound: function(p) {
var he = EdgeList.leftEnd;
do {
he = he.r;
} while (he != EdgeList.rightEnd && Geom.rightOf(he, p));
he = he.l;
return he;
},
del: function(he) {
he.l.r = he.r;
he.r.l = he.l;
he.edge = null;
},
right: function(he) {
return he.r;
},
left: function(he) {
return he.l;
},
leftRegion: function(he) {
return he.edge == null ? Sites.bottomSite : he.edge.region[he.side];
},
rightRegion: function(he) {
return he.edge == null ? Sites.bottomSite : he.edge.region[d3_voronoi_opposite[he.side]];
}
};
var Geom = {
bisect: function(s1, s2) {
var newEdge = {
region: {
l: s1,
r: s2
},
ep: {
l: null,
r: null
}
};
var dx = s2.x - s1.x, dy = s2.y - s1.y, adx = dx > 0 ? dx : -dx, ady = dy > 0 ? dy : -dy;
newEdge.c = s1.x * dx + s1.y * dy + (dx * dx + dy * dy) * .5;
if (adx > ady) {
newEdge.a = 1;
newEdge.b = dy / dx;
newEdge.c /= dx;
} else {
newEdge.b = 1;
newEdge.a = dx / dy;
newEdge.c /= dy;
}
return newEdge;
},
intersect: function(el1, el2) {
var e1 = el1.edge, e2 = el2.edge;
if (!e1 || !e2 || e1.region.r == e2.region.r) {
return null;
}
var d = e1.a * e2.b - e1.b * e2.a;
if (Math.abs(d) < 1e-10) {
return null;
}
var xint = (e1.c * e2.b - e2.c * e1.b) / d, yint = (e2.c * e1.a - e1.c * e2.a) / d, e1r = e1.region.r, e2r = e2.region.r, el, e;
if (e1r.y < e2r.y || e1r.y == e2r.y && e1r.x < e2r.x) {
el = el1;
e = e1;
} else {
el = el2;
e = e2;
}
var rightOfSite = xint >= e.region.r.x;
if (rightOfSite && el.side === "l" || !rightOfSite && el.side === "r") {
return null;
}
return {
x: xint,
y: yint
};
},
rightOf: function(he, p) {
var e = he.edge, topsite = e.region.r, rightOfSite = p.x > topsite.x;
if (rightOfSite && he.side === "l") {
return 1;
}
if (!rightOfSite && he.side === "r") {
return 0;
}
if (e.a === 1) {
var dyp = p.y - topsite.y, dxp = p.x - topsite.x, fast = 0, above = 0;
if (!rightOfSite && e.b < 0 || rightOfSite && e.b >= 0) {
above = fast = dyp >= e.b * dxp;
} else {
above = p.x + p.y * e.b > e.c;
if (e.b < 0) {
above = !above;
}
if (!above) {
fast = 1;
}
}
if (!fast) {
var dxs = topsite.x - e.region.l.x;
above = e.b * (dxp * dxp - dyp * dyp) < dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b);
if (e.b < 0) {
above = !above;
}
}
} else {
var yl = e.c - e.a * p.x, t1 = p.y - yl, t2 = p.x - topsite.x, t3 = yl - topsite.y;
above = t1 * t1 > t2 * t2 + t3 * t3;
}
return he.side === "l" ? above : !above;
},
endPoint: function(edge, side, site) {
edge.ep[side] = site;
if (!edge.ep[d3_voronoi_opposite[side]]) return;
callback(edge);
},
distance: function(s, t) {
var dx = s.x - t.x, dy = s.y - t.y;
return Math.sqrt(dx * dx + dy * dy);
}
};
var EventQueue = {
list: [],
insert: function(he, site, offset) {
he.vertex = site;
he.ystar = site.y + offset;
for (var i = 0, list = EventQueue.list, l = list.length; i < l; i++) {
var next = list[i];
if (he.ystar > next.ystar || he.ystar == next.ystar && site.x > next.vertex.x) {
continue;
} else {
break;
}
}
list.splice(i, 0, he);
},
del: function(he) {
for (var i = 0, ls = EventQueue.list, l = ls.length; i < l && ls[i] != he; ++i) {}
ls.splice(i, 1);
},
empty: function() {
return EventQueue.list.length === 0;
},
nextEvent: function(he) {
for (var i = 0, ls = EventQueue.list, l = ls.length; i < l; ++i) {
if (ls[i] == he) return ls[i + 1];
}
return null;
},
min: function() {
var elem = EventQueue.list[0];
return {
x: elem.vertex.x,
y: elem.ystar
};
},
extractMin: function() {
return EventQueue.list.shift();
}
};
EdgeList.init();
Sites.bottomSite = Sites.list.shift();
var newSite = Sites.list.shift(), newIntStar;
var lbnd, rbnd, llbnd, rrbnd, bisector;
var bot, top, temp, p, v;
var e, pm;
while (true) {
if (!EventQueue.empty()) {
newIntStar = EventQueue.min();
}
if (newSite && (EventQueue.empty() || newSite.y < newIntStar.y || newSite.y == newIntStar.y && newSite.x < newIntStar.x)) {
lbnd = EdgeList.leftBound(newSite);
rbnd = EdgeList.right(lbnd);
bot = EdgeList.rightRegion(lbnd);
e = Geom.bisect(bot, newSite);
bisector = EdgeList.createHalfEdge(e, "l");
EdgeList.insert(lbnd, bisector);
p = Geom.intersect(lbnd, bisector);
if (p) {
EventQueue.del(lbnd);
EventQueue.insert(lbnd, p, Geom.distance(p, newSite));
}
lbnd = bisector;
bisector = EdgeList.createHalfEdge(e, "r");
EdgeList.insert(lbnd, bisector);
p = Geom.intersect(bisector, rbnd);
if (p) {
EventQueue.insert(bisector, p, Geom.distance(p, newSite));
}
newSite = Sites.list.shift();
} else if (!EventQueue.empty()) {
lbnd = EventQueue.extractMin();
llbnd = EdgeList.left(lbnd);
rbnd = EdgeList.right(lbnd);
rrbnd = EdgeList.right(rbnd);
bot = EdgeList.leftRegion(lbnd);
top = EdgeList.rightRegion(rbnd);
v = lbnd.vertex;
Geom.endPoint(lbnd.edge, lbnd.side, v);
Geom.endPoint(rbnd.edge, rbnd.side, v);
EdgeList.del(lbnd);
EventQueue.del(rbnd);
EdgeList.del(rbnd);
pm = "l";
if (bot.y > top.y) {
temp = bot;
bot = top;
top = temp;
pm = "r";
}
e = Geom.bisect(bot, top);
bisector = EdgeList.createHalfEdge(e, pm);
EdgeList.insert(llbnd, bisector);
Geom.endPoint(e, d3_voronoi_opposite[pm], v);
p = Geom.intersect(llbnd, bisector);
if (p) {
EventQueue.del(llbnd);
EventQueue.insert(llbnd, p, Geom.distance(p, bot));
}
p = Geom.intersect(bisector, rrbnd);
if (p) {
EventQueue.insert(bisector, p, Geom.distance(p, bot));
}
} else {
break;
}
}
for (lbnd = EdgeList.right(EdgeList.leftEnd); lbnd != EdgeList.rightEnd; lbnd = EdgeList.right(lbnd)) {
callback(lbnd.edge);
}
}
d3.geom.delaunay = function(vertices) {
var edges = vertices.map(function() {
return [];
}), triangles = [];
d3_voronoi_tessellate(vertices, function(e) {
edges[e.region.l.index].push(vertices[e.region.r.index]);
});
edges.forEach(function(edge, i) {
var v = vertices[i], cx = v[0], cy = v[1];
edge.forEach(function(v) {
v.angle = Math.atan2(v[0] - cx, v[1] - cy);
});
edge.sort(function(a, b) {
return a.angle - b.angle;
});
for (var j = 0, m = edge.length - 1; j < m; j++) {
triangles.push([ v, edge[j], edge[j + 1] ]);
}
});
return triangles;
};
d3.geom.quadtree = function(points, x1, y1, x2, y2) {
var p, i = -1, n = points.length;
if (arguments.length < 5) {
if (arguments.length === 3) {
y2 = y1;
x2 = x1;
y1 = x1 = 0;
} else {
x1 = y1 = Infinity;
x2 = y2 = -Infinity;
while (++i < n) {
p = points[i];
if (p.x < x1) x1 = p.x;
if (p.y < y1) y1 = p.y;
if (p.x > x2) x2 = p.x;
if (p.y > y2) y2 = p.y;
}
}
}
var dx = x2 - x1, dy = y2 - y1;
if (dx > dy) y2 = y1 + dx; else x2 = x1 + dy;
function insert(n, p, x1, y1, x2, y2) {
if (isNaN(p.x) || isNaN(p.y)) return;
if (n.leaf) {
var v = n.point;
if (v) {
if (Math.abs(v.x - p.x) + Math.abs(v.y - p.y) < .01) {
insertChild(n, p, x1, y1, x2, y2);
} else {
n.point = null;
insertChild(n, v, x1, y1, x2, y2);
insertChild(n, p, x1, y1, x2, y2);
}
} else {
n.point = p;
}
} else {
insertChild(n, p, x1, y1, x2, y2);
}
}
function insertChild(n, p, x1, y1, x2, y2) {
var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, right = p.x >= sx, bottom = p.y >= sy, i = (bottom << 1) + right;
n.leaf = false;
n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode());
if (right) x1 = sx; else x2 = sx;
if (bottom) y1 = sy; else y2 = sy;
insert(n, p, x1, y1, x2, y2);
}
var root = d3_geom_quadtreeNode();
root.add = function(p) {
insert(root, p, x1, y1, x2, y2);
};
root.visit = function(f) {
d3_geom_quadtreeVisit(f, root, x1, y1, x2, y2);
};
points.forEach(root.add);
return root;
};
function d3_geom_quadtreeNode() {
return {
leaf: true,
nodes: [],
point: null
};
}
function d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) {
if (!f(node, x1, y1, x2, y2)) {
var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, children = node.nodes;
if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy);
if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy);
if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2);
if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2);
}
}
d3.time = {};
var d3_time = Date, d3_time_daySymbols = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];
function d3_time_utc() {
this._ = new Date(arguments.length > 1 ? Date.UTC.apply(this, arguments) : arguments[0]);
}
d3_time_utc.prototype = {
getDate: function() {
return this._.getUTCDate();
},
getDay: function() {
return this._.getUTCDay();
},
getFullYear: function() {
return this._.getUTCFullYear();
},
getHours: function() {
return this._.getUTCHours();
},
getMilliseconds: function() {
return this._.getUTCMilliseconds();
},
getMinutes: function() {
return this._.getUTCMinutes();
},
getMonth: function() {
return this._.getUTCMonth();
},
getSeconds: function() {
return this._.getUTCSeconds();
},
getTime: function() {
return this._.getTime();
},
getTimezoneOffset: function() {
return 0;
},
valueOf: function() {
return this._.valueOf();
},
setDate: function() {
d3_time_prototype.setUTCDate.apply(this._, arguments);
},
setDay: function() {
d3_time_prototype.setUTCDay.apply(this._, arguments);
},
setFullYear: function() {
d3_time_prototype.setUTCFullYear.apply(this._, arguments);
},
setHours: function() {
d3_time_prototype.setUTCHours.apply(this._, arguments);
},
setMilliseconds: function() {
d3_time_prototype.setUTCMilliseconds.apply(this._, arguments);
},
setMinutes: function() {
d3_time_prototype.setUTCMinutes.apply(this._, arguments);
},
setMonth: function() {
d3_time_prototype.setUTCMonth.apply(this._, arguments);
},
setSeconds: function() {
d3_time_prototype.setUTCSeconds.apply(this._, arguments);
},
setTime: function() {
d3_time_prototype.setTime.apply(this._, arguments);
}
};
var d3_time_prototype = Date.prototype;
var d3_time_formatDateTime = "%a %b %e %X %Y", d3_time_formatDate = "%m/%d/%Y", d3_time_formatTime = "%H:%M:%S";
var d3_time_days = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ], d3_time_dayAbbreviations = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ], d3_time_months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ], d3_time_monthAbbreviations = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ];
d3.time.format = function(template) {
var n = template.length;
function format(date) {
var string = [], i = -1, j = 0, c, p, f;
while (++i < n) {
if (template.charCodeAt(i) === 37) {
string.push(template.substring(j, i));
if ((p = d3_time_formatPads[c = template.charAt(++i)]) != null) c = template.charAt(++i);
if (f = d3_time_formats[c]) c = f(date, p == null ? c === "e" ? " " : "0" : p);
string.push(c);
j = i + 1;
}
}
string.push(template.substring(j, i));
return string.join("");
}
format.parse = function(string) {
var d = {
y: 1900,
m: 0,
d: 1,
H: 0,
M: 0,
S: 0,
L: 0
}, i = d3_time_parse(d, template, string, 0);
if (i != string.length) return null;
if ("p" in d) d.H = d.H % 12 + d.p * 12;
var date = new d3_time();
date.setFullYear(d.y, d.m, d.d);
date.setHours(d.H, d.M, d.S, d.L);
return date;
};
format.toString = function() {
return template;
};
return format;
};
function d3_time_parse(date, template, string, j) {
var c, p, i = 0, n = template.length, m = string.length;
while (i < n) {
if (j >= m) return -1;
c = template.charCodeAt(i++);
if (c === 37) {
p = d3_time_parsers[template.charAt(i++)];
if (!p || (j = p(date, string, j)) < 0) return -1;
} else if (c != string.charCodeAt(j++)) {
return -1;
}
}
return j;
}
function d3_time_formatRe(names) {
return new RegExp("^(?:" + names.map(d3.requote).join("|") + ")", "i");
}
function d3_time_formatLookup(names) {
var map = new d3_Map(), i = -1, n = names.length;
while (++i < n) map.set(names[i].toLowerCase(), i);
return map;
}
function d3_time_formatPad(value, fill, width) {
value += "";
var length = value.length;
return length < width ? new Array(width - length + 1).join(fill) + value : value;
}
var d3_time_dayRe = d3_time_formatRe(d3_time_days), d3_time_dayAbbrevRe = d3_time_formatRe(d3_time_dayAbbreviations), d3_time_monthRe = d3_time_formatRe(d3_time_months), d3_time_monthLookup = d3_time_formatLookup(d3_time_months), d3_time_monthAbbrevRe = d3_time_formatRe(d3_time_monthAbbreviations), d3_time_monthAbbrevLookup = d3_time_formatLookup(d3_time_monthAbbreviations);
var d3_time_formatPads = {
"-": "",
_: " ",
"0": "0"
};
var d3_time_formats = {
a: function(d) {
return d3_time_dayAbbreviations[d.getDay()];
},
A: function(d) {
return d3_time_days[d.getDay()];
},
b: function(d) {
return d3_time_monthAbbreviations[d.getMonth()];
},
B: function(d) {
return d3_time_months[d.getMonth()];
},
c: d3.time.format(d3_time_formatDateTime),
d: function(d, p) {
return d3_time_formatPad(d.getDate(), p, 2);
},
e: function(d, p) {
return d3_time_formatPad(d.getDate(), p, 2);
},
H: function(d, p) {
return d3_time_formatPad(d.getHours(), p, 2);
},
I: function(d, p) {
return d3_time_formatPad(d.getHours() % 12 || 12, p, 2);
},
j: function(d, p) {
return d3_time_formatPad(1 + d3.time.dayOfYear(d), p, 3);
},
L: function(d, p) {
return d3_time_formatPad(d.getMilliseconds(), p, 3);
},
m: function(d, p) {
return d3_time_formatPad(d.getMonth() + 1, p, 2);
},
M: function(d, p) {
return d3_time_formatPad(d.getMinutes(), p, 2);
},
p: function(d) {
return d.getHours() >= 12 ? "PM" : "AM";
},
S: function(d, p) {
return d3_time_formatPad(d.getSeconds(), p, 2);
},
U: function(d, p) {
return d3_time_formatPad(d3.time.sundayOfYear(d), p, 2);
},
w: function(d) {
return d.getDay();
},
W: function(d, p) {
return d3_time_formatPad(d3.time.mondayOfYear(d), p, 2);
},
x: d3.time.format(d3_time_formatDate),
X: d3.time.format(d3_time_formatTime),
y: function(d, p) {
return d3_time_formatPad(d.getFullYear() % 100, p, 2);
},
Y: function(d, p) {
return d3_time_formatPad(d.getFullYear() % 1e4, p, 4);
},
Z: d3_time_zone,
"%": function() {
return "%";
}
};
var d3_time_parsers = {
a: d3_time_parseWeekdayAbbrev,
A: d3_time_parseWeekday,
b: d3_time_parseMonthAbbrev,
B: d3_time_parseMonth,
c: d3_time_parseLocaleFull,
d: d3_time_parseDay,
e: d3_time_parseDay,
H: d3_time_parseHour24,
I: d3_time_parseHour24,
L: d3_time_parseMilliseconds,
m: d3_time_parseMonthNumber,
M: d3_time_parseMinutes,
p: d3_time_parseAmPm,
S: d3_time_parseSeconds,
x: d3_time_parseLocaleDate,
X: d3_time_parseLocaleTime,
y: d3_time_parseYear,
Y: d3_time_parseFullYear
};
function d3_time_parseWeekdayAbbrev(date, string, i) {
d3_time_dayAbbrevRe.lastIndex = 0;
var n = d3_time_dayAbbrevRe.exec(string.substring(i));
return n ? i += n[0].length : -1;
}
function d3_time_parseWeekday(date, string, i) {
d3_time_dayRe.lastIndex = 0;
var n = d3_time_dayRe.exec(string.substring(i));
return n ? i += n[0].length : -1;
}
function d3_time_parseMonthAbbrev(date, string, i) {
d3_time_monthAbbrevRe.lastIndex = 0;
var n = d3_time_monthAbbrevRe.exec(string.substring(i));
return n ? (date.m = d3_time_monthAbbrevLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;
}
function d3_time_parseMonth(date, string, i) {
d3_time_monthRe.lastIndex = 0;
var n = d3_time_monthRe.exec(string.substring(i));
return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;
}
function d3_time_parseLocaleFull(date, string, i) {
return d3_time_parse(date, d3_time_formats.c.toString(), string, i);
}
function d3_time_parseLocaleDate(date, string, i) {
return d3_time_parse(date, d3_time_formats.x.toString(), string, i);
}
function d3_time_parseLocaleTime(date, string, i) {
return d3_time_parse(date, d3_time_formats.X.toString(), string, i);
}
function d3_time_parseFullYear(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 4));
return n ? (date.y = +n[0], i += n[0].length) : -1;
}
function d3_time_parseYear(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.y = d3_time_expandYear(+n[0]), i += n[0].length) : -1;
}
function d3_time_expandYear(d) {
return d + (d > 68 ? 1900 : 2e3);
}
function d3_time_parseMonthNumber(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.m = n[0] - 1, i += n[0].length) : -1;
}
function d3_time_parseDay(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.d = +n[0], i += n[0].length) : -1;
}
function d3_time_parseHour24(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.H = +n[0], i += n[0].length) : -1;
}
function d3_time_parseMinutes(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.M = +n[0], i += n[0].length) : -1;
}
function d3_time_parseSeconds(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 2));
return n ? (date.S = +n[0], i += n[0].length) : -1;
}
function d3_time_parseMilliseconds(date, string, i) {
d3_time_numberRe.lastIndex = 0;
var n = d3_time_numberRe.exec(string.substring(i, i + 3));
return n ? (date.L = +n[0], i += n[0].length) : -1;
}
var d3_time_numberRe = /^\s*\d+/;
function d3_time_parseAmPm(date, string, i) {
var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase());
return n == null ? -1 : (date.p = n, i);
}
var d3_time_amPmLookup = d3.map({
am: 0,
pm: 1
});
function d3_time_zone(d) {
var z = d.getTimezoneOffset(), zs = z > 0 ? "-" : "+", zh = ~~(Math.abs(z) / 60), zm = Math.abs(z) % 60;
return zs + d3_time_formatPad(zh, "0", 2) + d3_time_formatPad(zm, "0", 2);
}
d3.time.format.utc = function(template) {
var local = d3.time.format(template);
function format(date) {
try {
d3_time = d3_time_utc;
var utc = new d3_time();
utc._ = date;
return local(utc);
} finally {
d3_time = Date;
}
}
format.parse = function(string) {
try {
d3_time = d3_time_utc;
var date = local.parse(string);
return date && date._;
} finally {
d3_time = Date;
}
};
format.toString = local.toString;
return format;
};
var d3_time_formatIso = d3.time.format.utc("%Y-%m-%dT%H:%M:%S.%LZ");
d3.time.format.iso = Date.prototype.toISOString ? d3_time_formatIsoNative : d3_time_formatIso;
function d3_time_formatIsoNative(date) {
return date.toISOString();
}
d3_time_formatIsoNative.parse = function(string) {
var date = new Date(string);
return isNaN(date) ? null : date;
};
d3_time_formatIsoNative.toString = d3_time_formatIso.toString;
function d3_time_interval(local, step, number) {
function round(date) {
var d0 = local(date), d1 = offset(d0, 1);
return date - d0 < d1 - date ? d0 : d1;
}
function ceil(date) {
step(date = local(new d3_time(date - 1)), 1);
return date;
}
function offset(date, k) {
step(date = new d3_time(+date), k);
return date;
}
function range(t0, t1, dt) {
var time = ceil(t0), times = [];
if (dt > 1) {
while (time < t1) {
if (!(number(time) % dt)) times.push(new Date(+time));
step(time, 1);
}
} else {
while (time < t1) times.push(new Date(+time)), step(time, 1);
}
return times;
}
function range_utc(t0, t1, dt) {
try {
d3_time = d3_time_utc;
var utc = new d3_time_utc();
utc._ = t0;
return range(utc, t1, dt);
} finally {
d3_time = Date;
}
}
local.floor = local;
local.round = round;
local.ceil = ceil;
local.offset = offset;
local.range = range;
var utc = local.utc = d3_time_interval_utc(local);
utc.floor = utc;
utc.round = d3_time_interval_utc(round);
utc.ceil = d3_time_interval_utc(ceil);
utc.offset = d3_time_interval_utc(offset);
utc.range = range_utc;
return local;
}
function d3_time_interval_utc(method) {
return function(date, k) {
try {
d3_time = d3_time_utc;
var utc = new d3_time_utc();
utc._ = date;
return method(utc, k)._;
} finally {
d3_time = Date;
}
};
}
d3.time.second = d3_time_interval(function(date) {
return new d3_time(Math.floor(date / 1e3) * 1e3);
}, function(date, offset) {
date.setTime(date.getTime() + Math.floor(offset) * 1e3);
}, function(date) {
return date.getSeconds();
});
d3.time.seconds = d3.time.second.range;
d3.time.seconds.utc = d3.time.second.utc.range;
d3.time.minute = d3_time_interval(function(date) {
return new d3_time(Math.floor(date / 6e4) * 6e4);
}, function(date, offset) {
date.setTime(date.getTime() + Math.floor(offset) * 6e4);
}, function(date) {
return date.getMinutes();
});
d3.time.minutes = d3.time.minute.range;
d3.time.minutes.utc = d3.time.minute.utc.range;
d3.time.hour = d3_time_interval(function(date) {
var timezone = date.getTimezoneOffset() / 60;
return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5);
}, function(date, offset) {
date.setTime(date.getTime() + Math.floor(offset) * 36e5);
}, function(date) {
return date.getHours();
});
d3.time.hours = d3.time.hour.range;
d3.time.hours.utc = d3.time.hour.utc.range;
d3.time.day = d3_time_interval(function(date) {
var day = new d3_time(1970, 0);
day.setFullYear(date.getFullYear(), date.getMonth(), date.getDate());
return day;
}, function(date, offset) {
date.setDate(date.getDate() + offset);
}, function(date) {
return date.getDate() - 1;
});
d3.time.days = d3.time.day.range;
d3.time.days.utc = d3.time.day.utc.range;
d3.time.dayOfYear = function(date) {
var year = d3.time.year(date);
return Math.floor((date - year - (date.getTimezoneOffset() - year.getTimezoneOffset()) * 6e4) / 864e5);
};
d3_time_daySymbols.forEach(function(day, i) {
day = day.toLowerCase();
i = 7 - i;
var interval = d3.time[day] = d3_time_interval(function(date) {
(date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7);
return date;
}, function(date, offset) {
date.setDate(date.getDate() + Math.floor(offset) * 7);
}, function(date) {
var day = d3.time.year(date).getDay();
return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i);
});
d3.time[day + "s"] = interval.range;
d3.time[day + "s"].utc = interval.utc.range;
d3.time[day + "OfYear"] = function(date) {
var day = d3.time.year(date).getDay();
return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7);
};
});
d3.time.week = d3.time.sunday;
d3.time.weeks = d3.time.sunday.range;
d3.time.weeks.utc = d3.time.sunday.utc.range;
d3.time.weekOfYear = d3.time.sundayOfYear;
d3.time.month = d3_time_interval(function(date) {
date = d3.time.day(date);
date.setDate(1);
return date;
}, function(date, offset) {
date.setMonth(date.getMonth() + offset);
}, function(date) {
return date.getMonth();
});
d3.time.months = d3.time.month.range;
d3.time.months.utc = d3.time.month.utc.range;
d3.time.year = d3_time_interval(function(date) {
date = d3.time.day(date);
date.setMonth(0, 1);
return date;
}, function(date, offset) {
date.setFullYear(date.getFullYear() + offset);
}, function(date) {
return date.getFullYear();
});
d3.time.years = d3.time.year.range;
d3.time.years.utc = d3.time.year.utc.range;
function d3_time_scale(linear, methods, format) {
function scale(x) {
return linear(x);
}
scale.invert = function(x) {
return d3_time_scaleDate(linear.invert(x));
};
scale.domain = function(x) {
if (!arguments.length) return linear.domain().map(d3_time_scaleDate);
linear.domain(x);
return scale;
};
scale.nice = function(m) {
return scale.domain(d3_scale_nice(scale.domain(), function() {
return m;
}));
};
scale.ticks = function(m, k) {
var extent = d3_time_scaleExtent(scale.domain());
if (typeof m !== "function") {
var span = extent[1] - extent[0], target = span / m, i = d3.bisect(d3_time_scaleSteps, target);
if (i == d3_time_scaleSteps.length) return methods.year(extent, m);
if (!i) return linear.ticks(m).map(d3_time_scaleDate);
if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i;
m = methods[i];
k = m[1];
m = m[0].range;
}
return m(extent[0], new Date(+extent[1] + 1), k);
};
scale.tickFormat = function() {
return format;
};
scale.copy = function() {
return d3_time_scale(linear.copy(), methods, format);
};
return d3.rebind(scale, linear, "range", "rangeRound", "interpolate", "clamp");
}
function d3_time_scaleExtent(domain) {
var start = domain[0], stop = domain[domain.length - 1];
return start < stop ? [ start, stop ] : [ stop, start ];
}
function d3_time_scaleDate(t) {
return new Date(t);
}
function d3_time_scaleFormat(formats) {
return function(date) {
var i = formats.length - 1, f = formats[i];
while (!f[1](date)) f = formats[--i];
return f[0](date);
};
}
function d3_time_scaleSetYear(y) {
var d = new Date(y, 0, 1);
d.setFullYear(y);
return d;
}
function d3_time_scaleGetYear(d) {
var y = d.getFullYear(), d0 = d3_time_scaleSetYear(y), d1 = d3_time_scaleSetYear(y + 1);
return y + (d - d0) / (d1 - d0);
}
var d3_time_scaleSteps = [ 1e3, 5e3, 15e3, 3e4, 6e4, 3e5, 9e5, 18e5, 36e5, 108e5, 216e5, 432e5, 864e5, 1728e5, 6048e5, 2592e6, 7776e6, 31536e6 ];
var d3_time_scaleLocalMethods = [ [ d3.time.second, 1 ], [ d3.time.second, 5 ], [ d3.time.second, 15 ], [ d3.time.second, 30 ], [ d3.time.minute, 1 ], [ d3.time.minute, 5 ], [ d3.time.minute, 15 ], [ d3.time.minute, 30 ], [ d3.time.hour, 1 ], [ d3.time.hour, 3 ], [ d3.time.hour, 6 ], [ d3.time.hour, 12 ], [ d3.time.day, 1 ], [ d3.time.day, 2 ], [ d3.time.week, 1 ], [ d3.time.month, 1 ], [ d3.time.month, 3 ], [ d3.time.year, 1 ] ];
var d3_time_scaleLocalFormats = [ [ d3.time.format("%Y"), d3_true ], [ d3.time.format("%B"), function(d) {
return d.getMonth();
} ], [ d3.time.format("%b %d"), function(d) {
return d.getDate() != 1;
} ], [ d3.time.format("%a %d"), function(d) {
return d.getDay() && d.getDate() != 1;
} ], [ d3.time.format("%I %p"), function(d) {
return d.getHours();
} ], [ d3.time.format("%I:%M"), function(d) {
return d.getMinutes();
} ], [ d3.time.format(":%S"), function(d) {
return d.getSeconds();
} ], [ d3.time.format(".%L"), function(d) {
return d.getMilliseconds();
} ] ];
var d3_time_scaleLinear = d3.scale.linear(), d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats);
d3_time_scaleLocalMethods.year = function(extent, m) {
return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear);
};
d3.time.scale = function() {
return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat);
};
var d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) {
return [ m[0].utc, m[1] ];
});
var d3_time_scaleUTCFormats = [ [ d3.time.format.utc("%Y"), d3_true ], [ d3.time.format.utc("%B"), function(d) {
return d.getUTCMonth();
} ], [ d3.time.format.utc("%b %d"), function(d) {
return d.getUTCDate() != 1;
} ], [ d3.time.format.utc("%a %d"), function(d) {
return d.getUTCDay() && d.getUTCDate() != 1;
} ], [ d3.time.format.utc("%I %p"), function(d) {
return d.getUTCHours();
} ], [ d3.time.format.utc("%I:%M"), function(d) {
return d.getUTCMinutes();
} ], [ d3.time.format.utc(":%S"), function(d) {
return d.getUTCSeconds();
} ], [ d3.time.format.utc(".%L"), function(d) {
return d.getUTCMilliseconds();
} ] ];
var d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats);
function d3_time_scaleUTCSetYear(y) {
var d = new Date(Date.UTC(y, 0, 1));
d.setUTCFullYear(y);
return d;
}
function d3_time_scaleUTCGetYear(d) {
var y = d.getUTCFullYear(), d0 = d3_time_scaleUTCSetYear(y), d1 = d3_time_scaleUTCSetYear(y + 1);
return y + (d - d0) / (d1 - d0);
}
d3_time_scaleUTCMethods.year = function(extent, m) {
return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear);
};
d3.time.scale.utc = function() {
return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat);
};
return d3;
}();
x xend y yend
-0.0390799537775821 1.04947999779893 -0.0390799537775821 1.04947999779893
colour x y clickSelects showSelected1 fill
#E31A1C 0.00540469631378723 0.0354403741231489 31 four.parts #E31A1C
#0000FF 0.00540469631378723 0.415396467286634 31 one.part #0000FF
#E31A1C 0.529502820411911 0.379095869056898 32 four.parts #E31A1C
#0000FF 0.529502820411911 0.62141638694767 32 one.part #0000FF
#E31A1C 0.0709169618260527 0.0686438035853468 33 four.parts #E31A1C
#0000FF 0.0709169618260527 0.0244868761349254 33 one.part #0000FF
#E31A1C 0.547369801915257 0.51522992985191 34 four.parts #E31A1C
#0000FF 0.547369801915257 0.0121608980355472 34 one.part #0000FF
#E31A1C 0.0202938475665748 0.0221590023382697 35 four.parts #E31A1C
#0000FF 0.0202938475665748 0.51928685412425 35 one.part #0000FF
#E31A1C 0.0470943198215926 0.0287996882307093 36 four.parts #E31A1C
#0000FF 0.0470943198215926 0.366092554889121 36 one.part #0000FF
#E31A1C 0.493768857405221 0.224699922057677 37 four.parts #E31A1C
#0000FF 0.493768857405221 0.0139217520497441 37 one.part #0000FF
#E31A1C 0.589059425423062 0.586617303195635 38 four.parts #E31A1C
#0000FF 0.589059425423062 0.015682606063941 38 one.part #0000FF
#E31A1C 1 1 39 four.parts #E31A1C
#0000FF 1 0.436526715456997 39 one.part #0000FF
#E31A1C 0.0202938475665748 0.0204988308651598 310 four.parts #E31A1C
#0000FF 0.0202938475665748 0.293897540307049 310 one.part #0000FF
#E31A1C 0.0202938475665748 0.01717848791894 311 four.parts #E31A1C
#0000FF 0.0202938475665748 0.0456171243052881 311 one.part #0000FF
#E31A1C 0.0292273383182474 0.0155183164458301 312 four.parts #E31A1C
#0000FF 0.0292273383182474 0.0649865184614538 312 one.part #0000FF
#E31A1C 0.0590056408238226 0.0752844894777864 313 four.parts #E31A1C
#0000FF 0.0590056408238226 1 313 one.part #0000FF
#E31A1C 0.642660369933097 0.787498051441933 314 four.parts #E31A1C
#0000FF 0.642660369933097 0.0174434600781379 314 one.part #0000FF
#E31A1C 0.0143381870654598 0.0138581449727202 315 four.parts #E31A1C
#0000FF 0.0143381870654598 0.212898255653992 315 one.part #0000FF
#E31A1C 0.356788665879575 0.359173811379579 316 four.parts #E31A1C
#0000FF 0.356788665879575 0.0104000440213504 316 one.part #0000FF
#E31A1C 0.545163688071616 0.506576880186802 41 four.parts #E31A1C
#0000FF 0.545163688071616 0.771015942753986 41 one.part #0000FF
#E31A1C 0.325081601654655 0.136509540326903 42 four.parts #E31A1C
#0000FF 0.325081601654655 0.880635970158993 42 one.part #0000FF
#E31A1C 0.119671654332159 0.066957877161745 43 four.parts #E31A1C
#0000FF 0.119671654332159 0.0304717576179394 43 one.part #0000FF
#E31A1C 1 1 44 four.parts #E31A1C
#0000FF 1 0.0597037649259412 44 one.part #0000FF
#E31A1C 0.0646511327279191 0.0275890112192026 45 four.parts #E31A1C
#0000FF 0.0646511327279191 0.722295930573983 45 one.part #0000FF
#E31A1C 0.0756552370487671 0.0223398290935303 46 four.parts #E31A1C
#0000FF 0.0756552370487671 0.412923853230963 46 one.part #0000FF
#E31A1C 0.548831722845232 0.156193973298174 47 four.parts #E31A1C
#0000FF 0.548831722845232 0.0255997563999391 47 one.part #0000FF
#E31A1C 0.127007723879391 0.0315258978134569 48 four.parts #E31A1C
#0000FF 0.127007723879391 1 48 one.part #0000FF
#E31A1C 0.442458714410367 0.230994818589005 49 four.parts #E31A1C
#0000FF 0.442458714410367 0.0816277704069426 49 one.part #0000FF
#E31A1C 0.215040558446175 0.0210275335621122 410 four.parts #E31A1C
#0000FF 0.215040558446175 0.317919829479957 410 one.part #0000FF
x xend y yend clickSelects
0.00540469631378723 0.00540469631378723 0.415396467286634 0.0354403741231489 31
0.529502820411911 0.529502820411911 0.62141638694767 0.379095869056898 32
0.0709169618260527 0.0709169618260527 0.0244868761349254 0.0686438035853468 33
0.547369801915257 0.547369801915257 0.0121608980355472 0.51522992985191 34
0.0202938475665748 0.0202938475665748 0.51928685412425 0.0221590023382697 35
0.0470943198215926 0.0470943198215926 0.366092554889121 0.0287996882307093 36
0.493768857405221 0.493768857405221 0.0139217520497441 0.224699922057677 37
0.589059425423062 0.589059425423062 0.015682606063941 0.586617303195635 38
1 1 0.436526715456997 1 39
0.0202938475665748 0.0202938475665748 0.293897540307049 0.0204988308651598 310
0.0202938475665748 0.0202938475665748 0.0456171243052881 0.01717848791894 311
0.0292273383182474 0.0292273383182474 0.0649865184614538 0.0155183164458301 312
0.0590056408238226 0.0590056408238226 1 0.0752844894777864 313
0.642660369933097 0.642660369933097 0.0174434600781379 0.787498051441933 314
0.0143381870654598 0.0143381870654598 0.212898255653992 0.0138581449727202 315
0.356788665879575 0.356788665879575 0.0104000440213504 0.359173811379579 316
0.545163688071616 0.545163688071616 0.771015942753986 0.506576880186802 41
0.325081601654655 0.325081601654655 0.880635970158993 0.136509540326903 42
0.119671654332159 0.119671654332159 0.0304717576179394 0.066957877161745 43
1 1 0.0597037649259412 1 44
0.0646511327279191 0.0646511327279191 0.722295930573983 0.0275890112192026 45
0.0756552370487671 0.0756552370487671 0.412923853230963 0.0223398290935303 46
0.548831722845232 0.548831722845232 0.0255997563999391 0.156193973298174 47
0.127007723879391 0.127007723879391 1 0.0315258978134569 48
0.442458714410367 0.442458714410367 0.0816277704069426 0.230994818589005 49
0.215040558446175 0.215040558446175 0.317919829479957 0.0210275335621122 410
group x y
2 -3.3 0.033780202650039
1 -3.3 -0.018417945690673
3 -3.3 0.0209651681065317
2 -3.3 0.0287996882307093
1 -3.3 0.0024268660632297
3 -3.3 0.0192043140923348
2 -3.3 0.0304598597038192
3 -3.2817679558011 -0.00896935013481539
1 -3.28 -0.00650662468844287
2 -3.25287356321839 0.0387607170693687
3 -3.20441988950276 0.0262477301491223
1 -3.2 0.0143381870654598
2 -3.17241379310344 0.0188386593920499
3 -3.12707182320442 0.015682606063941
1 -3.12 0.0024268660632297
2 -3.0919540229885 0.0271395167575994
3 -3.04972375690608 0.00335662796456281
1 -3.04000000000001 0.00540469631378723
2 -3.01149425287356 0.0321200311769291
3 -2.97237569060773 0.0139217520497441
1 -2.95999999999999 -0.000550964187327821
2 -2.93103448275862 0.0354403741231489
3 -2.89502762430939 -0.00192593407802784
1 -2.88 -0.00352879443788534
2 -2.85057471264368 0.0271395167575994
3 -2.81767955801105 0.0104000440213504
1 -2.8 -0.000550964187327821
2 -2.77011494252874 0.0321200311769291
3 -2.74033149171271 0.0104000440213504
1 -2.72 -0.018417945690673
2 -2.68965517241379 0.0221590023382697
3 -2.66298342541437 0.00159577395036593
1 -2.64 0.0024268660632297
2 -2.60919540229885 0.0287996882307093
3 -2.58563535911603 0.0104000440213504
1 -2.56 -0.00948445493900039
2 -2.52873563218391 0.0304598597038192
3 -2.50828729281768 -0.000165080063830958
1 -2.48 -0.00650662468844287
2 -2.44827586206897 0.033780202650039
3 -2.43093922651934 0.015682606063941
1 -2.40000000000001 -0.000550964187327821
2 -2.36781609195403 0.033780202650039
3 -2.353591160221 0.0280085841633192
1 -2.31999999999999 0.00540469631378723
2 -2.28735632183908 0.0287996882307093
3 -2.27624309392266 0.0051174819787597
1 -2.23999999999999 -0.00650662468844287
2 -2.20689655172414 0.0287996882307093
3 -2.1988950276243 0.0104000440213504
1 -2.16 0.0173160173160173
2 -2.1264367816092 0.0387607170693687
3 -2.12154696132596 0.00335662796456281
1 -2.08 -0.024373606191788
2 -2.04597701149426 0.0354403741231489
3 -2.04419889502762 -0.000165080063830958
1 -2 -0.00352879443788534
3 -1.96685082872928 0.0174434600781379
2 -1.96551724137932 0.0254793452844895
1 -1.92 -0.0124622851895579
3 -1.88950276243094 0.0104000440213504
2 -1.88505747126436 0.0387607170693687
1 -1.84 -0.000550964187327821
3 -1.81215469613259 0.00335662796456281
2 -1.80459770114942 0.0371005455962588
1 -1.76000000000001 -0.0124622851895579
3 -1.73480662983425 0.0192043140923348
2 -1.72413793103448 0.0304598597038192
1 -1.68000000000001 -0.00352879443788534
3 -1.65745856353591 0.0139217520497441
2 -1.64367816091954 0.0487217459080281
1 -1.59999999999999 0.0173160173160173
3 -1.58011049723757 0.00335662796456281
2 -1.56321839080459 0.0387607170693687
1 -1.52 0.00540469631378723
3 -1.50276243093923 0.0139217520497441
2 -1.48275862068965 0.0254793452844895
1 -1.44 -0.0213957759412305
3 -1.42541436464089 0.0174434600781379
2 -1.40229885057471 0.0420810600155885
1 -1.36 -0.000550964187327821
3 -1.34806629834254 0.00863919000715347
2 -1.32183908045977 0.0387607170693687
1 -1.28 -0.00650662468844287
3 -1.2707182320442 0.0174434600781379
2 -1.24137931034483 0.033780202650039
1 -1.2 0.00838252656434475
3 -1.19337016574586 0.0244868761349254
2 -1.16091954022988 0.0304598597038192
1 -1.12 -0.000550964187327821
3 -1.11602209944752 0.0104000440213504
2 -1.08045977011494 0.0371005455962588
1 -1.04000000000001 -0.00650662468844287
3 -1.03867403314916 0.015682606063941
2 -1 0.0254793452844895
3 -0.961325966850822 0.00159577395036593
1 -0.959999999999994 -0.00650662468844287
2 -0.919540229885058 0.033780202650039
3 -0.88397790055248 0.0051174819787597
1 -0.879999999999995 -0.00352879443788534
2 -0.839080459770116 0.033780202650039
3 -0.806629834254139 0.00335662796456281
1 -0.799999999999997 0.00838252656434475
2 -0.758620689655174 0.0221590023382697
3 -0.729281767955797 0.00335662796456281
1 -0.719999999999999 0.0024268660632297
2 -0.678160919540232 0.0204988308651598
3 -0.651933701657455 0.00159577395036593
1 -0.640000000000001 0.0173160173160173
2 -0.597701149425291 0.0354403741231489
3 -0.574585635359114 0.00687833599295658
1 -0.560000000000002 0.00540469631378723
2 -0.517241379310349 0.0238191738113796
3 -0.497237569060772 0.0332911462059099
1 -0.480000000000004 -0.00650662468844287
2 -0.436781609195407 0.0271395167575994
3 -0.41988950276243 0.0332911462059099
1 -0.400000000000006 -0.0303292666929031
2 -0.356321839080465 0.0304598597038192
3 -0.342541436464089 0.06146481043306
1 -0.319999999999993 -0.00650662468844287
2 -0.275862068965523 0.0371005455962588
3 -0.265193370165747 0.107247014802179
1 -0.239999999999995 0.0024268660632297
2 -0.195402298850581 0.0254793452844895
3 -0.187845303867405 0.14070324107192
1 -0.159999999999997 -0.0303292666929031
2 -0.114942528735639 0.0354403741231489
3 -0.110497237569064 0.228745941781764
1 -0.0799999999999983 -0.00650662468844287
2 -0.0344827586206833 0.0304598597038192
3 -0.0331491712707219 0.316788642491608
1 0 -0.00650662468844287
3 0.0441988950276198 0.380179387002696
2 0.0459770114942444 0.0238191738113796
1 0.0799999999999983 -0.0154401154401154
3 0.121546961325961 0.415396467286634
2 0.1264367816092 0.0238191738113796
1 0.159999999999997 0.00540469631378723
3 0.198895027624303 0.410113905244043
2 0.206896551724142 0.0188386593920499
1 0.239999999999995 -0.0124622851895579
3 0.276243093922659 0.371375116931712
2 0.287356321839084 0.0238191738113796
1 0.319999999999993 -0.00948445493900039
3 0.353591160221001 0.320310350520002
2 0.367816091954026 0.0188386593920499
1 0.400000000000006 -0.00352879443788534
3 0.430939226519342 0.242832773895339
2 0.448275862068968 0.0238191738113796
1 0.480000000000004 0.0024268660632297
3 0.508287292817684 0.158311781213889
2 0.52873563218391 0.0221590023382697
1 0.560000000000002 -0.00948445493900039
3 0.585635359116026 0.109007868816376
2 0.609195402298852 0.0221590023382697
1 0.640000000000001 -0.00352879443788534
3 0.662983425414367 0.0702690805040445
2 0.689655172413794 0.0204988308651598
1 0.719999999999999 0.00540469631378723
3 0.740331491712709 0.0420954162768943
2 0.770114942528735 0.0204988308651598
1 0.799999999999997 0.0143381870654598
3 0.817679558011051 0.0456171243052881
2 0.850574712643677 0.0238191738113796
1 0.879999999999995 -0.018417945690673
3 0.895027624309392 -0.000165080063830958
2 0.931034482758619 0.01717848791894
1 0.960000000000008 -0.00650662468844287
3 0.972375690607734 0.0280085841633192
2 1.01149425287356 0.0238191738113796
1 1.03999999999999 -0.0213957759412305
3 1.04972375690608 0.0209651681065317
2 1.0919540229885 0.0221590023382697
1 1.12 -0.018417945690673
3 1.12707182320442 0.0297694381775161
2 1.17241379310344 0.0321200311769291
1 1.2 -0.0124622851895579
3 1.20441988950276 0.0332911462059099
2 1.25287356321839 0.0188386593920499
1 1.28 -0.000550964187327821
3 1.2817679558011 0.0227260221207286
2 1.33333333333333 0.0105378020265004
3 1.35911602209944 0.0192043140923348
1 1.36 0.00540469631378723
2 1.41379310344827 0.0138581449727202
3 1.4364640883978 0.0297694381775161
1 1.44 -0.000550964187327821
2 1.49425287356321 0.01717848791894
3 1.51381215469613 -0.00544764210642161
1 1.52 -0.00948445493900039
2 1.57471264367817 0.01717848791894
3 1.59116022099448 0.0104000440213504
1 1.59999999999999 0.0024268660632297
2 1.65517241379311 0.01717848791894
3 1.66850828729282 0.0121608980355472
1 1.68000000000001 -0.00650662468844287
2 1.73563218390805 0.0304598597038192
3 1.74585635359117 0.0174434600781379
1 1.76000000000001 -0.00352879443788534
2 1.81609195402299 0.0304598597038192
3 1.82320441988951 0.00159577395036593
1 1.84 -0.00948445493900039
2 1.89655172413794 0.0238191738113796
3 1.90055248618785 0.00863919000715347
1 1.92 -0.0154401154401154
2 1.97701149425288 0.0254793452844895
3 1.97790055248619 0.00687833599295658
1 2 0.00540469631378723
3 2.05524861878453 -0.00896935013481539
2 2.05747126436782 0.0221590023382697
1 2.08 -0.000550964187327821
3 2.13259668508287 0.00159577395036593
2 2.13793103448276 0.0204988308651598
1 2.16 -0.00948445493900039
3 2.20994475138122 0.015682606063941
2 2.2183908045977 0.0221590023382697
1 2.23999999999999 -0.000550964187327821
3 2.28729281767956 -0.000165080063830958
2 2.29885057471265 0.0121979734996103
1 2.31999999999999 -0.00650662468844287
3 2.3646408839779 0.031530292191713
2 2.37931034482759 0.0221590023382697
1 2.40000000000001 0.0024268660632297
3 2.44198895027624 0.0139217520497441
2 2.45977011494253 0.0221590023382697
1 2.48 0.00838252656434475
3 2.51933701657458 -0.00368678809222473
2 2.54022988505747 0.0254793452844895
1 2.56 0.00540469631378723
3 2.59668508287292 0.0051174819787597
2 2.62068965517241 0.0354403741231489
1 2.64 -0.0154401154401154
3 2.67403314917127 -0.00368678809222473
2 2.70114942528735 0.0287996882307093
1 2.72 -0.018417945690673
3 2.75138121546962 -0.00368678809222473
2 2.7816091954023 0.0287996882307093
1 2.8 -0.00352879443788534
3 2.82872928176795 -0.000165080063830958
2 2.86206896551724 0.0238191738113796
1 2.88 -0.0333070969434606
3 2.9060773480663 -0.00192593407802784
2 2.94252873563218 0.0271395167575994
1 2.95999999999999 0.0202938475665748
3 2.98342541436465 -0.00192593407802784
2 3.02298850574712 0.0254793452844895
1 3.04000000000001 0.0143381870654598
3 3.06077348066299 -0.0107302041490123
2 3.10344827586206 0.0304598597038192
1 3.12 0.0232716778171324
3 3.13812154696133 -0.0124910581632092
2 3.18390804597701 0.0254793452844895
1 3.2 -0.00948445493900039
3 3.21546961325967 0.0051174819787597
2 3.26436781609195 0.0321200311769291
1 3.28 0.00540469631378723
3 3.29281767955801 0.0121608980355472
2 3.3 0.0287996882307093
1 3.3 0.00540469631378723
3 3.3 0.0104000440213504
2 3.3 0.0221590023382697
1 3.3 -0.0124622851895579
3 3.3 0.00159577395036593
group x y
1 -2.49402390438247 0.00838252656434475
3 -2.46153846153847 0.00687833599295658
2 -2.45161290322581 0.0304598597038192
1 -2.41434262948206 -0.00650662468844287
3 -2.38461538461539 -0.00368678809222473
2 -2.37096774193549 0.0271395167575994
1 -2.33466135458167 0.0143381870654598
3 -2.30769230769231 0.0051174819787597
2 -2.29032258064517 0.0138581449727202
1 -2.25498007968127 -0.000550964187327821
3 -2.23076923076923 0.0139217520497441
2 -2.20967741935483 0.01717848791894
1 -2.17529880478088 -0.018417945690673
3 -2.15384615384616 0.00687833599295658
2 -2.12903225806451 0.0204988308651598
1 -2.09561752988049 0.0202938475665748
3 -2.07692307692308 -0.00368678809222473
2 -2.04838709677419 0.0238191738113796
1 -2.01593625498008 -0.018417945690673
3 -2 0.0139217520497441
2 -1.96774193548387 0.0121979734996103
1 -1.93625498007968 -0.0154401154401154
3 -1.92307692307692 0.0174434600781379
2 -1.88709677419355 0.0155183164458301
1 -1.85657370517929 -0.00948445493900039
3 -1.84615384615384 0.0051174819787597
2 -1.80645161290323 0.0121979734996103
1 -1.77689243027888 0.0262495080676899
3 -1.76923076923077 -0.0107302041490123
2 -1.7258064516129 0.00555728760717069
1 -1.69721115537848 -0.0213957759412305
3 -1.69230769230769 0.0192043140923348
2 -1.64516129032258 0.0121979734996103
1 -1.61752988047809 -0.0213957759412305
3 -1.61538461538461 0.0104000440213504
2 -1.56451612903226 0.00555728760717069
3 -1.53846153846153 0.00687833599295658
1 -1.53784860557769 0.00540469631378723
2 -1.48387096774194 0.0155183164458301
3 -1.46153846153847 0.00687833599295658
1 -1.4581673306773 -0.00948445493900039
2 -1.40322580645162 0.0271395167575994
3 -1.38461538461539 -0.014251912177406
1 -1.37848605577689 -0.0213957759412305
2 -1.3225806451613 0.0221590023382697
3 -1.30769230769231 -0.0072084961206185
1 -1.29880478087649 -0.00352879443788534
2 -1.24193548387098 0.0155183164458301
3 -1.23076923076923 -0.0072084961206185
1 -1.2191235059761 -0.0154401154401154
2 -1.16129032258064 0.0155183164458301
3 -1.15384615384616 0.0209651681065317
1 -1.13944223107569 0.00838252656434475
2 -1.08064516129032 0.0188386593920499
3 -1.07692307692308 0.00335662796456281
1 -1.0597609561753 0.0143381870654598
2 -1 0.0121979734996103
3 -1 0.0139217520497441
1 -0.980079681274901 0.0262495080676899
3 -0.92307692307692 0.0192043140923348
2 -0.91935483870968 0.0155183164458301
1 -0.900398406374507 -0.00650662468844287
3 -0.84615384615384 -0.00192593407802784
2 -0.838709677419359 -0.0044037412314887
1 -0.820717131474098 0.0143381870654598
3 -0.769230769230774 0.00335662796456281
2 -0.758064516129025 0.0188386593920499
1 -0.741035856573703 0.0113603568149023
3 -0.692307692307693 0.00687833599295658
2 -0.677419354838705 0.0022369446609509
1 -0.661354581673308 0.0024268660632297
3 -0.615384615384613 0.0139217520497441
2 -0.596774193548384 0.0155183164458301
1 -0.581673306772913 -0.00352879443788534
3 -0.538461538461533 -0.000165080063830958
2 -0.516129032258064 0.0138581449727202
1 -0.501992031872504 -0.000550964187327821
3 -0.461538461538467 0.0121608980355472
2 -0.435483870967744 0.0121979734996103
1 -0.422310756972109 0.00838252656434475
3 -0.384615384615387 0.0174434600781379
2 -0.354838709677423 0.0271395167575994
1 -0.342629482071715 0.00838252656434475
3 -0.307692307692307 0.0192043140923348
2 -0.274193548387103 0.0238191738113796
1 -0.26294820717132 0.0143381870654598
3 -0.230769230769226 0.0244868761349254
2 -0.193548387096769 0.0254793452844895
1 -0.183266932270911 0.0173160173160173
3 -0.15384615384616 0.0297694381775161
2 -0.112903225806448 0.0287996882307093
1 -0.103585657370516 0.0113603568149023
3 -0.0769230769230802 -0.000165080063830958
2 -0.0322580645161281 0.050381917381138
1 -0.0239043824701213 0.0202938475665748
3 0 0.00159577395036593
2 0.0483870967741922 0.0570226032735776
1 0.0557768924302735 0.0322051685688049
3 0.0769230769230802 0.00863919000715347
2 0.129032258064512 0.0437412314886984
1 0.135458167330682 0.0530499803227076
3 0.15384615384616 0.0121608980355472
2 0.209677419354833 0.0686438035853468
1 0.215139442231077 0.044116489571035
3 0.230769230769226 0.00687833599295658
2 0.290322580645167 0.0669836321122369
1 0.294820717131472 0.0709169618260527
3 0.307692307692307 0.0051174819787597
2 0.370967741935488 0.0603429462197973
1 0.374501992031867 0.0530499803227076
3 0.384615384615387 -0.000165080063830958
2 0.451612903225808 0.050381917381138
1 0.454183266932276 0.0530499803227076
3 0.461538461538467 0.00335662796456281
2 0.532258064516128 0.0454014029618083
1 0.533864541832671 0.0232716778171324
3 0.538461538461533 0.0244868761349254
2 0.612903225806448 0.0254793452844895
1 0.613545816733065 0.0143381870654598
3 0.615384615384613 0.00159577395036593
3 0.692307692307693 -0.000165080063830958
1 0.69322709163346 0.0024268660632297
2 0.693548387096769 0.0271395167575994
3 0.769230769230774 -0.014251912177406
1 0.772908366533869 0.0173160173160173
2 0.774193548387103 0.0188386593920499
3 0.84615384615384 0.0104000440213504
1 0.852589641434264 0.0173160173160173
2 0.854838709677423 0.0221590023382697
3 0.92307692307692 -0.0283387442909811
1 0.932270916334659 -0.000550964187327821
2 0.935483870967744 0.00887763055339049
3 1 0.0051174819787597
1 1.01195219123505 0.0024268660632297
2 1.01612903225806 0.0287996882307093
3 1.07692307692308 0.0121608980355472
1 1.09163346613546 -0.000550964187327821
2 1.09677419354838 0.01717848791894
3 1.15384615384616 -0.00368678809222473
1 1.17131474103586 -0.0213957759412305
2 1.1774193548387 0.00721745908028059
3 1.23076923076923 -0.0072084961206185
1 1.25099601593625 0.0113603568149023
2 1.25806451612902 0.0121979734996103
3 1.30769230769231 -0.0160127661916029
1 1.33067729083666 0.00540469631378723
2 1.33870967741936 0.0138581449727202
3 1.38461538461539 -0.00544764210642161
1 1.41035856573706 -0.000550964187327821
2 1.41935483870968 0.0188386593920499
3 1.46153846153847 -0.000165080063830958
1 1.49003984063745 -0.000550964187327821
2 1.5 0.0254793452844895
3 1.53846153846153 0.0139217520497441
1 1.56972111553785 -0.000550964187327821
2 1.58064516129032 0.0121979734996103
3 1.61538461538461 -0.00192593407802784
1 1.64940239043824 -0.00650662468844287
2 1.66129032258064 0.0105378020265004
3 1.69230769230769 0.0104000440213504
1 1.72908366533865 -0.000550964187327821
2 1.74193548387098 0.00887763055339049
3 1.76923076923077 0.00687833599295658
1 1.80876494023904 0.0173160173160173
2 1.8225806451613 0.0204988308651598
3 1.84615384615384 -0.0124910581632092
1 1.88844621513944 -0.0154401154401154
2 1.90322580645162 0.01717848791894
3 1.92307692307692 0.00335662796456281
1 1.96812749003985 0.0143381870654598
2 1.98387096774194 0.0188386593920499
3 2 0.0051174819787597
1 2.04780876494024 0.0143381870654598
2 2.06451612903226 0.0138581449727202
3 2.07692307692307 -0.00544764210642161
1 2.12749003984064 -0.000550964187327821
2 2.14516129032259 0.0138581449727202
3 2.15384615384616 0.0051174819787597
1 2.20717131474103 0.0202938475665748
2 2.2258064516129 0.00555728760717069
3 2.23076923076923 -0.000165080063830958
1 2.28685258964143 0.00540469631378723
2 2.30645161290323 0.0138581449727202
3 2.30769230769232 -0.00368678809222473
1 2.36653386454182 -0.00352879443788534
3 2.38461538461539 0.00687833599295658
2 2.38709677419354 0.0022369446609509
1 2.44621513944224 -0.00650662468844287
3 2.46153846153845 -0.00544764210642161
2 2.46774193548387 0.0155183164458301
group x y
2 -2.5 0.0254793452844895
3 -2.46153846153847 0.0139217520497441
1 -2.43027888446215 -0.000550964187327821
2 -2.41935483870968 0.0121979734996103
3 -2.38461538461539 -0.00192593407802784
1 -2.35059760956176 -0.00650662468844287
2 -2.33870967741936 0.0105378020265004
3 -2.30769230769231 0.0104000440213504
1 -2.27091633466135 -0.000550964187327821
2 -2.25806451612902 0.00887763055339049
3 -2.23076923076923 0.00687833599295658
1 -2.19123505976096 0.0173160173160173
2 -2.1774193548387 0.0204988308651598
3 -2.15384615384616 -0.0124910581632092
1 -2.11155378486056 -0.0154401154401154
2 -2.09677419354838 0.01717848791894
3 -2.07692307692308 0.00335662796456281
1 -2.03187250996015 0.0143381870654598
2 -2.01612903225806 0.0188386593920499
3 -2 0.0051174819787597
1 -1.95219123505976 0.0143381870654598
2 -1.93548387096774 0.0138581449727202
3 -1.92307692307693 -0.00544764210642161
1 -1.87250996015936 -0.000550964187327821
2 -1.85483870967741 0.0138581449727202
3 -1.84615384615384 0.0051174819787597
1 -1.79282868525897 0.0202938475665748
2 -1.7741935483871 0.00555728760717069
3 -1.76923076923077 -0.000165080063830958
1 -1.71314741035857 0.00540469631378723
2 -1.69354838709677 0.0138581449727202
3 -1.69230769230768 -0.00368678809222473
1 -1.63346613545818 -0.00352879443788534
3 -1.61538461538461 0.00687833599295658
2 -1.61290322580646 0.0022369446609509
1 -1.55378486055776 -0.00650662468844287
3 -1.53846153846155 -0.00544764210642161
2 -1.53225806451613 0.0155183164458301
1 -1.47410358565736 0.0113603568149023
3 -1.46153846153845 -0.0160127661916029
2 -1.45161290322579 0.00887763055339049
1 -1.39442231075697 -0.00352879443788534
3 -1.38461538461539 0.00335662796456281
2 -1.37096774193549 0.0155183164458301
1 -1.31474103585657 0.00838252656434475
3 -1.30769230769232 0.00159577395036593
2 -1.29032258064515 0.0155183164458301
1 -1.23505976095618 0.0173160173160173
3 -1.23076923076923 -0.00544764210642161
2 -1.20967741935485 0.0138581449727202
1 -1.15537848605578 -0.00948445493900039
3 -1.15384615384616 -0.000165080063830958
2 -1.12903225806451 0.00555728760717069
3 -1.07692307692307 -0.000165080063830958
1 -1.07569721115539 0.0113603568149023
2 -1.04838709677421 0.01717848791894
3 -1 0.0051174819787597
1 -0.996015936254992 -0.0154401154401154
2 -0.967741935483872 0.0204988308651598
3 -0.923076923076934 -0.0072084961206185
1 -0.916334661354597 -0.000550964187327821
2 -0.887096774193537 0.0188386593920499
3 -0.84615384615384 0.00687833599295658
1 -0.836653386454174 0.00838252656434475
2 -0.806451612903231 0.0204988308651598
3 -0.769230769230774 0.0104000440213504
1 -0.756972111553779 0.0113603568149023
2 -0.725806451612897 0.00887763055339049
3 -0.692307692307679 -0.00368678809222473
1 -0.677290836653384 -0.0124622851895579
2 -0.645161290322591 0.0188386593920499
3 -0.615384615384613 0.00159577395036593
1 -0.597609561752989 0.00540469631378723
2 -0.564516129032256 0.0321200311769291
3 -0.538461538461547 0.00335662796456281
1 -0.517928286852595 -0.00650662468844287
2 -0.48387096774195 0.0155183164458301
3 -0.461538461538453 -0.00192593407802784
1 -0.4382470119522 0.0202938475665748
2 -0.403225806451616 0.0287996882307093
3 -0.384615384615387 0.00159577395036593
1 -0.358565737051805 0.00540469631378723
2 -0.322580645161281 0.0636632891660171
3 -0.307692307692321 -0.00544764210642161
1 -0.278884462151382 0.03816082906992
2 -0.241935483870975 0.0885658612626656
3 -0.230769230769226 0.00335662796456281
1 -0.199203187250987 0.0530499803227076
2 -0.161290322580641 0.156632891660171
3 -0.15384615384616 -0.00544764210642161
1 -0.119521912350592 0.133451397087761
2 -0.0806451612903345 0.236321122369447
3 -0.076923076923066 0.00863919000715347
1 -0.0398406374501974 0.234697625606717
2 0 0.330950896336711
3 0 0.0121608980355472
1 0.0398406374501974 0.347855175127902
3 0.076923076923066 -0.0107302041490123
2 0.0806451612903345 0.420600155884645
1 0.119521912350592 0.425278761642398
3 0.15384615384616 -0.014251912177406
2 0.161290322580641 0.50194855806703
1 0.199203187250987 0.511635838908566
3 0.230769230769226 -0.00192593407802784
2 0.241935483870975 0.51522992985191
1 0.278884462151382 0.547369801915257
3 0.307692307692321 -0.00368678809222473
2 0.322580645161281 0.475385814497272
1 0.358565737051805 0.502702348156894
3 0.384615384615387 -0.0230561822483905
2 0.403225806451616 0.413959469992206
1 0.4382470119522 0.41038961038961
3 0.461538461538453 -0.0107302041490123
2 0.48387096774195 0.306048324240062
1 0.517928286852595 0.359766496130133
3 0.538461538461547 0.0104000440213504
2 0.564516129032256 0.211418550272798
1 0.597609561752989 0.249586776859504
3 0.615384615384613 -0.030099598305178
2 0.645161290322591 0.151652377240842
1 0.677290836653384 0.172163190345009
3 0.692307692307679 -0.0124910581632092
2 0.725806451612897 0.081925175370226
1 0.756972111553779 0.100695264331628
3 0.769230769230774 -0.0107302041490123
2 0.806451612903231 0.0603429462197973
1 0.836653386454174 0.0858061130788404
3 0.84615384615384 0.00335662796456281
2 0.887096774193537 0.0321200311769291
1 0.916334661354568 0.0351829988193625
3 0.923076923076934 0.00863919000715347
2 0.967741935483872 0.0321200311769291
1 0.996015936254992 0.0292273383182474
3 1 0.00159577395036593
2 1.04838709677421 0.0354403741231489
1 1.07569721115539 0.0262495080676899
3 1.07692307692307 0.00159577395036593
2 1.12903225806451 0.01717848791894
3 1.15384615384616 -0.00368678809222473
1 1.15537848605578 0.00838252656434475
2 1.20967741935485 0.0238191738113796
3 1.23076923076923 0.0262477301491223
1 1.23505976095618 -0.00650662468844287
2 1.29032258064515 0.01717848791894
3 1.30769230769232 0.015682606063941
1 1.31474103585657 0.0232716778171324
2 1.37096774193549 0.0321200311769291
3 1.38461538461539 0.00159577395036593
1 1.39442231075697 -0.0154401154401154
2 1.45161290322579 0.0155183164458301
3 1.46153846153845 0.00335662796456281
1 1.47410358565736 0.00540469631378723
2 1.53225806451613 0.0238191738113796
3 1.53846153846155 0.0209651681065317
1 1.55378486055776 0.00838252656434475
2 1.61290322580646 0.01717848791894
3 1.61538461538461 0.0139217520497441
1 1.63346613545818 -0.000550964187327821
3 1.69230769230768 -0.0124910581632092
2 1.69354838709677 0.01717848791894
1 1.71314741035857 0.0143381870654598
3 1.76923076923077 -0.0107302041490123
2 1.7741935483871 0.0155183164458301
1 1.79282868525897 0.0262495080676899
3 1.84615384615384 0.00335662796456281
2 1.85483870967741 0.0121979734996103
1 1.87250996015936 0.0202938475665748
3 1.92307692307693 0.0121608980355472
2 1.93548387096774 0.0138581449727202
1 1.95219123505976 -0.00650662468844287
3 2 0.0051174819787597
2 2.01612903225805 0.01717848791894
1 2.03187250996015 0.0202938475665748
3 2.07692307692307 0.0227260221207286
2 2.09677419354838 0.0254793452844895
1 2.11155378486055 0.0322051685688049
3 2.15384615384616 -0.00368678809222473
2 2.17741935483872 0.0155183164458301
1 2.19123505976097 0.0024268660632297
3 2.23076923076923 0.0051174819787597
2 2.25806451612902 0.0121979734996103
1 2.27091633466136 -0.0154401154401154
3 2.30769230769232 0.00687833599295658
2 2.33870967741936 0.0188386593920499
1 2.35059760956176 0.0113603568149023
3 2.38461538461539 -0.0072084961206185
2 2.41935483870967 0.00887763055339049
1 2.43027888446215 -0.000550964187327821
3 2.46153846153845 -0.000165080063830958
2 2.5 0.00389711613406079
group x y
2 -2.4915254237288 0.0105378020265004
3 -2.45783132530121 0.0104000440213504
1 -2.43983402489627 0.00540469631378723
2 -2.40677966101694 0.0287996882307093
3 -2.37751004016064 0.00863919000715347
1 -2.35684647302904 0.0113603568149023
2 -2.32203389830508 0.0221590023382697
3 -2.29718875502007 0.015682606063941
1 -2.27385892116183 -0.00650662468844287
2 -2.23728813559322 0.0188386593920499
3 -2.21686746987953 0.0104000440213504
1 -2.1908713692946 0.0113603568149023
2 -2.15254237288136 0.0221590023382697
3 -2.13654618473896 0.0051174819787597
1 -2.10788381742739 0.00540469631378723
2 -2.06779661016949 0.01717848791894
3 -2.05622489959839 -0.00192593407802784
1 -2.02489626556016 0.0232716778171324
2 -1.98305084745763 0.01717848791894
3 -1.97590361445782 0.00159577395036593
1 -1.94190871369295 0.0232716778171324
2 -1.89830508474577 0.0271395167575994
3 -1.89558232931728 0.00159577395036593
1 -1.85892116182572 0.0173160173160173
3 -1.81526104417671 0.0262477301491223
2 -1.81355932203391 0.0188386593920499
1 -1.77593360995851 0.0143381870654598
3 -1.73493975903614 0.0227260221207286
2 -1.72881355932202 0.0155183164458301
1 -1.69294605809128 0.00838252656434475
3 -1.6546184738956 0.00863919000715347
2 -1.64406779661016 0.0155183164458301
1 -1.60995850622407 -0.00352879443788534
3 -1.57429718875503 0.0139217520497441
2 -1.5593220338983 0.0238191738113796
1 -1.52697095435684 0.00838252656434475
3 -1.49397590361446 0.0174434600781379
2 -1.47457627118644 0.01717848791894
1 -1.44398340248964 0.00838252656434475
3 -1.41365461847388 0.00335662796456281
2 -1.38983050847457 0.00887763055339049
1 -1.3609958506224 0.0232716778171324
3 -1.33333333333334 0.0051174819787597
2 -1.30508474576271 0.0121979734996103
1 -1.2780082987552 -0.00352879443788534
3 -1.25301204819277 0.0192043140923348
2 -1.22033898305085 0.01717848791894
1 -1.19502074688796 -0.00352879443788534
3 -1.1726907630522 0.00335662796456281
2 -1.13559322033899 0.0155183164458301
1 -1.11203319502076 0.0113603568149023
3 -1.09236947791163 0.0280085841633192
2 -1.05084745762713 0.0188386593920499
1 -1.02904564315352 0.0173160173160173
3 -1.01204819277109 0.0192043140923348
2 -0.966101694915267 0.0254793452844895
1 -0.946058091286318 -0.00352879443788534
3 -0.931726907630519 0.0209651681065317
2 -0.881355932203377 0.0155183164458301
1 -0.863070539419084 -0.00352879443788534
3 -0.851405622489949 0.0209651681065317
2 -0.796610169491515 0.00887763055339049
1 -0.780082987551879 -0.00650662468844287
3 -0.771084337349407 0.0139217520497441
2 -0.711864406779654 0.0155183164458301
1 -0.697095435684645 0.0024268660632297
3 -0.690763052208837 0.0192043140923348
2 -0.627118644067792 0.0204988308651598
1 -0.614107883817439 0.0113603568149023
3 -0.610441767068266 0.00863919000715347
2 -0.542372881355931 0.0155183164458301
1 -0.531120331950206 0.0173160173160173
3 -0.530120481927725 0.0297694381775161
2 -0.457627118644069 0.0188386593920499
3 -0.449799196787154 0.0579431024046663
1 -0.448132780083 -0.000550964187327821
2 -0.372881355932208 0.0105378020265004
3 -0.369477911646584 0.0896384746602102
1 -0.365145228215766 0.00540469631378723
3 -0.289156626506013 0.135420679029329
2 -0.288135593220346 0.00555728760717069
1 -0.282157676348561 -0.00650662468844287
3 -0.208835341365472 0.19176800748363
2 -0.203389830508485 0.0221590023382697
1 -0.199170124481327 -0.00948445493900039
3 -0.128514056224901 0.269245584108293
2 -0.118644067796623 0.0204988308651598
1 -0.116182572614122 -0.00948445493900039
3 -0.0481927710843308 0.350244868761349
2 -0.0338983050847332 0.0204988308651598
1 -0.0331950207468878 0.0173160173160173
3 0.0321285140562395 0.424200737357618
1 0.0497925311203176 0.0024268660632297
2 0.0508474576271283 0.00887763055339049
3 0.112449799196781 0.51928685412425
1 0.132780082987551 0.0202938475665748
2 0.13559322033899 0.0204988308651598
3 0.192771084337352 0.51928685412425
1 0.215767634854785 0.0024268660632297
2 0.220338983050851 0.0138581449727202
3 0.273092369477922 0.503439167996478
1 0.298755186721991 0.0024268660632297
2 0.305084745762713 0.00887763055339049
3 0.353413654618464 0.450613547570572
1 0.381742738589224 -0.00352879443788534
2 0.389830508474574 0.0121979734996103
3 0.433734939759034 0.353766576789743
1 0.46473029045643 0.0024268660632297
2 0.474576271186436 0.0138581449727202
3 0.514056224899605 0.265723876079899
1 0.547717842323664 0.00540469631378723
2 0.559322033898297 0.0188386593920499
3 0.594377510040147 0.204093985583008
1 0.630705394190869 0.00838252656434475
2 0.644067796610159 0.00887763055339049
3 0.674698795180717 0.11781213888736
1 0.713692946058103 0.0262495080676899
2 0.72881355932202 0.00555728760717069
3 0.755020080321287 0.0720299345182413
1 0.796680497925308 0.0024268660632297
2 0.81355932203391 -0.0027435697583788
3 0.835341365461858 0.0597039564188631
1 0.879668049792542 -0.00352879443788534
2 0.898305084745772 0.01717848791894
3 0.9156626506024 0.0403345622626974
1 0.962655601659748 0.0173160173160173
2 0.983050847457633 0.000576773187840996
3 0.99598393574297 0.0262477301491223
1 1.04564315352698 0.0202938475665748
2 1.06779661016949 0.0121979734996103
3 1.07630522088354 0.0209651681065317
1 1.12863070539419 -0.00948445493900039
2 1.15254237288136 0.0121979734996103
3 1.15662650602411 0.0051174819787597
1 1.21161825726142 0.0113603568149023
3 1.23694779116465 0.0051174819787597
2 1.23728813559322 0.0138581449727202
1 1.29460580912863 0.0024268660632297
3 1.31726907630522 0.0192043140923348
2 1.32203389830508 0.0155183164458301
1 1.37759336099586 -0.0124622851895579
3 1.39759036144579 0.0174434600781379
2 1.40677966101694 0.00721745908028059
1 1.46058091286307 -0.018417945690673
3 1.47791164658634 0.0227260221207286
2 1.4915254237288 0.0022369446609509
1 1.5435684647303 -0.000550964187327821
3 1.55823293172691 -0.00368678809222473
2 1.57627118644069 0.00555728760717069
1 1.6265560165975 -0.00352879443788534
3 1.63855421686748 0.00335662796456281
2 1.66101694915255 0.00389711613406079
1 1.70954356846474 0.0024268660632297
3 1.71887550200802 -0.00896935013481539
2 1.74576271186442 0.000576773187840996
1 1.79253112033194 0.00838252656434475
3 1.79919678714859 0.00335662796456281
2 1.83050847457628 0.0204988308651598
1 1.87551867219918 0.0024268660632297
3 1.87951807228916 -0.00192593407802784
2 1.91525423728814 0.0022369446609509
1 1.95850622406638 0.0024268660632297
3 1.95983935742973 0.0051174819787597
2 2 0.00721745908028059
3 2.04016064257027 0.00687833599295658
1 2.04149377593362 0.00540469631378723
2 2.08474576271186 0.0105378020265004
3 2.12048192771084 0.0104000440213504
1 2.12448132780082 -0.0124622851895579
2 2.16949152542372 0.00389711613406079
3 2.20080321285141 -0.00544764210642161
1 2.20746887966806 0.00838252656434475
2 2.25423728813558 0.000576773187840996
3 2.28112449799198 0.0121608980355472
1 2.29045643153526 0.00838252656434475
2 2.33898305084745 -0.0060639127045986
3 2.36144578313252 0.0121608980355472
1 2.3734439834025 -0.00352879443788534
2 2.42372881355934 0.0138581449727202
3 2.44176706827309 -0.00544764210642161
1 2.4564315352697 0.0173160173160173
group x y
1 -2.47302904564316 0.0173160173160173
2 -2.4406779661017 0.00721745908028059
3 -2.42570281124497 -0.00544764210642161
1 -2.39004149377593 -0.000550964187327821
2 -2.35593220338984 0.01717848791894
3 -2.3453815261044 -0.0107302041490123
1 -2.30705394190872 0.00540469631378723
2 -2.27118644067798 0.00555728760717069
3 -2.26506024096386 -0.00896935013481539
1 -2.22406639004149 0.00540469631378723
2 -2.18644067796609 0.00887763055339049
3 -2.18473895582329 -0.00192593407802784
1 -2.14107883817428 -0.000550964187327821
3 -2.10441767068272 0.00863919000715347
2 -2.10169491525423 0.0204988308651598
1 -2.05809128630705 0.0024268660632297
3 -2.02409638554218 0.00863919000715347
2 -2.01694915254237 -0.0044037412314887
1 -1.97510373443984 -0.00948445493900039
3 -1.94377510040161 0.00863919000715347
2 -1.93220338983051 0.00555728760717069
1 -1.89211618257261 0.00540469631378723
3 -1.86345381526104 -0.0160127661916029
2 -1.84745762711864 0.0121979734996103
1 -1.8091286307054 -0.00650662468844287
3 -1.7831325301205 -0.00896935013481539
2 -1.76271186440678 -0.0010833982852689
1 -1.72614107883817 0.0024268660632297
3 -1.70281124497993 -0.000165080063830958
2 -1.67796610169492 0.00721745908028059
1 -1.64315352697096 -0.00650662468844287
3 -1.62248995983936 -0.00192593407802784
2 -1.59322033898306 0.0022369446609509
1 -1.56016597510373 0.00838252656434475
3 -1.54216867469879 -0.0124910581632092
2 -1.5084745762712 0.00721745908028059
1 -1.47717842323652 -0.00650662468844287
3 -1.46184738955824 -0.00368678809222473
2 -1.42372881355934 0.0121979734996103
1 -1.39419087136929 -0.00650662468844287
3 -1.38152610441767 -0.0072084961206185
2 -1.33898305084745 0.0105378020265004
1 -1.31120331950208 -0.000550964187327821
3 -1.3012048192771 -0.00896935013481539
2 -1.25423728813558 0.0138581449727202
1 -1.22821576763485 0.00838252656434475
3 -1.22088353413653 -0.000165080063830958
2 -1.16949152542372 0.00721745908028059
1 -1.14522821576764 -0.0154401154401154
3 -1.14056224899599 -0.0072084961206185
2 -1.08474576271186 0.00887763055339049
1 -1.06224066390041 -0.000550964187327821
3 -1.06024096385542 -0.00192593407802784
2 -1 0.00555728760717069
3 -0.97991967871485 0.00335662796456281
1 -0.979253112033206 -0.00650662468844287
2 -0.915254237288138 0.00555728760717069
3 -0.899598393574308 0.00335662796456281
1 -0.896265560165972 0.0143381870654598
2 -0.830508474576277 0.00887763055339049
3 -0.819277108433738 -0.014251912177406
1 -0.813278008298767 0.00540469631378723
2 -0.745762711864415 0.000576773187840996
3 -0.738955823293168 0.00335662796456281
1 -0.730290456431533 -0.0154401154401154
2 -0.661016949152554 0.00389711613406079
3 -0.658634538152626 0.00159577395036593
1 -0.647302904564327 0.0024268660632297
3 -0.578313253012055 0.00159577395036593
2 -0.576271186440664 0.0105378020265004
1 -0.564315352697093 -0.000550964187327821
3 -0.497991967871485 0.00863919000715347
2 -0.491525423728802 0.00887763055339049
1 -0.481327800829888 -0.0213957759412305
3 -0.417670682730915 0.0262477301491223
2 -0.406779661016941 0.000576773187840996
1 -0.398340248962654 -0.00948445493900039
3 -0.337349397590373 0.0244868761349254
2 -0.322033898305079 0.00389711613406079
1 -0.315352697095449 -0.000550964187327821
3 -0.257028112449802 0.0508996863478787
2 -0.237288135593218 0.00389711613406079
1 -0.232365145228215 0.0113603568149023
3 -0.176706827309232 0.0949210367028009
2 -0.152542372881356 0.00721745908028059
1 -0.14937759336101 -0.000550964187327821
3 -0.0963855421686617 0.124855554944148
2 -0.0677966101694949 0.00555728760717069
1 -0.0663900414937757 0.0322051685688049
3 -0.0160642570281198 0.19176800748363
1 0.0165975103734581 0.0232716778171324
2 0.0169491525423666 0.0022369446609509
3 0.0642570281124506 0.263963022065702
1 0.0995850622406635 0.0202938475665748
2 0.101694915254228 0.01717848791894
3 0.144578313253021 0.318549496505805
1 0.182572614107869 0.044116489571035
2 0.18644067796609 0.01717848791894
3 0.224899598393563 0.348484014747152
1 0.265560165975103 0.0351829988193625
2 0.27118644067798 0.0155183164458301
3 0.305220883534133 0.366092554889121
1 0.348547717842337 0.0470943198215926
2 0.355932203389841 0.0188386593920499
3 0.385542168674704 0.352005722775546
1 0.431535269709542 0.0470943198215926
2 0.440677966101703 0.0287996882307093
3 0.465863453815246 0.290375832278655
1 0.514522821576747 0.0262495080676899
2 0.525423728813564 0.0221590023382697
3 0.546184738955816 0.237550211852749
1 0.597510373443981 0.0351829988193625
2 0.610169491525426 0.0155183164458301
3 0.626506024096386 0.193528861497826
1 0.680497925311215 0.0262495080676899
2 0.694915254237287 0.0188386593920499
3 0.706827309236957 0.116051284873163
1 0.763485477178421 0.0113603568149023
2 0.779661016949149 0.00555728760717069
3 0.787148594377499 0.0896384746602102
1 0.846473029045654 0.0113603568149023
2 0.86440677966101 0.0155183164458301
3 0.867469879518069 0.0420954162768943
1 0.92946058091286 0.00838252656434475
3 0.947791164658639 0.031530292191713
2 0.949152542372872 0.0121979734996103
1 1.01244813278009 -0.00650662468844287
3 1.02811244979921 0.0104000440213504
2 1.03389830508473 0.00721745908028059
1 1.0954356846473 0.00838252656434475
3 1.10843373493975 0.0192043140923348
2 1.11864406779662 -0.0027435697583788
1 1.17842323651453 0.00838252656434475
3 1.18875502008032 -0.00368678809222473
2 1.20338983050848 -0.0027435697583788
1 1.26141078838174 0.00838252656434475
3 1.26907630522089 0.0192043140923348
2 1.28813559322035 0.00555728760717069
1 1.34439834024897 0.0262495080676899
3 1.34939759036143 0.0192043140923348
2 1.37288135593221 0.00887763055339049
1 1.42738589211618 0.0143381870654598
3 1.429718875502 0.00687833599295658
2 1.45762711864407 -0.0010833982852689
3 1.51004016064257 0.0121608980355472
1 1.51037344398341 0.0232716778171324
2 1.54237288135593 0.0155183164458301
3 1.59036144578312 0.015682606063941
1 1.59336099585062 -0.00352879443788534
2 1.62711864406779 0.00555728760717069
3 1.67068273092369 0.0104000440213504
1 1.67634854771785 0.0024268660632297
2 1.71186440677965 0.00887763055339049
3 1.75100401606426 0.0104000440213504
1 1.75933609958506 -0.00352879443788534
2 1.79661016949152 0.00555728760717069
3 1.83132530120483 -0.00192593407802784
1 1.84232365145229 -0.000550964187327821
2 1.88135593220338 0.00555728760717069
3 1.9116465863454 -0.00896935013481539
1 1.9253112033195 0.00838252656434475
2 1.96610169491527 0.000576773187840996
3 1.99196787148594 0.0139217520497441
1 2.00829875518673 -0.00650662468844287
2 2.05084745762713 0.00721745908028059
3 2.07228915662651 -0.0072084961206185
1 2.09128630705393 0.00838252656434475
2 2.13559322033899 0.00721745908028059
3 2.15261044176708 -0.00368678809222473
1 2.17427385892117 -0.000550964187327821
2 2.22033898305085 0.00555728760717069
3 2.23293172690762 -0.000165080063830958
1 2.25726141078837 0.00540469631378723
2 2.30508474576271 -0.0027435697583788
3 2.31325301204819 -0.00896935013481539
1 2.34024896265561 0.0232716778171324
2 2.38983050847457 0.0138581449727202
3 2.39357429718876 0.00159577395036593
1 2.42323651452281 -0.00352879443788534
3 2.47389558232931 0.0104000440213504
2 2.47457627118644 0.000576773187840996
group x y
3 -2.48995983935743 0.0121608980355472
1 -2.48962655601659 0.0232716778171324
2 -2.45762711864407 0.0155183164458301
3 -2.40963855421688 0.015682606063941
1 -2.40663900414938 -0.00352879443788534
2 -2.37288135593221 0.00555728760717069
3 -2.32931726907631 0.0104000440213504
1 -2.32365145228215 0.0024268660632297
2 -2.28813559322035 0.00887763055339049
3 -2.24899598393574 0.0104000440213504
1 -2.24066390041494 -0.00352879443788534
2 -2.20338983050848 0.00555728760717069
3 -2.16867469879517 -0.00192593407802784
1 -2.15767634854771 -0.000550964187327821
2 -2.11864406779662 0.00555728760717069
3 -2.0883534136546 -0.00896935013481539
1 -2.0746887966805 0.00838252656434475
2 -2.03389830508473 0.000576773187840996
3 -2.00803212851406 0.0139217520497441
1 -1.99170124481327 -0.00650662468844287
2 -1.94915254237287 0.00721745908028059
3 -1.92771084337349 -0.0072084961206185
1 -1.90871369294607 0.00838252656434475
2 -1.86440677966101 0.00721745908028059
3 -1.84738955823292 -0.00368678809222473
1 -1.82572614107883 -0.000550964187327821
2 -1.77966101694915 0.00555728760717069
3 -1.76706827309238 -0.000165080063830958
1 -1.74273858921163 0.00540469631378723
2 -1.69491525423729 -0.0027435697583788
3 -1.68674698795181 -0.00896935013481539
1 -1.65975103734439 0.0232716778171324
2 -1.61016949152543 0.0138581449727202
3 -1.60642570281124 0.00159577395036593
1 -1.57676348547719 -0.00352879443788534
3 -1.52610441767069 0.0104000440213504
2 -1.52542372881356 0.000576773187840996
1 -1.49377593360995 -0.000550964187327821
3 -1.44578313253012 -0.00192593407802784
2 -1.4406779661017 0.0105378020265004
1 -1.41078838174275 0.0411386593204775
3 -1.36546184738955 0.00159577395036593
2 -1.35593220338984 0.00887763055339049
1 -1.32780082987551 0.0143381870654598
3 -1.28514056224901 -0.00544764210642161
2 -1.27118644067798 0.00887763055339049
1 -1.24481327800831 0.0143381870654598
3 -1.20481927710844 0.00687833599295658
2 -1.18644067796609 0.00721745908028059
1 -1.16182572614107 0.0232716778171324
3 -1.12449799196787 -0.00544764210642161
2 -1.10169491525423 0.00389711613406079
1 -1.07883817427387 0.0143381870654598
3 -1.0441767068273 0.0139217520497441
2 -1.01694915254237 0.00389711613406079
1 -0.995850622406635 0.0113603568149023
3 -0.963855421686759 -0.0072084961206185
2 -0.932203389830505 0.00389711613406079
1 -0.91286307053943 0.00838252656434475
3 -0.883534136546189 0.00159577395036593
2 -0.847457627118644 0.000576773187840996
1 -0.829875518672196 -0.00352879443788534
3 -0.803212851405618 -0.0072084961206185
2 -0.762711864406782 0.0155183164458301
1 -0.746887966804991 0.0113603568149023
3 -0.722891566265048 -0.00192593407802784
2 -0.677966101694921 0.0121979734996103
1 -0.663900414937757 -0.00352879443788534
3 -0.642570281124506 -0.00896935013481539
2 -0.593220338983059 0.01717848791894
1 -0.580912863070552 -0.00352879443788534
3 -0.562248995983936 -0.0107302041490123
2 -0.508474576271198 0.00555728760717069
1 -0.497925311203318 0.0024268660632297
3 -0.481927710843365 -0.0124910581632092
2 -0.423728813559308 0.0188386593920499
1 -0.414937759336112 0.0143381870654598
3 -0.401606425702823 0.00159577395036593
2 -0.338983050847446 0.0121979734996103
1 -0.331950207468878 0.0351829988193625
3 -0.321285140562253 0.00687833599295658
2 -0.254237288135585 0.0254793452844895
1 -0.248962655601645 0.0262495080676899
3 -0.240963855421683 0.0104000440213504
2 -0.169491525423723 0.0304598597038192
1 -0.165975103734439 0.0590056408238226
3 -0.160642570281112 0.0139217520497441
2 -0.0847457627118615 0.0719641465315666
1 -0.0829875518672338 0.133451397087761
3 -0.0803212851405704 0.00159577395036593
1 0 0.193008002098911
2 0 0.110148090413094
3 0 0.00335662796456281
3 0.0819672131147513 -0.00368678809222473
1 0.0843881856540065 0.282342909615637
2 0.086580086580085 0.135050662509743
3 0.163934426229503 -0.00544764210642161
1 0.168776371308013 0.395500459136823
2 0.17316017316017 0.193156664068589
3 0.245901639344254 -0.00368678809222473
1 0.25316455696202 0.461012724649088
2 0.259740259740255 0.221379579111458
3 0.327868852459005 -0.0072084961206185
1 0.337552742616026 0.493768857405221
2 0.34632034632034 0.224699922057677
3 0.409836065573757 0.0104000440213504
1 0.421940928270033 0.455057064147973
2 0.432900432900425 0.208098207326578
3 0.491803278688536 0.00863919000715347
1 0.506329113924039 0.404433949888495
2 0.51948051948051 0.194816835541699
3 0.573770491803288 -0.0248170362625874
1 0.590717299578046 0.35083300537846
2 0.606060606060595 0.159953234606391
3 0.655737704918039 0.00159577395036593
1 0.675105485232081 0.270431588613407
2 0.69264069264068 0.108487918939984
3 0.73770491803279 -0.00896935013481539
1 0.759493670886087 0.190030171848354
2 0.779220779220793 0.0918862042088854
3 0.819672131147541 0.00687833599295658
1 0.843881856540094 0.124517906336088
2 0.865800865800878 0.0620031176929072
3 0.901639344262293 -0.0124910581632092
1 0.9282700421941 0.0738947920766103
2 0.952380952380963 0.0321200311769291
3 0.983606557377044 -0.0107302041490123
1 1.01265822784811 0.0590056408238226
2 1.03896103896105 0.033780202650039
3 1.0655737704918 0.00335662796456281
1 1.09704641350211 0.0173160173160173
2 1.12554112554113 0.0204988308651598
3 1.14754098360655 -0.00192593407802784
1 1.18143459915612 0.0173160173160173
2 1.21212121212122 0.0221590023382697
3 1.2295081967213 -0.0072084961206185
1 1.26582278481013 0.0143381870654598
2 1.2987012987013 0.00721745908028059
3 1.31147540983608 0.0051174819787597
1 1.35021097046413 0.0024268660632297
2 1.38528138528139 0.0121979734996103
3 1.39344262295083 0.00159577395036593
1 1.43459915611814 0.0143381870654598
2 1.47186147186147 0.00887763055339049
3 1.47540983606558 0.00159577395036593
1 1.51898734177215 -0.00948445493900039
3 1.55737704918033 0.00687833599295658
2 1.55844155844156 0.000576773187840996
1 1.60337552742615 0.00838252656434475
3 1.63934426229508 -0.00192593407802784
2 1.64502164502164 0.0105378020265004
1 1.68776371308016 -0.00948445493900039
3 1.72131147540983 0.0051174819787597
2 1.73160173160173 0.0105378020265004
1 1.77215189873417 -0.00948445493900039
3 1.80327868852459 -0.00192593407802784
2 1.81818181818181 0.00389711613406079
1 1.85654008438817 0.00838252656434475
3 1.88524590163934 -0.00192593407802784
2 1.9047619047619 0.00389711613406079
1 1.94092827004221 -0.0154401154401154
3 1.96721311475409 0.0209651681065317
2 1.99134199134198 0.0138581449727202
1 2.02531645569621 0.0113603568149023
3 2.04918032786884 -0.00896935013481539
2 2.07792207792207 0.0022369446609509
1 2.10970464135022 -0.000550964187327821
3 2.13114754098362 0.0192043140923348
2 2.16450216450215 0.000576773187840996
1 2.19409282700423 -0.00352879443788534
3 2.21311475409837 -0.0107302041490123
2 2.25108225108224 0.0121979734996103
1 2.27848101265823 0.00838252656434475
3 2.29508196721312 -0.0072084961206185
2 2.33766233766235 0.00389711613406079
1 2.36286919831224 -0.00948445493900039
3 2.37704918032787 -0.0107302041490123
2 2.42424242424244 0.0022369446609509
1 2.44725738396625 -0.000550964187327821
3 2.45901639344262 -0.000165080063830958
group x y
1 -2.48101265822785 -0.00948445493900039
3 -2.44262295081967 0.00687833599295658
2 -2.44155844155844 0.000576773187840996
1 -2.39662447257385 0.00838252656434475
3 -2.36065573770492 -0.00192593407802784
2 -2.35497835497836 0.0105378020265004
1 -2.31223628691984 -0.00948445493900039
3 -2.27868852459017 0.0051174819787597
2 -2.26839826839827 0.0105378020265004
1 -2.22784810126583 -0.00948445493900039
3 -2.19672131147541 -0.00192593407802784
2 -2.18181818181819 0.00389711613406079
1 -2.14345991561183 0.00838252656434475
3 -2.11475409836066 -0.00192593407802784
2 -2.0952380952381 0.00389711613406079
1 -2.05907172995779 -0.0154401154401154
3 -2.03278688524591 0.0209651681065317
2 -2.00865800865802 0.0138581449727202
1 -1.97468354430379 0.0113603568149023
3 -1.95081967213116 -0.00896935013481539
2 -1.92207792207793 0.0022369446609509
1 -1.89029535864978 -0.000550964187327821
3 -1.86885245901638 0.0192043140923348
2 -1.83549783549785 0.000576773187840996
1 -1.80590717299577 -0.00352879443788534
3 -1.78688524590163 -0.0107302041490123
2 -1.74891774891776 0.0121979734996103
1 -1.72151898734177 0.00838252656434475
3 -1.70491803278688 -0.0072084961206185
2 -1.66233766233765 0.00389711613406079
1 -1.63713080168776 -0.00948445493900039
3 -1.62295081967213 -0.0107302041490123
2 -1.57575757575756 0.0022369446609509
1 -1.55274261603375 -0.000550964187327821
3 -1.54098360655738 -0.000165080063830958
2 -1.48917748917748 0.0155183164458301
1 -1.46835443037975 -0.00352879443788534
3 -1.45901639344262 -0.00896935013481539
2 -1.40259740259739 0.0022369446609509
1 -1.38396624472574 0.00838252656434475
3 -1.37704918032787 -0.00544764210642161
2 -1.31601731601731 0.0022369446609509
1 -1.29957805907173 -0.000550964187327821
3 -1.29508196721312 -0.00192593407802784
2 -1.22943722943722 0.0204988308651598
1 -1.21518987341773 0.0202938475665748
3 -1.21311475409837 0.0051174819787597
2 -1.14285714285714 0.0138581449727202
3 -1.13114754098362 -0.0160127661916029
1 -1.13080168776372 0.00540469631378723
2 -1.05627705627705 0.0204988308651598
3 -1.04918032786884 0.0209651681065317
1 -1.04641350210971 0.00838252656434475
2 -0.969696969696969 -0.0044037412314887
3 -0.967213114754088 0.00335662796456281
1 -0.962025316455708 0.0113603568149023
3 -0.885245901639337 -0.00192593407802784
2 -0.883116883116884 0.0022369446609509
1 -0.877637130801702 -0.00948445493900039
3 -0.803278688524586 -0.0072084961206185
2 -0.796536796536799 0.0138581449727202
1 -0.793248945147667 0.0173160173160173
3 -0.721311475409834 -0.00192593407802784
2 -0.709956709956714 0.00887763055339049
1 -0.70886075949366 0.0202938475665748
3 -0.639344262295083 -0.00544764210642161
1 -0.624472573839654 0.0173160173160173
2 -0.623376623376629 0.0188386593920499
3 -0.557377049180332 -0.0072084961206185
1 -0.540084388185647 0.00838252656434475
2 -0.536796536796544 0.0304598597038192
3 -0.47540983606558 0.00159577395036593
1 -0.455696202531641 -0.00650662468844287
2 -0.450216450216459 0.0188386593920499
3 -0.393442622950829 -0.00368678809222473
1 -0.371308016877634 -0.000550964187327821
2 -0.363636363636374 0.0188386593920499
3 -0.311475409836078 0.0104000440213504
1 -0.286919831223628 -0.00352879443788534
2 -0.277056277056289 0.0254793452844895
3 -0.229508196721298 -0.00544764210642161
1 -0.202531645569621 0.0411386593204775
2 -0.190476190476204 0.0570226032735776
3 -0.147540983606547 0.0139217520497441
1 -0.118143459915615 0.0709169618260527
2 -0.103896103896091 0.115128604832424
3 -0.0655737704917954 -0.00368678809222473
1 -0.0337552742616083 0.109628755083301
2 -0.0173160173160056 0.161613406079501
3 0.0163934426229559 -0.00896935013481539
1 0.0506329113923982 0.195985832349469
2 0.0692640692640794 0.242961808261886
3 0.0983606557377072 0.0051174819787597
1 0.135021097046405 0.258520267611177
2 0.155844155844164 0.335931410756041
3 0.180327868852459 -0.0160127661916029
1 0.219409282700411 0.401456119637938
2 0.242424242424249 0.465424785658613
3 0.26229508196721 -0.00896935013481539
1 0.303797468354418 0.502702348156894
2 0.329004329004334 0.535151987529228
3 0.344262295081961 -0.00544764210642161
1 0.388185654008453 0.574170274170274
2 0.415584415584419 0.586617303195635
3 0.426229508196712 -0.00192593407802784
1 0.472573839662459 0.589059425423062
2 0.502164502164504 0.579976617303196
3 0.508196721311464 0.0051174819787597
1 0.556962025316466 0.568214613669159
2 0.588744588744589 0.535151987529228
3 0.590163934426243 0.00863919000715347
1 0.641350210970472 0.490791027154664
3 0.672131147540995 0.00687833599295658
2 0.675324675324674 0.443842556508184
1 0.725738396624479 0.407411780139053
3 0.754098360655746 -0.0124910581632092
2 0.761904761904759 0.332611067809821
1 0.810126582278485 0.264475928112292
3 0.836065573770497 -0.00544764210642161
2 0.848484848484844 0.251262665627436
1 0.894514767932492 0.193008002098911
3 0.918032786885249 0.015682606063941
2 0.935064935064929 0.141691348402182
1 0.978902953586498 0.148340548340548
3 1 -0.000165080063830958
2 1.02164502164501 0.111808261886204
1 1.0632911392405 0.0917617735799554
3 1.08196721311475 -0.00896935013481539
2 1.1082251082251 0.0703039750584567
1 1.14767932489451 0.044116489571035
3 1.1639344262295 -0.0072084961206185
2 1.19480519480518 0.0487217459080281
1 1.23206751054852 0.0292273383182474
3 1.24590163934425 -0.000165080063830958
2 1.28138528138527 0.0188386593920499
1 1.31645569620252 0.0411386593204775
3 1.32786885245901 0.0104000440213504
2 1.36796536796538 0.0271395167575994
1 1.40084388185653 0.00838252656434475
3 1.40983606557376 -0.000165080063830958
2 1.45454545454547 0.0254793452844895
1 1.48523206751054 0.00838252656434475
3 1.49180327868854 0.0121608980355472
2 1.54112554112555 0.0105378020265004
1 1.56962025316454 0.0173160173160173
3 1.57377049180329 0.00863919000715347
2 1.62770562770564 0.0121979734996103
1 1.65400843881855 0.00838252656434475
3 1.65573770491804 -0.00192593407802784
2 1.71428571428572 0.0271395167575994
3 1.73770491803279 0.0051174819787597
1 1.73839662447259 0.00540469631378723
2 1.80086580086581 0.00887763055339049
3 1.81967213114754 -0.000165080063830958
1 1.82278481012659 0.00838252656434475
2 1.88744588744589 0.0022369446609509
3 1.90163934426229 -0.0072084961206185
1 1.9071729957806 -0.000550964187327821
2 1.97402597402598 0.0254793452844895
3 1.98360655737704 -0.00896935013481539
1 1.99156118143461 0.00838252656434475
2 2.06060606060606 -0.0044037412314887
3 2.0655737704918 0.00159577395036593
1 2.07594936708861 -0.000550964187327821
2 2.14718614718615 0.0022369446609509
3 2.14754098360655 0.00335662796456281
1 2.16033755274262 0.0143381870654598
3 2.22950819672133 0.0051174819787597
2 2.23376623376623 0.0138581449727202
1 2.24472573839662 0.0024268660632297
3 2.31147540983608 0.0139217520497441
2 2.32034632034632 0.01717848791894
1 2.32911392405063 -0.00650662468844287
3 2.39344262295083 0.00159577395036593
2 2.4069264069264 -0.0010833982852689
1 2.41350210970464 0.0411386593204775
3 2.47540983606558 0.00687833599295658
2 2.49350649350649 0.0022369446609509
1 2.49789029535864 0.00838252656434475
group x y
1 -3.3 -0.00650662468844287
3 -3.3 0.0139217520497441
2 -3.3 0.0155183164458301
1 -3.3 0.0202938475665748
3 -3.3 -0.014251912177406
2 -3.3 0.00389711613406079
1 -3.29787234042553 0.0024268660632297
3 -3.29752066115702 0.00159577395036593
2 -3.27312775330395 0.00389711613406079
3 -3.21487603305786 -0.0107302041490123
1 -3.21276595744681 -0.0124622851895579
2 -3.18502202643171 0.000576773187840996
3 -3.13223140495867 -0.000165080063830958
1 -3.12765957446808 0.0113603568149023
2 -3.09691629955947 0.0121979734996103
3 -3.04958677685951 -0.014251912177406
1 -3.04255319148936 -0.00948445493900039
2 -3.00881057268722 0.000576773187840996
3 -2.96694214876032 -0.0107302041490123
1 -2.95744680851064 -0.000550964187327821
2 -2.92070484581498 0.00887763055339049
3 -2.88429752066116 -0.00368678809222473
1 -2.87234042553192 0.0024268660632297
2 -2.83259911894274 0.00389711613406079
3 -2.80165289256198 -0.00544764210642161
1 -2.78723404255319 0.0232716778171324
2 -2.7444933920705 0.00721745908028059
3 -2.71900826446281 0.00863919000715347
1 -2.70212765957447 -0.0124622851895579
2 -2.65638766519822 0.00887763055339049
3 -2.63636363636363 -0.000165080063830958
1 -2.61702127659575 0.0173160173160173
2 -2.56828193832598 0.00887763055339049
3 -2.55371900826447 -0.0072084961206185
1 -2.53191489361703 0.00540469631378723
2 -2.48017621145374 0.0138581449727202
3 -2.47107438016528 -0.00368678809222473
1 -2.44680851063831 0.0024268660632297
2 -2.3920704845815 -0.0010833982852689
3 -2.38842975206612 -0.00192593407802784
1 -2.36170212765958 0.00540469631378723
3 -2.30578512396693 -0.000165080063830958
2 -2.30396475770925 0.00721745908028059
1 -2.27659574468086 -0.0154401154401154
3 -2.22314049586777 -0.00192593407802784
2 -2.21585903083701 0.0188386593920499
1 -2.19148936170214 -0.00352879443788534
3 -2.14049586776861 0.0051174819787597
2 -2.12775330396477 0.0105378020265004
1 -2.10638297872342 0.0232716778171324
3 -2.05785123966942 0.0121608980355472
2 -2.03964757709252 0.0121979734996103
1 -2.02127659574467 0.00838252656434475
3 -1.97520661157026 -0.0072084961206185
2 -1.95154185022025 0.00721745908028059
1 -1.93617021276594 -0.0124622851895579
3 -1.89256198347107 -0.00192593407802784
2 -1.86343612334801 0.00555728760717069
1 -1.85106382978722 0.0113603568149023
3 -1.80991735537191 -0.00368678809222473
2 -1.77533039647577 0.00887763055339049
1 -1.7659574468085 0.0113603568149023
3 -1.72727272727272 -0.00896935013481539
2 -1.68722466960352 0.0188386593920499
1 -1.68085106382978 -0.00650662468844287
3 -1.64462809917356 -0.00544764210642161
2 -1.59911894273128 0.0121979734996103
1 -1.59574468085106 0.0143381870654598
3 -1.56198347107437 -0.0265778902767842
2 -1.51101321585904 0.0254793452844895
1 -1.51063829787233 -0.000550964187327821
3 -1.47933884297521 -0.00544764210642161
1 -1.42553191489361 0.00838252656434475
2 -1.42290748898679 0.0138581449727202
3 -1.39669421487602 -0.00896935013481539
1 -1.34042553191489 0.00540469631378723
2 -1.33480176211452 0.0321200311769291
3 -1.31404958677686 0.0051174819787597
1 -1.25531914893617 0.0262495080676899
2 -1.24669603524228 0.0354403741231489
3 -1.23140495867767 0.00863919000715347
1 -1.17021276595744 0.00540469631378723
2 -1.15859030837004 0.0620031176929072
3 -1.14876033057851 0.0051174819787597
1 -1.08510638297872 -0.00650662468844287
2 -1.07048458149779 0.0885658612626656
3 -1.06611570247935 0.0192043140923348
1 -1 0.0202938475665748
3 -0.983471074380162 0.0262477301491223
2 -0.982378854625551 0.138371005455963
1 -0.914893617021278 0.00540469631378723
3 -0.900826446281002 0.0332911462059099
2 -0.894273127753308 0.206438035853468
1 -0.829787234042556 0.0590056408238226
3 -0.818181818181813 0.0755516425466351
2 -0.806167400881066 0.311028838659392
1 -0.744680851063833 0.0738947920766103
3 -0.735537190082653 0.11252957684477
2 -0.718061674008823 0.423920498830865
1 -0.659574468085111 0.106650924832743
3 -0.652892561983464 0.163594343256479
2 -0.629955947136551 0.560054559625877
1 -0.574468085106389 0.231719795356159
3 -0.570247933884303 0.218180817696583
2 -0.541850220264308 0.709469992205768
1 -0.489361702127667 0.344877344877345
3 -0.487603305785115 0.290375832278655
2 -0.453744493392065 0.858885424785659
3 -0.404958677685954 0.337918890661971
1 -0.404255319148945 0.499724517906336
2 -0.365638766519822 0.956835541699143
3 -0.322314049586765 0.415396467286634
1 -0.319148936170222 0.693283484192575
2 -0.277533039647579 1
3 -0.239669421487605 0.436526715456997
1 -0.2340425531915 0.827285845467664
2 -0.189427312775337 0.99501948558067
3 -0.157024793388416 0.415396467286634
1 -0.148936170212778 0.961288206742752
2 -0.101321585903094 0.945214341387373
3 -0.0743801652892557 0.410113905244043
1 -0.0638297872340559 1
2 -0.0132158590308222 0.815720966484801
3 0.00826446280990467 0.348484014747152
1 0.0212765957446663 0.925554243736062
2 0.0748898678414207 0.682907248636009
3 0.0909090909090935 0.311506080449018
1 0.106382978723417 0.812396694214876
2 0.162995594713664 0.543452844894778
3 0.173553719008254 0.251637043966324
1 0.191489361702139 0.669460842188115
2 0.251101321585907 0.390717069368667
3 0.256198347107443 0.198811423540417
1 0.276595744680861 0.541414141414141
3 0.338842975206603 0.11781213888736
2 0.33920704845815 0.294427123928293
1 0.361702127659584 0.377633477633478
3 0.421487603305792 0.105486160787982
2 0.427312775330392 0.18817614964926
1 0.446808510638306 0.246608946608947
3 0.504132231404952 0.0896384746602102
2 0.515418502202635 0.126749805144193
1 0.531914893617028 0.184074511347239
3 0.586776859504141 0.0403345622626974
2 0.603524229074878 0.0885658612626656
1 0.61702127659575 0.130473566837203
3 0.669421487603302 0.0297694381775161
2 0.691629955947121 0.0703039750584567
1 0.702127659574472 0.0738947920766103
3 0.75206611570249 0.0385737082485005
2 0.779735682819393 0.0304598597038192
1 0.787234042553195 0.0351829988193625
3 0.834710743801651 0.0227260221207286
2 0.867841409691636 0.0304598597038192
1 0.872340425531917 0.0500721500721501
3 0.91735537190084 0.0350520002201068
2 0.955947136563879 0.0221590023382697
1 0.957446808510639 0.0619834710743802
3 1 0.0104000440213504
1 1.04255319148936 0.0113603568149023
2 1.04405286343612 0.0321200311769291
3 1.08264462809916 0.0227260221207286
1 1.12765957446808 0.0113603568149023
2 1.13215859030836 0.0271395167575994
3 1.16528925619835 0.0227260221207286
1 1.21276595744681 0.0232716778171324
2 1.22026431718061 0.0221590023382697
3 1.24793388429751 0.0121608980355472
1 1.29787234042553 0.0024268660632297
2 1.30837004405288 0.0121979734996103
3 1.3305785123967 0.0139217520497441
1 1.38297872340425 0.0232716778171324
2 1.39647577092512 -0.0027435697583788
3 1.41322314049586 0.00863919000715347
1 1.46808510638297 0.0262495080676899
2 1.48458149779736 0.00555728760717069
3 1.49586776859505 0.0051174819787597
1 1.55319148936169 0.0262495080676899
2 1.57268722466961 0.0188386593920499
3 1.57851239669421 -0.0072084961206185
1 1.63829787234042 0.00838252656434475
2 1.66079295154185 0.0155183164458301
3 1.6611570247934 -0.00192593407802784
1 1.72340425531914 0.00540469631378723
3 1.74380165289256 0.00863919000715347
2 1.74889867841409 0.0121979734996103
1 1.80851063829786 -0.00948445493900039
3 1.82644628099175 -0.000165080063830958
2 1.83700440528634 0.0271395167575994
1 1.89361702127658 0.0232716778171324
3 1.90909090909091 0.0051174819787597
2 1.92511013215858 0.00887763055339049
1 1.97872340425533 -0.000550964187327821
3 1.9917355371901 -0.0265778902767842
2 2.01321585903082 0.0105378020265004
1 2.06382978723406 0.0351829988193625
3 2.07438016528926 -0.014251912177406
2 2.10132158590309 -0.0027435697583788
1 2.14893617021278 0.0143381870654598
3 2.15702479338842 -0.0283387442909811
2 2.18942731277534 0.00721745908028059
1 2.2340425531915 0.0173160173160173
3 2.2396694214876 -0.014251912177406
2 2.27753303964758 -0.0010833982852689
1 2.31914893617022 0.0262495080676899
3 2.32231404958677 -0.0248170362625874
2 2.36563876651982 0.00555728760717069
1 2.40425531914894 0.03816082906992
3 2.40495867768595 -0.014251912177406
2 2.45374449339207 -0.0044037412314887
3 2.48760330578511 -0.0582732625323282
1 2.48936170212767 0.0351829988193625
2 2.54185022026431 0.0138581449727202
3 2.5702479338843 -0.00896935013481539
1 2.57446808510639 0.0232716778171324
2 2.62995594713655 -0.0127045985970382
3 2.65289256198346 -0.0160127661916029
1 2.65957446808511 -0.000550964187327821
2 2.71806167400882 0.00389711613406079
3 2.73553719008265 -0.0230561822483905
1 2.74468085106383 0.0202938475665748
2 2.80616740088107 -0.0027435697583788
3 2.81818181818181 -0.0318604523193749
1 2.82978723404256 0.0202938475665748
2 2.89427312775331 0.0155183164458301
3 2.900826446281 -0.00368678809222473
1 2.91489361702128 0.0232716778171324
2 2.98237885462555 0.01717848791894
3 2.98347107438016 -0.00544764210642161
1 3 0.0173160173160173
3 3.06611570247935 -0.0072084961206185
2 3.07048458149779 0.0022369446609509
1 3.08510638297872 0.0232716778171324
3 3.14876033057851 -0.00896935013481539
2 3.15859030837004 -0.0093842556508184
1 3.17021276595744 0.0232716778171324
3 3.23140495867767 -0.00368678809222473
2 3.24669603524228 0.0105378020265004
1 3.25531914893617 0.00540469631378723
3 3.3 0.00335662796456281
2 3.3 0.00555728760717069
1 3.3 -0.00650662468844287
3 3.3 -0.00192593407802784
2 3.3 -0.0027435697583788
1 3.3 0.0351829988193625
3 3.3 0.0051174819787597
group x y
1 -3.3 0.0463109588598391
2 -3.3 0.0367750799391292
3 -3.3 0.0280357570089393
1 -3.3 0.016966680670911
2 -3.3 0.034150488876293
3 -3.3 0.0548317637079409
1 -3.3 0.0829913065959991
2 -3.3 0.0367750799391292
3 -3.29834254143647 0.0280357570089393
1 -3.23999999999999 0.0426429240862231
2 -3.22988505747126 0.0354627844077111
3 -3.22099447513813 0.0475237618809405
1 -3.16 0.0353068545389911
2 -3.14942528735632 0.0407119665333834
3 -3.14364640883979 0.0329077582269396
1 -3.08 0.0756552370487671
2 -3.06896551724138 0.034150488876293
3 -3.06629834254143 0.0499597624899406
1 -3 0.0353068545389911
3 -2.98895027624309 0.0475237618809405
2 -2.98850574712644 0.0380873754705473
1 -2.92 0.0353068545389911
3 -2.91160220994475 0.0353437588359397
2 -2.9080459770115 0.0433365575962196
1 -2.84 0.0573150631806871
3 -2.8342541436464 0.0499597624899406
2 -2.82758620689656 0.0472734441904738
1 -2.76000000000001 0.0573150631806871
3 -2.75690607734806 0.0475237618809405
2 -2.74712643678161 0.034150488876293
1 -2.68000000000001 0.024302750218143
3 -2.67955801104972 0.0572677643169411
2 -2.66666666666667 0.0354627844077111
3 -2.60220994475138 0.0377797594449399
1 -2.59999999999999 0.0426429240862231
2 -2.58620689655173 0.0407119665333834
3 -2.52486187845304 0.0548317637079409
1 -2.52 0.0426429240862231
2 -2.50574712643679 0.0354627844077111
3 -2.4475138121547 0.0743197685799421
1 -2.44 0.0389748893126071
2 -2.42528735632185 0.0433365575962196
3 -2.37016574585635 0.0377797594449399
1 -2.36 0.0536470284070711
2 -2.34482758620689 0.0420242620648015
3 -2.29281767955801 0.0597037649259412
1 -2.28 0.0609830979543031
2 -2.26436781609195 0.0433365575962196
3 -2.21546961325967 0.0645757661439415
1 -2.2 0.0683191675015351
2 -2.18390804597701 0.0420242620648015
3 -2.13812154696133 0.0597037649259412
1 -2.12 0.0536470284070711
2 -2.10344827586206 0.0433365575962196
3 -2.06077348066299 0.0572677643169411
1 -2.04000000000001 0.0353068545389911
2 -2.02298850574712 0.0380873754705473
3 -1.98342541436465 0.0329077582269396
1 -1.95999999999999 0.0353068545389911
2 -1.94252873563218 0.0367750799391292
3 -1.9060773480663 0.0645757661439415
1 -1.88 0.0463109588598391
2 -1.86206896551724 0.0380873754705473
3 -1.82872928176795 0.0694477673619418
1 -1.8 0.0536470284070711
2 -1.7816091954023 0.0446488531276377
3 -1.75138121546961 0.04021576005394
1 -1.72 0.0426429240862231
2 -1.70114942528735 0.0393996710019654
3 -1.67403314917127 0.0426517606629402
1 -1.64 0.0573150631806871
2 -1.62068965517241 0.034150488876293
3 -1.59668508287292 0.0353437588359397
1 -1.56 0.0536470284070711
2 -1.54022988505747 0.0380873754705473
3 -1.51933701657458 0.0645757661439415
1 -1.48 0.027970784991759
2 -1.45977011494253 0.0433365575962196
3 -1.44198895027624 0.04021576005394
1 -1.40000000000001 0.0536470284070711
2 -1.37931034482759 0.0367750799391292
3 -1.3646408839779 0.0353437588359397
1 -1.31999999999999 0.0719872022751511
2 -1.29885057471265 0.032838193344875
3 -1.28729281767956 0.04021576005394
1 -1.23999999999999 0.0463109588598391
2 -1.2183908045977 0.0393996710019654
3 -1.20994475138122 0.0499597624899406
1 -1.16 0.0389748893126071
2 -1.13793103448276 0.0459611486590558
3 -1.13259668508287 0.0621397655349414
1 -1.08 0.0499789936334551
2 -1.05747126436782 0.0407119665333834
3 -1.05524861878453 0.04021576005394
1 -1 0.0646511327279191
3 -0.97790055248619 0.0597037649259412
2 -0.977011494252878 0.0407119665333834
1 -0.920000000000002 0.0646511327279191
3 -0.900552486187848 0.04021576005394
2 -0.896551724137936 0.0525226263161462
1 -0.840000000000003 0.0719872022751511
3 -0.823204419889507 0.0353437588359397
2 -0.816091954022994 0.04989803525331
1 -0.760000000000005 0.0756552370487671
3 -0.745856353591165 0.0621397655349414
2 -0.735632183908052 0.04989803525331
1 -0.680000000000007 0.0829913065959991
3 -0.668508287292823 0.0523957630989408
2 -0.65517241379311 0.065645581630327
1 -0.599999999999994 0.116003619558543
3 -0.591160220994482 0.105987776496944
2 -0.574712643678168 0.107639038635706
1 -0.519999999999996 0.152683967294703
3 -0.513812154696126 0.147399786849947
2 -0.494252873563212 0.149632495641084
1 -0.439999999999998 0.244384836635103
3 -0.436464088397784 0.218043804510951
2 -0.41379310344827 0.216559567743406
1 -0.359999999999999 0.281065184371263
3 -0.359116022099442 0.322791830697958
2 -0.333333333333329 0.300546481754163
3 -0.281767955801101 0.464079866019967
1 -0.280000000000001 0.413114436221439
2 -0.252873563218387 0.37797191810783
3 -0.204419889502759 0.590751897687974
1 -0.200000000000003 0.486475131693759
2 -0.172413793103445 0.463271127650005
3 -0.127071823204417 0.688191922047981
1 -0.120000000000005 0.545163688071616
2 -0.091954022988503 0.503952289123966
3 -0.0497237569060758 0.763707940926985
1 -0.0400000000000063 0.526823514203536
2 -0.0114942528735611 0.506576880186802
3 0.0276243093922659 0.771015942753986
1 0.0400000000000063 0.534159583750768
2 0.0689655172413808 0.454085058930079
3 0.104972375690608 0.714987928746982
1 0.120000000000005 0.453462818731215
2 0.149425287356323 0.401593237673356
3 0.182320441988949 0.595623898905975
1 0.200000000000003 0.350757845069967
2 0.229885057471265 0.304483368348418
3 0.259668508287291 0.483567870891968
1 0.280000000000001 0.303073393012959
2 0.310344827586206 0.245430069434604
3 0.337016574585633 0.383691845922962
1 0.359999999999999 0.204036454125327
2 0.390804597701148 0.170629224143773
3 0.414364640883974 0.269199817299954
1 0.439999999999998 0.152683967294703
2 0.47126436781609 0.126011176075559
3 0.491712707182316 0.186375796593949
1 0.519999999999996 0.116003619558543
2 0.551724137931032 0.0853300146015982
3 0.569060773480658 0.137655784413946
1 0.599999999999994 0.108667550011311
2 0.632183908045974 0.0643332860989089
3 0.646408839778999 0.0889357722339431
1 0.680000000000007 0.0756552370487671
2 0.712643678160916 0.0617086950360727
3 0.723756906077341 0.103551775887944
1 0.760000000000005 0.0683191675015351
2 0.793103448275858 0.0525226263161462
3 0.801104972375697 0.0791917697979424
1 0.840000000000003 0.0646511327279191
2 0.8735632183908 0.0420242620648015
3 0.878453038674039 0.0816277704069426
1 0.920000000000002 0.0829913065959991
2 0.954022988505741 0.0407119665333834
3 0.95580110497238 0.0767557691889423
1 1 0.0683191675015351
3 1.03314917127072 0.0694477673619418
2 1.03448275862068 0.0446488531276377
1 1.08 0.0683191675015351
3 1.11049723756906 0.0670117667529417
2 1.11494252873564 0.034150488876293
1 1.16 0.0756552370487671
3 1.18784530386741 0.071883767970942
2 1.19540229885058 0.0393996710019654
1 1.23999999999999 0.0573150631806871
3 1.26519337016575 0.0475237618809405
2 1.27586206896552 0.034150488876293
1 1.31999999999999 0.0646511327279191
3 1.34254143646409 0.0621397655349414
2 1.35632183908046 0.0236521246249484
1 1.40000000000001 0.0426429240862231
3 1.41988950276243 0.0572677643169411
2 1.43678160919541 0.034150488876293
1 1.48 0.0389748893126071
3 1.49723756906077 0.0645757661439415
2 1.51724137931035 0.0407119665333834
1 1.56 0.0793232718223831
3 1.57458563535911 0.0377797594449399
2 1.59770114942529 0.0315258978134569
1 1.64 0.0426429240862231
3 1.65193370165746 0.0475237618809405
2 1.67816091954023 0.0262767156877846
1 1.72 0.0499789936334551
3 1.7292817679558 0.0329077582269396
2 1.75862068965517 0.0262767156877846
1 1.8 0.0353068545389911
3 1.80662983425414 0.0182917545729386
2 1.83908045977012 0.0249644201563665
1 1.88 0.0536470284070711
3 1.88397790055248 0.04021576005394
2 1.91954022988506 0.0275890112192026
1 1.95999999999999 0.0573150631806871
3 1.96132596685084 0.0158557539639385
2 2 0.034150488876293
3 2.03867403314918 0.04021576005394
1 2.04000000000001 0.0536470284070711
2 2.08045977011494 0.0236521246249484
3 2.11602209944752 0.0475237618809405
1 2.12 0.0316388197653751
2 2.16091954022988 0.0289013067506207
3 2.19337016574586 0.04021576005394
1 2.2 0.0389748893126071
2 2.24137931034483 0.0367750799391292
3 2.2707182320442 0.0426517606629402
1 2.28 0.0353068545389911
2 2.32183908045977 0.0393996710019654
3 2.34806629834254 0.0523957630989408
1 2.36 0.024302750218143
2 2.40229885057471 0.0262767156877846
3 2.42541436464089 0.0426517606629402
1 2.44 0.027970784991759
2 2.48275862068965 0.0380873754705473
3 2.50276243093923 0.0109837527459382
1 2.52 0.0463109588598391
2 2.56321839080459 0.032838193344875
3 2.58011049723757 0.0377797594449399
1 2.59999999999999 0.0683191675015351
2 2.64367816091954 0.0262767156877846
3 2.65745856353591 0.0329077582269396
1 2.68000000000001 0.0463109588598391
2 2.72413793103448 0.0236521246249484
3 2.73480662983425 0.0329077582269396
1 2.76000000000001 0.0426429240862231
2 2.80459770114942 0.034150488876293
3 2.81215469613259 0.04021576005394
1 2.84 0.0683191675015351
2 2.88505747126436 0.0262767156877846
3 2.88950276243094 0.0329077582269396
1 2.92 0.0573150631806871
2 2.96551724137932 0.0315258978134569
3 2.96685082872928 0.0182917545729386
1 3 0.0536470284070711
3 3.04419889502762 0.0255997563999391
2 3.04597701149424 0.0315258978134569
1 3.08 0.0683191675015351
3 3.12154696132596 0.0280357570089393
2 3.1264367816092 0.0315258978134569
1 3.16 0.0573150631806871
3 3.1988950276243 0.0255997563999391
2 3.20689655172414 0.032838193344875
1 3.23999999999999 0.0609830979543031
3 3.27624309392266 0.0377797594449399
2 3.28735632183908 0.034150488876293
1 3.3 0.0536470284070711
3 3.3 0.0280357570089393
2 3.3 0.0275890112192026
1 3.3 0.0536470284070711
3 3.3 0.0304717576179394
2 3.3 0.0367750799391292
1 3.3 0.0389748893126071
group x y
3 -2.46280991735537 0.0329077582269396
1 -2.45378151260505 0.027970784991759
2 -2.43478260869566 0.00921687377934952
3 -2.38016528925621 0.0377797594449399
1 -2.36974789915968 0.024302750218143
2 -2.34782608695653 0.00790457824793144
3 -2.29752066115702 0.0158557539639385
1 -2.28571428571428 0.013298645897295
2 -2.26086956521738 0.0118414648421857
3 -2.21487603305786 0.0231637557909389
1 -2.20168067226891 0.013298645897295
2 -2.17391304347825 0.00527998718509528
3 -2.13223140495867 0.00854775213693803
1 -2.11764705882354 0.00963061112367903
2 -2.08695652173913 0.00790457824793144
3 -2.04958677685951 0.0255997563999391
1 -2.03361344537814 0.027970784991759
2 -2 0.00921687377934952
3 -1.96694214876032 0.00367575091893773
1 -1.94957983193279 0.0389748893126071
2 -1.91304347826087 0.00527998718509528
3 -1.88429752066116 0.00123975030993758
1 -1.8655462184874 0.024302750218143
2 -1.82608695652175 0.0157783514364399
3 -1.801652892562 0.00367575091893773
1 -1.781512605042 0.0389748893126071
2 -1.73913043478262 0.00659228271651336
3 -1.71900826446279 -0.00850425212606303
1 -1.69747899159665 0.016966680670911
2 -1.6521739130435 0.00921687377934952
3 -1.63636363636363 0.0329077582269396
1 -1.61344537815125 0.0389748893126071
2 -1.56521739130437 0.00527998718509528
3 -1.55371900826447 0.00854775213693803
1 -1.52941176470586 0.016966680670911
2 -1.47826086956519 0.00790457824793144
3 -1.47107438016531 0.00367575091893773
1 -1.44537815126051 0.0316388197653751
2 -1.39130434782606 0.0105291693107676
3 -1.38842975206609 0.04021576005394
1 -1.36134453781511 0.016966680670911
3 -1.30578512396693 0.00367575091893773
2 -1.30434782608694 0.00659228271651336
1 -1.27731092436977 0.027970784991759
3 -1.22314049586777 0.00611175152793788
2 -1.21739130434781 3.08050594229551e-05
1 -1.19327731092437 0.00963061112367903
3 -1.14049586776861 0.0207277551819388
2 -1.13043478260869 0.0144660559050218
1 -1.10924369747897 0.0499789936334551
3 -1.05785123966945 0.0304717576179394
2 -1.04347826086956 0.00790457824793144
1 -1.02521008403363 0.0353068545389911
3 -0.975206611570229 0.0670117667529417
2 -0.956521739130437 0.00265539612225912
1 -0.941176470588232 0.0536470284070711
3 -0.892561983471069 0.0548317637079409
2 -0.869565217391312 0.00921687377934952
1 -0.857142857142833 0.0499789936334551
3 -0.809917355371908 0.108423777105944
2 -0.782608695652186 0.0131537603736038
1 -0.77310924369749 0.116003619558543
3 -0.727272727272748 0.162015790503948
2 -0.695652173913061 0.0210275335621122
1 -0.689075630252091 0.138011828200239
3 -0.644628099173531 0.191247797811949
2 -0.608695652173935 0.0105291693107676
1 -0.605042016806749 0.141679862973855
3 -0.56198347107437 0.237531809382952
2 -0.52173913043481 0.0131537603736038
1 -0.52100840336135 0.152683967294703
3 -0.47933884297521 0.274071818517955
1 -0.436974789915951 0.215040558446175
2 -0.434782608695627 0.0039676916536772
3 -0.39669421487605 0.317919829479957
1 -0.352941176470608 0.167356106389167
2 -0.347826086956502 0.00790457824793144
3 -0.314049586776832 0.310611827652957
1 -0.268907563025209 0.178360210710015
2 -0.260869565217376 0.0184029424992761
3 -0.231404958677672 0.303303825825956
1 -0.18487394957981 0.167356106389167
2 -0.173913043478251 0.0184029424992761
3 -0.148760330578511 0.308175827043957
1 -0.100840336134468 0.134343793426623
2 -0.0869565217391255 0.00265539612225912
3 -0.0661157024793511 0.252147813036953
1 -0.0168067226890685 0.123339689105775
2 0 0.00921687377934952
3 0.0165289256198093 0.191247797811949
1 0.0672268907562739 0.0939954109168471
2 0.0869565217391255 0.00134310059084104
3 0.0991735537190266 0.174195793548948
1 0.151260504201673 0.0646511327279191
2 0.173913043478251 3.08050594229551e-05
3 0.181818181818187 0.113295778323945
1 0.235294117647072 0.0719872022751511
2 0.260869565217376 0.00265539612225912
3 0.264462809917347 0.110859777714944
1 0.319327731092415 0.0316388197653751
3 0.347107438016508 0.071883767970942
2 0.347826086956502 0.00921687377934952
1 0.403361344537814 0.0426429240862231
3 0.429752066115725 0.0597037649259412
2 0.434782608695627 3.08050594229551e-05
1 0.487394957983213 0.0353068545389911
3 0.512396694214885 0.0572677643169411
2 0.521739130434753 0.0105291693107676
1 0.571428571428555 0.013298645897295
3 0.595041322314046 0.0255997563999391
2 0.608695652173935 0.00659228271651336
1 0.655462184873954 0.013298645897295
3 0.677685950413206 0.0353437588359397
2 0.695652173913061 0.00659228271651336
1 0.739495798319354 0.0463109588598391
3 0.760330578512423 0.0207277551819388
2 0.782608695652186 3.08050594229551e-05
1 0.823529411764696 0.020634715444527
3 0.842975206611584 0.0207277551819388
2 0.869565217391312 0.00659228271651336
1 0.907563025210095 0.00963061112367903
3 0.925619834710744 0.0329077582269396
2 0.956521739130437 0.0118414648421857
1 0.991596638655437 0.0316388197653751
3 1.0082644628099 0.0280357570089393
2 1.04347826086956 0.00134310059084104
1 1.07563025210084 0.00596257635006303
3 1.09090909090907 -0.00363225090806273
2 1.13043478260869 0.00527998718509528
1 1.15966386554624 0.016966680670911
3 1.17355371900828 0.0280357570089393
2 1.21739130434781 0.0210275335621122
1 1.24369747899158 -0.023381701838865
3 1.25619834710744 0.00854775213693803
2 1.30434782608694 0.00659228271651336
1 1.32773109243698 0.020634715444527
3 1.3388429752066 0.0158557539639385
2 1.39130434782606 0.00659228271651336
1 1.41176470588238 0.00229454157644702
3 1.42148760330576 0.0158557539639385
2 1.47826086956519 0.0118414648421857
1 1.49579831932772 0.013298645897295
3 1.50413223140498 0.00854775213693803
2 1.56521739130437 0.0039676916536772
1 1.57983193277312 -0.00137349319716898
3 1.58677685950414 0.00123975030993758
2 1.6521739130435 0.00265539612225912
1 1.66386554621846 0.0463109588598391
3 1.6694214876033 -0.00850425212606303
2 1.73913043478262 -0.00128149047199512
1 1.74789915966386 0.00596257635006303
3 1.75206611570246 -0.00850425212606303
2 1.82608695652175 0.00265539612225912
1 1.83193277310926 0.0316388197653751
3 1.83471074380168 0.00854775213693803
2 1.91304347826087 0.0039676916536772
1 1.9159663865546 0.00596257635006303
3 1.91735537190084 -0.0255562563890641
1 2 -0.023381701838865
2 2 -0.00521837706624937
3 2 -0.0328642582160646
3 2.08438818565401 -0.00119625029906258
1 2.08583690987126 0.016966680670911
2 2.08968609865468 -0.00259378600341321
3 2.16877637130801 0.00123975030993758
1 2.17167381974247 0.016966680670911
2 2.17937219730942 0.0039676916536772
3 2.25316455696202 0.00854775213693803
1 2.25751072961373 -0.016045632291633
2 2.2690582959641 0.00134310059084104
3 2.33755274261603 0.0207277551819388
1 2.34334763948499 -0.00504152797078499
2 2.35874439461884 0.0197152380306942
3 2.42194092827003 0.00367575091893773
1 2.42918454935625 0.00596257635006303
2 2.44843049327352 0.00659228271651336
group x y
3 -3.3 0.0109837527459382
1 -3.3 0.0463109588598391
2 -3.3 0.032838193344875
3 -3.3 0.0377797594449399
1 -3.3 0.0683191675015351
2 -3.3 0.0262767156877846
3 -3.3 0.0329077582269396
1 -3.3 0.0463109588598391
2 -3.27586206896552 0.0236521246249484
3 -3.26519337016575 0.0329077582269396
1 -3.23999999999999 0.0426429240862231
2 -3.19540229885058 0.034150488876293
3 -3.18784530386741 0.04021576005394
1 -3.16 0.0683191675015351
2 -3.11494252873564 0.0262767156877846
3 -3.11049723756906 0.0329077582269396
1 -3.08 0.0573150631806871
2 -3.03448275862068 0.0315258978134569
3 -3.03314917127072 0.0182917545729386
1 -3 0.0536470284070711
3 -2.95580110497238 0.0255997563999391
2 -2.95402298850576 0.0315258978134569
1 -2.92 0.0683191675015351
3 -2.87845303867404 0.0280357570089393
2 -2.8735632183908 0.0315258978134569
1 -2.84 0.0573150631806871
3 -2.8011049723757 0.0255997563999391
2 -2.79310344827586 0.032838193344875
1 -2.76000000000001 0.0609830979543031
3 -2.72375690607734 0.0377797594449399
2 -2.71264367816092 0.034150488876293
1 -2.68000000000001 0.0536470284070711
3 -2.646408839779 0.0280357570089393
2 -2.63218390804597 0.0275890112192026
1 -2.59999999999999 0.0536470284070711
3 -2.56906077348066 0.0304717576179394
2 -2.55172413793103 0.0367750799391292
1 -2.52 0.0389748893126071
3 -2.49171270718232 0.0329077582269396
2 -2.47126436781609 0.034150488876293
1 -2.44 0.0683191675015351
3 -2.41436464088397 0.0304717576179394
2 -2.39080459770115 0.0367750799391292
1 -2.36 0.0536470284070711
3 -2.33701657458563 0.0353437588359397
2 -2.31034482758621 0.0354627844077111
1 -2.28 0.0389748893126071
3 -2.25966850828729 0.0572677643169411
2 -2.22988505747126 0.0354627844077111
1 -2.2 0.027970784991759
3 -2.18232044198895 0.0353437588359397
2 -2.14942528735632 0.034150488876293
1 -2.12 0.0573150631806871
3 -2.10497237569061 0.0597037649259412
2 -2.06896551724138 0.0393996710019654
1 -2.03999999999999 0.0573150631806871
3 -2.02762430939227 0.0182917545729386
2 -1.98850574712644 0.032838193344875
1 -1.96000000000001 0.0646511327279191
3 -1.95027624309392 0.0353437588359397
2 -1.9080459770115 0.0380873754705473
1 -1.88 0.0609830979543031
3 -1.87292817679558 0.0182917545729386
2 -1.82758620689656 0.034150488876293
1 -1.8 0.0683191675015351
3 -1.79558011049724 0.0255997563999391
2 -1.74712643678161 0.0393996710019654
1 -1.72 0.0573150631806871
3 -1.7182320441989 0.0329077582269396
2 -1.66666666666667 0.0420242620648015
3 -1.64088397790056 0.0572677643169411
1 -1.64 0.0463109588598391
2 -1.58620689655173 0.0446488531276377
3 -1.5635359116022 0.0329077582269396
1 -1.56 0.0463109588598391
2 -1.50574712643679 0.034150488876293
3 -1.48618784530387 0.0767557691889423
1 -1.48 0.0756552370487671
2 -1.42528735632183 0.0420242620648015
3 -1.40883977900552 0.0426517606629402
1 -1.40000000000001 0.0389748893126071
2 -1.34482758620689 0.0367750799391292
3 -1.33149171270718 0.0548317637079409
1 -1.31999999999999 0.0499789936334551
2 -1.26436781609195 0.0354627844077111
3 -1.25414364640883 0.0426517606629402
1 -1.23999999999999 0.0536470284070711
2 -1.18390804597701 0.0289013067506207
3 -1.17679558011049 0.0548317637079409
1 -1.16 0.0536470284070711
2 -1.10344827586206 0.0367750799391292
3 -1.09944751381215 0.0475237618809405
1 -1.08 0.0499789936334551
2 -1.02298850574712 0.0302136022820388
3 -1.02209944751381 0.0523957630989408
1 -1 0.0389748893126071
3 -0.944751381215468 0.0767557691889423
2 -0.94252873563218 0.0446488531276377
1 -0.920000000000002 0.0463109588598391
3 -0.867403314917127 0.0670117667529417
2 -0.862068965517238 0.0393996710019654
1 -0.840000000000003 0.0646511327279191
3 -0.790055248618785 0.0597037649259412
2 -0.781609195402297 0.0459611486590558
1 -0.760000000000005 0.0609830979543031
3 -0.712707182320443 0.0962437740609435
2 -0.701149425287355 0.0564595129104004
1 -0.680000000000007 0.0903273761432311
3 -0.635359116022101 0.105987776496944
2 -0.620689655172413 0.0617086950360727
1 -0.599999999999994 0.0976634456904631
3 -0.55801104972376 0.20342780085695
2 -0.540229885057471 0.0708947637559993
1 -0.519999999999996 0.134343793426623
3 -0.480662983425418 0.313047828261957
2 -0.459770114942529 0.0892669011958524
1 -0.439999999999998 0.152683967294703
3 -0.403314917127076 0.432411858102965
2 -0.379310344827587 0.0905791967272705
1 -0.359999999999999 0.222376627993407
3 -0.325966850828735 0.595623898905975
2 -0.298850574712645 0.112888220761378
1 -0.280000000000001 0.292069288692111
3 -0.248618784530379 0.734475933618983
2 -0.218390804597703 0.126011176075559
1 -0.200000000000003 0.299405358239343
3 -0.171270718232051 0.83922395980599
2 -0.137931034482762 0.136509540326903
1 -0.120000000000005 0.325081601654655
3 -0.0939226519336955 0.880635970158993
2 -0.0574712643678197 0.136509540326903
1 -0.0400000000000063 0.273729114824031
3 -0.0165745856353539 0.83922395980599
2 0.0229885057471222 0.120761993949886
1 0.0400000000000063 0.200368419351711
3 0.0607734806629878 0.792939948234987
2 0.103448275862064 0.0971406743843609
1 0.120000000000005 0.163688071615551
3 0.138121546961329 0.629727907431977
2 0.183908045977006 0.0774562414130897
1 0.200000000000003 0.160020036841935
3 0.215469613259671 0.481131870282968
2 0.264367816091948 0.0617086950360727
1 0.280000000000001 0.116003619558543
3 0.292817679558013 0.35202383800596
2 0.34482758620689 0.0551472173789823
1 0.359999999999999 0.0793232718223831
3 0.370165745856355 0.247275811818953
2 0.425287356321832 0.0512103307847281
1 0.439999999999998 0.0976634456904631
3 0.447513812154696 0.20099180024795
2 0.505747126436788 0.032838193344875
1 0.519999999999996 0.0499789936334551
3 0.524861878453038 0.154707788676947
2 0.58620689655173 0.0367750799391292
1 0.599999999999994 0.0646511327279191
3 0.60220994475138 0.101115775278944
2 0.666666666666671 0.0302136022820388
3 0.679558011049721 0.0962437740609435
1 0.680000000000007 0.0463109588598391
2 0.747126436781613 0.0367750799391292
3 0.756906077348063 0.0743197685799421
1 0.760000000000005 0.0536470284070711
2 0.827586206896555 0.032838193344875
3 0.834254143646405 0.0621397655349414
1 0.840000000000003 0.0536470284070711
2 0.908045977011497 0.0302136022820388
3 0.911602209944746 0.0840637710159428
1 0.920000000000002 0.0463109588598391
2 0.988505747126439 0.0275890112192026
3 0.988950276243088 0.0572677643169411
1 1 0.0756552370487671
3 1.06629834254144 0.0499597624899406
2 1.06896551724138 0.0380873754705473
1 1.08 0.0646511327279191
3 1.14364640883977 0.0670117667529417
2 1.14942528735632 0.0223398290935303
1 1.16 0.0499789936334551
3 1.22099447513813 0.0621397655349414
2 1.22988505747126 0.0236521246249484
1 1.23999999999999 0.0389748893126071
3 1.29834254143647 0.0329077582269396
2 1.31034482758621 0.034150488876293
1 1.31999999999999 0.0499789936334551
3 1.37569060773481 0.0377797594449399
2 1.39080459770115 0.0223398290935303
1 1.40000000000001 0.0316388197653751
3 1.45303867403315 0.0572677643169411
2 1.47126436781609 0.0236521246249484
1 1.48 0.0536470284070711
3 1.53038674033149 0.04021576005394
2 1.55172413793103 0.0289013067506207
1 1.56 0.0389748893126071
3 1.60773480662984 0.0450877612719403
2 1.63218390804597 0.0210275335621122
1 1.64 0.0573150631806871
3 1.68508287292818 0.0572677643169411
2 1.71264367816092 0.0223398290935303
1 1.72 0.0499789936334551
3 1.76243093922652 0.0645757661439415
2 1.79310344827586 0.0302136022820388
1 1.8 0.0573150631806871
3 1.83977900552486 0.04021576005394
2 1.8735632183908 0.0197152380306942
1 1.88 0.0609830979543031
3 1.9171270718232 0.0231637557909389
2 1.95402298850576 0.0197152380306942
1 1.96000000000001 0.0389748893126071
3 1.99447513812154 0.0207277551819388
2 2.03448275862068 0.017090646967858
1 2.03999999999999 0.0573150631806871
3 2.07182320441989 0.0280357570089393
2 2.11494252873564 0.0210275335621122
1 2.12 0.020634715444527
3 2.14917127071823 0.0329077582269396
2 2.19540229885058 0.0184029424992761
1 2.2 0.0536470284070711
3 2.22651933701657 0.0377797594449399
2 2.27586206896552 0.0184029424992761
1 2.28 0.027970784991759
3 2.30386740331491 0.0158557539639385
2 2.35632183908046 0.0275890112192026
1 2.36 0.0426429240862231
3 2.38121546961327 0.0304717576179394
2 2.43678160919541 0.0184029424992761
1 2.44 0.0389748893126071
3 2.45856353591159 0.0572677643169411
2 2.51724137931035 0.0236521246249484
1 2.52 0.0353068545389911
3 2.53591160220995 0.0231637557909389
2 2.59770114942529 0.017090646967858
1 2.59999999999999 0.016966680670911
3 2.61325966850829 0.0280357570089393
2 2.67816091954023 0.0197152380306942
1 2.68000000000001 0.0463109588598391
3 2.69060773480663 0.00854775213693803
2 2.75862068965517 0.0157783514364399
1 2.76000000000001 0.0353068545389911
3 2.76795580110497 0.00367575091893773
2 2.83908045977012 0.0262767156877846
1 2.84 0.0316388197653751
3 2.84530386740332 0.0158557539639385
2 2.91954022988506 0.0157783514364399
1 2.92 0.013298645897295
3 2.92265193370166 0.0280357570089393
1 3 0.027970784991759
2 3 0.0223398290935303
3 3 0.0109837527459382
3 3.07407407407408 0.00367575091893773
1 3.07792207792208 0.0389748893126071
2 3.07894736842105 0.0144660559050218
3 3.14814814814815 0.0158557539639385
1 3.15584415584415 0.0463109588598391
2 3.15789473684211 0.0184029424992761
3 3.22222222222223 0.00367575091893773
1 3.23376623376623 0.0499789936334551
2 3.23684210526316 0.0118414648421857
3 3.29629629629629 0.0207277551819388
1 3.3 0.016966680670911
2 3.3 0.0302136022820388
3 3.3 0.0304717576179394
1 3.3 0.016966680670911
2 3.3 0.0210275335621122
3 3.3 0.0329077582269396
1 3.3 0.027970784991759
2 3.3 0.0210275335621122
group x y
2 -3.3 0.00555728760717069
3 -3.3 0.00159577395036593
1 -3.3 0.0232716778171324
2 -3.3 0.0022369446609509
3 -3.3 0.00335662796456281
1 -3.3 0.00540469631378723
3 -3.2905982905983 -0.00192593407802784
2 -3.2882882882883 0.00555728760717069
1 -3.27586206896552 -0.00650662468844287
3 -3.2051282051282 0.00159577395036593
2 -3.19819819819818 0.00389711613406079
1 -3.18965517241378 -0.000550964187327821
3 -3.11965811965811 0.00863919000715347
2 -3.1081081081081 0.0121979734996103
1 -3.10344827586206 0.0202938475665748
3 -3.03418803418805 -0.00544764210642161
2 -3.01801801801801 0.0022369446609509
1 -3.01724137931035 -0.00352879443788534
3 -2.94871794871796 0.0104000440213504
1 -2.93103448275863 -0.00352879443788534
2 -2.92792792792793 0.00887763055339049
3 -2.86324786324786 0.0139217520497441
1 -2.84482758620689 0.00838252656434475
2 -2.83783783783784 0.00389711613406079
3 -2.77777777777777 0.00687833599295658
1 -2.75862068965517 0.0113603568149023
2 -2.74774774774775 -0.0010833982852689
3 -2.69230769230768 0.00863919000715347
1 -2.67241379310346 0.00540469631378723
2 -2.65765765765767 0.0022369446609509
3 -2.60683760683762 -0.00368678809222473
1 -2.58620689655172 0.0113603568149023
2 -2.56756756756758 -0.0027435697583788
3 -2.52136752136752 -0.000165080063830958
1 -2.5 -0.00650662468844287
2 -2.47747747747746 0.0121979734996103
3 -2.43589743589743 0.0192043140923348
1 -2.41379310344828 -0.0213957759412305
2 -2.38738738738738 0.000576773187840996
3 -2.35042735042734 0.0104000440213504
1 -2.32758620689654 -0.00948445493900039
2 -2.29729729729729 0.0022369446609509
3 -2.26495726495727 0.00335662796456281
1 -2.24137931034483 -0.00352879443788534
2 -2.2072072072072 0.00389711613406079
3 -2.17948717948718 -0.0107302041490123
1 -2.15517241379311 0.0113603568149023
2 -2.11711711711712 -0.0044037412314887
3 -2.09401709401709 0.0051174819787597
1 -2.06896551724137 0.00540469631378723
2 -2.02702702702703 0.000576773187840996
3 -2.008547008547 -0.00192593407802784
1 -1.98275862068965 0.0024268660632297
2 -1.93693693693695 0.000576773187840996
3 -1.92307692307693 -0.00896935013481539
1 -1.89655172413794 -0.00650662468844287
2 -1.84684684684686 -0.0077240841777085
3 -1.83760683760684 0.00687833599295658
1 -1.81034482758622 -0.00650662468844287
2 -1.75675675675674 0.0155183164458301
3 -1.75213675213675 -0.000165080063830958
1 -1.72413793103448 -0.000550964187327821
2 -1.66666666666666 0.0155183164458301
3 -1.66666666666666 -0.0107302041490123
1 -1.63793103448276 -0.000550964187327821
3 -1.58119658119659 -0.0072084961206185
2 -1.57657657657657 -0.0010833982852689
1 -1.55172413793105 -0.000550964187327821
3 -1.4957264957265 -0.00192593407802784
2 -1.48648648648648 0.01717848791894
1 -1.4655172413793 0.0113603568149023
3 -1.41025641025641 -0.00192593407802784
2 -1.3963963963964 0.00555728760717069
1 -1.37931034482759 0.00540469631378723
3 -1.32478632478632 0.00159577395036593
2 -1.30630630630631 0.0022369446609509
1 -1.29310344827587 -0.0124622851895579
3 -1.23931623931625 -0.00192593407802784
2 -1.21621621621622 0.0022369446609509
1 -1.20689655172413 0.0024268660632297
3 -1.15384615384616 0.015682606063941
2 -1.12612612612614 0.0022369446609509
1 -1.12068965517241 -0.0124622851895579
3 -1.06837606837607 0.0139217520497441
2 -1.03603603603602 0.0155183164458301
1 -1.0344827586207 0.0024268660632297
3 -0.982905982905976 0.015682606063941
1 -0.948275862068954 0.00540469631378723
2 -0.945945945945937 0.0138581449727202
3 -0.897435897435912 0.0350520002201068
1 -0.862068965517238 0.0232716778171324
2 -0.85585585585585 0.00721745908028059
3 -0.81196581196582 0.0544213943762725
1 -0.775862068965523 0.0024268660632297
2 -0.765765765765764 0.0105378020265004
3 -0.726495726495727 0.0579431024046663
1 -0.689655172413779 0.0143381870654598
2 -0.675675675675677 0.00887763055339049
3 -0.641025641025635 0.0896384746602102
1 -0.603448275862064 0.0024268660632297
2 -0.585585585585591 0.0022369446609509
3 -0.555555555555543 0.119572992901557
1 -0.517241379310349 0.00540469631378723
2 -0.495495495495504 -0.0027435697583788
3 -0.470085470085479 0.142464095086117
1 -0.431034482758633 0.0113603568149023
2 -0.405405405405418 -0.0027435697583788
3 -0.384615384615387 0.195289715512023
1 -0.34482758620689 -0.0154401154401154
2 -0.315315315315303 0.00389711613406079
3 -0.299145299145295 0.230506795795961
1 -0.258620689655174 0.0202938475665748
2 -0.225225225225216 0.00555728760717069
3 -0.213675213675202 0.281571562207671
1 -0.172413793103459 0.00540469631378723
2 -0.13513513513513 -0.0044037412314887
3 -0.128205128205138 0.293897540307049
1 -0.0862068965517153 0.0173160173160173
2 -0.0450450450450433 0.00389711613406079
3 -0.0427350427350461 0.262202168051505
1 0 -0.0124622851895579
3 0.0427350427350461 0.279810708193474
2 0.0450450450450433 0.0155183164458301
1 0.0862068965517153 0.00838252656434475
3 0.128205128205138 0.241071919881142
2 0.13513513513513 0.0022369446609509
1 0.172413793103459 -0.0124622851895579
3 0.213675213675202 0.205854839597205
2 0.225225225225216 0.0204988308651598
1 0.258620689655174 -0.00352879443788534
3 0.299145299145295 0.160072635228086
2 0.315315315315303 0.01717848791894
1 0.34482758620689 0.00540469631378723
3 0.384615384615387 0.121333846915754
2 0.405405405405418 0.01717848791894
1 0.431034482758633 0.0113603568149023
3 0.470085470085479 0.0896384746602102
2 0.495495495495504 0.00887763055339049
1 0.517241379310349 -0.000550964187327821
3 0.555555555555543 0.0667473724756507
2 0.585585585585591 0.00555728760717069
1 0.603448275862064 0.0113603568149023
3 0.641025641025635 0.047377978319485
2 0.675675675675677 0.00887763055339049
1 0.689655172413779 -0.00650662468844287
3 0.726495726495727 0.0438562702910912
2 0.765765765765764 0.0022369446609509
1 0.775862068965523 0.00540469631378723
3 0.81196581196582 0.00687833599295658
2 0.85585585585585 0.0121979734996103
1 0.862068965517238 0.0113603568149023
3 0.897435897435912 -0.00368678809222473
2 0.945945945945937 0.00721745908028059
1 0.948275862068954 -0.00948445493900039
3 0.982905982905976 0.0192043140923348
1 1.0344827586207 0.00540469631378723
2 1.03603603603602 0.000576773187840996
3 1.06837606837607 -0.000165080063830958
1 1.12068965517241 -0.00948445493900039
2 1.12612612612614 -0.0044037412314887
3 1.15384615384616 0.0139217520497441
1 1.20689655172413 -0.000550964187327821
2 1.21621621621622 0.0105378020265004
3 1.23931623931625 -0.00368678809222473
1 1.29310344827587 -0.000550964187327821
2 1.30630630630631 -0.0027435697583788
3 1.32478632478632 0.0051174819787597
1 1.37931034482759 -0.00650662468844287
2 1.3963963963964 0.000576773187840996
3 1.41025641025641 0.00687833599295658
1 1.4655172413793 -0.018417945690673
2 1.48648648648648 0.00721745908028059
3 1.4957264957265 0.0051174819787597
1 1.55172413793105 0.00540469631378723
2 1.57657657657657 0.0022369446609509
3 1.58119658119659 0.0121608980355472
1 1.63793103448276 -0.00650662468844287
2 1.66666666666666 -0.0027435697583788
3 1.66666666666666 -0.00192593407802784
1 1.72413793103448 0.0143381870654598
3 1.75213675213675 0.00863919000715347
2 1.75675675675674 -0.0093842556508184
1 1.81034482758622 0.00540469631378723
3 1.83760683760684 0.0104000440213504
2 1.84684684684686 0.0105378020265004
1 1.89655172413794 0.00540469631378723
3 1.92307692307693 0.00687833599295658
2 1.93693693693695 0.00721745908028059
1 1.98275862068965 -0.00948445493900039
3 2.008547008547 0.0051174819787597
2 2.02702702702703 0.00887763055339049
1 2.06896551724137 -0.00352879443788534
3 2.09401709401709 0.00863919000715347
2 2.11711711711712 -0.0010833982852689
1 2.15517241379311 0.00540469631378723
3 2.17948717948718 -0.00368678809222473
2 2.2072072072072 0.000576773187840996
1 2.24137931034483 0.0143381870654598
3 2.26495726495727 0.00335662796456281
2 2.29729729729729 0.000576773187840996
1 2.32758620689654 -0.00352879443788534
3 2.35042735042734 -0.00544764210642161
2 2.38738738738738 0.00887763055339049
1 2.41379310344828 0.0024268660632297
3 2.43589743589743 0.00159577395036593
2 2.47747747747746 0.00887763055339049
1 2.5 0.00838252656434475
3 2.52136752136752 0.00687833599295658
2 2.56756756756758 0.00887763055339049
1 2.58620689655172 0.0024268660632297
3 2.60683760683762 -0.0124910581632092
2 2.65765765765767 -0.0060639127045986
1 2.67241379310346 -0.0124622851895579
3 2.69230769230768 0.00863919000715347
2 2.74774774774775 0.00721745908028059
1 2.75862068965517 0.0173160173160173
3 2.77777777777777 0.0104000440213504
2 2.83783783783784 -0.0010833982852689
1 2.84482758620689 -0.00948445493900039
3 2.86324786324786 0.00863919000715347
2 2.92792792792793 0.0022369446609509
1 2.93103448275863 0.0024268660632297
3 2.94871794871796 0.0104000440213504
1 3.01724137931035 0.0143381870654598
2 3.01801801801801 -0.0077240841777085
3 3.03418803418805 0.0051174819787597
1 3.10344827586206 0.00540469631378723
2 3.1081081081081 0.0138581449727202
3 3.11965811965811 -0.0072084961206185
1 3.18965517241378 -0.00650662468844287
2 3.19819819819818 0.00721745908028059
3 3.2051282051282 0.0139217520497441
1 3.27586206896552 -0.00948445493900039
2 3.2882882882883 0.000576773187840996
3 3.2905982905983 0.0051174819787597
1 3.3 -0.00650662468844287
3 3.3 0.00687833599295658
2 3.3 0.0105378020265004
1 3.3 0.0113603568149023
3 3.3 -0.00896935013481539
2 3.3 0.00721745908028059
group x y
3 -2.5 0.0182917545729386
1 -2.48953974895397 0.0316388197653751
2 -2.45762711864407 0.0105291693107676
3 -2.41935483870967 0.0426517606629402
1 -2.40585774058579 0.0463109588598391
2 -2.37288135593221 0.0118414648421857
3 -2.33870967741936 0.0207277551819388
1 -2.32217573221757 0.0353068545389911
2 -2.28813559322035 0.0131537603736038
3 -2.25806451612902 0.0158557539639385
1 -2.23849372384936 0.013298645897295
2 -2.20338983050848 0.0197152380306942
3 -2.17741935483872 0.0231637557909389
1 -2.15481171548117 0.0499789936334551
2 -2.11864406779662 0.0275890112192026
3 -2.09677419354838 0.0134197533549383
1 -2.07112970711296 0.0389748893126071
2 -2.03389830508473 0.0184029424992761
3 -2.01612903225808 0.0329077582269396
1 -1.98744769874477 0.0353068545389911
2 -1.94915254237287 0.0223398290935303
3 -1.93548387096774 0.00854775213693803
1 -1.90376569037656 0.0316388197653751
2 -1.86440677966101 0.0197152380306942
3 -1.85483870967741 0.0231637557909389
1 -1.82008368200837 0.027970784991759
2 -1.77966101694915 0.0302136022820388
3 -1.7741935483871 0.0255997563999391
1 -1.73640167364016 0.024302750218143
2 -1.69491525423729 0.017090646967858
3 -1.69354838709677 0.0280357570089393
1 -1.65271966527197 0.0389748893126071
3 -1.61290322580646 0.0158557539639385
2 -1.61016949152543 0.0197152380306942
1 -1.56903765690376 0.00963061112367903
3 -1.53225806451613 0.0304717576179394
2 -1.52542372881356 0.0262767156877846
1 -1.48535564853557 0.0353068545389911
3 -1.45161290322579 0.0255997563999391
2 -1.4406779661017 0.0144660559050218
1 -1.40167364016736 0.0609830979543031
3 -1.37096774193549 0.0255997563999391
2 -1.35593220338984 0.0197152380306942
1 -1.31799163179917 0.020634715444527
3 -1.29032258064515 0.0280357570089393
2 -1.27118644067798 0.0144660559050218
1 -1.23430962343096 0.0609830979543031
3 -1.20967741935485 0.0158557539639385
2 -1.18644067796609 0.0197152380306942
1 -1.15062761506277 0.0389748893126071
3 -1.12903225806451 0.0255997563999391
2 -1.10169491525423 0.0262767156877846
1 -1.06694560669456 0.0646511327279191
3 -1.04838709677421 0.0182917545729386
2 -1.01694915254237 0.0184029424992761
1 -0.983263598326346 0.024302750218143
3 -0.967741935483872 0.0109837527459382
2 -0.932203389830505 0.0157783514364399
1 -0.89958158995816 0.0609830979543031
3 -0.887096774193537 0.0280357570089393
2 -0.847457627118644 0.0157783514364399
1 -0.815899581589946 0.0573150631806871
3 -0.806451612903231 0.0207277551819388
2 -0.762711864406782 0.0249644201563665
1 -0.73221757322176 0.0426429240862231
3 -0.725806451612897 0.0255997563999391
2 -0.677966101694921 0.0210275335621122
1 -0.648535564853546 0.0536470284070711
3 -0.645161290322591 0.0377797594449399
2 -0.593220338983059 0.0315258978134569
1 -0.56485355648536 0.0463109588598391
3 -0.564516129032256 0.0329077582269396
2 -0.508474576271198 0.0367750799391292
3 -0.48387096774195 0.0280357570089393
1 -0.481171548117146 0.0939954109168471
2 -0.423728813559308 0.0512103307847281
3 -0.403225806451616 0.0158557539639385
1 -0.39748953974896 0.0719872022751511
2 -0.338983050847446 0.0590841039732366
3 -0.322580645161281 0.0207277551819388
1 -0.313807531380746 0.0976634456904631
2 -0.254237288135585 0.0630209905674908
3 -0.241935483870975 0.0231637557909389
1 -0.230125523012561 0.119671654332159
2 -0.169491525423723 0.0577718084418185
3 -0.161290322580641 0.0231637557909389
1 -0.146443514644346 0.101331480464079
2 -0.0847457627118615 0.066957877161745
3 -0.0806451612903345 0.0207277551819388
1 -0.0627615062761606 0.104999515237695
2 0 0.0512103307847281
3 0 0.0255997563999391
1 0.0209205020920535 0.0939954109168471
3 0.0806451612903345 0.0207277551819388
2 0.0847457627118615 0.0551472173789823
1 0.104602510460239 0.116003619558543
3 0.161290322580641 -0.00606825151706288
2 0.169491525423723 0.0420242620648015
1 0.188284518828453 0.0499789936334551
3 0.241935483870975 0.0231637557909389
2 0.254237288135585 0.0472734441904738
1 0.271966527196639 0.0536470284070711
3 0.322580645161281 0.0304717576179394
2 0.338983050847446 0.0354627844077111
1 0.355648535564853 0.0463109588598391
3 0.403225806451616 0.0304717576179394
2 0.423728813559308 0.0262767156877846
1 0.439330543933067 0.0609830979543031
3 0.483870967741922 0.0207277551819388
2 0.508474576271198 0.0262767156877846
1 0.523012552301253 0.0353068545389911
3 0.564516129032256 0.0377797594449399
2 0.593220338983059 0.032838193344875
1 0.606694560669467 0.0353068545389911
3 0.645161290322591 0.0426517606629402
2 0.677966101694921 0.0157783514364399
1 0.690376569037653 0.0573150631806871
3 0.725806451612897 0.0207277551819388
2 0.762711864406782 0.034150488876293
1 0.774058577405867 0.0389748893126071
3 0.806451612903231 0.0109837527459382
2 0.847457627118644 0.0210275335621122
1 0.857740585774053 0.0389748893126071
3 0.887096774193537 0.0255997563999391
2 0.932203389830505 0.0262767156877846
1 0.941422594142267 0.0646511327279191
3 0.967741935483872 0.0182917545729386
2 1.01694915254237 0.0197152380306942
1 1.02510460251045 0.0426429240862231
3 1.04838709677421 0.0329077582269396
2 1.10169491525423 0.0144660559050218
1 1.10878661087867 0.0353068545389911
3 1.12903225806451 0.0134197533549383
2 1.18644067796609 0.0249644201563665
1 1.19246861924685 0.0426429240862231
3 1.20967741935485 0.0109837527459382
2 1.27118644067798 0.00659228271651336
1 1.27615062761507 0.0426429240862231
3 1.29032258064515 0.0304717576179394
2 1.35593220338984 0.0118414648421857
1 1.35983263598325 0.0499789936334551
3 1.37096774193549 0.0255997563999391
2 1.4406779661017 0.017090646967858
1 1.44351464435147 0.013298645897295
3 1.45161290322579 0.0329077582269396
2 1.52542372881356 0.00790457824793144
1 1.52719665271965 0.0316388197653751
3 1.53225806451613 0.00854775213693803
2 1.61016949152543 0.0275890112192026
1 1.61087866108787 0.0609830979543031
3 1.61290322580646 0.0231637557909389
3 1.69354838709677 0.00854775213693803
1 1.69456066945605 0.0573150631806871
2 1.69491525423729 0.017090646967858
3 1.7741935483871 0.0353437588359397
1 1.77824267782427 0.0353068545389911
2 1.77966101694915 0.017090646967858
3 1.85483870967741 0.0329077582269396
1 1.86192468619248 0.024302750218143
2 1.86440677966101 0.0144660559050218
3 1.93548387096774 0.0109837527459382
1 1.94560669456067 0.0536470284070711
2 1.94915254237287 0.0184029424992761
3 2.01612903225808 0.0329077582269396
1 2.02928870292888 0.0499789936334551
2 2.03389830508473 0.0236521246249484
3 2.09677419354838 0.00367575091893773
1 2.11297071129707 0.0499789936334551
2 2.11864406779662 0.0210275335621122
3 2.17741935483872 0.0304717576179394
1 2.19665271966528 0.00229454157644702
2 2.20338983050848 0.0197152380306942
3 2.25806451612902 0.0304717576179394
1 2.28033472803347 0.0499789936334551
2 2.28813559322035 0.0144660559050218
3 2.33870967741936 0.0109837527459382
1 2.36401673640168 0.0463109588598391
2 2.37288135593221 0.0275890112192026
3 2.41935483870967 0.0255997563999391
1 2.44769874476987 0.0499789936334551
2 2.45762711864407 0.0302136022820388
3 2.5 0.0231637557909389
group x y
2 -2.47457627118644 0.00790457824793144
1 -2.47280334728035 0.0316388197653751
3 -2.46774193548387 0.00854775213693803
2 -2.38983050847457 0.0275890112192026
1 -2.38912133891213 0.0609830979543031
3 -2.38709677419354 0.0231637557909389
3 -2.30645161290323 0.00854775213693803
1 -2.30543933054395 0.0573150631806871
2 -2.30508474576271 0.017090646967858
3 -2.2258064516129 0.0353437588359397
1 -2.22175732217573 0.0353068545389911
2 -2.22033898305085 0.017090646967858
3 -2.14516129032259 0.0329077582269396
1 -2.13807531380752 0.024302750218143
2 -2.13559322033899 0.0144660559050218
3 -2.06451612903226 0.0109837527459382
1 -2.05439330543933 0.0536470284070711
2 -2.05084745762713 0.0184029424992761
3 -1.98387096774192 0.0329077582269396
1 -1.97071129707112 0.0499789936334551
2 -1.96610169491527 0.0236521246249484
3 -1.90322580645162 0.00367575091893773
1 -1.88702928870293 0.0499789936334551
2 -1.88135593220338 0.0210275335621122
3 -1.82258064516128 0.0304717576179394
1 -1.80334728033472 0.00229454157644702
2 -1.79661016949152 0.0197152380306942
3 -1.74193548387098 0.0304717576179394
1 -1.71966527196653 0.0499789936334551
2 -1.71186440677965 0.0144660559050218
3 -1.66129032258064 0.0109837527459382
1 -1.63598326359832 0.0463109588598391
2 -1.62711864406779 0.0275890112192026
3 -1.58064516129033 0.0255997563999391
1 -1.55230125523013 0.0499789936334551
2 -1.54237288135593 0.0302136022820388
3 -1.5 0.0231637557909389
1 -1.46861924686192 0.0536470284070711
2 -1.45762711864407 0.0131537603736038
3 -1.41935483870967 0.00854775213693803
1 -1.38493723849373 0.027970784991759
2 -1.37288135593221 0.0197152380306942
3 -1.33870967741936 0.00854775213693803
1 -1.30125523012552 0.0573150631806871
2 -1.28813559322035 0.0144660559050218
3 -1.25806451612902 0.0255997563999391
1 -1.21757322175733 0.0499789936334551
2 -1.20338983050848 0.0197152380306942
3 -1.17741935483872 0.0353437588359397
1 -1.13389121338912 0.0426429240862231
2 -1.11864406779662 0.0144660559050218
3 -1.09677419354838 0.04021576005394
1 -1.05020920502093 0.0389748893126071
2 -1.03389830508473 0.0302136022820388
3 -1.01612903225808 0.0158557539639385
1 -0.96652719665272 0.0353068545389911
2 -0.949152542372872 0.0249644201563665
3 -0.935483870967744 0.0109837527459382
1 -0.882845188284506 0.0389748893126071
2 -0.86440677966101 0.0315258978134569
3 -0.854838709677409 -0.00119625029906258
1 -0.79916317991632 0.0646511327279191
2 -0.779661016949149 0.0603963995046546
3 -0.774193548387103 0.0280357570089393
1 -0.715481171548106 0.0646511327279191
2 -0.694915254237287 0.0722070592874174
3 -0.693548387096769 0.0207277551819388
1 -0.63179916317992 0.130675758653007
3 -0.612903225806463 0.0182917545729386
2 -0.610169491525426 0.135197244795485
1 -0.548117154811706 0.200368419351711
3 -0.532258064516128 0.0304717576179394
2 -0.525423728813564 0.224433340931915
1 -0.46443514644352 0.284733219144879
3 -0.451612903225794 0.0329077582269396
2 -0.440677966101703 0.362224371730813
1 -0.380753138075306 0.446126749183983
3 -0.370967741935488 0.0450877612719403
2 -0.355932203389841 0.523636722095237
1 -0.29707112970712 0.647868661732864
3 -0.290322580645153 0.0450877612719403
2 -0.27118644067798 0.698172027773842
1 -0.213389121338906 0.790922017903888
3 -0.209677419354847 0.0475237618809405
2 -0.18644067796609 0.854335196012593
1 -0.129707112970721 0.977991791358304
3 -0.129032258064512 0.0450877612719403
2 -0.101694915254228 0.969817202777384
3 -0.0483870967742064 0.0597037649259412
1 -0.0460251046025064 1
2 -0.0169491525423666 1
3 0.0322580645161281 0.0450877612719403
1 0.0376569037656793 0.952315547942992
2 0.0677966101694949 0.93832211002335
3 0.112903225806463 0.0499597624899406
1 0.121338912133893 0.856946643828976
2 0.152542372881356 0.807092556881542
3 0.193548387096769 0.0377797594449399
1 0.205020920502079 0.695553113789872
2 0.237288135593218 0.624683478014429
3 0.274193548387103 0.0329077582269396
1 0.288702928870293 0.537827618524384
2 0.322033898305079 0.484267856152695
3 0.354838709677409 0.0280357570089393
1 0.372384937238508 0.416782470995055
2 0.406779661016941 0.338603052165288
3 0.435483870967744 0.0207277551819388
1 0.456066945606693 0.251720906182335
2 0.491525423728802 0.225745636463333
3 0.51612903225805 0.0109837527459382
1 0.539748953974907 0.211372523672559
2 0.576271186440692 0.168004633080937
3 0.596774193548384 0.0207277551819388
1 0.623430962343093 0.149015932521087
2 0.661016949152554 0.129948062669813
3 0.677419354838719 0.0109837527459382
1 0.707112970711307 0.112335584784927
2 0.745762711864415 0.0971406743843609
3 0.758064516129025 0.0134197533549383
1 0.790794979079493 0.0976634456904631
2 0.830508474576277 0.0840177190701801
3 0.838709677419359 0.00611175152793788
1 0.874476987447707 0.0793232718223831
2 0.915254237288138 0.0682701726931631
3 0.919354838709666 -0.00363225090806273
1 0.958158995815893 0.0683191675015351
2 1 0.0590841039732366
3 1 0.0109837527459382
1 1.04184100418411 0.0903273761432311
3 1.08064516129033 0.0182917545729386
2 1.08474576271186 0.0564595129104004
1 1.12552301255229 0.0646511327279191
3 1.16129032258064 0.0207277551819388
2 1.16949152542372 0.04989803525331
1 1.20920502092051 0.0903273761432311
3 1.24193548387098 0.0158557539639385
2 1.25423728813558 0.0407119665333834
1 1.29288702928869 0.0646511327279191
3 1.32258064516128 0.0329077582269396
2 1.33898305084745 0.0354627844077111
1 1.37656903765691 0.0463109588598391
3 1.40322580645162 0.0304717576179394
2 1.42372881355934 0.0446488531276377
1 1.46025104602509 0.0499789936334551
3 1.48387096774195 0.0182917545729386
2 1.5084745762712 0.0315258978134569
1 1.54393305439331 0.0499789936334551
3 1.56451612903226 0.0304717576179394
2 1.59322033898306 0.0249644201563665
1 1.62761506276149 0.0683191675015351
3 1.64516129032259 -0.00850425212606303
2 1.67796610169492 0.0302136022820388
1 1.71129707112971 0.0426429240862231
3 1.7258064516129 -0.00119625029906258
2 1.76271186440678 0.0262767156877846
1 1.79497907949792 0.0573150631806871
3 1.80645161290323 0.0182917545729386
2 1.84745762711864 0.0184029424992761
1 1.87866108786611 0.027970784991759
3 1.88709677419354 0.0255997563999391
2 1.93220338983051 0.0223398290935303
1 1.96234309623432 0.0389748893126071
3 1.96774193548387 0.0280357570089393
2 2.01694915254237 0.0118414648421857
1 2.04602510460251 0.013298645897295
3 2.04838709677421 0.0207277551819388
2 2.10169491525423 0.0197152380306942
3 2.12903225806451 0.00854775213693803
1 2.12970711297072 0.0426429240862231
2 2.18644067796609 0.0144660559050218
3 2.20967741935485 0.0280357570089393
1 2.21338912133891 0.0463109588598391
2 2.27118644067798 0.0118414648421857
3 2.29032258064515 0.0158557539639385
1 2.29707112970712 0.0353068545389911
2 2.35593220338984 0.0197152380306942
3 2.37096774193549 0.0182917545729386
1 2.38075313807531 0.0463109588598391
2 2.4406779661017 0.0223398290935303
3 2.45161290322579 0.0182917545729386
1 2.46443514644352 0.0499789936334551
group x y
2 -2.4915254237288 0.0315258978134569
1 -2.45606694560669 0.0499789936334551
3 -2.43548387096774 0.0304717576179394
2 -2.40677966101694 0.0249644201563665
1 -2.37238493723851 0.0683191675015351
3 -2.35483870967741 -0.00850425212606303
2 -2.32203389830508 0.0302136022820388
1 -2.28870292887029 0.0426429240862231
3 -2.2741935483871 -0.00119625029906258
2 -2.23728813559322 0.0262767156877846
1 -2.20502092050208 0.0573150631806871
3 -2.19354838709677 0.0182917545729386
2 -2.15254237288136 0.0184029424992761
1 -2.12133891213389 0.027970784991759
3 -2.11290322580646 0.0255997563999391
2 -2.06779661016949 0.0223398290935303
1 -2.03765690376568 0.0389748893126071
3 -2.03225806451613 0.0280357570089393
2 -1.98305084745763 0.0118414648421857
1 -1.95397489539749 0.013298645897295
3 -1.95161290322579 0.0207277551819388
2 -1.89830508474577 0.0197152380306942
3 -1.87096774193549 0.00854775213693803
1 -1.87029288702928 0.0426429240862231
2 -1.81355932203391 0.0144660559050218
3 -1.79032258064515 0.0280357570089393
1 -1.78661087866109 0.0463109588598391
2 -1.72881355932202 0.0118414648421857
3 -1.70967741935485 0.0158557539639385
1 -1.70292887029288 0.0353068545389911
2 -1.64406779661016 0.0197152380306942
3 -1.62903225806451 0.0182917545729386
1 -1.61924686192469 0.0463109588598391
2 -1.5593220338983 0.0223398290935303
3 -1.54838709677421 0.0182917545729386
1 -1.53556485355648 0.0499789936334551
2 -1.47457627118644 0.0210275335621122
3 -1.46774193548387 0.0182917545729386
1 -1.45188284518829 0.0353068545389911
2 -1.38983050847457 0.017090646967858
3 -1.38709677419354 0.00123975030993758
1 -1.36820083682008 0.0353068545389911
3 -1.30645161290323 0.0280357570089393
2 -1.30508474576271 0.017090646967858
1 -1.28451882845189 0.0353068545389911
3 -1.2258064516129 0.0158557539639385
2 -1.22033898305085 0.0223398290935303
1 -1.20083682008368 0.0683191675015351
3 -1.14516129032259 0.0280357570089393
2 -1.13559322033899 0.0197152380306942
1 -1.11715481171549 0.0463109588598391
3 -1.06451612903226 0.0353437588359397
2 -1.05084745762713 0.0289013067506207
1 -1.03347280334728 0.0389748893126071
3 -0.98387096774195 0.0231637557909389
2 -0.966101694915267 0.0210275335621122
1 -0.949790794979094 0.027970784991759
3 -0.903225806451616 0.0109837527459382
2 -0.881355932203377 0.0131537603736038
1 -0.86610878661088 0.0389748893126071
3 -0.822580645161281 0.0280357570089393
2 -0.796610169491515 0.0236521246249484
1 -0.782426778242666 0.0463109588598391
3 -0.741935483870975 0.0255997563999391
2 -0.711864406779654 0.0262767156877846
1 -0.69874476987448 0.0426429240862231
3 -0.661290322580641 0.0523957630989408
2 -0.627118644067792 0.0223398290935303
1 -0.615062761506266 0.027970784991759
3 -0.580645161290334 0.0791917697979424
2 -0.542372881355931 0.0210275335621122
1 -0.53138075313808 0.0683191675015351
3 -0.5 0.115731778932945
2 -0.457627118644069 0.0118414648421857
1 -0.447698744769866 0.0463109588598391
3 -0.419354838709666 0.162015790503948
2 -0.372881355932208 0.0157783514364399
1 -0.36401673640168 0.0609830979543031
3 -0.338709677419359 0.281379820344955
2 -0.288135593220346 0.017090646967858
1 -0.280334728033466 0.0573150631806871
3 -0.258064516129025 0.373947843486961
2 -0.203389830508485 0.0184029424992761
1 -0.196652719665281 0.0499789936334551
3 -0.177419354838719 0.495747873936969
2 -0.118644067796623 0.0275890112192026
1 -0.112970711297066 0.0573150631806871
3 -0.0967741935483843 0.605367901341975
2 -0.0338983050847332 0.0144660559050218
1 -0.0292887029288806 0.0646511327279191
3 -0.0161290322580498 0.666267916566979
2 0.0508474576271283 0.017090646967858
1 0.0543933054393335 0.0353068545389911
3 0.0645161290322562 0.722295930573983
2 0.13559322033899 0.0249644201563665
1 0.138075313807519 0.0536470284070711
3 0.145161290322591 0.693063923265981
2 0.220338983050851 0.0275890112192026
1 0.221757322175733 0.027970784991759
3 0.225806451612897 0.585879896469974
2 0.305084745762713 0.0275890112192026
1 0.305439330543948 0.0573150631806871
3 0.306451612903231 0.478695869673967
3 0.387096774193537 0.381255845313961
1 0.389121338912133 0.0499789936334551
2 0.389830508474574 0.0223398290935303
3 0.467741935483872 0.266763816690954
1 0.472803347280347 0.0389748893126071
2 0.474576271186436 0.0262767156877846
3 0.548387096774206 0.227787806946952
1 0.556485355648533 0.0536470284070711
2 0.559322033898297 0.0157783514364399
3 0.629032258064512 0.159579789894947
1 0.640167364016747 0.024302750218143
2 0.644067796610159 0.017090646967858
3 0.709677419354847 0.110859777714944
1 0.723849372384933 0.024302750218143
2 0.72881355932202 0.0184029424992761
3 0.790322580645153 0.0938077734519434
1 0.807531380753147 0.0536470284070711
2 0.81355932203391 0.0275890112192026
3 0.870967741935488 0.0816277704069426
1 0.891213389121333 0.0646511327279191
2 0.898305084745772 0.0223398290935303
3 0.951612903225794 0.0621397655349414
1 0.974895397489547 0.027970784991759
2 0.983050847457633 0.0184029424992761
3 1.03225806451613 0.0572677643169411
1 1.05857740585773 0.027970784991759
2 1.06779661016949 0.0144660559050218
3 1.11290322580646 0.0280357570089393
1 1.14225941422595 0.0499789936334551
2 1.15254237288136 0.0118414648421857
3 1.19354838709677 0.0329077582269396
1 1.22594142259413 0.020634715444527
2 1.23728813559322 0.0144660559050218
3 1.2741935483871 0.0548317637079409
1 1.30962343096235 0.0463109588598391
2 1.32203389830508 0.0184029424992761
3 1.35483870967741 0.0377797594449399
1 1.39330543933053 0.0463109588598391
2 1.40677966101694 0.0157783514364399
3 1.43548387096774 0.0377797594449399
1 1.47698744769875 0.0353068545389911
2 1.4915254237288 0.0184029424992761
3 1.51612903225805 0.0499597624899406
1 1.56066945606693 0.0353068545389911
2 1.57627118644066 0.0249644201563665
3 1.59677419354838 0.0280357570089393
1 1.64435146443515 0.0426429240862231
2 1.66101694915255 0.0236521246249484
3 1.67741935483872 0.0377797594449399
1 1.72803347280336 0.0609830979543031
2 1.74576271186442 0.00921687377934952
3 1.75806451612902 0.0182917545729386
1 1.81171548117155 0.0389748893126071
2 1.83050847457628 0.0144660559050218
3 1.83870967741936 0.0329077582269396
1 1.89539748953976 0.013298645897295
2 1.91525423728814 0.0210275335621122
3 1.91935483870967 0.0182917545729386
1 1.97907949790795 0.024302750218143
2 2 0.0197152380306942
3 2 0.0280357570089393
1 2.06276150627616 0.0426429240862231
3 2.08064516129033 0.0329077582269396
2 2.08474576271186 0.0144660559050218
1 2.14644351464435 0.0609830979543031
3 2.16129032258064 0.0329077582269396
2 2.16949152542372 0.0236521246249484
1 2.23012552301256 0.013298645897295
3 2.24193548387098 0.0182917545729386
2 2.25423728813558 0.0118414648421857
1 2.31380753138075 0.0426429240862231
3 2.32258064516128 0.0329077582269396
2 2.33898305084745 0.0210275335621122
1 2.39748953974896 0.0426429240862231
3 2.40322580645162 0.0207277551819388
2 2.42372881355934 0.0184029424992761
1 2.48117154811715 0.0353068545389911
3 2.48387096774195 0.00611175152793788
group x y
3 -2.48387096774195 0.0499597624899406
1 -2.43933054393307 0.0353068545389911
2 -2.42372881355934 0.0249644201563665
3 -2.40322580645162 0.0280357570089393
1 -2.35564853556485 0.0426429240862231
2 -2.33898305084745 0.0236521246249484
3 -2.32258064516128 0.0377797594449399
1 -2.27196652719664 0.0609830979543031
2 -2.25423728813558 0.00921687377934952
3 -2.24193548387098 0.0182917545729386
1 -2.18828451882845 0.0389748893126071
2 -2.16949152542372 0.0144660559050218
3 -2.16129032258064 0.0329077582269396
1 -2.10460251046024 0.013298645897295
2 -2.08474576271186 0.0210275335621122
3 -2.08064516129033 0.0182917545729386
1 -2.02092050209205 0.024302750218143
2 -2 0.0197152380306942
3 -2 0.0280357570089393
1 -1.93723849372384 0.0426429240862231
3 -1.91935483870967 0.0329077582269396
2 -1.91525423728814 0.0144660559050218
1 -1.85355648535565 0.0609830979543031
3 -1.83870967741936 0.0329077582269396
2 -1.83050847457628 0.0236521246249484
1 -1.76987447698744 0.013298645897295
3 -1.75806451612902 0.0182917545729386
2 -1.74576271186442 0.0118414648421857
1 -1.68619246861925 0.0426429240862231
3 -1.67741935483872 0.0329077582269396
2 -1.66101694915255 0.0210275335621122
1 -1.60251046025104 0.0426429240862231
3 -1.59677419354838 0.0207277551819388
2 -1.57627118644066 0.0184029424992761
1 -1.51882845188285 0.0353068545389911
3 -1.51612903225805 0.00611175152793788
2 -1.4915254237288 0.0144660559050218
3 -1.43548387096774 0.0280357570089393
1 -1.43514644351464 0.0389748893126071
2 -1.40677966101694 0.0197152380306942
3 -1.35483870967741 0.0255997563999391
1 -1.35146443514645 0.0389748893126071
2 -1.32203389830508 0.0223398290935303
3 -1.2741935483871 0.0329077582269396
1 -1.26778242677824 0.027970784991759
2 -1.23728813559322 0.0197152380306942
3 -1.19354838709677 0.0158557539639385
1 -1.18410041841005 0.024302750218143
2 -1.15254237288136 0.0144660559050218
3 -1.11290322580646 0.00123975030993758
1 -1.10041841004184 0.027970784991759
2 -1.06779661016949 0.0184029424992761
3 -1.03225806451613 0.0158557539639385
1 -1.01673640167365 0.0536470284070711
2 -0.983050847457633 0.0157783514364399
3 -0.951612903225794 0.0207277551819388
1 -0.93305439330544 0.0426429240862231
2 -0.898305084745772 0.017090646967858
3 -0.870967741935488 0.0158557539639385
1 -0.849372384937226 0.024302750218143
2 -0.81355932203391 0.0118414648421857
3 -0.790322580645153 0.0353437588359397
1 -0.76569037656904 0.0426429240862231
2 -0.72881355932202 0.00921687377934952
3 -0.709677419354847 0.0158557539639385
1 -0.682008368200826 0.0573150631806871
2 -0.644067796610159 0.0184029424992761
3 -0.629032258064512 0.0134197533549383
1 -0.59832635983264 0.0536470284070711
2 -0.559322033898297 0.0184029424992761
3 -0.548387096774206 0.0426517606629402
1 -0.514644351464426 0.0426429240862231
2 -0.474576271186436 0.0118414648421857
3 -0.467741935483872 0.0523957630989408
1 -0.43096234309624 0.0499789936334551
2 -0.389830508474574 0.0197152380306942
3 -0.387096774193537 0.0864997716249429
1 -0.347280334728026 0.027970784991759
3 -0.306451612903231 0.135219783804946
2 -0.305084745762713 0.0223398290935303
1 -0.26359832635984 0.0463109588598391
3 -0.225806451612897 0.159579789894947
2 -0.220338983050851 0.0105291693107676
1 -0.179916317991626 0.0756552370487671
3 -0.145161290322591 0.232659808164952
2 -0.13559322033899 0.0157783514364399
1 -0.0962343096234406 0.0573150631806871
3 -0.0645161290322562 0.295995823998956
2 -0.0508474576271283 0.0184029424992761
1 -0.0125523012552264 0.0426429240862231
3 0.0161290322580498 0.371511842877961
2 0.0338983050847332 0.00790457824793144
1 0.0711297071129593 0.024302750218143
3 0.0967741935483843 0.412923853230963
2 0.118644067796623 0.0144660559050218
1 0.154811715481173 0.0719872022751511
3 0.177419354838719 0.403179850794963
2 0.203389830508485 0.0144660559050218
1 0.238493723849388 0.0536470284070711
3 0.258064516129025 0.383691845922962
2 0.288135593220346 0.0118414648421857
1 0.322175732217573 0.0426429240862231
3 0.338709677419359 0.35689583922396
2 0.372881355932208 0.0144660559050218
1 0.405857740585759 0.0426429240862231
3 0.419354838709666 0.305739826434957
2 0.457627118644069 0.0105291693107676
1 0.489539748953973 0.0756552370487671
3 0.5 0.242403810600953
2 0.542372881355931 0.0105291693107676
1 0.573221757322187 0.0389748893126071
3 0.580645161290334 0.179067794766949
2 0.627118644067792 0.0184029424992761
1 0.656903765690373 0.0499789936334551
3 0.661290322580641 0.110859777714944
2 0.711864406779654 0.0131537603736038
1 0.740585774058587 0.016966680670911
3 0.741935483870975 0.0816277704069426
2 0.796610169491515 0.0131537603736038
3 0.822580645161281 0.071883767970942
1 0.824267782426773 0.0683191675015351
2 0.881355932203377 0.0131537603736038
3 0.903225806451616 0.0645757661439415
1 0.907949790794987 0.0316388197653751
2 0.966101694915267 0.0144660559050218
3 0.98387096774195 0.0499597624899406
1 0.991631799163173 0.0536470284070711
2 1.05084745762713 0.0210275335621122
3 1.06451612903226 0.0377797594449399
1 1.07531380753139 0.0389748893126071
2 1.13559322033899 0.0144660559050218
3 1.14516129032259 0.0353437588359397
1 1.15899581589957 0.013298645897295
2 1.22033898305085 0.0144660559050218
3 1.2258064516129 0.0523957630989408
1 1.24267782426779 0.016966680670911
2 1.30508474576271 0.0131537603736038
3 1.30645161290323 0.0548317637079409
1 1.32635983263597 0.024302750218143
3 1.38709677419354 0.0499597624899406
2 1.38983050847457 0.0197152380306942
1 1.41004184100419 0.027970784991759
3 1.46774193548387 0.0475237618809405
2 1.47457627118644 0.0118414648421857
1 1.49372384937237 0.0389748893126071
3 1.54838709677421 0.0255997563999391
2 1.5593220338983 0.0157783514364399
1 1.57740585774059 0.0463109588598391
3 1.62903225806451 0.0280357570089393
2 1.64406779661016 0.0157783514364399
1 1.6610878661088 0.024302750218143
3 1.70967741935485 0.00854775213693803
2 1.72881355932202 0.017090646967858
1 1.74476987447699 0.0353068545389911
3 1.79032258064515 0.0255997563999391
2 1.81355932203391 0.0105291693107676
1 1.82845188284517 0.0316388197653751
3 1.87096774193549 0.0450877612719403
2 1.89830508474577 0.0184029424992761
1 1.91213389121339 0.0536470284070711
3 1.95161290322579 0.0329077582269396
2 1.98305084745763 0.00921687377934952
1 1.9958158995816 0.020634715444527
3 2.03225806451613 0.0231637557909389
2 2.06779661016949 0.0144660559050218
1 2.07949790794979 0.016966680670911
3 2.11290322580646 0.0255997563999391
2 2.15254237288136 0.0236521246249484
1 2.163179916318 0.0316388197653751
3 2.19354838709677 0.0158557539639385
2 2.23728813559322 0.0184029424992761
1 2.24686192468619 0.0463109588598391
3 2.2741935483871 0.04021576005394
2 2.32203389830508 0.0131537603736038
1 2.3305439330544 0.0573150631806871
3 2.35483870967741 0.00123975030993758
2 2.40677966101694 0.0118414648421857
1 2.41422594142259 0.020634715444527
3 2.43548387096774 0.0158557539639385
2 2.4915254237288 0.0118414648421857
1 2.4979079497908 0.0463109588598391
group x y
1 -2.44680851063831 -0.00870956274440099
2 -2.42731277533039 0.00134310059084104
3 -2.42148760330579 0.0182917545729386
1 -2.36170212765958 0.016966680670911
2 -2.33920704845815 0.0039676916536772
3 -2.3388429752066 0.00611175152793788
1 -2.27659574468086 0.024302750218143
3 -2.25619834710744 0.00611175152793788
2 -2.25110132158591 0.0039676916536772
1 -2.19148936170214 0.0353068545389911
3 -2.17355371900825 0.00611175152793788
2 -2.16299559471366 -0.00259378600341321
1 -2.10638297872342 0.00596257635006303
3 -2.09090909090909 0.00611175152793788
2 -2.07488986784142 0.00265539612225912
1 -2.02127659574467 0.0353068545389911
3 -2.0082644628099 0.0329077582269396
2 -1.98678414096918 0.00265539612225912
1 -1.93617021276594 -0.00504152797078499
3 -1.92561983471074 0.0255997563999391
2 -1.89867841409691 0.0131537603736038
1 -1.85106382978722 0.016966680670911
3 -1.84297520661158 0.0231637557909389
2 -1.81057268722466 0.00921687377934952
1 -1.7659574468085 0.00596257635006303
3 -1.7603305785124 0.0426517606629402
2 -1.72246696035242 0.00790457824793144
1 -1.68085106382978 -0.00870956274440099
3 -1.67768595041323 0.0499597624899406
2 -1.63436123348018 0.00921687377934952
1 -1.59574468085106 -0.019713667065249
3 -1.59504132231405 0.0182917545729386
2 -1.54625550660793 0.0144660559050218
3 -1.51239669421489 0.071883767970942
1 -1.51063829787233 0.00229454157644702
2 -1.45814977973569 0.00265539612225912
3 -1.4297520661157 0.0304717576179394
1 -1.42553191489361 -0.00137349319716898
2 -1.37004405286345 0.0210275335621122
3 -1.34710743801654 -0.00119625029906258
1 -1.34042553191489 0.0316388197653751
2 -1.28193832599118 0.00527998718509528
3 -1.26446280991735 0.0182917545729386
1 -1.25531914893617 0.00229454157644702
2 -1.19383259911893 0.0157783514364399
3 -1.18181818181819 0.0426517606629402
1 -1.17021276595744 0.013298645897295
2 -1.10572687224669 0.00134310059084104
3 -1.099173553719 0.00611175152793788
1 -1.08510638297872 0.00229454157644702
2 -1.01762114537445 3.08050594229551e-05
3 -1.01652892561984 0.00611175152793788
1 -1 0.00963061112367903
3 -0.933884297520649 0.00123975030993758
2 -0.929515418502206 0.0118414648421857
1 -0.914893617021278 0.00229454157644702
3 -0.851239669421489 0.0231637557909389
2 -0.841409691629963 0.017090646967858
1 -0.829787234042556 0.013298645897295
3 -0.768595041322328 0.0231637557909389
2 -0.75330396475772 0.0105291693107676
1 -0.744680851063833 0.024302750218143
3 -0.685950413223139 -0.00119625029906258
2 -0.665198237885477 0.0105291693107676
1 -0.659574468085111 0.0389748893126071
3 -0.603305785123979 0.0231637557909389
2 -0.577092511013205 0.0236521246249484
1 -0.574468085106389 -0.00870956274440099
3 -0.52066115702479 0.0109837527459382
1 -0.489361702127667 0.027970784991759
2 -0.488986784140963 0.0157783514364399
3 -0.43801652892563 0.0182917545729386
1 -0.404255319148945 0.0646511327279191
2 -0.40088105726872 0.0289013067506207
3 -0.355371900826441 0.00611175152793788
1 -0.319148936170222 0.101331480464079
2 -0.312775330396477 0.032838193344875
3 -0.27272727272728 0.0231637557909389
1 -0.2340425531915 0.101331480464079
2 -0.224669603524234 0.0433365575962196
3 -0.190082644628092 -0.00363225090806273
1 -0.148936170212778 0.185696280257247
2 -0.136563876651991 0.0682701726931631
3 -0.107438016528931 0.00123975030993758
1 -0.0638297872340559 0.270061080050415
2 -0.0484581497797478 0.082705423538762
3 -0.0247933884297424 0.0109837527459382
1 0.0212765957446948 0.387438192806127
2 0.0396475770925235 0.102389856510033
3 0.057851239669418 0.00611175152793788
1 0.106382978723389 0.475471027372911
2 0.127753303964766 0.136509540326903
3 0.140495867768607 0.0134197533549383
1 0.191489361702139 0.541495653298
2 0.215859030837009 0.139134131389739
3 0.223140495867767 -0.00119625029906258
1 0.276595744680861 0.548831722845232
2 0.303964757709252 0.156193973298174
3 0.305785123966928 0.0134197533549383
1 0.361702127659584 0.52315547942992
3 0.388429752066116 0.00854775213693803
2 0.392070484581495 0.141758722452576
1 0.446808510638306 0.479139062146528
3 0.471074380165277 0.0158557539639385
2 0.480176211453738 0.133884949264067
1 0.531914893617028 0.361761949390815
3 0.553719008264466 0.0109837527459382
2 0.568281938325981 0.102389856510033
1 0.61702127659575 0.295737323465727
3 0.636363636363626 0.0255997563999391
2 0.656387665198224 0.082705423538762
1 0.702127659574472 0.222376627993407
3 0.719008264462815 0.0109837527459382
2 0.744493392070495 0.0590841039732366
1 0.787234042553195 0.152683967294703
3 0.801652892561975 0.0109837527459382
2 0.832599118942738 0.0472734441904738
1 0.872340425531917 0.123339689105775
3 0.884297520661164 0.0207277551819388
2 0.920704845814981 0.034150488876293
1 0.957446808510639 0.0829913065959991
3 0.966942148760324 0.0329077582269396
2 1.00881057268722 0.0302136022820388
1 1.04255319148936 0.0719872022751511
3 1.04958677685951 0.0255997563999391
2 1.09691629955947 0.017090646967858
1 1.12765957446808 0.0353068545389911
3 1.13223140495867 0.0109837527459382
2 1.18502202643171 0.0144660559050218
1 1.21276595744681 0.024302750218143
3 1.21487603305786 0.0158557539639385
2 1.27312775330395 0.00659228271651336
3 1.29752066115702 0.00611175152793788
1 1.29787234042553 0.0426429240862231
2 1.36123348017622 0.0118414648421857
3 1.38016528925621 0.0109837527459382
1 1.38297872340425 0.024302750218143
2 1.44933920704847 0.00921687377934952
3 1.46280991735537 0.04021576005394
1 1.46808510638297 0.020634715444527
2 1.53744493392071 0.0039676916536772
3 1.54545454545456 0.0207277551819388
1 1.55319148936169 0.020634715444527
2 1.62555066079295 0.00265539612225912
3 1.62809917355372 -0.00363225090806273
1 1.63829787234042 0.00229454157644702
3 1.71074380165288 0.0134197533549383
2 1.7136563876652 0.00790457824793144
1 1.72340425531914 0.024302750218143
3 1.79338842975207 0.0109837527459382
2 1.80176211453744 -0.00128149047199512
1 1.80851063829786 0.0389748893126071
3 1.87603305785123 0.0182917545729386
2 1.88986784140968 0.0131537603736038
1 1.89361702127658 0.00229454157644702
3 1.95867768595042 0.00367575091893773
2 1.97797356828193 -0.00259378600341321
1 1.97872340425533 0.00963061112367903
3 2.04132231404958 0.0231637557909389
1 2.06382978723406 0.00596257635006303
2 2.0660792951542 0.0144660559050218
3 2.12396694214877 0.00123975030993758
1 2.14893617021278 0.013298645897295
2 2.15418502202644 -0.00521837706624937
3 2.20661157024793 0.0158557539639385
1 2.2340425531915 0.00229454157644702
2 2.24229074889868 0.00921687377934952
3 2.28925619834712 0.00854775213693803
1 2.31914893617022 0.0353068545389911
2 2.33039647577093 0.0118414648421857
3 2.37190082644628 -0.0109402527350632
1 2.40425531914894 0.00596257635006303
2 2.41850220264317 0.00527998718509528
3 2.45454545454544 0.0134197533549383
1 2.48936170212767 0.027970784991759
group x y
1 -2.5 0.00963061112367903
3 -2.47863247863248 0.0207277551819388
2 -2.43243243243242 0.0039676916536772
1 -2.41379310344828 0.0316388197653751
3 -2.39316239316238 0.0475237618809405
2 -2.34234234234233 0.0105291693107676
1 -2.32758620689654 0.024302750218143
3 -2.30769230769232 0.0280357570089393
2 -2.25225225225225 0.0039676916536772
1 -2.24137931034483 0.00596257635006303
3 -2.22222222222223 0.0450877612719403
2 -2.16216216216216 0.0131537603736038
1 -2.15517241379311 0.020634715444527
3 -2.13675213675214 0.0255997563999391
2 -2.07207207207207 0.00921687377934952
1 -2.06896551724137 0.024302750218143
3 -2.05128205128204 0.0280357570089393
1 -1.98275862068965 -0.00137349319716898
2 -1.98198198198199 0.0197152380306942
3 -1.96581196581195 0.0231637557909389
1 -1.89655172413794 0.016966680670911
2 -1.8918918918919 0.00265539612225912
3 -1.88034188034189 0.0450877612719403
1 -1.81034482758622 0.027970784991759
2 -1.80180180180182 0.00659228271651336
3 -1.7948717948718 0.0109837527459382
1 -1.72413793103448 0.020634715444527
2 -1.7117117117117 0.00790457824793144
3 -1.7094017094017 0.0450877612719403
1 -1.63793103448276 0.020634715444527
3 -1.62393162393161 0.0329077582269396
2 -1.62162162162161 0.0105291693107676
1 -1.55172413793105 0.00963061112367903
3 -1.53846153846155 0.0450877612719403
2 -1.53153153153153 0.00921687377934952
1 -1.4655172413793 -0.00870956274440099
3 -1.45299145299145 0.0329077582269396
2 -1.44144144144144 0.0105291693107676
1 -1.37931034482759 0.020634715444527
3 -1.36752136752136 0.0450877612719403
2 -1.35135135135135 0.00921687377934952
1 -1.29310344827587 -0.016045632291633
3 -1.28205128205127 0.0304717576179394
2 -1.26126126126127 0.0157783514364399
1 -1.20689655172413 0.024302750218143
3 -1.19658119658121 0.0767557691889423
2 -1.17117117117118 0.0039676916536772
1 -1.12068965517241 -0.00137349319716898
3 -1.11111111111111 0.105987776496944
2 -1.08108108108109 0.017090646967858
1 -1.0344827586207 0.0426429240862231
3 -1.02564102564102 0.166887791721948
2 -0.99099099099098 0.00790457824793144
1 -0.948275862068954 0.0609830979543031
3 -0.94017094017093 0.227787806946952
2 -0.900900900900893 0.0157783514364399
1 -0.862068965517238 0.0426429240862231
3 -0.854700854700866 0.35689583922396
2 -0.810810810810807 0.0157783514364399
1 -0.775862068965523 0.0609830979543031
3 -0.769230769230774 0.478695869673967
2 -0.72072072072072 0.0236521246249484
1 -0.689655172413779 0.0903273761432311
3 -0.683760683760681 0.619983904995976
2 -0.630630630630634 0.0223398290935303
1 -0.603448275862064 0.108667550011311
3 -0.598290598290589 0.780759945189986
2 -0.540540540540547 0.0302136022820388
1 -0.517241379310349 0.104999515237695
3 -0.512820512820525 0.909867977466994
2 -0.450450450450461 0.0262767156877846
1 -0.431034482758633 0.112335584784927
3 -0.427350427350433 0.992691998173
2 -0.360360360360346 0.0262767156877846
1 -0.34482758620689 0.112335584784927
3 -0.341880341880341 1
2 -0.27027027027026 0.0315258978134569
1 -0.258620689655174 0.127007723879391
3 -0.256410256410248 0.965895991473998
2 -0.180180180180173 0.0197152380306942
1 -0.172413793103459 0.0939954109168471
3 -0.170940170940185 0.848967962241991
2 -0.0900900900900865 0.0249644201563665
1 -0.0862068965517153 0.0609830979543031
3 -0.0854700854700923 0.744219936054984
1 0 0.0353068545389911
2 0 0.0157783514364399
3 0 0.568827892206973
3 0.0826446280991604 0.483567870891968
1 0.0840336134453707 0.0353068545389911
2 0.0869565217391255 0.00527998718509528
3 0.165289256198349 0.327663831915958
1 0.16806722689077 0.027970784991759
2 0.173913043478251 0.00790457824793144
3 0.24793388429751 0.274071818517955
1 0.252100840336141 0.0499789936334551
2 0.260869565217405 0.0197152380306942
3 0.330578512396698 0.19368379842095
1 0.336134453781511 0.0316388197653751
2 0.34782608695653 0.00921687377934952
3 0.413223140495859 0.125475781368945
1 0.420168067226882 0.00596257635006303
2 0.434782608695656 0.0131537603736038
3 0.495867768595048 0.110859777714944
1 0.504201680672281 0.00229454157644702
2 0.521739130434781 0.0039676916536772
3 0.578512396694208 0.0889357722339431
1 0.588235294117652 0.027970784991759
2 0.608695652173907 0.0157783514364399
3 0.661157024793397 0.0572677643169411
1 0.672268907563023 0.027970784991759
2 0.695652173913032 0.00790457824793144
3 0.743801652892557 0.0475237618809405
1 0.756302521008394 0.016966680670911
2 0.782608695652186 0.0118414648421857
3 0.826446280991746 0.071883767970942
1 0.840336134453793 0.024302750218143
2 0.869565217391312 0.0105291693107676
3 0.909090909090907 0.0597037649259412
1 0.924369747899163 0.016966680670911
2 0.956521739130437 0.00921687377934952
3 0.991735537190095 0.0523957630989408
1 1.00840336134453 0.013298645897295
2 1.04347826086956 0.00265539612225912
3 1.07438016528926 0.0426517606629402
1 1.0924369747899 0.0316388197653751
2 1.13043478260869 0.0039676916536772
3 1.15702479338842 0.0280357570089393
1 1.1764705882353 0.0499789936334551
2 1.21739130434781 0.0118414648421857
3 1.2396694214876 0.0353437588359397
1 1.26050420168067 0.016966680670911
2 1.30434782608697 0.0118414648421857
3 1.32231404958677 0.04021576005394
1 1.34453781512605 0.013298645897295
2 1.39130434782609 0.00659228271651336
3 1.40495867768595 0.0329077582269396
1 1.42857142857142 0.024302750218143
2 1.47826086956522 3.08050594229551e-05
3 1.48760330578511 0.00611175152793788
1 1.51260504201682 0.00229454157644702
2 1.56521739130434 0.00265539612225912
3 1.5702479338843 0.0329077582269396
1 1.59663865546219 0.020634715444527
2 1.65217391304347 0.00790457824793144
3 1.65289256198346 0.0134197533549383
1 1.68067226890756 0.016966680670911
3 1.73553719008265 0.0231637557909389
2 1.7391304347826 0.00659228271651336
1 1.76470588235293 0.00963061112367903
3 1.81818181818181 0.00611175152793788
2 1.82608695652175 0.0144660559050218
1 1.84873949579833 0.020634715444527
3 1.900826446281 0.0280357570089393
2 1.91304347826087 3.08050594229551e-05
1 1.9327731092437 0.0316388197653751
3 1.98347107438016 0.0158557539639385
2 2 0.0105291693107676
1 2.01680672268907 0.00963061112367903
3 2.06611570247935 0.0231637557909389
2 2.08695652173913 0.0105291693107676
1 2.10084033613447 0.0353068545389911
3 2.14876033057851 0.0231637557909389
2 2.17391304347825 0.0118414648421857
1 2.18487394957984 0.024302750218143
3 2.23140495867767 0.0134197533549383
2 2.2608695652174 0.00659228271651336
1 2.26890756302521 0.027970784991759
3 2.31404958677686 0.0134197533549383
2 2.34782608695653 0.0105291693107676
1 2.35294117647058 0.0353068545389911
3 2.39669421487602 0.0280357570089393
2 2.43478260869566 0.00790457824793144
1 2.43697478991598 0.00596257635006303
3 2.47933884297521 0.0329077582269396
group x y
1 -2.48739495798318 0.00229454157644702
2 -2.43478260869566 0.00265539612225912
3 -2.4297520661157 0.0329077582269396
1 -2.40336134453781 0.020634715444527
2 -2.34782608695653 0.00790457824793144
3 -2.34710743801654 0.0134197533549383
1 -2.31932773109244 0.016966680670911
3 -2.26446280991735 0.0231637557909389
2 -2.2608695652174 0.00659228271651336
1 -2.23529411764707 0.00963061112367903
3 -2.18181818181819 0.00611175152793788
2 -2.17391304347825 0.0144660559050218
1 -2.15126050420167 0.020634715444527
3 -2.099173553719 0.0280357570089393
2 -2.08695652173913 3.08050594229551e-05
1 -2.0672268907563 0.0316388197653751
3 -2.01652892561984 0.0158557539639385
2 -2 0.0105291693107676
1 -1.98319327731093 0.00963061112367903
3 -1.93388429752065 0.0231637557909389
2 -1.91304347826087 0.0105291693107676
1 -1.89915966386553 0.0353068545389911
3 -1.85123966942149 0.0231637557909389
2 -1.82608695652175 0.0118414648421857
1 -1.81512605042016 0.024302750218143
3 -1.76859504132233 0.0134197533549383
2 -1.7391304347826 0.00659228271651336
1 -1.73109243697479 0.027970784991759
3 -1.68595041322314 0.0134197533549383
2 -1.65217391304347 0.0105291693107676
1 -1.64705882352942 0.0353068545389911
3 -1.60330578512398 0.0280357570089393
2 -1.56521739130434 0.00790457824793144
1 -1.56302521008402 0.00596257635006303
3 -1.52066115702479 0.0329077582269396
1 -1.47899159663865 0.0316388197653751
2 -1.47826086956522 0.0131537603736038
3 -1.43801652892563 0.0280357570089393
1 -1.39495798319328 0.016966680670911
2 -1.39130434782609 0.0118414648421857
3 -1.35537190082644 0.0207277551819388
1 -1.31092436974791 0.00963061112367903
2 -1.30434782608697 0.0157783514364399
3 -1.27272727272728 0.0353437588359397
1 -1.22689075630251 0.020634715444527
2 -1.21739130434781 0.0197152380306942
3 -1.19008264462809 0.0353437588359397
1 -1.14285714285714 0.020634715444527
2 -1.13043478260869 0.0315258978134569
3 -1.10743801652893 0.0499597624899406
1 -1.05882352941177 0.0426429240862231
2 -1.04347826086956 0.0393996710019654
3 -1.02479338842974 0.0499597624899406
1 -0.974789915966397 0.0609830979543031
2 -0.956521739130437 0.0538349218475642
3 -0.942148760330582 0.0572677643169411
1 -0.890756302520998 0.141679862973855
2 -0.869565217391312 0.0787685369445078
3 -0.859504132231393 0.0329077582269396
1 -0.806722689075627 0.211372523672559
2 -0.782608695652186 0.108951334167124
3 -0.776859504132233 0.0645757661439415
1 -0.722689075630257 0.237048767087871
2 -0.695652173913032 0.143071017983994
3 -0.694214876033044 0.0621397655349414
1 -0.638655462184886 0.310409462560191
3 -0.611570247933884 0.0767557691889423
2 -0.608695652173907 0.182439883926536
1 -0.554621848739487 0.380102123258895
3 -0.528925619834723 0.0791917697979424
2 -0.521739130434781 0.206061203492062
1 -0.470588235294116 0.442458714410367
3 -0.446280991735534 0.0791917697979424
2 -0.434782608695656 0.217871863274824
1 -0.386554621848745 0.438790679636751
3 -0.363636363636374 0.0767557691889423
2 -0.34782608695653 0.230994818589005
1 -0.302521008403374 0.431454610089519
3 -0.280991735537185 0.0816277704069426
2 -0.260869565217405 0.21393497668057
1 -0.218487394957975 0.391106227579743
3 -0.198347107438025 0.0475237618809405
2 -0.173913043478251 0.183752179457954
1 -0.134453781512605 0.277397149597647
3 -0.115702479338836 0.0645757661439415
2 -0.0869565217391255 0.150944791172502
1 -0.0504201680672338 0.215040558446175
3 -0.0330578512396755 0.0670117667529417
2 0 0.116825107355632
1 0.0336134453781369 0.174692175936399
3 0.0495867768595133 0.0597037649259412
2 0.0869565217391255 0.0958283788529428
1 0.117647058823536 0.138011828200239
3 0.132231404958674 0.0304717576179394
2 0.173913043478251 0.0695824682245812
1 0.201680672268907 0.0939954109168471
3 0.214876033057863 0.0329077582269396
2 0.260869565217376 0.0446488531276377
1 0.285714285714278 0.0536470284070711
3 0.297520661157023 0.0377797594449399
2 0.34782608695653 0.0289013067506207
1 0.369747899159677 0.0683191675015351
3 0.380165289256212 0.0231637557909389
2 0.434782608695656 0.0197152380306942
1 0.453781512605048 0.0499789936334551
3 0.462809917355372 0.00123975030993758
2 0.521739130434781 0.0197152380306942
1 0.537815126050418 0.016966680670911
3 0.545454545454533 0.0134197533549383
2 0.608695652173907 0.0249644201563665
1 0.621848739495789 0.0499789936334551
3 0.628099173553721 0.0329077582269396
2 0.695652173913032 0.0197152380306942
1 0.705882352941188 0.0499789936334551
3 0.710743801652882 0.00123975030993758
2 0.782608695652186 0.0197152380306942
1 0.789915966386559 0.027970784991759
3 0.793388429752071 0.0207277551819388
2 0.869565217391312 0.00921687377934952
1 0.87394957983193 0.00963061112367903
3 0.876033057851231 0.00611175152793788
2 0.956521739130437 0.0131537603736038
1 0.9579831932773 0.0316388197653751
3 0.95867768595042 0.0231637557909389
3 1.04132231404958 0.0426517606629402
1 1.0420168067227 0.027970784991759
2 1.04347826086956 0.00790457824793144
3 1.12396694214877 0.00123975030993758
1 1.12605042016807 0.020634715444527
2 1.13043478260869 0.0131537603736038
3 1.20661157024793 0.0134197533549383
1 1.21008403361344 0.016966680670911
2 1.21739130434781 0.00265539612225912
3 1.28925619834712 0.00854775213693803
1 1.29411764705881 0.024302750218143
2 1.30434782608697 0.0157783514364399
3 1.37190082644628 0.00367575091893773
1 1.37815126050421 0.024302750218143
2 1.39130434782609 0.0118414648421857
3 1.45454545454547 0.0134197533549383
1 1.46218487394958 0.0426429240862231
2 1.47826086956522 0.00659228271651336
3 1.53719008264463 0.0329077582269396
1 1.54621848739495 0.027970784991759
2 1.56521739130434 0.00921687377934952
3 1.61983471074379 0.0377797594449399
1 1.63025210084032 0.024302750218143
2 1.65217391304347 0.00790457824793144
3 1.70247933884298 0.0158557539639385
1 1.71428571428572 0.013298645897295
2 1.73913043478262 0.0118414648421857
3 1.78512396694214 0.0231637557909389
1 1.79831932773109 0.013298645897295
2 1.82608695652175 0.00527998718509528
3 1.86776859504133 0.00854775213693803
1 1.88235294117646 0.00963061112367903
2 1.91304347826087 0.00790457824793144
3 1.95041322314049 0.0255997563999391
1 1.96638655462186 0.027970784991759
2 2 0.00921687377934952
3 2.03305785123968 0.00367575091893773
1 2.05042016806721 0.0389748893126071
2 2.08695652173913 0.00527998718509528
3 2.11570247933884 0.00123975030993758
1 2.1344537815126 0.024302750218143
2 2.17391304347825 0.0157783514364399
3 2.198347107438 0.00367575091893773
1 2.218487394958 0.0389748893126071
2 2.26086956521738 0.00659228271651336
3 2.28099173553721 -0.00850425212606303
1 2.30252100840335 0.016966680670911
2 2.3478260869565 0.00921687377934952
3 2.36363636363637 0.0329077582269396
1 2.38655462184875 0.0389748893126071
2 2.43478260869563 0.00527998718509528
3 2.44628099173553 0.00854775213693803
1 2.47058823529414 0.016966680670911
group x y
1 -3.3 0.00838252656434475
3 -3.3 0.00687833599295658
2 -3.3 0.00887763055339049
1 -3.3 0.0024268660632297
3 -3.3 -0.0124910581632092
2 -3.3 -0.0060639127045986
1 -3.3 -0.0124622851895579
3 -3.3 0.00863919000715347
2 -3.3 0.00721745908028059
1 -3.3 0.0173160173160173
3 -3.3 0.0104000440213504
2 -3.3 -0.0010833982852689
1 -3.3 -0.00948445493900039
3 -3.3 0.00863919000715347
2 -3.3 0.0022369446609509
1 -3.3 0.0024268660632297
3 -3.3 0.0104000440213504
1 -3.3 0.0143381870654598
2 -3.3 -0.0077240841777085
3 -3.3 0.0051174819787597
1 -3.3 0.00540469631378723
2 -3.3 0.0138581449727202
3 -3.3 -0.0072084961206185
1 -3.3 -0.00650662468844287
2 -3.3 0.00721745908028059
3 -3.3 0.0139217520497441
1 -3.3 -0.00948445493900039
2 -3.3 0.000576773187840996
3 -3.3 0.0051174819787597
1 -3.3 -0.00650662468844287
3 -3.3 0.00687833599295658
2 -3.3 0.0105378020265004
1 -3.3 0.0113603568149023
3 -3.3 -0.00896935013481539
2 -3.3 0.00721745908028059
1 -3.3 0.0202938475665748
3 -3.3 0.0051174819787597
2 -3.3 0.0022369446609509
1 -3.3 -0.00650662468844287
3 -3.3 0.00335662796456281
2 -3.3 0.00721745908028059
1 -3.3 0.0232716778171324
3 -3.3 0.015682606063941
2 -3.3 0.000576773187840996
1 -3.3 -0.00948445493900039
3 -3.3 -0.00192593407802784
2 -3.3 0.00887763055339049
1 -3.3 0.0202938475665748
3 -3.3 -0.00192593407802784
2 -3.3 -0.0010833982852689
1 -3.3 -0.0124622851895579
3 -3.3 -0.0072084961206185
2 -3.3 0.00389711613406079
1 -3.3 -0.00948445493900039
3 -3.3 0.0209651681065317
2 -3.3 0.00555728760717069
1 -3.3 0.0024268660632297
3 -3.3 -0.00192593407802784
2 -3.3 0.0022369446609509
1 -3.3 -0.00650662468844287
3 -3.3 0.00335662796456281
2 -3.3 0.00389711613406079
1 -3.3 0.00838252656434475
3 -3.3 0.00687833599295658
2 -3.3 0.00389711613406079
1 -3.3 -0.00650662468844287
3 -3.3 -0.00192593407802784
2 -3.3 -0.0010833982852689
1 -3.3 -0.00948445493900039
3 -3.3 -0.00544764210642161
2 -3.3 0.00887763055339049
1 -3.3 0.0024268660632297
3 -3.3 -0.00544764210642161
2 -3.3 0.0121979734996103
1 -3.3 -0.00352879443788534
3 -3.3 0.00159577395036593
2 -3.3 0.000576773187840996
1 -3.3 -0.00948445493900039
3 -3.3 -0.00368678809222473
2 -3.3 0.00555728760717069
1 -3.3 0.0024268660632297
3 -3.3 -0.00544764210642161
2 -3.3 -0.0093842556508184
1 -3.3 0.0113603568149023
3 -3.3 -0.0107302041490123
1 -3.3 0.00838252656434475
2 -3.3 0.0022369446609509
3 -3.3 -0.000165080063830958
3 -3.3 -0.0230561822483905
1 -3.3 0.0113603568149023
2 -3.3 0.0105378020265004
3 -3.3 0.00159577395036593
1 -3.3 0.0113603568149023
2 -3.3 0.0022369446609509
3 -3.3 -0.00544764210642161
1 -3.3 -0.0213957759412305
2 -3.3 -0.0110444271239283
3 -3.3 -0.0072084961206185
1 -3.3 -0.00650662468844287
2 -3.3 0.00389711613406079
3 -3.3 -0.00368678809222473
1 -3.3 0.00838252656434475
2 -3.3 0.0022369446609509
3 -3.3 -0.000165080063830958
1 -3.3 0.00540469631378723
2 -3.3 0.0105378020265004
3 -3.3 -0.00192593407802784
1 -3.3 -0.0124622851895579
2 -3.3 0.000576773187840996
3 -3.3 0.0121608980355472
1 -3.3 -0.000550964187327821
2 -3.3 0.0105378020265004
3 -3.25619834710744 0.015682606063941
1 -3.24369747899161 0.0024268660632297
2 -3.21739130434781 -0.0010833982852689
3 -3.17355371900825 -0.00896935013481539
1 -3.15966386554621 -0.00650662468844287
2 -3.13043478260869 0.0022369446609509
3 -3.09090909090909 -0.00368678809222473
1 -3.07563025210084 -0.00650662468844287
2 -3.04347826086956 0.00555728760717069
3 -3.0082644628099 -0.00368678809222473
1 -2.99159663865547 0.0143381870654598
2 -2.95652173913044 0.0155183164458301
3 -2.92561983471074 -0.00192593407802784
1 -2.9075630252101 -0.00352879443788534
2 -2.86956521739131 0.00887763055339049
3 -2.84297520661158 0.00159577395036593
1 -2.8235294117647 -0.0154401154401154
2 -2.78260869565219 0.0105378020265004
3 -2.7603305785124 0.00159577395036593
1 -2.73949579831933 0.00540469631378723
2 -2.69565217391303 0.00721745908028059
3 -2.67768595041323 -0.0195344742199967
1 -2.65546218487395 -0.00352879443788534
2 -2.60869565217391 0.00555728760717069
3 -2.59504132231405 -0.00368678809222473
1 -2.57142857142858 -0.0124622851895579
2 -2.52173913043478 0.0138581449727202
3 -2.51239669421489 0.0121608980355472
1 -2.48739495798318 0.0173160173160173
2 -2.43478260869566 0.0138581449727202
3 -2.4297520661157 -0.00368678809222473
1 -2.40336134453781 0.0024268660632297
2 -2.34782608695653 0.00389711613406079
3 -2.34710743801654 0.00159577395036593
1 -2.31932773109244 -0.00352879443788534
3 -2.26446280991735 -0.00896935013481539
2 -2.2608695652174 0.0155183164458301
1 -2.23529411764707 0.00838252656434475
3 -2.18181818181819 0.0209651681065317
2 -2.17391304347825 0.000576773187840996
1 -2.15126050420167 0.00540469631378723
3 -2.099173553719 -0.00192593407802784
2 -2.08695652173913 0.0138581449727202
1 -2.0672268907563 -0.000550964187327821
3 -2.01652892561984 0.00159577395036593
2 -2 -0.0027435697583788
1 -1.98319327731093 -0.000550964187327821
3 -1.93388429752065 -0.00368678809222473
2 -1.91304347826087 0.00721745908028059
1 -1.89915966386553 -0.00352879443788534
3 -1.85123966942149 -0.0072084961206185
2 -1.82608695652175 -0.0027435697583788
1 -1.81512605042016 -0.000550964187327821
3 -1.76859504132233 -0.00192593407802784
2 -1.7391304347826 0.00389711613406079
1 -1.73109243697479 -0.00650662468844287
3 -1.68595041322314 0.00335662796456281
2 -1.65217391304347 0.00555728760717069
1 -1.64705882352942 -0.00352879443788534
3 -1.60330578512398 -0.00192593407802784
2 -1.56521739130434 0.00721745908028059
1 -1.56302521008402 0.0113603568149023
3 -1.52066115702479 0.0051174819787597
1 -1.47899159663865 -0.00650662468844287
2 -1.47826086956522 -0.0010833982852689
3 -1.43801652892563 0.0051174819787597
1 -1.39495798319328 0.00540469631378723
2 -1.39130434782609 0.00555728760717069
3 -1.35537190082644 0.015682606063941
1 -1.31092436974791 0.0173160173160173
2 -1.30434782608697 0.0022369446609509
3 -1.27272727272728 0.0121608980355472
1 -1.22689075630251 0.0024268660632297
2 -1.21739130434781 0.0022369446609509
3 -1.19008264462809 0.00863919000715347
1 -1.14285714285714 0.00838252656434475
2 -1.13043478260869 0.000576773187840996
3 -1.10743801652893 0.0139217520497441
1 -1.05882352941177 -0.000550964187327821
2 -1.04347826086956 -0.0010833982852689
3 -1.02479338842974 0.00335662796456281
1 -0.974789915966397 0.0113603568149023
2 -0.956521739130437 0.00555728760717069
3 -0.942148760330582 0.0192043140923348
1 -0.890756302520998 -0.000550964187327821
2 -0.869565217391312 0.000576773187840996
3 -0.859504132231393 0.0332911462059099
1 -0.806722689075627 -0.00650662468844287
2 -0.782608695652186 0.00389711613406079
3 -0.776859504132233 0.0297694381775161
1 -0.722689075630257 0.00838252656434475
2 -0.695652173913032 0.00721745908028059
3 -0.694214876033044 0.0438562702910912
1 -0.638655462184886 0.0202938475665748
3 -0.611570247933884 0.031530292191713
2 -0.608695652173907 0.0105378020265004
1 -0.554621848739487 0.0024268660632297
3 -0.528925619834723 0.0368128542343036
2 -0.521739130434781 0.0022369446609509
1 -0.470588235294116 -0.00352879443788534
3 -0.446280991735534 0.0332911462059099
2 -0.434782608695656 -0.0010833982852689
1 -0.386554621848745 0.0024268660632297
3 -0.363636363636374 0.031530292191713
2 -0.34782608695653 0.000576773187840996
1 -0.302521008403374 -0.0124622851895579
3 -0.280991735537185 0.0368128542343036
2 -0.260869565217405 -0.0010833982852689
1 -0.218487394957975 -0.00650662468844287
3 -0.198347107438025 0.0456171243052881
2 -0.173913043478251 -0.0044037412314887
1 -0.134453781512605 0.0143381870654598
3 -0.115702479338836 0.0350520002201068
2 -0.0869565217391255 -0.0027435697583788
1 -0.0504201680672338 -0.00948445493900039
3 -0.0330578512396755 0.0385737082485005
2 0 0.0022369446609509
1 0.0336134453781369 -0.00352879443788534
3 0.0495867768595133 0.0332911462059099
2 0.0869565217391255 -0.0044037412314887
1 0.117647058823536 -0.00650662468844287
3 0.132231404958674 0.0420954162768943
2 0.173913043478251 0.000576773187840996
1 0.201680672268907 0.0024268660632297
3 0.214876033057863 0.0403345622626974
2 0.260869565217376 0.00721745908028059
1 0.285714285714278 0.00838252656434475
3 0.297520661157023 0.0297694381775161
2 0.34782608695653 0.00721745908028059
1 0.369747899159677 -0.00650662468844287
3 0.380165289256212 0.0332911462059099
2 0.434782608695656 0.01717848791894
1 0.453781512605048 -0.0154401154401154
3 0.462809917355372 0.0332911462059099
2 0.521739130434781 0.00721745908028059
1 0.537815126050418 0.0143381870654598
3 0.545454545454533 0.0244868761349254
2 0.608695652173907 -0.0010833982852689
1 0.621848739495789 -0.024373606191788
3 0.628099173553721 0.0104000440213504
2 0.695652173913032 0.00389711613406079
1 0.705882352941188 -0.0154401154401154
3 0.710743801652882 0.0209651681065317
2 0.782608695652186 -0.0027435697583788
1 0.789915966386559 0.00540469631378723
3 0.793388429752071 0.00687833599295658
2 0.869565217391312 0.01717848791894
1 0.87394957983193 0.0024268660632297
3 0.876033057851231 0.0227260221207286
2 0.956521739130437 0.00887763055339049
1 0.9579831932773 -0.00352879443788534
3 0.95867768595042 -0.00544764210642161
3 1.04132231404958 -0.00896935013481539
1 1.0420168067227 -0.00650662468844287
2 1.04347826086956 0.0105378020265004
3 1.12396694214877 0.015682606063941
1 1.12605042016807 0.00540469631378723
2 1.13043478260869 -0.0010833982852689
3 1.20661157024793 0.0139217520497441
1 1.21008403361344 0.00540469631378723
2 1.21739130434781 0.00721745908028059
3 1.28925619834712 0.00687833599295658
1 1.29411764705881 0.00540469631378723
2 1.30434782608697 -0.0044037412314887
3 1.37190082644628 0.0104000440213504
1 1.37815126050421 0.0024268660632297
2 1.39130434782609 0.000576773187840996
3 1.45454545454547 0.0104000440213504
1 1.46218487394958 -0.0154401154401154
2 1.47826086956522 0.00887763055339049
3 1.53719008264463 -0.000165080063830958
1 1.54621848739495 -0.00352879443788534
2 1.56521739130434 -0.0010833982852689
3 1.61983471074379 -0.00368678809222473
1 1.63025210084032 0.00540469631378723
2 1.65217391304347 0.00887763055339049
3 1.70247933884298 0.00687833599295658
1 1.71428571428572 0.0113603568149023
2 1.73913043478262 -0.0010833982852689
3 1.78512396694214 0.0104000440213504
1 1.79831932773109 0.0024268660632297
2 1.82608695652175 0.00389711613406079
3 1.86776859504133 0.0174434600781379
1 1.88235294117646 -0.000550964187327821
2 1.91304347826087 0.0105378020265004
3 1.95041322314049 0.00159577395036593
1 1.96638655462186 0.00540469631378723
2 2 0.00389711613406079
3 2.03305785123968 0.0209651681065317
1 2.05042016806721 -0.0154401154401154
2 2.08695652173913 0.00721745908028059
3 2.11570247933884 0.00863919000715347
1 2.1344537815126 -0.00650662468844287
2 2.17391304347825 -0.0077240841777085
3 2.198347107438 0.0121608980355472
1 2.218487394958 -0.00650662468844287
2 2.26086956521738 0.0105378020265004
3 2.28099173553721 0.015682606063941
1 2.30252100840335 -0.000550964187327821
2 2.3478260869565 -0.0010833982852689
3 2.36363636363637 -0.00368678809222473
1 2.38655462184875 -0.0154401154401154
2 2.43478260869563 0.00389711613406079
3 2.44628099173553 0.0104000440213504
1 2.47058823529414 -0.00650662468844287
2 2.52173913043481 0.0022369446609509
3 2.52892561983469 0.00863919000715347
1 2.55462184873949 0.0024268660632297
2 2.60869565217394 0.000576773187840996
3 2.61157024793391 -0.0248170362625874
1 2.63865546218489 0.0024268660632297
3 2.69421487603307 0.0104000440213504
2 2.69565217391306 0.00389711613406079
1 2.72268907563023 -0.00650662468844287
3 2.77685950413223 0.0104000440213504
2 2.78260869565219 0.0105378020265004
1 2.80672268907563 0.0143381870654598
3 2.85950413223139 0.00335662796456281
2 2.86956521739131 0.00555728760717069
1 2.89075630252103 -0.0154401154401154
3 2.94214876033055 -0.000165080063830958
2 2.95652173913044 0.00389711613406079
1 2.97478991596637 0.00838252656434475
3 3.02479338842977 -0.0072084961206185
2 3.04347826086956 0.00555728760717069
1 3.05882352941177 -0.000550964187327821
3 3.10743801652893 -0.00192593407802784
2 3.13043478260869 -0.0010833982852689
1 3.14285714285717 0.0173160173160173
3 3.19008264462809 -0.00544764210642161
2 3.21739130434781 -0.0077240841777085
1 3.22689075630251 -0.0154401154401154
3 3.27272727272725 -0.0160127661916029
2 3.3 -0.0044037412314887
1 3.3 -0.00948445493900039
3 3.3 0.00159577395036593
2 3.3 0.00721745908028059
1 3.3 -0.00948445493900039
3 3.3 -0.0072084961206185
2 3.3 -0.0044037412314887
1 3.3 0.0232716778171324
3 3.3 0.0139217520497441
1 3.3 -0.00650662468844287
2 3.3 0.00887763055339049
3 3.3 -0.00544764210642161
1 3.3 0.0202938475665748
2 3.3 0.000576773187840996
3 3.3 0.00687833599295658
1 3.3 0.0113603568149023
2 3.3 -0.0093842556508184
3 3.3 0.0174434600781379
1 3.3 -0.00352879443788534
2 3.3 -0.0044037412314887
3 3.3 -0.00896935013481539
1 3.3 0.00838252656434475
2 3.3 0.00721745908028059
3 3.3 -0.0072084961206185
1 3.3 -0.0124622851895579
2 3.3 0.00555728760717069
3 3.3 0.0104000440213504
1 3.3 -0.00948445493900039
2 3.3 0.0121979734996103
3 3.3 -0.0124910581632092
1 3.3 -0.0124622851895579
2 3.3 0.00887763055339049
3 3.3 0.00687833599295658
1 3.3 -0.00948445493900039
2 3.3 0.0155183164458301
3 3.3 -0.00368678809222473
1 3.3 0.00838252656434475
3 3.3 -0.00544764210642161
2 3.3 0.0022369446609509
1 3.3 0.00838252656434475
3 3.3 -0.00544764210642161
2 3.3 0.00721745908028059
1 3.3 -0.00948445493900039
3 3.3 -0.00368678809222473
2 3.3 0.00555728760717069
1 3.3 0.00540469631378723
3 3.3 0.00687833599295658
2 3.3 0.00555728760717069
1 3.3 -0.000550964187327821
3 3.3 -0.0072084961206185
2 3.3 0.00389711613406079
1 3.3 -0.0154401154401154
3 3.3 0.00335662796456281
2 3.3 0.00887763055339049
1 3.3 -0.00650662468844287
3 3.3 0.00335662796456281
2 3.3 0.00389711613406079
1 3.3 0.0024268660632297
3 3.3 -0.014251912177406
2 3.3 -0.0027435697583788
1 3.3 -0.000550964187327821
3 3.3 -0.000165080063830958
2 3.3 0.0138581449727202
1 3.3 0.0143381870654598
3 3.3 0.0104000440213504
2 3.3 0.00555728760717069
1 3.3 -0.000550964187327821
3 3.3 -0.00544764210642161
2 3.3 -0.0093842556508184
1 3.3 0.03816082906992
3 3.3 0.0051174819787597
2 3.3 0.00555728760717069
1 3.3 -0.00650662468844287
3 3.3 -0.000165080063830958
2 3.3 0.00555728760717069
1 3.3 0.00540469631378723
3 3.3 -0.000165080063830958
2 3.3 0.000576773187840996
1 3.3 -0.000550964187327821
3 3.3 -0.00192593407802784
2 3.3 0.0022369446609509
1 3.3 0.00838252656434475
3 3.3 0.00159577395036593
2 3.3 0.00389711613406079
1 3.3 -0.00948445493900039
3 3.3 0.00863919000715347
2 3.3 0.00389711613406079
1 3.3 -0.00352879443788534
3 3.3 0.00863919000715347
2 3.3 -0.0060639127045986
1 3.3 -0.018417945690673
3 3.3 -0.0212953282341936
2 3.3 -0.0093842556508184
1 3.3 0.00540469631378723
3 3.3 0.0139217520497441
1 3.3 0.0202938475665748
2 3.3 -0.0010833982852689
3 3.3 0.00687833599295658
3 3.3 -0.0195344742199967
1 3.3 -0.000550964187327821
2 3.3 -0.0010833982852689
3 3.3 -0.014251912177406
1 3.3 -0.00650662468844287
2 3.3 -0.0010833982852689
3 3.3 -0.0177736202057998
1 3.3 0.0173160173160173
2 3.3 -0.0044037412314887
3 3.3 -0.0107302041490123
1 3.3 0.0143381870654598
2 3.3 -0.0143647700701481
3 3.3 -0.0072084961206185
1 3.3 0.0143381870654598
2 3.3 0.000576773187840996
group x y
1 -2.49356223175965 -0.00352879443788534
3 -2.48523206751054 -0.00544764210642161
2 -2.4708520179372 0.00389711613406079
1 -2.40772532188839 0.0143381870654598
3 -2.40084388185653 -0.0124910581632092
2 -2.38116591928252 0.0022369446609509
1 -2.32188841201719 -0.00948445493900039
3 -2.31645569620252 0.00335662796456281
2 -2.29147982062779 0.00389711613406079
1 -2.23605150214593 -0.00650662468844287
3 -2.23206751054852 0.00687833599295658
2 -2.2017937219731 0.0105378020265004
1 -2.15021459227466 -0.0213957759412305
3 -2.14767932489451 -0.00896935013481539
2 -2.11210762331837 0.0022369446609509
1 -2.06437768240346 0.00838252656434475
3 -2.0632911392405 -0.000165080063830958
2 -2.02242152466368 -0.0077240841777085
3 -1.9789029535865 0.0192043140923348
1 -1.9785407725322 -0.0124622851895579
2 -1.93273542600895 0.00887763055339049
3 -1.89451476793249 -0.00544764210642161
1 -1.89270386266094 -0.000550964187327821
2 -1.84304932735427 -0.0010833982852689
3 -1.81012658227849 0.0051174819787597
1 -1.80686695278968 0.0173160173160173
2 -1.75336322869953 0.0121979734996103
3 -1.72573839662448 0.00687833599295658
1 -1.72103004291847 -0.000550964187327821
2 -1.66367713004485 -0.0010833982852689
3 -1.64135021097047 -0.00896935013481539
1 -1.63519313304721 0.0292273383182474
2 -1.57399103139011 0.00721745908028059
3 -1.55696202531647 -0.0072084961206185
1 -1.54935622317595 0.0292273383182474
2 -1.48430493273543 0.00721745908028059
3 -1.47257383966246 -0.000165080063830958
1 -1.46351931330474 -0.000550964187327821
2 -1.39461883408069 -0.0127045985970382
3 -1.38818565400845 0.00335662796456281
1 -1.37768240343348 -0.00948445493900039
2 -1.30493273542601 0.00389711613406079
3 -1.30379746835445 0.00863919000715347
1 -1.29184549356222 0.0024268660632297
3 -1.21940928270044 -0.0107302041490123
2 -1.21524663677133 0.0105378020265004
1 -1.20600858369096 -0.0154401154401154
3 -1.13502109704643 0.00159577395036593
2 -1.12556053811659 0.000576773187840996
1 -1.12017167381975 0.0113603568149023
3 -1.05063291139243 -0.00192593407802784
2 -1.03587443946191 0.0022369446609509
1 -1.03433476394849 -0.00948445493900039
3 -0.96624472573842 -0.0124910581632092
1 -0.948497854077232 -0.024373606191788
2 -0.946188340807169 0.01717848791894
3 -0.881856540084414 -0.0160127661916029
1 -0.862660944206027 -0.0154401154401154
2 -0.856502242152487 0.00721745908028059
3 -0.797468354430407 -0.014251912177406
1 -0.776824034334766 0.0202938475665748
2 -0.766816143497749 0.00721745908028059
3 -0.713080168776401 0.0121608980355472
1 -0.690987124463504 -0.00352879443788534
2 -0.677130044843068 0.0022369446609509
3 -0.628691983122337 0.0174434600781379
1 -0.6051502145923 -0.018417945690673
2 -0.58744394618833 -0.0060639127045986
3 -0.544303797468331 -0.00544764210642161
1 -0.519313304721038 -0.0273514364423455
2 -0.497757847533649 0.0105378020265004
3 -0.459915611814324 0.0104000440213504
1 -0.433476394849777 -0.024373606191788
2 -0.408071748878911 0.0155183164458301
3 -0.375527426160318 0.0227260221207286
1 -0.347639484978572 -0.000550964187327821
2 -0.318385650224229 0.00887763055339049
3 -0.291139240506311 0.0104000440213504
1 -0.261802575107311 0.0292273383182474
2 -0.228699551569491 0.00389711613406079
3 -0.206751054852305 0.0297694381775161
1 -0.175965665236049 -0.00650662468844287
2 -0.13901345291481 0.0155183164458301
3 -0.122362869198298 0.0438562702910912
1 -0.0901287553647876 0.0173160173160173
2 -0.0493273542600718 0.00389711613406079
3 -0.0379746835442916 0.0385737082485005
1 -0.00429184549358297 0.0143381870654598
2 0.0403587443946094 0.00721745908028059
3 0.046413502109715 0.0526605403620756
1 0.0815450643776785 0.0173160173160173
2 0.130044843049347 0.0121979734996103
3 0.130801687763721 0.0649865184614538
1 0.16738197424894 0.00540469631378723
3 0.215189873417728 0.0403345622626974
2 0.219730941704029 0.0022369446609509
1 0.253218884120201 -0.00650662468844287
3 0.299578059071735 0.0508996863478787
2 0.309417040358767 -0.0060639127045986
1 0.339055793991406 -0.00650662468844287
3 0.383966244725741 0.0491388323336818
2 0.399103139013448 0.0105378020265004
1 0.424892703862668 0.0232716778171324
3 0.468354430379748 0.031530292191713
2 0.488789237668186 0.0155183164458301
1 0.510729613733929 -0.00948445493900039
3 0.552742616033754 0.0244868761349254
2 0.578475336322867 0.00555728760717069
1 0.596566523605134 0.0202938475665748
3 0.637130801687761 0.0174434600781379
2 0.668161434977605 0.000576773187840996
1 0.682403433476395 0.0024268660632297
3 0.721518987341767 0.0104000440213504
2 0.757847533632287 0.0022369446609509
1 0.768240343347657 0.00540469631378723
3 0.805907172995774 0.0051174819787597
2 0.847533632286968 0.00555728760717069
1 0.854077253218861 -0.024373606191788
3 0.89029535864978 0.00687833599295658
2 0.937219730941706 -0.0077240841777085
1 0.939914163090123 0.0262495080676899
3 0.974683544303787 -0.00544764210642161
1 1.02575107296138 -0.000550964187327821
2 1.02690582959639 -0.0027435697583788
3 1.05907172995779 0.0051174819787597
1 1.11158798283259 0.0024268660632297
2 1.11659192825113 0.00389711613406079
3 1.1434599156118 -0.00192593407802784
1 1.19742489270385 -0.00948445493900039
2 1.20627802690581 0.000576773187840996
3 1.22784810126581 -0.000165080063830958
1 1.28326180257511 -0.000550964187327821
2 1.29596412556054 -0.0027435697583788
3 1.31223628691981 -0.00368678809222473
1 1.36909871244637 -0.0124622851895579
2 1.38565022421523 0.00389711613406079
3 1.39662447257382 0.00863919000715347
1 1.45493562231758 -0.0213957759412305
2 1.47533632286996 0.0105378020265004
3 1.48101265822783 0.00335662796456281
1 1.54077253218884 -0.00948445493900039
2 1.56502242152465 0.000576773187840996
3 1.56540084388183 0.00687833599295658
1 1.6266094420601 0.0024268660632297
3 1.6497890295359 -0.00368678809222473
2 1.65470852017938 0.00887763055339049
1 1.71244635193131 0.00540469631378723
3 1.7341772151899 -0.0072084961206185
2 1.74439461883406 0.0155183164458301
1 1.79828326180257 -0.000550964187327821
3 1.81856540084391 -0.00544764210642161
2 1.8340807174888 0.000576773187840996
1 1.88412017167383 -0.00650662468844287
3 1.90295358649792 -0.0124910581632092
2 1.92376681614348 0.00389711613406079
1 1.96995708154509 0.0113603568149023
3 1.98734177215192 0.0051174819787597
2 2.01345291479822 -0.0077240841777085
1 2.05579399141629 0.00540469631378723
3 2.07172995780593 0.00687833599295658
2 2.1031390134529 0.0022369446609509
1 2.14163090128756 -0.024373606191788
3 2.15611814345993 0.00159577395036593
2 2.19282511210764 0.0121979734996103
1 2.22746781115882 0.0024268660632297
3 2.24050632911394 0.0121608980355472
2 2.28251121076232 0.00721745908028059
1 2.31330472103002 -0.00948445493900039
3 2.32489451476795 0.00159577395036593
2 2.37219730941706 -0.0044037412314887
1 2.39914163090128 -0.00352879443788534
3 2.40928270042195 0.0051174819787597
2 2.46188340807174 0.00721745908028059
1 2.48497854077254 -0.00650662468844287
3 2.49367088607596 -0.00896935013481539
group x y
1 -2.45922746781116 -0.00948445493900039
2 -2.43497757847535 0.000576773187840996
3 -2.43459915611817 0.00687833599295658
1 -2.3733905579399 0.0024268660632297
3 -2.3502109704641 -0.00368678809222473
2 -2.34529147982062 0.00887763055339049
1 -2.28755364806869 0.00540469631378723
3 -2.2658227848101 -0.0072084961206185
2 -2.25560538116594 0.0155183164458301
1 -2.20171673819743 -0.000550964187327821
3 -2.18143459915609 -0.00544764210642161
2 -2.1659192825112 0.000576773187840996
1 -2.11587982832617 -0.00650662468844287
3 -2.09704641350208 -0.0124910581632092
2 -2.07623318385652 0.00389711613406079
1 -2.03004291845491 0.0113603568149023
3 -2.01265822784808 0.0051174819787597
2 -1.98654708520178 -0.0077240841777085
1 -1.94420600858371 0.00540469631378723
3 -1.92827004219407 0.00687833599295658
2 -1.8968609865471 0.0022369446609509
1 -1.85836909871244 -0.024373606191788
3 -1.84388185654007 0.00159577395036593
2 -1.80717488789236 0.0121979734996103
1 -1.77253218884118 0.0024268660632297
3 -1.75949367088606 0.0121608980355472
2 -1.71748878923768 0.00721745908028059
1 -1.68669527896998 -0.00948445493900039
3 -1.67510548523205 0.00159577395036593
2 -1.62780269058294 -0.0044037412314887
1 -1.60085836909872 -0.00352879443788534
3 -1.59071729957805 0.0051174819787597
2 -1.53811659192826 0.00721745908028059
1 -1.51502145922746 -0.00650662468844287
3 -1.50632911392404 -0.00896935013481539
2 -1.44843049327352 0.0105378020265004
1 -1.42918454935625 -0.00948445493900039
3 -1.42194092827003 -0.00896935013481539
2 -1.35874439461884 -0.0060639127045986
1 -1.34334763948499 -0.000550964187327821
3 -1.33755274261603 0.00159577395036593
2 -1.2690582959641 0.0105378020265004
1 -1.25751072961373 -0.000550964187327821
3 -1.25316455696202 -0.00368678809222473
2 -1.17937219730942 0.0022369446609509
1 -1.17167381974247 -0.024373606191788
3 -1.16877637130801 0.00687833599295658
2 -1.08968609865474 0.00389711613406079
1 -1.08583690987126 0.0024268660632297
3 -1.08438818565401 -0.00896935013481539
1 -1 -0.0154401154401154
2 -1 0.000576773187840996
3 -1 -0.00896935013481539
3 -0.915611814345993 -0.000165080063830958
1 -0.914893617021278 0.0113603568149023
2 -0.910313901345319 0.0022369446609509
3 -0.831223628691987 -0.00544764210642161
1 -0.829787234042556 0.00540469631378723
2 -0.820627802690581 0.000576773187840996
3 -0.74683544303798 0.0174434600781379
1 -0.744680851063833 -0.00948445493900039
2 -0.730941704035899 0.00721745908028059
3 -0.662447257383974 0.0508996863478787
1 -0.659574468085111 -0.00650662468844287
2 -0.641255605381161 -0.0010833982852689
3 -0.578059071729967 0.077312496560832
1 -0.574468085106389 0.00838252656434475
2 -0.55156950672648 0.0204988308651598
3 -0.493670886075961 0.131898971000935
1 -0.489361702127667 0.00540469631378723
2 -0.461883408071742 0.0105378020265004
3 -0.409282700421954 0.200572277554614
1 -0.404255319148945 0.0322051685688049
2 -0.372197309417061 0.0204988308651598
3 -0.324894514767948 0.309745226434821
1 -0.319148936170222 -0.000550964187327821
2 -0.282511210762323 0.0354403741231489
3 -0.240506329113941 0.457656963627359
1 -0.2340425531915 0.0113603568149023
2 -0.192825112107641 0.0437412314886984
3 -0.156118143459935 0.600286138777307
1 -0.148936170212778 0.0202938475665748
2 -0.103139013452903 0.0470615744349182
3 -0.0717299578059283 0.753480438012436
1 -0.0638297872340559 0.0292273383182474
2 -0.0134529147982221 0.0636632891660171
3 0.0126582278480782 0.890827051119793
1 0.0212765957446663 0.0351829988193625
2 0.076233183856516 0.065323460639127
3 0.0970464135020848 0.975348043801244
1 0.106382978723389 0.044116489571035
2 0.165919282511197 0.0553624318004677
3 0.181434599156091 1
1 0.191489361702111 0.0590056408238226
2 0.255605381165935 0.0752844894777864
3 0.265822784810155 0.94893523358829
1 0.276595744680833 0.044116489571035
2 0.345291479820617 0.065323460639127
3 0.350210970464161 0.86441424090684
1 0.361702127659555 0.0351829988193625
3 0.434599156118168 0.765806416111814
2 0.434977578475355 0.0553624318004677
1 0.446808510638277 0.0351829988193625
3 0.518987341772174 0.612612116876685
2 0.524663677130036 0.0304598597038192
1 0.531914893617 0.0262495080676899
3 0.603375527426181 0.494634897925494
2 0.614349775784774 0.0287996882307093
1 0.617021276595722 0.0024268660632297
3 0.687763713080187 0.369614262917515
1 0.702127659574444 0.0262495080676899
2 0.704035874439455 0.0304598597038192
3 0.772151898734194 0.271006438122489
1 0.787234042553166 0.0173160173160173
2 0.793721973094193 0.0188386593920499
3 0.8565400843882 0.186485445441039
1 0.872340425531888 0.0173160173160173
2 0.883408071748875 0.0121979734996103
3 0.940928270042207 0.14070324107192
1 0.95744680851061 -0.00352879443788534
2 0.973094170403613 0.0155183164458301
3 1.02531645569621 0.11252957684477
1 1.04255319148939 0.0024268660632297
2 1.06278026905829 0.00721745908028059
3 1.10970464135022 0.0896384746602102
1 1.12765957446811 0.00838252656434475
2 1.15246636771303 0.0155183164458301
3 1.19409282700423 0.0667473724756507
1 1.21276595744683 -0.024373606191788
2 1.24215246636771 0.0022369446609509
3 1.27848101265823 0.0438562702910912
1 1.29787234042556 0.0113603568149023
2 1.33183856502239 0.00721745908028059
3 1.36286919831224 0.0456171243052881
1 1.38297872340428 -0.0154401154401154
2 1.42152466367713 0.000576773187840996
3 1.44725738396625 0.0350520002201068
1 1.468085106383 -0.00948445493900039
2 1.51121076233181 0.01717848791894
3 1.53164556962025 0.0262477301491223
1 1.55319148936172 -0.000550964187327821
2 1.60089686098655 0.0105378020265004
3 1.61603375527426 0.031530292191713
1 1.63829787234044 0.00838252656434475
2 1.69058295964123 0.00721745908028059
3 1.70042194092827 0.0121608980355472
1 1.72340425531917 -0.00650662468844287
2 1.78026905829597 0.0121979734996103
3 1.78481012658227 0.0192043140923348
1 1.80851063829789 0.00540469631378723
3 1.86919831223628 0.0209651681065317
2 1.86995515695065 0.0022369446609509
1 1.89361702127661 -0.00650662468844287
3 1.95358649789029 0.00863919000715347
2 1.95964125560539 0.0138581449727202
1 1.97872340425533 -0.00650662468844287
3 2.03797468354429 -0.0107302041490123
2 2.04932735426007 0.0022369446609509
1 2.06382978723406 -0.0124622851895579
3 2.1223628691983 0.0104000440213504
2 2.13901345291481 0.0022369446609509
1 2.14893617021278 0.00838252656434475
3 2.2067510548523 -0.00896935013481539
2 2.22869955156949 0.00887763055339049
1 2.2340425531915 0.0232716778171324
3 2.29113924050631 0.00687833599295658
2 2.31838565022423 0.0105378020265004
1 2.31914893617022 0.0024268660632297
3 2.37552742616032 -0.00368678809222473
1 2.40425531914894 0.00838252656434475
2 2.40807174887891 0.00887763055339049
3 2.45991561181432 -0.014251912177406
1 2.48936170212767 -0.00948445493900039
2 2.49775784753365 0.0155183164458301
group x y
2 -2.48878923766819 0.01717848791894
3 -2.46835443037975 0.0262477301491223
1 -2.44680851063828 -0.000550964187327821
2 -2.39910313901345 0.0105378020265004
3 -2.38396624472574 0.031530292191713
1 -2.36170212765956 0.00838252656434475
2 -2.30941704035877 0.00721745908028059
3 -2.29957805907173 0.0121608980355472
1 -2.27659574468083 -0.00650662468844287
2 -2.21973094170403 0.0121979734996103
3 -2.21518987341773 0.0192043140923348
1 -2.19148936170211 0.00540469631378723
3 -2.13080168776372 0.0209651681065317
2 -2.13004484304935 0.0022369446609509
1 -2.10638297872339 -0.00650662468844287
3 -2.04641350210971 0.00863919000715347
2 -2.04035874439461 0.0138581449727202
1 -2.02127659574467 -0.00650662468844287
3 -1.96202531645571 -0.0107302041490123
2 -1.95067264573993 0.0022369446609509
1 -1.93617021276594 -0.0124622851895579
3 -1.8776371308017 0.0104000440213504
2 -1.86098654708519 0.0022369446609509
1 -1.85106382978722 0.00838252656434475
3 -1.7932489451477 -0.00896935013481539
2 -1.77130044843051 0.00887763055339049
1 -1.7659574468085 0.0232716778171324
3 -1.70886075949369 0.00687833599295658
2 -1.68161434977577 0.0105378020265004
1 -1.68085106382978 0.0024268660632297
3 -1.62447257383968 -0.00368678809222473
1 -1.59574468085106 0.00838252656434475
2 -1.59192825112109 0.00887763055339049
3 -1.54008438818568 -0.014251912177406
1 -1.51063829787233 -0.00948445493900039
2 -1.50224215246635 0.0155183164458301
3 -1.45569620253167 -0.000165080063830958
1 -1.42553191489361 -0.0124622851895579
2 -1.41255605381167 0.0121979734996103
3 -1.37130801687766 -0.000165080063830958
1 -1.34042553191489 0.0202938475665748
2 -1.32286995515693 0.000576773187840996
3 -1.28691983122366 0.0121608980355472
1 -1.25531914893617 0.0024268660632297
2 -1.23318385650225 0.00555728760717069
3 -1.20253164556959 0.00687833599295658
1 -1.17021276595744 0.0173160173160173
2 -1.14349775784751 0.00721745908028059
3 -1.11814345991559 0.00335662796456281
1 -1.08510638297872 -0.000550964187327821
2 -1.05381165919283 0.00389711613406079
3 -1.03375527426158 0.0174434600781379
1 -1 -0.00650662468844287
2 -0.964125560538093 0.0138581449727202
3 -0.949367088607573 0.00335662796456281
1 -0.914893617021278 0.00540469631378723
2 -0.874439461883412 0.01717848791894
3 -0.864978902953567 0.0209651681065317
1 -0.829787234042556 0.00540469631378723
2 -0.784753363228674 0.0304598597038192
3 -0.78059071729956 0.00335662796456281
1 -0.744680851063833 0.0173160173160173
3 -0.696202531645554 0.0051174819787597
2 -0.695067264573993 0.0470615744349182
1 -0.659574468085111 0.0232716778171324
3 -0.611814345991547 -0.00544764210642161
2 -0.605381165919255 0.0769446609508963
1 -0.574468085106389 0.0232716778171324
3 -0.527426160337541 0.0139217520497441
2 -0.515695067264573 0.143351519875292
1 -0.489361702127667 0.0470943198215926
3 -0.443037974683534 -0.00368678809222473
2 -0.426008968609892 0.199797349961029
1 -0.404255319148945 0.103673094582186
3 -0.358649789029528 -0.00368678809222473
2 -0.336322869955154 0.277825409197194
1 -0.319148936170222 0.130473566837203
3 -0.274261603375521 0.00687833599295658
2 -0.246636771300473 0.408978955572876
1 -0.2340425531915 0.234697625606717
3 -0.189873417721515 -0.00368678809222473
2 -0.156950672645735 0.526851130163679
1 -0.148936170212778 0.318076872622327
3 -0.105485232067508 -0.000165080063830958
2 -0.0672645739910536 0.656344505066251
1 -0.0638297872340559 0.461012724649088
3 -0.0210970464135016 0.0104000440213504
1 0.0212765957446663 0.532480650662469
2 0.0224215246636845 0.739353078721746
3 0.0632911392405049 0.0174434600781379
1 0.106382978723389 0.621815558179195
2 0.112107623318366 0.772556508183944
3 0.147679324894511 0.0121608980355472
1 0.191489361702111 0.621815558179195
2 0.201793721973104 0.787498051441933
3 0.232067510548518 -0.00192593407802784
1 0.276595744680833 0.642660369933097
2 0.291479820627785 0.716110678098207
3 0.316455696202524 0.00335662796456281
1 0.361702127659555 0.553325462416372
2 0.381165919282523 0.629781761496493
3 0.400843881856531 0.00863919000715347
1 0.446808510638277 0.463990554899646
2 0.470852017937204 0.50858924395947
3 0.485232067510537 0.00687833599295658
1 0.531914893617 0.365722156631248
2 0.560538116591943 0.408978955572876
3 0.569620253164544 0.00159577395036593
1 0.617021276595722 0.288298570116752
2 0.650224215246624 0.302727981293843
3 0.654008438818551 -0.00192593407802784
1 0.702127659574444 0.181096681096681
3 0.738396624472557 0.0104000440213504
2 0.739910313901362 0.214738893219018
1 0.787234042553166 0.124517906336088
3 0.822784810126564 0.015682606063941
2 0.829596412556043 0.156632891660171
1 0.872340425531888 0.0917617735799554
3 0.90717299578057 0.00687833599295658
2 0.919282511210781 0.0952065471551052
1 0.95744680851061 0.0470943198215926
3 0.991561181434577 0.00687833599295658
2 1.00896860986546 0.0719641465315666
1 1.04255319148933 0.03816082906992
3 1.07594936708858 0.0121608980355472
2 1.0986547085202 0.0520420888542479
1 1.12765957446811 0.044116489571035
3 1.16033755274259 0.00687833599295658
2 1.18834080717488 0.0437412314886984
1 1.21276595744683 0.0351829988193625
3 1.2447257383966 0.0121608980355472
2 1.27802690582962 0.0321200311769291
1 1.29787234042556 0.0143381870654598
3 1.32911392405066 0.00335662796456281
2 1.3677130044843 0.0221590023382697
1 1.38297872340428 0.00540469631378723
3 1.41350210970467 0.015682606063941
2 1.45739910313904 0.0238191738113796
1 1.468085106383 0.00838252656434475
3 1.49789029535867 0.00687833599295658
2 1.54708520179372 0.0238191738113796
1 1.55319148936172 -0.000550964187327821
3 1.58227848101268 0.0192043140923348
2 1.63677130044846 0.0138581449727202
1 1.63829787234044 0.0024268660632297
3 1.66666666666669 0.00863919000715347
1 1.72340425531917 0.00540469631378723
2 1.72645739910314 0.01717848791894
3 1.75105485232069 -0.00368678809222473
1 1.80851063829789 0.00838252656434475
2 1.81614349775782 0.0155183164458301
3 1.8354430379747 0.00335662796456281
1 1.89361702127661 -0.00948445493900039
2 1.90582959641256 0.00389711613406079
3 1.91983122362871 -0.000165080063830958
1 1.97872340425533 0.00838252656434475
2 1.99551569506724 0.0138581449727202
3 2.00421940928271 -0.014251912177406
1 2.06382978723406 -0.000550964187327821
2 2.08520179372198 0.0204988308651598
3 2.08860759493672 -0.00896935013481539
1 2.14893617021278 0.00540469631378723
3 2.17299578059072 0.0051174819787597
2 2.17488789237666 0.01717848791894
1 2.2340425531915 0.00540469631378723
3 2.25738396624473 0.00863919000715347
2 2.2645739910314 0.0155183164458301
1 2.31914893617022 0.00540469631378723
3 2.34177215189874 0.0051174819787597
2 2.35426008968608 0.0105378020265004
1 2.40425531914894 0.0262495080676899
3 2.42616033755274 -0.000165080063830958
2 2.44394618834082 0.00721745908028059
1 2.48936170212767 0.00838252656434475
group x y
2 -3.3 0.0238191738113796
1 -3.3 -0.000550964187327821
3 -3.3 0.0192043140923348
2 -3.3 0.0138581449727202
1 -3.3 0.0024268660632297
3 -3.3 0.00863919000715347
1 -3.3 0.00540469631378723
2 -3.3 0.01717848791894
3 -3.3 -0.00368678809222473
1 -3.3 0.00838252656434475
2 -3.3 0.0155183164458301
3 -3.3 0.00335662796456281
1 -3.3 -0.00948445493900039
2 -3.3 0.00389711613406079
3 -3.3 -0.000165080063830958
1 -3.3 0.00838252656434475
2 -3.3 0.0138581449727202
3 -3.3 -0.014251912177406
1 -3.3 -0.000550964187327821
2 -3.3 0.0204988308651598
3 -3.3 -0.00896935013481539
1 -3.3 0.00540469631378723
3 -3.3 0.0051174819787597
2 -3.3 0.01717848791894
1 -3.3 0.00540469631378723
3 -3.3 0.00863919000715347
2 -3.3 0.0155183164458301
1 -3.3 0.00540469631378723
3 -3.3 0.0051174819787597
2 -3.3 0.0105378020265004
1 -3.3 0.0262495080676899
3 -3.3 -0.000165080063830958
2 -3.3 0.00721745908028059
1 -3.3 0.00838252656434475
3 -3.3 -0.00544764210642161
2 -3.3 0.0022369446609509
1 -3.3 0.0024268660632297
3 -3.3 0.00335662796456281
2 -3.3 0.00555728760717069
1 -3.3 0.0262495080676899
3 -3.3 -0.000165080063830958
2 -3.3 0.0138581449727202
1 -3.3 -0.000550964187327821
3 -3.3 -0.00544764210642161
2 -3.3 0.0105378020265004
1 -3.3 0.0292273383182474
3 -3.3 -0.00192593407802784
2 -3.3 0.0121979734996103
1 -3.3 0.0143381870654598
3 -3.3 -0.00368678809222473
2 -3.3 0.0155183164458301
1 -3.3 0.0322051685688049
3 -3.3 -0.00544764210642161
2 -3.3 0.0105378020265004
1 -3.3 0.0113603568149023
3 -3.3 0.00863919000715347
2 -3.3 -0.0027435697583788
1 -3.3 0.00838252656434475
3 -3.3 0.00687833599295658
2 -3.3 0.0022369446609509
1 -3.3 0.0113603568149023
3 -3.3 -0.00368678809222473
1 -3.3 0.0143381870654598
2 -3.3 0.00721745908028059
3 -3.3 -0.000165080063830958
1 -3.3 0.00838252656434475
2 -3.3 -0.0060639127045986
3 -3.3 0.0051174819787597
1 -3.3 0.0113603568149023
2 -3.3 0.00555728760717069
3 -3.3 0.00687833599295658
1 -3.3 0.00838252656434475
3 -3.3 -0.0107302041490123
2 -3.3 0.01717848791894
1 -3.3 0.00838252656434475
3 -3.3 0.00687833599295658
2 -3.3 0.0105378020265004
1 -3.3 0.00540469631378723
3 -3.3 0.0174434600781379
2 -3.3 0.000576773187840996
1 -3.3 0.0232716778171324
3 -3.3 0.015682606063941
2 -3.3 0.0204988308651598
1 -3.3 -0.018417945690673
3 -3.3 0.00335662796456281
2 -3.3 0.0188386593920499
1 -3.3 0.0173160173160173
3 -3.3 0.015682606063941
2 -3.3 0.00887763055339049
1 -3.3 0.0202938475665748
3 -3.3 -0.000165080063830958
2 -3.3 0.0121979734996103
1 -3.3 0.0024268660632297
3 -3.3 0.0262477301491223
2 -3.3 0.0105378020265004
1 -3.3 -0.00352879443788534
3 -3.3 0.0121608980355472
2 -3.3 0.0204988308651598
1 -3.3 0.00838252656434475
3 -3.3 0.0139217520497441
2 -3.3 0.0121979734996103
1 -3.3 0.0113603568149023
3 -3.3 0.0121608980355472
2 -3.3 0.0287996882307093
1 -3.3 0.00540469631378723
3 -3.3 0.0192043140923348
2 -3.3 0.00555728760717069
1 -3.3 0.00838252656434475
3 -3.3 -0.00544764210642161
2 -3.3 0.0155183164458301
1 -3.3 -0.000550964187327821
3 -3.3 0.00159577395036593
2 -3.3 0.0105378020265004
1 -3.3 -0.00650662468844287
3 -3.3 0.00335662796456281
2 -3.3 0.0188386593920499
1 -3.3 -0.00650662468844287
3 -3.3 0.0121608980355472
2 -3.3 0.00887763055339049
1 -3.3 0.0202938475665748
3 -3.3 -0.00192593407802784
3 -3.3 0.0051174819787597
1 -3.3 -0.00650662468844287
2 -3.3 0.000576773187840996
3 -3.3 -0.00544764210642161
1 -3.3 0.0173160173160173
2 -3.3 0.00887763055339049
3 -3.28902953586498 0.00863919000715347
1 -3.28723404255317 0.0292273383182474
2 -3.27578475336321 0.00887763055339049
3 -3.20464135021098 -0.0107302041490123
1 -3.20212765957444 0.00540469631378723
2 -3.18609865470853 0.0022369446609509
3 -3.12025316455697 0.00335662796456281
1 -3.11702127659572 -0.00650662468844287
2 -3.09641255605379 0.00389711613406079
3 -3.03586497890296 -0.00368678809222473
1 -3.031914893617 -0.00352879443788534
2 -3.00672645739911 0.00721745908028059
3 -2.95147679324896 0.00159577395036593
1 -2.94680851063828 -0.00650662468844287
2 -2.91704035874437 0.00555728760717069
3 -2.86708860759495 0.0139217520497441
1 -2.86170212765956 -0.00650662468844287
2 -2.82735426008969 -0.0027435697583788
3 -2.78270042194094 0.0104000440213504
1 -2.77659574468083 -0.00352879443788534
2 -2.73766816143495 0.00555728760717069
3 -2.69831223628694 0.00335662796456281
1 -2.69148936170211 -0.00650662468844287
2 -2.64798206278027 0.0121979734996103
3 -2.61392405063293 -0.00192593407802784
1 -2.60638297872339 0.0232716778171324
2 -2.55829596412553 0.00721745908028059
3 -2.52953586497893 -0.00544764210642161
1 -2.52127659574467 -0.00352879443788534
2 -2.46860986547085 0.00721745908028059
3 -2.44514767932492 -0.00368678809222473
1 -2.43617021276594 -0.00352879443788534
2 -2.37892376681611 0.0155183164458301
3 -2.36075949367091 -0.000165080063830958
1 -2.35106382978722 0.0024268660632297
2 -2.28923766816143 0.0138581449727202
3 -2.27637130801691 0.00687833599295658
1 -2.2659574468085 -0.00650662468844287
2 -2.19955156950675 0.000576773187840996
3 -2.1919831223629 0.0104000440213504
1 -2.18085106382978 0.00838252656434475
2 -2.10986547085201 -0.0027435697583788
3 -2.10759493670884 0.0051174819787597
1 -2.09574468085106 0.0143381870654598
3 -2.02320675105483 0.00863919000715347
2 -2.02017937219733 0.00887763055339049
1 -2.01063829787233 -0.000550964187327821
3 -1.93881856540082 -0.000165080063830958
2 -1.9304932735426 -0.0060639127045986
1 -1.92553191489361 0.00540469631378723
3 -1.85443037974682 -0.0160127661916029
2 -1.84080717488791 0.00555728760717069
1 -1.84042553191489 -0.000550964187327821
3 -1.77004219409281 0.00159577395036593
1 -1.75531914893617 -0.0124622851895579
2 -1.75112107623318 0.0105378020265004
3 -1.6856540084388 0.0139217520497441
1 -1.67021276595744 0.0202938475665748
2 -1.66143497757849 0.000576773187840996
3 -1.6012658227848 -0.00368678809222473
1 -1.58510638297872 0.00540469631378723
2 -1.57174887892376 0.0138581449727202
3 -1.51687763713079 -0.0072084961206185
1 -1.5 0.00540469631378723
2 -1.48206278026908 0.000576773187840996
3 -1.43248945147678 -0.00544764210642161
1 -1.41489361702128 0.0143381870654598
2 -1.39237668161434 0.00555728760717069
3 -1.34810126582278 -0.000165080063830958
1 -1.32978723404256 -0.0273514364423455
2 -1.30269058295966 0.0138581449727202
3 -1.26371308016877 0.0051174819787597
1 -1.24468085106383 0.0024268660632297
2 -1.21300448430492 0.00389711613406079
3 -1.17932489451476 0.00687833599295658
1 -1.15957446808511 0.0262495080676899
2 -1.12331838565024 0.0105378020265004
3 -1.09493670886076 0.0227260221207286
1 -1.07446808510639 0.0232716778171324
2 -1.0336322869955 0.0105378020265004
3 -1.01054852320675 0.0174434600781379
1 -0.989361702127667 0.0113603568149023
2 -0.943946188340817 0.0121979734996103
3 -0.926160337552744 0.0526605403620756
1 -0.904255319148945 -0.018417945690673
2 -0.854260089686079 0.00555728760717069
3 -0.841772151898738 0.0579431024046663
1 -0.819148936170222 0.0143381870654598
2 -0.764573991031398 0.000576773187840996
3 -0.757383966244731 0.100203598745392
1 -0.7340425531915 -0.00352879443788534
2 -0.67488789237666 0.00721745908028059
3 -0.672995780590725 0.130138116986739
1 -0.648936170212778 -0.00352879443788534
3 -0.588607594936718 0.161833489242282
2 -0.585201793721978 0.0121979734996103
1 -0.563829787234056 0.0024268660632297
3 -0.504219409282712 0.188246299455236
2 -0.49551569506724 0.00555728760717069
1 -0.478723404255334 -0.00352879443788534
3 -0.419831223628705 0.205854839597205
2 -0.405829596412559 0.0105378020265004
1 -0.393617021276611 0.00540469631378723
3 -0.335443037974699 0.212898255653992
2 -0.316143497757821 0.00721745908028059
1 -0.308510638297889 -0.000550964187327821
3 -0.251054852320692 0.212898255653992
2 -0.22645739910314 0.00555728760717069
1 -0.223404255319167 0.0113603568149023
3 -0.166666666666686 0.204093985583008
1 -0.138297872340445 0.0024268660632297
2 -0.136771300448459 0.00389711613406079
3 -0.0822784810126791 0.175920321355858
1 -0.0531914893617227 -0.0124622851895579
2 -0.0470852017937204 0.00389711613406079
3 0.00210970464132743 0.151268365157101
1 0.0319148936169995 -0.00352879443788534
2 0.0426008968609608 0.00555728760717069
3 0.0864978902953339 0.138942387057723
1 0.117021276595722 -0.0124622851895579
2 0.132286995515699 0.00389711613406079
3 0.17088607594934 0.101964452759588
1 0.202127659574444 -0.0154401154401154
2 0.22197309417038 0.0121979734996103
3 0.255274261603404 0.077312496560832
1 0.287234042553166 -0.0124622851895579
2 0.311659192825118 0.00389711613406079
3 0.33966244725741 0.0649865184614538
1 0.372340425531888 0.0143381870654598
2 0.401345291479799 0.0138581449727202
3 0.424050632911417 0.031530292191713
1 0.457446808510667 -0.0213957759412305
2 0.491031390134538 0.0105378020265004
3 0.508438818565423 0.0385737082485005
1 0.542553191489333 -0.000550964187327821
2 0.580717488789219 0.0022369446609509
3 0.59282700421943 0.015682606063941
1 0.627659574468112 -0.00352879443788534
2 0.670403587443957 0.0121979734996103
3 0.677215189873436 0.015682606063941
1 0.712765957446834 0.0024268660632297
2 0.760089686098638 -0.0010833982852689
3 0.761603375527443 0.00159577395036593
1 0.797872340425556 0.0113603568149023
3 0.845991561181449 0.0104000440213504
2 0.849775784753376 0.0188386593920499
1 0.882978723404278 -0.0333070969434606
3 0.930379746835456 0.0104000440213504
2 0.939461883408057 0.0121979734996103
1 0.968085106383 -0.0124622851895579
3 1.01476793248946 0.0051174819787597
2 1.0291479820628 0.0121979734996103
1 1.05319148936172 0.0024268660632297
3 1.09915611814347 0.0121608980355472
2 1.11883408071748 0.0105378020265004
1 1.13829787234044 0.0024268660632297
3 1.18354430379748 -0.000165080063830958
2 1.20852017937221 0.0105378020265004
1 1.22340425531917 -0.00352879443788534
3 1.26793248945148 0.00335662796456281
2 1.2982062780269 0.00389711613406079
1 1.30851063829789 0.0202938475665748
3 1.35232067510549 -0.00192593407802784
2 1.38789237668163 0.00389711613406079
1 1.39361702127661 0.0024268660632297
3 1.4367088607595 -0.000165080063830958
2 1.47757847533632 0.0105378020265004
1 1.47872340425533 -0.00650662468844287
3 1.5210970464135 0.0121608980355472
1 1.56382978723406 0.00838252656434475
2 1.56726457399105 0.000576773187840996
3 1.60548523206751 0.0051174819787597
1 1.64893617021278 0.0202938475665748
2 1.65695067264573 0.00555728760717069
3 1.68987341772151 -0.00896935013481539
1 1.7340425531915 0.0143381870654598
2 1.74663677130047 0.00721745908028059
3 1.77426160337552 -0.00192593407802784
1 1.81914893617022 -0.0124622851895579
2 1.83632286995515 0.0105378020265004
3 1.85864978902953 -0.000165080063830958
1 1.90425531914894 0.0173160173160173
2 1.92600896860989 -0.0027435697583788
3 1.94303797468353 -0.0124910581632092
1 1.98936170212767 0.0113603568149023
2 2.01569506726457 0.0155183164458301
3 2.02742616033754 -0.000165080063830958
1 2.07446808510639 -0.0303292666929031
2 2.10538116591931 0.00721745908028059
3 2.11181434599155 0.00335662796456281
1 2.15957446808511 0.0202938475665748
2 2.19506726457399 0.00389711613406079
3 2.19620253164555 -0.00544764210642161
1 2.24468085106383 0.00540469631378723
3 2.28059071729956 0.00687833599295658
2 2.28475336322867 0.0105378020265004
1 2.32978723404256 0.0113603568149023
3 2.36497890295357 0.0104000440213504
2 2.37443946188341 0.00555728760717069
1 2.41489361702128 -0.0124622851895579
3 2.44936708860757 0.00687833599295658
2 2.46412556053809 0.00389711613406079
1 2.5 -0.00650662468844287
3 2.53375527426158 0.0104000440213504
2 2.55381165919283 0.00555728760717069
1 2.58510638297872 0.0232716778171324
3 2.61814345991559 0.0227260221207286
2 2.64349775784751 0.00887763055339049
1 2.67021276595744 0.0024268660632297
3 2.70253164556959 0.0051174819787597
2 2.73318385650225 0.0022369446609509
1 2.75531914893617 -0.00650662468844287
3 2.7869198312236 0.0139217520497441
2 2.82286995515693 0.0138581449727202
1 2.84042553191489 -0.024373606191788
3 2.87130801687766 0.0104000440213504
2 2.91255605381167 -0.0027435697583788
1 2.92553191489361 0.0024268660632297
3 2.95569620253167 -0.0107302041490123
2 3.00224215246635 0.00721745908028059
1 3.01063829787233 0.0202938475665748
3 3.04008438818568 -0.000165080063830958
2 3.09192825112109 0.00887763055339049
1 3.09574468085106 -0.00948445493900039
3 3.12447257383968 0.00159577395036593
1 3.18085106382978 0.0173160173160173
2 3.18161434977577 -0.0077240841777085
3 3.20886075949369 0.00687833599295658
1 3.2659574468085 -0.00352879443788534
2 3.27130044843051 0.0121979734996103
3 3.2932489451477 0.00687833599295658
1 3.3 0.00540469631378723
2 3.3 0.00555728760717069
3 3.3 0.0174434600781379
1 3.3 0.0143381870654598
2 3.3 0.00555728760717069
3 3.3 -0.00896935013481539
1 3.3 0.00540469631378723
2 3.3 0.0155183164458301
3 3.3 0.00159577395036593
1 3.3 -0.0124622851895579
2 3.3 0.00721745908028059
3 3.3 0.00687833599295658
1 3.3 -0.000550964187327821
3 3.3 -0.0124910581632092
2 3.3 0.0188386593920499
1 3.3 0.0024268660632297
3 3.3 -0.00896935013481539
2 3.3 -0.0027435697583788
1 3.3 0.0113603568149023
3 3.3 -0.00368678809222473
2 3.3 0.0121979734996103
1 3.3 0.0202938475665748
3 3.3 -0.0160127661916029
2 3.3 0.00555728760717069
1 3.3 0.0024268660632297
3 3.3 0.0051174819787597
2 3.3 0.00555728760717069
1 3.3 0.0024268660632297
3 3.3 0.0051174819787597
2 3.3 0.00721745908028059
1 3.3 -0.00948445493900039
3 3.3 -0.00192593407802784
2 3.3 0.00887763055339049
1 3.3 -0.00352879443788534
3 3.3 0.0139217520497441
2 3.3 0.00721745908028059
1 3.3 -0.00650662468844287
3 3.3 -0.00544764210642161
2 3.3 0.00389711613406079
1 3.3 0.0202938475665748
3 3.3 -0.000165080063830958
2 3.3 0.0138581449727202
1 3.3 -0.018417945690673
3 3.3 -0.00368678809222473
2 3.3 0.00721745908028059
1 3.3 0.0173160173160173
3 3.3 -0.00192593407802784
2 3.3 0.0138581449727202
1 3.3 0.00540469631378723
3 3.3 -0.0124910581632092
2 3.3 0.0105378020265004
1 3.3 0.0024268660632297
3 3.3 -0.0107302041490123
1 3.3 0.0024268660632297
2 3.3 0.00721745908028059
3 3.3 -0.00544764210642161
1 3.3 0.00838252656434475
2 3.3 0.0155183164458301
3 3.3 0.00335662796456281
1 3.3 0.0262495080676899
2 3.3 0.00887763055339049
3 3.3 -0.00896935013481539
1 3.3 -0.024373606191788
3 3.3 -0.00368678809222473
2 3.3 0.0138581449727202
1 3.3 0.00540469631378723
3 3.3 0.00335662796456281
2 3.3 0.0155183164458301
1 3.3 0.00540469631378723
3 3.3 0.00159577395036593
2 3.3 0.0121979734996103
1 3.3 -0.00352879443788534
3 3.3 -0.000165080063830958
2 3.3 0.00721745908028059
1 3.3 -0.000550964187327821
3 3.3 -0.0177736202057998
2 3.3 -0.0044037412314887
1 3.3 -0.00352879443788534
3 3.3 -0.00368678809222473
2 3.3 0.000576773187840996
1 3.3 0.0024268660632297
3 3.3 0.0192043140923348
2 3.3 0.0155183164458301
1 3.3 -0.00948445493900039
3 3.3 -0.0124910581632092
2 3.3 0.0138581449727202
1 3.3 0.0232716778171324
3 3.3 -0.00192593407802784
2 3.3 0.00887763055339049
1 3.3 0.00540469631378723
3 3.3 -0.00192593407802784
2 3.3 0.0138581449727202
1 3.3 -0.0213957759412305
3 3.3 -0.000165080063830958
2 3.3 0.00721745908028059
1 3.3 0.00838252656434475
3 3.3 0.00159577395036593
2 3.3 0.00887763055339049
1 3.3 0.0024268660632297
3 3.3 -0.00368678809222473
2 3.3 -0.0027435697583788
1 3.3 -0.00650662468844287
3 3.3 0.0051174819787597
2 3.3 0.00555728760717069
1 3.3 0.0262495080676899
3 3.3 -0.00896935013481539
2 3.3 0.00721745908028059
1 3.3 -0.00948445493900039
3 3.3 -0.0160127661916029
1 3.3 -0.00650662468844287
2 3.3 -0.0027435697583788
3 3.3 -0.0230561822483905
1 3.3 -0.00948445493900039
3 3.3 -0.00368678809222473
2 3.3 -0.0010833982852689
1 3.3 0.0232716778171324
3 3.3 -0.00192593407802784
2 3.3 -0.0010833982852689
1 3.3 0.00540469631378723
3 3.3 -0.0248170362625874
2 3.3 0.0022369446609509
1 3.3 -0.00650662468844287
3 3.3 -0.0230561822483905
2 3.3 -0.016024941543258
1 3.3 -0.018417945690673
3 3.3 -0.014251912177406
2 3.3 -0.0010833982852689
group x y
1 -3.3 0.0143381870654598
3 -3.3 -0.014251912177406
2 -3.3 0.0188386593920499
1 -3.3 0.00838252656434475
3 -3.3 -0.000165080063830958
2 -3.3 0.0254793452844895
1 -3.28048780487802 -0.0124622851895579
3 -3.28048780487802 -0.0107302041490123
2 -3.25641025641028 0.0188386593920499
1 -3.19512195121951 -0.000550964187327821
3 -3.19512195121951 -0.00192593407802784
2 -3.16666666666669 0.0138581449727202
1 -3.10975609756099 0.0143381870654598
3 -3.10975609756099 -0.00192593407802784
2 -3.07692307692309 0.0188386593920499
1 -3.02439024390242 0.0322051685688049
3 -3.02439024390242 -0.0072084961206185
2 -2.9871794871795 0.0204988308651598
1 -2.9390243902439 0.0351829988193625
3 -2.9390243902439 0.00159577395036593
2 -2.89743589743591 0.0121979734996103
1 -2.85365853658539 0.00540469631378723
3 -2.85365853658539 -0.00544764210642161
2 -2.80769230769232 0.000576773187840996
1 -2.76829268292681 -0.00650662468844287
3 -2.76829268292681 -0.000165080063830958
2 -2.71794871794873 0.000576773187840996
1 -2.6829268292683 -0.000550964187327821
3 -2.6829268292683 -0.0072084961206185
2 -2.62820512820514 0.0138581449727202
1 -2.59756097560978 -0.00352879443788534
3 -2.59756097560978 0.00863919000715347
2 -2.53846153846155 0.0022369446609509
1 -2.51219512195121 0.00838252656434475
3 -2.51219512195121 0.0051174819787597
2 -2.44871794871796 0.0022369446609509
1 -2.42682926829269 -0.0154401154401154
3 -2.42682926829269 -0.014251912177406
2 -2.35897435897436 0.01717848791894
1 -2.34146341463412 -0.0124622851895579
3 -2.34146341463412 0.0104000440213504
2 -2.26923076923077 0.0188386593920499
1 -2.2560975609756 -0.0124622851895579
3 -2.2560975609756 -0.000165080063830958
2 -2.17948717948718 0.0022369446609509
1 -2.17073170731709 0.0113603568149023
3 -2.17073170731709 -0.0160127661916029
2 -2.08974358974359 0.0022369446609509
1 -2.08536585365852 0.0024268660632297
3 -2.08536585365852 -0.0212953282341936
1 -2 -0.00352879443788534
2 -2 0.00389711613406079
3 -2 -0.000165080063830958
1 -1.91463414634148 0.00540469631378723
3 -1.91463414634148 -0.0107302041490123
2 -1.91025641025641 0.00555728760717069
1 -1.82926829268291 -0.00650662468844287
3 -1.82926829268291 0.00863919000715347
2 -1.82051282051282 0.00555728760717069
1 -1.7439024390244 0.00838252656434475
3 -1.7439024390244 0.0051174819787597
2 -1.73076923076923 0.0105378020265004
1 -1.65853658536588 -0.00352879443788534
3 -1.65853658536588 0.00863919000715347
2 -1.64102564102564 0.0022369446609509
1 -1.57317073170731 -0.000550964187327821
3 -1.57317073170731 -0.00544764210642161
2 -1.55128205128204 -0.0027435697583788
1 -1.48780487804879 -0.000550964187327821
3 -1.48780487804879 0.00863919000715347
2 -1.46153846153845 0.0221590023382697
1 -1.40243902439022 -0.00948445493900039
3 -1.40243902439022 0.00159577395036593
2 -1.37179487179486 0.0105378020265004
1 -1.3170731707317 0.0143381870654598
3 -1.3170731707317 -0.00368678809222473
2 -1.28205128205127 0.0138581449727202
1 -1.23170731707319 0.0113603568149023
3 -1.23170731707319 -0.014251912177406
2 -1.19230769230768 0.0138581449727202
1 -1.14634146341461 -0.0154401154401154
3 -1.14634146341461 -0.00368678809222473
2 -1.10256410256409 0.000576773187840996
1 -1.0609756097561 -0.00352879443788534
3 -1.0609756097561 -0.0072084961206185
2 -1.0128205128205 0.0121979734996103
1 -0.975609756097583 0.00540469631378723
3 -0.975609756097583 -0.000165080063830958
2 -0.923076923076906 0.0105378020265004
1 -0.890243902439011 -0.018417945690673
3 -0.890243902439011 -0.000165080063830958
2 -0.833333333333314 0.0138581449727202
1 -0.804878048780495 0.00540469631378723
3 -0.804878048780495 -0.0072084961206185
2 -0.743589743589723 0.0221590023382697
1 -0.719512195121979 -0.000550964187327821
3 -0.719512195121979 0.00687833599295658
2 -0.653846153846132 0.0304598597038192
1 -0.634146341463406 0.0143381870654598
3 -0.634146341463406 0.00335662796456281
2 -0.564102564102541 0.0487217459080281
1 -0.548780487804891 0.00540469631378723
3 -0.548780487804891 -0.000165080063830958
2 -0.47435897435895 0.0918862042088854
1 -0.463414634146318 0.0292273383182474
3 -0.463414634146318 -0.00192593407802784
2 -0.384615384615358 0.120109119251754
1 -0.378048780487802 0.0709169618260527
3 -0.378048780487802 -0.00192593407802784
2 -0.294871794871824 0.17987529228371
1 -0.292682926829286 0.118562245834973
3 -0.292682926829286 0.0051174819787597
1 -0.207317073170714 0.160251869342778
3 -0.207317073170714 0.00863919000715347
2 -0.205128205128176 0.214738893219018
1 -0.121951219512198 0.207897153351699
3 -0.121951219512198 -0.00896935013481539
2 -0.115384615384642 0.254583008573656
1 -0.0365853658536821 0.267453758362849
3 -0.0365853658536821 -0.00368678809222473
2 -0.0256410256410504 0.334271239282931
1 0.0487804878048905 0.318076872622327
3 0.0487804878048905 -0.00544764210642161
2 0.0641025641025408 0.33759158222915
1 0.134146341463406 0.356788665879575
3 0.134146341463406 -0.014251912177406
2 0.153846153846132 0.359173811379579
1 0.219512195121979 0.353810835629017
3 0.219512195121979 -0.0160127661916029
2 0.243589743589723 0.355853468433359
1 0.304878048780495 0.329988193624557
3 0.304878048780495 0.00863919000715347
2 0.333333333333314 0.322650038971161
1 0.390243902439011 0.264475928112292
3 0.390243902439011 -0.0195344742199967
2 0.423076923076906 0.277825409197194
1 0.475609756097583 0.219808474353929
3 0.475609756097583 0.0104000440213504
2 0.512820512820497 0.218059236165238
1 0.560975609756099 0.181096681096681
3 0.560975609756099 0.00335662796456281
2 0.602564102564088 0.17489477786438
1 0.646341463414615 0.124517906336088
3 0.646341463414615 -0.00192593407802784
2 0.692307692307679 0.133390491036633
1 0.731707317073187 0.100695264331628
3 0.731707317073187 -0.014251912177406
2 0.78205128205127 0.0902260327357755
1 0.817073170731703 0.0560278105732651
3 0.817073170731703 0.00335662796456281
2 0.871794871794862 0.0736243180046765
1 0.902439024390219 0.044116489571035
3 0.902439024390219 -0.00544764210642161
2 0.961538461538453 0.0470615744349182
1 0.987804878048792 0.0411386593204775
3 0.987804878048792 -0.00544764210642161
2 1.05128205128204 0.033780202650039
1 1.07317073170731 0.0292273383182474
3 1.07317073170731 -0.00368678809222473
2 1.14102564102564 0.0238191738113796
1 1.15853658536588 0.0113603568149023
3 1.15853658536588 -0.00544764210642161
2 1.23076923076923 0.0238191738113796
1 1.2439024390244 0.0113603568149023
3 1.2439024390244 -0.00368678809222473
2 1.32051282051282 0.0238191738113796
1 1.32926829268291 0.0202938475665748
3 1.32926829268291 -0.0107302041490123
2 1.41025641025641 0.0138581449727202
1 1.41463414634148 0.0143381870654598
3 1.41463414634148 0.00159577395036593
1 1.5 0.0202938475665748
2 1.5 0.00389711613406079
3 1.5 -0.00368678809222473
1 1.58536585365852 -0.00352879443788534
3 1.58536585365852 0.0121608980355472
2 1.58974358974359 0.00721745908028059
1 1.67073170731709 -0.00352879443788534
3 1.67073170731709 0.00863919000715347
2 1.67948717948718 0.00887763055339049
1 1.7560975609756 -0.0124622851895579
3 1.7560975609756 -0.00544764210642161
2 1.76923076923077 0.01717848791894
1 1.84146341463412 0.0143381870654598
3 1.84146341463412 -0.014251912177406
2 1.85897435897436 0.0121979734996103
1 1.92682926829269 -0.00948445493900039
3 1.92682926829269 0.0385737082485005
2 1.94871794871796 -0.0027435697583788
1 2.01219512195121 0.00540469631378723
3 2.01219512195121 0.0139217520497441
2 2.03846153846155 0.0105378020265004
1 2.09756097560978 0.0143381870654598
3 2.09756097560978 0.00687833599295658
2 2.12820512820514 0.00555728760717069
1 2.1829268292683 0.00540469631378723
3 2.1829268292683 0.00159577395036593
2 2.21794871794873 0.0121979734996103
1 2.26829268292681 -0.00650662468844287
3 2.26829268292681 0.0139217520497441
2 2.30769230769232 0.0155183164458301
1 2.35365853658539 0.00838252656434475
3 2.35365853658539 0.0121608980355472
2 2.39743589743591 0.0105378020265004
1 2.4390243902439 -0.000550964187327821
3 2.4390243902439 0.00159577395036593
2 2.4871794871795 0.00555728760717069
1 2.52439024390242 0.0173160173160173
3 2.52439024390242 0.0104000440213504
2 2.57692307692309 0.000576773187840996
1 2.60975609756099 0.00540469631378723
3 2.60975609756099 0.00687833599295658
2 2.66666666666669 0.00389711613406079
1 2.69512195121951 -0.00948445493900039
3 2.69512195121951 0.0051174819787597
2 2.75641025641028 0.00721745908028059
1 2.78048780487802 -0.00352879443788534
3 2.78048780487802 0.015682606063941
2 2.84615384615387 0.0138581449727202
1 2.86585365853659 0.0024268660632297
3 2.86585365853659 0.00335662796456281
2 2.93589743589746 0.00887763055339049
1 2.95121951219511 0.00540469631378723
3 2.95121951219511 0.0192043140923348
2 3.02564102564105 0.0022369446609509
1 3.03658536585368 -0.00650662468844287
3 3.03658536585368 0.0051174819787597
2 3.11538461538464 0.0138581449727202
1 3.1219512195122 -0.00352879443788534
3 3.1219512195122 -0.000165080063830958
2 3.20512820512818 0.000576773187840996
1 3.20731707317071 -0.00352879443788534
3 3.20731707317071 0.00159577395036593
1 3.29268292682929 0.00838252656434475
3 3.29268292682929 -0.000165080063830958
2 3.29487179487182 0.00721745908028059
1 3.3 -0.00352879443788534
3 3.3 0.0121608980355472
2 3.3 0.00555728760717069
1 3.3 -0.0154401154401154
3 3.3 -0.0107302041490123
2 3.3 -0.0110444271239283
group x y
2 -2.48275862068965 0.01717848791894
1 -2.48 0.00540469631378723
3 -2.46408839779005 0.0104000440213504
2 -2.40229885057471 0.0238191738113796
1 -2.40000000000001 0.0173160173160173
3 -2.38674033149171 0.00159577395036593
2 -2.32183908045977 0.0221590023382697
1 -2.31999999999999 -0.00948445493900039
3 -2.30939226519337 0.0209651681065317
2 -2.24137931034483 0.0238191738113796
1 -2.23999999999999 -0.0154401154401154
3 -2.23204419889503 0.0280085841633192
2 -2.16091954022988 0.00887763055339049
1 -2.16 -0.000550964187327821
3 -2.15469613259668 0.00335662796456281
2 -2.08045977011494 0.0138581449727202
1 -2.08 0.0143381870654598
3 -2.07734806629834 0.00335662796456281
1 -2 -0.000550964187327821
2 -2 0.00555728760717069
3 -2 0.0051174819787597
3 -1.92592592592592 0.0051174819787597
1 -1.92207792207792 -0.00352879443788534
2 -1.92105263157895 0.0204988308651598
3 -1.85185185185185 -0.00368678809222473
1 -1.84415584415585 -0.00352879443788534
2 -1.84210526315789 0.0121979734996103
3 -1.77777777777777 0.0104000440213504
1 -1.76623376623377 -0.00650662468844287
2 -1.76315789473684 0.0371005455962588
3 -1.70370370370371 0.00687833599295658
1 -1.68831168831169 0.0143381870654598
2 -1.68421052631579 0.0155183164458301
3 -1.62962962962963 0.0121608980355472
1 -1.6103896103896 0.0292273383182474
2 -1.60526315789474 0.0238191738113796
3 -1.55555555555556 0.0051174819787597
1 -1.53246753246754 0.0024268660632297
2 -1.52631578947368 0.0287996882307093
3 -1.48148148148148 0.00159577395036593
1 -1.45454545454545 -0.0124622851895579
2 -1.44736842105263 0.0138581449727202
3 -1.4074074074074 -0.00368678809222473
1 -1.37662337662337 0.00838252656434475
2 -1.36842105263158 0.0354403741231489
3 -1.33333333333333 0.0104000440213504
1 -1.2987012987013 -0.00352879443788534
2 -1.28947368421052 0.0138581449727202
3 -1.25925925925925 0.0104000440213504
1 -1.22077922077922 0.0113603568149023
2 -1.21052631578948 0.0271395167575994
3 -1.18518518518519 0.015682606063941
1 -1.14285714285714 0.00540469631378723
2 -1.13157894736842 0.0321200311769291
3 -1.11111111111111 0.0209651681065317
1 -1.06493506493507 -0.00352879443788534
2 -1.05263157894737 0.0204988308651598
3 -1.03703703703704 0.0297694381775161
1 -0.987012987012989 0.0024268660632297
2 -0.973684210526315 0.0138581449727202
3 -0.962962962962962 0.0227260221207286
1 -0.909090909090907 -0.018417945690673
2 -0.89473684210526 0.0188386593920499
3 -0.888888888888886 0.0209651681065317
1 -0.831168831168824 -0.000550964187327821
2 -0.815789473684205 0.0105378020265004
3 -0.81481481481481 0.0051174819787597
1 -0.753246753246756 0.0024268660632297
3 -0.740740740740748 0.0139217520497441
2 -0.736842105263165 0.0155183164458301
1 -0.675324675324674 -0.00948445493900039
3 -0.666666666666671 0.0262477301491223
2 -0.65789473684211 0.01717848791894
1 -0.597402597402592 -0.00352879443788534
3 -0.592592592592595 0.015682606063941
2 -0.578947368421055 0.0204988308651598
1 -0.519480519480524 -0.00352879443788534
3 -0.518518518518519 0.0104000440213504
2 -0.5 0.0254793452844895
3 -0.444444444444443 0.0209651681065317
1 -0.441558441558442 0.00838252656434475
2 -0.421052631578945 0.0371005455962588
3 -0.370370370370367 0.031530292191713
1 -0.36363636363636 0.00838252656434475
2 -0.34210526315789 0.0420810600155885
3 -0.296296296296291 0.031530292191713
1 -0.285714285714292 0.0500721500721501
2 -0.263157894736835 0.0570226032735776
3 -0.222222222222229 0.0790733505750289
1 -0.20779220779221 0.0679391315754952
2 -0.184210526315795 0.0968667186282151
3 -0.148148148148152 0.135420679029329
1 -0.129870129870127 0.0887839433293979
2 -0.10526315789474 0.156632891660171
3 -0.0740740740740762 0.207615693611402
1 -0.0519480519480453 0.198963662600026
2 -0.026315789473685 0.226360093530787
3 0 0.32735376657679
1 0.0259740259740227 0.276387249114522
2 0.0526315789473699 0.241301636788776
3 0.0740740740740762 0.422439883343422
1 0.103896103896105 0.38656696838515
2 0.131578947368425 0.325970381917381
3 0.148148148148152 0.5474605183514
1 0.181818181818187 0.458034894398531
2 0.21052631578948 0.379095869056898
3 0.222222222222229 0.62141638694767
1 0.259740259740255 0.508658008658009
2 0.28947368421052 0.33925175370226
3 0.296296296296291 0.617894678919276
1 0.337662337662337 0.529502820411911
2 0.368421052631575 0.3458924395947
3 0.370370370370367 0.522808562152644
1 0.415584415584419 0.455057064147973
3 0.444444444444443 0.461178671655753
2 0.44736842105263 0.276165237724084
1 0.493506493506487 0.356788665879575
3 0.518518518518519 0.32735376657679
2 0.526315789473685 0.214738893219018
1 0.571428571428569 0.258520267611177
3 0.592592592592595 0.260441314037308
2 0.60526315789474 0.148332034294622
1 0.649350649350652 0.175141020595566
3 0.666666666666671 0.156550927199692
2 0.684210526315795 0.103507404520655
1 0.727272727272734 0.133451397087761
3 0.740740740740733 0.0966818907169977
2 0.763157894736835 0.0752844894777864
1 0.805194805194802 0.0470943198215926
3 0.81481481481481 0.06146481043306
2 0.84210526315789 0.0371005455962588
1 0.883116883116884 0.0411386593204775
3 0.888888888888886 0.0403345622626974
2 0.921052631578945 0.0354403741231489
1 0.961038961038966 0.0113603568149023
3 0.962962962962962 0.0209651681065317
2 1 0.0304598597038192
3 1.03703703703704 0.0209651681065317
1 1.03896103896103 -0.00650662468844287
2 1.07894736842105 0.0287996882307093
3 1.11111111111111 0.0121608980355472
1 1.11688311688312 0.0113603568149023
2 1.15789473684211 0.0354403741231489
3 1.18518518518519 0.0227260221207286
1 1.1948051948052 0.0322051685688049
2 1.23684210526316 0.0404208885424786
3 1.25925925925925 0.0121608980355472
1 1.27272727272727 0.0113603568149023
2 1.31578947368421 0.0271395167575994
3 1.33333333333333 0.0262477301491223
1 1.35064935064935 -0.0154401154401154
2 1.39473684210526 0.0321200311769291
3 1.4074074074074 0.00863919000715347
1 1.42857142857143 0.0143381870654598
2 1.47368421052632 0.0254793452844895
3 1.48148148148148 0.0280085841633192
1 1.50649350649351 0.0113603568149023
2 1.55263157894737 0.0271395167575994
3 1.55555555555556 0.0209651681065317
1 1.58441558441558 0.0143381870654598
3 1.62962962962963 0.0139217520497441
2 1.63157894736842 0.0204988308651598
1 1.66233766233766 0.00838252656434475
3 1.70370370370371 0.0139217520497441
2 1.71052631578948 0.0321200311769291
1 1.74025974025975 0.00838252656434475
3 1.77777777777777 0.0121608980355472
2 1.78947368421052 0.0304598597038192
1 1.81818181818181 0.0173160173160173
3 1.85185185185185 -0.000165080063830958
2 1.86842105263158 0.0304598597038192
1 1.8961038961039 0.0173160173160173
3 1.92592592592592 -0.000165080063830958
2 1.94736842105263 0.01717848791894
1 1.97402597402598 -0.000550964187327821
3 2 0.0192043140923348
2 2.02631578947368 0.0155183164458301
1 2.05194805194805 -0.00650662468844287
3 2.07407407407408 0.0051174819787597
2 2.10526315789474 0.0321200311769291
1 2.12987012987013 0.00540469631378723
3 2.14814814814815 0.0121608980355472
2 2.18421052631579 0.0138581449727202
1 2.20779220779221 0.0113603568149023
3 2.22222222222223 -0.00192593407802784
2 2.26315789473685 0.0271395167575994
1 2.28571428571429 0.0024268660632297
3 2.29629629629629 0.0174434600781379
2 2.34210526315789 0.0287996882307093
1 2.36363636363636 0.00540469631378723
3 2.37037037037037 0.015682606063941
2 2.42105263157895 0.0254793452844895
1 2.44155844155844 0.00838252656434475
3 2.44444444444444 -0.00368678809222473
2 2.5 0.0287996882307093
colour group showSelectedlegendcolour
#000000 1 mixture
#E31A1C 2 four.parts
#0000FF 3 one.part
colour x y showSelectedlegendcolour showSelected1 fill
#E31A1C -0.114942528735639 0.0354403741231489 four.parts 31 #E31A1C
#000000 0.159999999999997 0.00540469631378723 mixture 31 #000000
#0000FF 0.121546961325961 0.415396467286634 one.part 31 #0000FF
#E31A1C 0.21052631578948 0.379095869056898 four.parts 32 #E31A1C
#000000 0.337662337662337 0.529502820411911 mixture 32 #000000
#0000FF 0.222222222222229 0.62141638694767 one.part 32 #0000FF
#E31A1C 0.209677419354833 0.0686438035853468 four.parts 33 #E31A1C
#000000 0.294820717131472 0.0709169618260527 mixture 33 #000000
#0000FF 0.538461538461533 0.0244868761349254 one.part 33 #0000FF
#E31A1C 0.241935483870975 0.51522992985191 four.parts 34 #E31A1C
#000000 0.278884462151382 0.547369801915257 mixture 34 #000000
#0000FF 0 0.0121608980355472 one.part 34 #0000FF
#E31A1C -0.203389830508485 0.0221590023382697 four.parts 35 #E31A1C
#000000 0.132780082987551 0.0202938475665748 mixture 35 #000000
#0000FF 0.112449799196781 0.51928685412425 one.part 35 #0000FF
#E31A1C 0.440677966101703 0.0287996882307093 four.parts 36 #E31A1C
#000000 0.348547717842337 0.0470943198215926 mixture 36 #000000
#0000FF 0.305220883534133 0.366092554889121 one.part 36 #0000FF
#E31A1C 0.34632034632034 0.224699922057677 four.parts 37 #E31A1C
#000000 0.337552742616026 0.493768857405221 mixture 37 #000000
#0000FF -0.160642570281112 0.0139217520497441 one.part 37 #0000FF
#E31A1C 0.415584415584419 0.586617303195635 four.parts 38 #E31A1C
#000000 0.472573839662459 0.589059425423062 mixture 38 #000000
#0000FF 0.918032786885249 0.015682606063941 one.part 38 #0000FF
#E31A1C -0.277533039647579 1 four.parts 39 #E31A1C
#000000 -0.0638297872340559 1 mixture 39 #000000
#0000FF -0.239669421487605 0.436526715456997 one.part 39 #0000FF
#E31A1C 0.225225225225216 0.0204988308651598 four.parts 310 #E31A1C
#000000 -0.258620689655174 0.0202938475665748 mixture 310 #000000
#0000FF -0.128205128205138 0.293897540307049 one.part 310 #0000FF
#E31A1C 0.434782608695656 0.01717848791894 four.parts 311 #E31A1C
#000000 -0.638655462184886 0.0202938475665748 mixture 311 #000000
#0000FF -0.198347107438025 0.0456171243052881 one.part 311 #0000FF
#E31A1C -0.13901345291481 0.0155183164458301 four.parts 312 #E31A1C
#000000 -0.261802575107311 0.0292273383182474 mixture 312 #000000
#0000FF 0.130801687763721 0.0649865184614538 one.part 312 #0000FF
#E31A1C 0.255605381165935 0.0752844894777864 four.parts 313 #E31A1C
#000000 0.191489361702111 0.0590056408238226 mixture 313 #000000
#0000FF 0.181434599156091 1 one.part 313 #0000FF
#E31A1C 0.201793721973104 0.787498051441933 four.parts 314 #E31A1C
#000000 0.276595744680833 0.642660369933097 mixture 314 #000000
#0000FF 0.0632911392405049 0.0174434600781379 one.part 314 #0000FF
#E31A1C 0.401345291479799 0.0138581449727202 four.parts 315 #E31A1C
#000000 -0.819148936170222 0.0143381870654598 mixture 315 #000000
#0000FF -0.335443037974699 0.212898255653992 one.part 315 #0000FF
#E31A1C 0.153846153846132 0.359173811379579 four.parts 316 #E31A1C
#000000 0.134146341463406 0.356788665879575 mixture 316 #000000
#0000FF 0.475609756097583 0.0104000440213504 one.part 316 #0000FF
#E31A1C -0.0114942528735611 0.506576880186802 four.parts 41 #E31A1C
#000000 -0.120000000000005 0.545163688071616 mixture 41 #000000
#0000FF 0.0276243093922659 0.771015942753986 one.part 41 #0000FF
#E31A1C -0.137931034482762 0.136509540326903 four.parts 42 #E31A1C
#000000 -0.120000000000005 0.325081601654655 mixture 42 #000000
#0000FF -0.0939226519336955 0.880635970158993 one.part 42 #0000FF
#E31A1C -0.0847457627118615 0.066957877161745 four.parts 43 #E31A1C
#000000 -0.230125523012561 0.119671654332159 mixture 43 #000000
#0000FF 0.322580645161281 0.0304717576179394 one.part 43 #0000FF
#E31A1C -0.0169491525423666 1 four.parts 44 #E31A1C
#000000 -0.0460251046025064 1 mixture 44 #000000
#0000FF -0.0483870967742064 0.0597037649259412 one.part 44 #0000FF
#E31A1C -0.118644067796623 0.0275890112192026 four.parts 45 #E31A1C
#000000 -0.0292887029288806 0.0646511327279191 mixture 45 #000000
#0000FF 0.0645161290322562 0.722295930573983 one.part 45 #0000FF
#E31A1C -0.305084745762713 0.0223398290935303 four.parts 46 #E31A1C
#000000 -0.179916317991626 0.0756552370487671 mixture 46 #000000
#0000FF 0.0967741935483843 0.412923853230963 one.part 46 #0000FF
#E31A1C 0.303964757709252 0.156193973298174 four.parts 47 #E31A1C
#000000 0.276595744680861 0.548831722845232 mixture 47 #000000
#0000FF 0.636363636363626 0.0255997563999391 one.part 47 #0000FF
#E31A1C -0.27027027027026 0.0315258978134569 four.parts 48 #E31A1C
#000000 -0.258620689655174 0.127007723879391 mixture 48 #000000
#0000FF -0.341880341880341 1 one.part 48 #0000FF
#E31A1C -0.34782608695653 0.230994818589005 four.parts 49 #E31A1C
#000000 -0.470588235294116 0.442458714410367 mixture 49 #000000
#0000FF -0.280991735537185 0.0816277704069426 one.part 49 #0000FF
#E31A1C -0.695652173913061 0.0210275335621122 four.parts 410 #E31A1C
#000000 -0.436974789915951 0.215040558446175 mixture 410 #000000
#0000FF -0.39669421487605 0.317919829479957 one.part 410 #0000FF
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Interactive animation</title>
<script type="text/javascript" src="d3.v3.js"></script>
<script type="text/javascript" src="animint.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<!-- Selectize -->
<script type="text/javascript" src="jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="selectize.min.js"></script>
<link rel="stylesheet" type="text/css" href="selectize.css" />
</head>
<body>
<div id="plot"> </div>
<script>
var plot = new animint("#plot","plot.json");
</script>
</body>
</html>
/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\f]' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=ma(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=na(b);function qa(){}qa.prototype=d.filters=d.pseudos,d.setFilters=new qa,g=ga.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?ga.error(a):z(a,i).slice(0)};function ra(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;
return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==ca()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===ca()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?aa:ba):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=aa,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=aa,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=aa,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=ba;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=ba),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function da(a){var b=ea.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var ea="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fa=/ jQuery\d+="(?:null|\d+)"/g,ga=new RegExp("<(?:"+ea+")[\\s/>]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/<tbody/i,la=/<|&#?\w+;/,ma=/<(?:script|style|link)/i,na=/checked\s*(?:[^=]|=\s*.checked.)/i,oa=/^$|\/(?:java|ecma)script/i,pa=/^true\/(.*)/,qa=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ra={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?"<table>"!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Ca[0].contentWindow||Ca[0].contentDocument).document,b.write(),b.close(),c=Ea(a,b),Ca.detach()),Da[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Ga=/^margin/,Ha=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ia,Ja,Ka=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ia=function(b){return b.ownerDocument.defaultView.opener?b.ownerDocument.defaultView.getComputedStyle(b,null):a.getComputedStyle(b,null)},Ja=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ia(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Ha.test(g)&&Ga.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ia=function(a){return a.currentStyle},Ja=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ia(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Ha.test(g)&&!Ka.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function La(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight),b.removeChild(i)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Ma=/alpha\([^)]*\)/i,Na=/opacity\s*=\s*([^)]*)/,Oa=/^(none|table(?!-c[ea]).+)/,Pa=new RegExp("^("+S+")(.*)$","i"),Qa=new RegExp("^([+-])=("+S+")","i"),Ra={position:"absolute",visibility:"hidden",display:"block"},Sa={letterSpacing:"0",fontWeight:"400"},Ta=["Webkit","O","Moz","ms"];function Ua(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Ta.length;while(e--)if(b=Ta[e]+c,b in a)return b;return d}function Va(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fa(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wa(a,b,c){var d=Pa.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xa(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Ya(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ia(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Ja(a,b,f),(0>e||null==e)&&(e=a.style[b]),Ha.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xa(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Ja(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ua(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qa.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ua(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Ja(a,b,d)),"normal"===f&&b in Sa&&(f=Sa[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Oa.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Ra,function(){return Ya(a,b,d)}):Ya(a,b,d):void 0},set:function(a,c,d){var e=d&&Ia(a);return Wa(a,c,d?Xa(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Na.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Ma,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Ma.test(f)?f.replace(Ma,e):f+" "+e)}}),m.cssHooks.marginRight=La(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Ja,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Ga.test(a)||(m.cssHooks[a+b].set=Wa)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ia(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Va(this,!0)},hide:function(){return Va(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Za(a,b,c,d,e){
return new Za.prototype.init(a,b,c,d,e)}m.Tween=Za,Za.prototype={constructor:Za,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")},cur:function(){var a=Za.propHooks[this.prop];return a&&a.get?a.get(this):Za.propHooks._default.get(this)},run:function(a){var b,c=Za.propHooks[this.prop];return this.options.duration?this.pos=b=m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Za.propHooks._default.set(this),this}},Za.prototype.init.prototype=Za.prototype,Za.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Za.propHooks.scrollTop=Za.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Za.prototype.init,m.fx.step={};var $a,_a,ab=/^(?:toggle|show|hide)$/,bb=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cb=/queueHooks$/,db=[ib],eb={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bb.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bb.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fb(){return setTimeout(function(){$a=void 0}),$a=m.now()}function gb(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hb(a,b,c){for(var d,e=(eb[b]||[]).concat(eb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ib(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fa(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fa(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ab.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fa(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hb(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jb(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kb(a,b,c){var d,e,f=0,g=db.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$a||fb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$a||fb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jb(k,j.opts.specialEasing);g>f;f++)if(d=db[f].call(j,a,k,j.opts))return d;return m.map(k,hb,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kb,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],eb[c]=eb[c]||[],eb[c].unshift(b)},prefilter:function(a,b){b?db.unshift(a):db.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kb(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gb(b,!0),a,d,e)}}),m.each({slideDown:gb("show"),slideUp:gb("hide"),slideToggle:gb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($a=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$a=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_a||(_a=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_a),_a=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lb=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lb,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mb,nb,ob=m.expr.attrHandle,pb=/^(?:checked|selected)$/i,qb=k.getSetAttribute,rb=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nb:mb)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rb&&qb||!pb.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qb?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nb={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rb&&qb||!pb.test(c)?a.setAttribute(!qb&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ob[b]||m.find.attr;ob[b]=rb&&qb||!pb.test(b)?function(a,b,d){var e,f;return d||(f=ob[b],ob[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,ob[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rb&&qb||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mb&&mb.set(a,b,c)}}),qb||(mb={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},ob.id=ob.name=ob.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mb.set},m.attrHooks.contenteditable={set:function(a,b,c){mb.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sb=/^(?:input|select|textarea|button|object)$/i,tb=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sb.test(a.nodeName)||tb.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var ub=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ub," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ub," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ub," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vb=m.now(),wb=/\?/,xb=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xb,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yb,zb,Ab=/#.*$/,Bb=/([?&])_=[^&]*/,Cb=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Db=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Eb=/^(?:GET|HEAD)$/,Fb=/^\/\//,Gb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hb={},Ib={},Jb="*/".concat("*");try{zb=location.href}catch(Kb){zb=y.createElement("a"),zb.href="",zb=zb.href}yb=Gb.exec(zb.toLowerCase())||[];function Lb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mb(a,b,c,d){var e={},f=a===Ib;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nb(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Ob(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zb,type:"GET",isLocal:Db.test(yb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nb(Nb(a,m.ajaxSettings),b):Nb(m.ajaxSettings,a)},ajaxPrefilter:Lb(Hb),ajaxTransport:Lb(Ib),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cb.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zb)+"").replace(Ab,"").replace(Fb,yb[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gb.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yb[1]&&c[2]===yb[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yb[3]||("http:"===yb[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mb(Hb,k,b,v),2===t)return v;h=m.event&&k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Eb.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wb.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bb.test(e)?e.replace(Bb,"$1_="+vb++):e+(wb.test(e)?"&":"?")+"_="+vb++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jb+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mb(Ib,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Ob(k,v,c)),u=Pb(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qb=/%20/g,Rb=/\[\]$/,Sb=/\r?\n/g,Tb=/^(?:submit|button|image|reset|file)$/i,Ub=/^(?:input|select|textarea|keygen)/i;function Vb(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rb.test(a)?d(a,e):Vb(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vb(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vb(c,a[c],b,e);return d.join("&").replace(Qb,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Ub.test(this.nodeName)&&!Tb.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sb,"\r\n")}}):{name:b.name,value:c.replace(Sb,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zb()||$b()}:Zb;var Wb=0,Xb={},Yb=m.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in Xb)Xb[a](void 0,!0)}),k.cors=!!Yb&&"withCredentials"in Yb,Yb=k.ajax=!!Yb,Yb&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wb;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xb[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xb[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zb(){try{return new a.XMLHttpRequest}catch(b){}}function $b(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _b=[],ac=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_b.pop()||m.expando+"_"+vb++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ac.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ac.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ac,"$1"+e):b.jsonp!==!1&&(b.url+=(wb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_b.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bc=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bc)return bc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cc=a.document.documentElement;function dc(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cc;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cc})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dc(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=La(k.pixelPosition,function(a,c){return c?(c=Ja(a,b),Ha.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ec=a.jQuery,fc=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fc),b&&a.jQuery===m&&(a.jQuery=ec),m},typeof b===K&&(a.jQuery=a.$=m),m});
{
"geoms": {
"geom1_abline_scatter": {
"geom": "segment",
"classed": "geom1_abline_scatter",
"aes": {
"intercept": "intercept",
"slope": "slope"
},
"params": {
"na.rm": false,
"na.rm": false,
"colour": "#BEBEBE"
},
"types": {
"PANEL": "integer",
"x": "numeric",
"xend": "numeric",
"y": "numeric",
"yend": "numeric",
"group": "character"
},
"chunk_order": [],
"nest_order": [],
"subset_order": [],
"chunks": 1,
"total": 1
},
"geom2_point_scatter": {
"geom": "point",
"classed": "geom2_point_scatter",
"aes": {
"x": "mixture",
"y": "single",
"colour": "Sample",
"clickSelects": "channel.problem",
"showSelected1": "Sample"
},
"params": {
"na.rm": false,
"na.rm": false,
"size": 4,
"alpha": 0.6,
"clickSelects": "channel.problem",
"showSelected": "Sample"
},
"types": {
"colour": "rgb",
"x": "numeric",
"y": "numeric",
"clickSelects": "linetype",
"showSelected1": "factor",
"PANEL": "integer",
"fill": "rgb",
"group": "character"
},
"chunk_order": [],
"nest_order": [
"showSelected1"
],
"subset_order": [
"showSelected1"
],
"chunks": 1,
"total": 1
},
"geom3_segment_scatter": {
"geom": "segment",
"classed": "geom3_segment_scatter",
"aes": {
"x": "mixture",
"y": "one.part",
"xend": "mixture",
"yend": "four.parts",
"clickSelects": "channel.problem"
},
"params": {
"lineend": "butt",
"na.rm": false,
"na.rm": false,
"colour": "#BEBEBE",
"alpha": 0.6,
"size": 2,
"clickSelects": "channel.problem"
},
"types": {
"x": "numeric",
"xend": "numeric",
"y": "numeric",
"yend": "numeric",
"clickSelects": "linetype",
"PANEL": "integer",
"group": "character"
},
"chunk_order": [],
"nest_order": [],
"subset_order": [],
"chunks": 1,
"total": 1
},
"geom4_line_peaks": {
"geom": "line",
"classed": "geom4_line_peaks",
"aes": {
"x": "bases.from.middle",
"y": "relative.height",
"colour": "Sample",
"group": "Sample",
"showSelectedlegendcolour": "Sample",
"showSelected1": "channel.problem"
},
"params": {
"na.rm": false,
"na.rm": false,
"size": 1,
"showSelected": "channel.problem"
},
"types": {
"colour": "rgb",
"x": "numeric",
"y": "numeric",
"group": "character",
"showSelectedlegendcolour": "factor",
"showSelected1": "linetype",
"PANEL": "integer"
},
"chunk_order": [
"channel.problem"
],
"nest_order": [
"showSelectedlegendcolour",
"group"
],
"subset_order": [
"showSelectedlegendcolour"
],
"columns": {
"common": [
"colour",
"group",
"showSelectedlegendcolour"
]
},
"chunks": {
"31": 1,
"310": 2,
"311": 3,
"312": 4,
"313": 5,
"314": 6,
"315": 7,
"316": 8,
"32": 9,
"33": 10,
"34": 11,
"35": 12,
"36": 13,
"37": 14,
"38": 15,
"39": 16,
"41": 17,
"410": 18,
"42": 19,
"43": 20,
"44": 21,
"45": 22,
"46": 23,
"47": 24,
"48": 25,
"49": 26
},
"total": 26
},
"geom5_point_peaks": {
"geom": "point",
"classed": "geom5_point_peaks",
"aes": {
"x": "bases.from.middle",
"y": "relative.height",
"colour": "Sample",
"showSelectedlegendcolour": "Sample",
"showSelected1": "channel.problem"
},
"params": {
"na.rm": false,
"na.rm": false,
"showSelected": "channel.problem"
},
"types": {
"colour": "rgb",
"x": "numeric",
"y": "numeric",
"showSelectedlegendcolour": "factor",
"showSelected1": "linetype",
"PANEL": "integer",
"fill": "rgb",
"group": "character"
},
"chunk_order": [],
"nest_order": [
"showSelectedlegendcolour",
"showSelected1"
],
"subset_order": [
"showSelectedlegendcolour",
"showSelected1"
],
"chunks": 1,
"total": 1
}
},
"selectors": {
"Sample": {
"type": "multiple",
"legend": true,
"is.variable.value": false,
"showSelected": true,
"selected": [ "four.parts", "one.part", "mixture" ],
"levels": [ "four.parts", "one.part", "mixture" ],
"update": [
"geom2_point_scatter",
"geom4_line_peaks",
"geom5_point_peaks"
]
},
"channel.problem": {
"is.variable.value": false,
"type": "single",
"clickSelects": true,
"showSelected": true,
"chunks": "channel.problem",
"selected": "31",
"levels": [ "31", "32", "33", "34", "35", "36", "37", "38", "39", "310", "311", "312", "313", "314", "315", "316", "41", "42", "43", "44", "45", "46", "47", "48", "49", "410" ],
"update": [
"geom2_point_scatter",
"geom3_segment_scatter",
"geom4_line_peaks",
"geom5_point_peaks"
]
}
},
"plots": {
"scatter": {
"panel_margin_lines": 0.27,
"legend": {},
"strips": {
"top": [
""
],
"right": [
""
],
"n": {
"top": 0,
"right": 0
}
},
"layout": {
"PANEL": [ 1 ],
"ROW": [ 1 ],
"COL": [ 1 ],
"SCALE_X": [ 1 ],
"SCALE_Y": [ 1 ],
"AXIS_X": [ true ],
"AXIS_Y": [ true ],
"coord_fixed": [ true ],
"width_proportion": [ 1 ],
"height_proportion": [ 0.9949775 ]
},
"panel_background": {
"fill": "#FFFFFF",
"colour": "transparent",
"size": 0.5,
"linetype": 1
},
"panel_border": {
"fill": "transparent",
"colour": "#7F7F7F",
"size": 0.5,
"linetype": 1
},
"grid_major": {
"colour": "#E5E5E5",
"size": 0.2,
"linetype": 1,
"lineend": "butt",
"loc": {
"x": [
[
0,
0.25,
0.5,
0.75,
1
]
],
"y": [
[
0,
0.25,
0.5,
0.75,
1
]
]
}
},
"grid_minor": {
"colour": "#FAFAFA",
"size": 0.5,
"linetype": 1,
"lineend": "butt",
"loc": {
"x": [
[
0,
0.125,
0.25,
0.375,
0.5,
0.625,
0.75,
0.875,
1
]
],
"y": [
[
0,
0.125,
0.25,
0.375,
0.5,
0.625,
0.75,
0.875,
1
]
]
}
},
"axis1": {
"x": [
0,
0.25,
0.5,
0.75,
1
],
"xlab": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"xrange": [ -0.04432507, 1.04973 ],
"xline": false,
"xticks": true,
"y": [
0,
0.25,
0.5,
0.75,
1
],
"ylab": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"yrange": [ -0.03907995, 1.04948 ],
"yline": false,
"yticks": true
},
"xtitle": "mixture peak relative height",
"xanchor": "middle",
"xangle": 0,
"ytitle": "single source peak relative height",
"yanchor": "end",
"yangle": 0,
"xlabs": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"ylabs": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"title": "Relative height comparison, select peak",
"options": {
"width": 400,
"height": 400
},
"geoms": [
"geom1_abline_scatter",
"geom2_point_scatter",
"geom3_segment_scatter"
]
},
"peaks": {
"panel_margin_lines": 0,
"legend": {
"Sample": {
"guide": "legend",
"geoms": [ "path", "point" ],
"title": "Sample",
"class": "Sample",
"selector": "Sample",
"is_discrete": true,
"legend_type": "colour",
"entries": [
{
"pathcolour": "#000000",
"pathsize": 1,
"pathlinetype": 1,
"label": "mixture",
"pointcolour": "#000000",
"pointshape": 19,
"pointsize": 1.5,
"pointstroke": 0.5
},
{
"pathcolour": "#E31A1C",
"pathsize": 1,
"pathlinetype": 1,
"label": "four.parts",
"pointcolour": "#E31A1C",
"pointshape": 19,
"pointsize": 1.5,
"pointstroke": 0.5
},
{
"pathcolour": "#0000FF",
"pathsize": 1,
"pathlinetype": 1,
"label": "one.part",
"pointcolour": "#0000FF",
"pointshape": 19,
"pointsize": 1.5,
"pointstroke": 0.5
}
]
}
},
"strips": {
"top": [
""
],
"right": [
""
],
"n": {
"top": 0,
"right": 0
}
},
"layout": {
"PANEL": [ 1 ],
"ROW": [ 1 ],
"COL": [ 1 ],
"SCALE_X": [ 1 ],
"SCALE_Y": [ 1 ],
"AXIS_X": [ true ],
"AXIS_Y": [ true ],
"coord_fixed": [ false ],
"width_proportion": [ 1 ],
"height_proportion": [ 1 ]
},
"panel_background": {
"fill": "#FFFFFF",
"colour": "transparent",
"size": 0.5,
"linetype": 1
},
"panel_border": {
"fill": "transparent",
"colour": "#7F7F7F",
"size": 0.5,
"linetype": 1
},
"grid_major": {
"colour": "#E5E5E5",
"size": 0.2,
"linetype": 1,
"lineend": "butt",
"loc": {
"x": [
[
-2,
0,
2
]
],
"y": [
[
0,
0.25,
0.5,
0.75,
1
]
]
}
},
"grid_minor": {
"colour": "#FAFAFA",
"size": 0.5,
"linetype": 1,
"lineend": "butt",
"loc": {
"x": [
[
-3,
-2,
-1,
0,
1,
2,
3
]
],
"y": [
[
0,
0.125,
0.25,
0.375,
0.5,
0.625,
0.75,
0.875,
1
]
]
}
},
"axis1": {
"x": [
-2,
0,
2
],
"xlab": [
"-2",
"0",
"2"
],
"xrange": [ -3.3, 3.3 ],
"xline": false,
"xticks": true,
"y": [
0,
0.25,
0.5,
0.75,
1
],
"ylab": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"yrange": [ -0.1111869, 1.052914 ],
"yline": false,
"yticks": true
},
"xtitle": "bases.from.middle",
"xanchor": "middle",
"xangle": 0,
"ytitle": "relative.height",
"yanchor": "end",
"yangle": 0,
"xlabs": [
"-2",
"0",
"2"
],
"ylabs": [
"0.00",
"0.25",
"0.50",
"0.75",
"1.00"
],
"title": "Three samples for selected peak",
"options": {
"width": 400,
"height": 400
},
"geoms": [
"geom4_line_peaks",
"geom5_point_peaks"
]
}
},
"title": "Presence/absence of peaks in mixture and single-source samples"
}
<script type="text/javascript" src="vendor/d3.v3.js"></script>
<script type="text/javascript" src="animint.js"></script>
<div id="plot"> </div>
<script>
var plot = new animint("#plot","plot.json");
</script>
/**
* selectize.css (v0.12.1)
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
* ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*
* @author Brian Reavis <brian@thirdroute.com>
*/
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
visibility: visible !important;
background: #f2f2f2 !important;
background: rgba(0, 0, 0, 0.06) !important;
border: 0 none !important;
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
box-shadow: inset 0 0 12px 4px #ffffff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
content: '!';
visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
position: relative;
padding: 5px 8px;
border-bottom: 1px solid #d0d0d0;
background: #f8f8f8;
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
position: absolute;
right: 8px;
top: 50%;
color: #303030;
opacity: 0.4;
margin-top: -12px;
line-height: 20px;
font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
border-right: 1px solid #f2f2f2;
border-top: 0 none;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
position: relative;
padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
z-index: 1;
/* fixes ie bug (see #392) */
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 17px;
text-align: center;
font-weight: bold;
font-size: 12px;
color: inherit;
text-decoration: none;
vertical-align: middle;
display: inline-block;
padding: 2px 0 0 0;
border-left: 1px solid #d0d0d0;
-webkit-border-radius: 0 2px 2px 0;
-moz-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
border-left-color: #cacaca;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
border-left-color: #ffffff;
}
.selectize-control {
position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
color: #303030;
font-family: inherit;
font-size: 13px;
line-height: 18px;
-webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
background: #ffffff;
cursor: text;
display: inline-block;
}
.selectize-input {
border: 1px solid #d0d0d0;
padding: 8px 8px;
display: inline-block;
width: 100%;
overflow: hidden;
position: relative;
z-index: 1;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.selectize-control.multi .selectize-input.has-items {
padding: 6px 8px 3px;
}
.selectize-input.full {
background-color: #ffffff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
cursor: default !important;
}
.selectize-input.focus {
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
.selectize-input > * {
vertical-align: baseline;
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
}
.selectize-control.multi .selectize-input > div {
cursor: pointer;
margin: 0 3px 3px 0;
padding: 2px 6px;
background: #f2f2f2;
color: #303030;
border: 0 solid #d0d0d0;
}
.selectize-control.multi .selectize-input > div.active {
background: #e8e8e8;
color: #303030;
border: 0 solid #cacaca;
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
color: #7d7d7d;
background: #ffffff;
border: 0 solid #ffffff;
}
.selectize-input > input {
display: inline-block !important;
padding: 0 !important;
min-height: 0 !important;
max-height: none !important;
max-width: 100% !important;
margin: 0 2px 0 0 !important;
text-indent: 0 !important;
border: 0 none !important;
background: none !important;
line-height: inherit !important;
-webkit-user-select: auto !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
display: none;
}
.selectize-input > input:focus {
outline: none !important;
}
.selectize-input::after {
content: ' ';
display: block;
clear: left;
}
.selectize-input.dropdown-active::before {
content: ' ';
display: block;
position: absolute;
background: #f0f0f0;
height: 1px;
bottom: 0;
left: 0;
right: 0;
}
.selectize-dropdown {
position: absolute;
z-index: 10;
border: 1px solid #d0d0d0;
background: #ffffff;
margin: -1px 0 0 0;
border-top: 0 none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 0 0 3px 3px;
-moz-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
cursor: pointer;
overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
background: rgba(125, 168, 208, 0.2);
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
}
.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
padding: 5px 8px;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
color: #303030;
background: #ffffff;
cursor: default;
}
.selectize-dropdown .active {
background-color: #f5fafd;
color: #495c68;
}
.selectize-dropdown .active.create {
color: #495c68;
}
.selectize-dropdown .create {
color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
overflow-y: auto;
overflow-x: hidden;
max-height: 200px;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
cursor: text;
}
.selectize-control.single .selectize-input:after {
content: ' ';
display: block;
position: absolute;
top: 50%;
right: 15px;
margin-top: -3px;
width: 0;
height: 0;
border-style: solid;
border-width: 5px 5px 0 5px;
border-color: #808080 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
margin-top: -4px;
border-width: 0 5px 5px 5px;
border-color: transparent transparent #808080 transparent;
}
.selectize-control.rtl.single .selectize-input:after {
left: 15px;
right: auto;
}
.selectize-control.rtl .selectize-input > input {
margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
opacity: 0.5;
background-color: #fafafa;
}
/*! selectize.js - v0.12.1 | https://github.com/brianreavis/selectize.js | Apache License (v2) */
!function(a,b){"function"==typeof define&&define.amd?define("sifter",b):"object"==typeof exports?module.exports=b():a.Sifter=b()}(this,function(){var a=function(a,b){this.items=a,this.settings=b||{diacritics:!0}};a.prototype.tokenize=function(a){if(a=d(String(a||"").toLowerCase()),!a||!a.length)return[];var b,c,f,h,i=[],j=a.split(/ +/);for(b=0,c=j.length;c>b;b++){if(f=e(j[b]),this.settings.diacritics)for(h in g)g.hasOwnProperty(h)&&(f=f.replace(new RegExp(h,"g"),g[h]));i.push({string:j[b],regex:new RegExp(f,"i")})}return i},a.prototype.iterator=function(a,b){var c;c=f(a)?Array.prototype.forEach||function(a){for(var b=0,c=this.length;c>b;b++)a(this[b],b,this)}:function(a){for(var b in this)this.hasOwnProperty(b)&&a(this[b],b,this)},c.apply(a,[b])},a.prototype.getScoreFunction=function(a,b){var c,d,e,f;c=this,a=c.prepareSearch(a,b),e=a.tokens,d=a.options.fields,f=e.length;var g=function(a,b){var c,d;return a?(a=String(a||""),d=a.search(b.regex),-1===d?0:(c=b.string.length/a.length,0===d&&(c+=.5),c)):0},h=function(){var a=d.length;return a?1===a?function(a,b){return g(b[d[0]],a)}:function(b,c){for(var e=0,f=0;a>e;e++)f+=g(c[d[e]],b);return f/a}:function(){return 0}}();return f?1===f?function(a){return h(e[0],a)}:"and"===a.options.conjunction?function(a){for(var b,c=0,d=0;f>c;c++){if(b=h(e[c],a),0>=b)return 0;d+=b}return d/f}:function(a){for(var b=0,c=0;f>b;b++)c+=h(e[b],a);return c/f}:function(){return 0}},a.prototype.getSortFunction=function(a,c){var d,e,f,g,h,i,j,k,l,m,n;if(f=this,a=f.prepareSearch(a,c),n=!a.query&&c.sort_empty||c.sort,l=function(a,b){return"$score"===a?b.score:f.items[b.id][a]},h=[],n)for(d=0,e=n.length;e>d;d++)(a.query||"$score"!==n[d].field)&&h.push(n[d]);if(a.query){for(m=!0,d=0,e=h.length;e>d;d++)if("$score"===h[d].field){m=!1;break}m&&h.unshift({field:"$score",direction:"desc"})}else for(d=0,e=h.length;e>d;d++)if("$score"===h[d].field){h.splice(d,1);break}for(k=[],d=0,e=h.length;e>d;d++)k.push("desc"===h[d].direction?-1:1);return i=h.length,i?1===i?(g=h[0].field,j=k[0],function(a,c){return j*b(l(g,a),l(g,c))}):function(a,c){var d,e,f;for(d=0;i>d;d++)if(f=h[d].field,e=k[d]*b(l(f,a),l(f,c)))return e;return 0}:null},a.prototype.prepareSearch=function(a,b){if("object"==typeof a)return a;b=c({},b);var d=b.fields,e=b.sort,g=b.sort_empty;return d&&!f(d)&&(b.fields=[d]),e&&!f(e)&&(b.sort=[e]),g&&!f(g)&&(b.sort_empty=[g]),{options:b,query:String(a||"").toLowerCase(),tokens:this.tokenize(a),total:0,items:[]}},a.prototype.search=function(a,b){var c,d,e,f,g=this;return d=this.prepareSearch(a,b),b=d.options,a=d.query,f=b.score||g.getScoreFunction(d),a.length?g.iterator(g.items,function(a,e){c=f(a),(b.filter===!1||c>0)&&d.items.push({score:c,id:e})}):g.iterator(g.items,function(a,b){d.items.push({score:1,id:b})}),e=g.getSortFunction(d,b),e&&d.items.sort(e),d.total=d.items.length,"number"==typeof b.limit&&(d.items=d.items.slice(0,b.limit)),d};var b=function(a,b){return"number"==typeof a&&"number"==typeof b?a>b?1:b>a?-1:0:(a=h(String(a||"")),b=h(String(b||"")),a>b?1:b>a?-1:0)},c=function(a){var b,c,d,e;for(b=1,c=arguments.length;c>b;b++)if(e=arguments[b])for(d in e)e.hasOwnProperty(d)&&(a[d]=e[d]);return a},d=function(a){return(a+"").replace(/^\s+|\s+$|/g,"")},e=function(a){return(a+"").replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")},f=Array.isArray||$&&$.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},g={a:"[aÀÁÂÃÄÅàáâãäåĀāąĄ]",c:"[cÇçćĆčČ]",d:"[dđĐďĎ]",e:"[eÈÉÊËèéêëěĚĒēęĘ]",i:"[iÌÍÎÏìíîïĪī]",l:"[lłŁ]",n:"[nÑñňŇńŃ]",o:"[oÒÓÔÕÕÖØòóôõöøŌō]",r:"[rřŘ]",s:"[sŠšśŚ]",t:"[tťŤ]",u:"[uÙÚÛÜùúûüůŮŪū]",y:"[yŸÿýÝ]",z:"[zŽžżŻźŹ]"},h=function(){var a,b,c,d,e="",f={};for(c in g)if(g.hasOwnProperty(c))for(d=g[c].substring(2,g[c].length-1),e+=d,a=0,b=d.length;b>a;a++)f[d.charAt(a)]=c;var h=new RegExp("["+e+"]","g");return function(a){return a.replace(h,function(a){return f[a]}).toLowerCase()}}();return a}),function(a,b){"function"==typeof define&&define.amd?define("microplugin",b):"object"==typeof exports?module.exports=b():a.MicroPlugin=b()}(this,function(){var a={};a.mixin=function(a){a.plugins={},a.prototype.initializePlugins=function(a){var c,d,e,f=this,g=[];if(f.plugins={names:[],settings:{},requested:{},loaded:{}},b.isArray(a))for(c=0,d=a.length;d>c;c++)"string"==typeof a[c]?g.push(a[c]):(f.plugins.settings[a[c].name]=a[c].options,g.push(a[c].name));else if(a)for(e in a)a.hasOwnProperty(e)&&(f.plugins.settings[e]=a[e],g.push(e));for(;g.length;)f.require(g.shift())},a.prototype.loadPlugin=function(b){var c=this,d=c.plugins,e=a.plugins[b];if(!a.plugins.hasOwnProperty(b))throw new Error('Unable to find "'+b+'" plugin');d.requested[b]=!0,d.loaded[b]=e.fn.apply(c,[c.plugins.settings[b]||{}]),d.names.push(b)},a.prototype.require=function(a){var b=this,c=b.plugins;if(!b.plugins.loaded.hasOwnProperty(a)){if(c.requested[a])throw new Error('Plugin has circular dependency ("'+a+'")');b.loadPlugin(a)}return c.loaded[a]},a.define=function(b,c){a.plugins[b]={name:b,fn:c}}};var b={isArray:Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)}};return a}),function(a,b){"function"==typeof define&&define.amd?define("selectize",["jquery","sifter","microplugin"],b):"object"==typeof exports?module.exports=b(require("jquery"),require("sifter"),require("microplugin")):a.Selectize=b(a.jQuery,a.Sifter,a.MicroPlugin)}(this,function(a,b,c){"use strict";var d=function(a,b){if("string"!=typeof b||b.length){var c="string"==typeof b?new RegExp(b,"i"):b,d=function(a){var b=0;if(3===a.nodeType){var e=a.data.search(c);if(e>=0&&a.data.length>0){var f=a.data.match(c),g=document.createElement("span");g.className="highlight";var h=a.splitText(e),i=(h.splitText(f[0].length),h.cloneNode(!0));g.appendChild(i),h.parentNode.replaceChild(g,h),b=1}}else if(1===a.nodeType&&a.childNodes&&!/(script|style)/i.test(a.tagName))for(var j=0;j<a.childNodes.length;++j)j+=d(a.childNodes[j]);return b};return a.each(function(){d(this)})}},e=function(){};e.prototype={on:function(a,b){this._events=this._events||{},this._events[a]=this._events[a]||[],this._events[a].push(b)},off:function(a,b){var c=arguments.length;return 0===c?delete this._events:1===c?delete this._events[a]:(this._events=this._events||{},void(a in this._events!=!1&&this._events[a].splice(this._events[a].indexOf(b),1)))},trigger:function(a){if(this._events=this._events||{},a in this._events!=!1)for(var b=0;b<this._events[a].length;b++)this._events[a][b].apply(this,Array.prototype.slice.call(arguments,1))}},e.mixin=function(a){for(var b=["on","off","trigger"],c=0;c<b.length;c++)a.prototype[b[c]]=e.prototype[b[c]]};var f=/Mac/.test(navigator.userAgent),g=65,h=13,i=27,j=37,k=38,l=80,m=39,n=40,o=78,p=8,q=46,r=16,s=f?91:17,t=f?18:17,u=9,v=1,w=2,x=!/android/i.test(window.navigator.userAgent)&&!!document.createElement("form").validity,y=function(a){return"undefined"!=typeof a},z=function(a){return"undefined"==typeof a||null===a?null:"boolean"==typeof a?a?"1":"0":a+""},A=function(a){return(a+"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")},B=function(a){return(a+"").replace(/\$/g,"$$$$")},C={};C.before=function(a,b,c){var d=a[b];a[b]=function(){return c.apply(a,arguments),d.apply(a,arguments)}},C.after=function(a,b,c){var d=a[b];a[b]=function(){var b=d.apply(a,arguments);return c.apply(a,arguments),b}};var D=function(a){var b=!1;return function(){b||(b=!0,a.apply(this,arguments))}},E=function(a,b){var c;return function(){var d=this,e=arguments;window.clearTimeout(c),c=window.setTimeout(function(){a.apply(d,e)},b)}},F=function(a,b,c){var d,e=a.trigger,f={};a.trigger=function(){var c=arguments[0];return-1===b.indexOf(c)?e.apply(a,arguments):void(f[c]=arguments)},c.apply(a,[]),a.trigger=e;for(d in f)f.hasOwnProperty(d)&&e.apply(a,f[d])},G=function(a,b,c,d){a.on(b,c,function(b){for(var c=b.target;c&&c.parentNode!==a[0];)c=c.parentNode;return b.currentTarget=c,d.apply(this,[b])})},H=function(a){var b={};if("selectionStart"in a)b.start=a.selectionStart,b.length=a.selectionEnd-b.start;else if(document.selection){a.focus();var c=document.selection.createRange(),d=document.selection.createRange().text.length;c.moveStart("character",-a.value.length),b.start=c.text.length-d,b.length=d}return b},I=function(a,b,c){var d,e,f={};if(c)for(d=0,e=c.length;e>d;d++)f[c[d]]=a.css(c[d]);else f=a.css();b.css(f)},J=function(b,c){if(!b)return 0;var d=a("<test>").css({position:"absolute",top:-99999,left:-99999,width:"auto",padding:0,whiteSpace:"pre"}).text(b).appendTo("body");I(c,d,["letterSpacing","fontSize","fontFamily","fontWeight","textTransform"]);var e=d.width();return d.remove(),e},K=function(a){var b=null,c=function(c,d){var e,f,g,h,i,j,k,l;c=c||window.event||{},d=d||{},c.metaKey||c.altKey||(d.force||a.data("grow")!==!1)&&(e=a.val(),c.type&&"keydown"===c.type.toLowerCase()&&(f=c.keyCode,g=f>=97&&122>=f||f>=65&&90>=f||f>=48&&57>=f||32===f,f===q||f===p?(l=H(a[0]),l.length?e=e.substring(0,l.start)+e.substring(l.start+l.length):f===p&&l.start?e=e.substring(0,l.start-1)+e.substring(l.start+1):f===q&&"undefined"!=typeof l.start&&(e=e.substring(0,l.start)+e.substring(l.start+1))):g&&(j=c.shiftKey,k=String.fromCharCode(c.keyCode),k=j?k.toUpperCase():k.toLowerCase(),e+=k)),h=a.attr("placeholder"),!e&&h&&(e=h),i=J(e,a)+4,i!==b&&(b=i,a.width(i),a.triggerHandler("resize")))};a.on("keydown keyup update blur",c),c()},L=function(c,d){var e,f,g,h,i=this;h=c[0],h.selectize=i;var j=window.getComputedStyle&&window.getComputedStyle(h,null);if(g=j?j.getPropertyValue("direction"):h.currentStyle&&h.currentStyle.direction,g=g||c.parents("[dir]:first").attr("dir")||"",a.extend(i,{order:0,settings:d,$input:c,tabIndex:c.attr("tabindex")||"",tagType:"select"===h.tagName.toLowerCase()?v:w,rtl:/rtl/i.test(g),eventNS:".selectize"+ ++L.count,highlightedValue:null,isOpen:!1,isDisabled:!1,isRequired:c.is("[required]"),isInvalid:!1,isLocked:!1,isFocused:!1,isInputHidden:!1,isSetup:!1,isShiftDown:!1,isCmdDown:!1,isCtrlDown:!1,ignoreFocus:!1,ignoreBlur:!1,ignoreHover:!1,hasOptions:!1,currentResults:null,lastValue:"",caretPos:0,loading:0,loadedSearches:{},$activeOption:null,$activeItems:[],optgroups:{},options:{},userOptions:{},items:[],renderCache:{},onSearchChange:null===d.loadThrottle?i.onSearchChange:E(i.onSearchChange,d.loadThrottle)}),i.sifter=new b(this.options,{diacritics:d.diacritics}),i.settings.options){for(e=0,f=i.settings.options.length;f>e;e++)i.registerOption(i.settings.options[e]);delete i.settings.options}if(i.settings.optgroups){for(e=0,f=i.settings.optgroups.length;f>e;e++)i.registerOptionGroup(i.settings.optgroups[e]);delete i.settings.optgroups}i.settings.mode=i.settings.mode||(1===i.settings.maxItems?"single":"multi"),"boolean"!=typeof i.settings.hideSelected&&(i.settings.hideSelected="multi"===i.settings.mode),i.initializePlugins(i.settings.plugins),i.setupCallbacks(),i.setupTemplates(),i.setup()};return e.mixin(L),c.mixin(L),a.extend(L.prototype,{setup:function(){var b,c,d,e,g,h,i,j,k,l=this,m=l.settings,n=l.eventNS,o=a(window),p=a(document),q=l.$input;if(i=l.settings.mode,j=q.attr("class")||"",b=a("<div>").addClass(m.wrapperClass).addClass(j).addClass(i),c=a("<div>").addClass(m.inputClass).addClass("items").appendTo(b),d=a('<input type="text" autocomplete="off" />').appendTo(c).attr("tabindex",q.is(":disabled")?"-1":l.tabIndex),h=a(m.dropdownParent||b),e=a("<div>").addClass(m.dropdownClass).addClass(i).hide().appendTo(h),g=a("<div>").addClass(m.dropdownContentClass).appendTo(e),l.settings.copyClassesToDropdown&&e.addClass(j),b.css({width:q[0].style.width}),l.plugins.names.length&&(k="plugin-"+l.plugins.names.join(" plugin-"),b.addClass(k),e.addClass(k)),(null===m.maxItems||m.maxItems>1)&&l.tagType===v&&q.attr("multiple","multiple"),l.settings.placeholder&&d.attr("placeholder",m.placeholder),!l.settings.splitOn&&l.settings.delimiter){var u=l.settings.delimiter.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&");l.settings.splitOn=new RegExp("\\s*"+u+"+\\s*")}q.attr("autocorrect")&&d.attr("autocorrect",q.attr("autocorrect")),q.attr("autocapitalize")&&d.attr("autocapitalize",q.attr("autocapitalize")),l.$wrapper=b,l.$control=c,l.$control_input=d,l.$dropdown=e,l.$dropdown_content=g,e.on("mouseenter","[data-selectable]",function(){return l.onOptionHover.apply(l,arguments)}),e.on("mousedown click","[data-selectable]",function(){return l.onOptionSelect.apply(l,arguments)}),G(c,"mousedown","*:not(input)",function(){return l.onItemSelect.apply(l,arguments)}),K(d),c.on({mousedown:function(){return l.onMouseDown.apply(l,arguments)},click:function(){return l.onClick.apply(l,arguments)}}),d.on({mousedown:function(a){a.stopPropagation()},keydown:function(){return l.onKeyDown.apply(l,arguments)},keyup:function(){return l.onKeyUp.apply(l,arguments)},keypress:function(){return l.onKeyPress.apply(l,arguments)},resize:function(){l.positionDropdown.apply(l,[])},blur:function(){return l.onBlur.apply(l,arguments)},focus:function(){return l.ignoreBlur=!1,l.onFocus.apply(l,arguments)},paste:function(){return l.onPaste.apply(l,arguments)}}),p.on("keydown"+n,function(a){l.isCmdDown=a[f?"metaKey":"ctrlKey"],l.isCtrlDown=a[f?"altKey":"ctrlKey"],l.isShiftDown=a.shiftKey}),p.on("keyup"+n,function(a){a.keyCode===t&&(l.isCtrlDown=!1),a.keyCode===r&&(l.isShiftDown=!1),a.keyCode===s&&(l.isCmdDown=!1)}),p.on("mousedown"+n,function(a){if(l.isFocused){if(a.target===l.$dropdown[0]||a.target.parentNode===l.$dropdown[0])return!1;l.$control.has(a.target).length||a.target===l.$control[0]||l.blur(a.target)}}),o.on(["scroll"+n,"resize"+n].join(" "),function(){l.isOpen&&l.positionDropdown.apply(l,arguments)}),o.on("mousemove"+n,function(){l.ignoreHover=!1}),this.revertSettings={$children:q.children().detach(),tabindex:q.attr("tabindex")},q.attr("tabindex",-1).hide().after(l.$wrapper),a.isArray(m.items)&&(l.setValue(m.items),delete m.items),x&&q.on("invalid"+n,function(a){a.preventDefault(),l.isInvalid=!0,l.refreshState()}),l.updateOriginalInput(),l.refreshItems(),l.refreshState(),l.updatePlaceholder(),l.isSetup=!0,q.is(":disabled")&&l.disable(),l.on("change",this.onChange),q.data("selectize",l),q.addClass("selectized"),l.trigger("initialize"),m.preload===!0&&l.onSearchChange("")},setupTemplates:function(){var b=this,c=b.settings.labelField,d=b.settings.optgroupLabelField,e={optgroup:function(a){return'<div class="optgroup">'+a.html+"</div>"},optgroup_header:function(a,b){return'<div class="optgroup-header">'+b(a[d])+"</div>"},option:function(a,b){return'<div class="option">'+b(a[c])+"</div>"},item:function(a,b){return'<div class="item">'+b(a[c])+"</div>"},option_create:function(a,b){return'<div class="create">Add <strong>'+b(a.input)+"</strong>&hellip;</div>"}};b.settings.render=a.extend({},e,b.settings.render)},setupCallbacks:function(){var a,b,c={initialize:"onInitialize",change:"onChange",item_add:"onItemAdd",item_remove:"onItemRemove",clear:"onClear",option_add:"onOptionAdd",option_remove:"onOptionRemove",option_clear:"onOptionClear",optgroup_add:"onOptionGroupAdd",optgroup_remove:"onOptionGroupRemove",optgroup_clear:"onOptionGroupClear",dropdown_open:"onDropdownOpen",dropdown_close:"onDropdownClose",type:"onType",load:"onLoad",focus:"onFocus",blur:"onBlur"};for(a in c)c.hasOwnProperty(a)&&(b=this.settings[c[a]],b&&this.on(a,b))},onClick:function(a){var b=this;b.isFocused||(b.focus(),a.preventDefault())},onMouseDown:function(b){{var c=this,d=b.isDefaultPrevented();a(b.target)}if(c.isFocused){if(b.target!==c.$control_input[0])return"single"===c.settings.mode?c.isOpen?c.close():c.open():d||c.setActiveItem(null),!1}else d||window.setTimeout(function(){c.focus()},0)},onChange:function(){this.$input.trigger("change")},onPaste:function(b){var c=this;c.isFull()||c.isInputHidden||c.isLocked?b.preventDefault():c.settings.splitOn&&setTimeout(function(){for(var b=a.trim(c.$control_input.val()||"").split(c.settings.splitOn),d=0,e=b.length;e>d;d++)c.createItem(b[d])},0)},onKeyPress:function(a){if(this.isLocked)return a&&a.preventDefault();var b=String.fromCharCode(a.keyCode||a.which);return this.settings.create&&"multi"===this.settings.mode&&b===this.settings.delimiter?(this.createItem(),a.preventDefault(),!1):void 0},onKeyDown:function(a){var b=(a.target===this.$control_input[0],this);if(b.isLocked)return void(a.keyCode!==u&&a.preventDefault());switch(a.keyCode){case g:if(b.isCmdDown)return void b.selectAll();break;case i:return void(b.isOpen&&(a.preventDefault(),a.stopPropagation(),b.close()));case o:if(!a.ctrlKey||a.altKey)break;case n:if(!b.isOpen&&b.hasOptions)b.open();else if(b.$activeOption){b.ignoreHover=!0;var c=b.getAdjacentOption(b.$activeOption,1);c.length&&b.setActiveOption(c,!0,!0)}return void a.preventDefault();case l:if(!a.ctrlKey||a.altKey)break;case k:if(b.$activeOption){b.ignoreHover=!0;var d=b.getAdjacentOption(b.$activeOption,-1);d.length&&b.setActiveOption(d,!0,!0)}return void a.preventDefault();case h:return void(b.isOpen&&b.$activeOption&&(b.onOptionSelect({currentTarget:b.$activeOption}),a.preventDefault()));case j:return void b.advanceSelection(-1,a);case m:return void b.advanceSelection(1,a);case u:return b.settings.selectOnTab&&b.isOpen&&b.$activeOption&&(b.onOptionSelect({currentTarget:b.$activeOption}),b.isFull()||a.preventDefault()),void(b.settings.create&&b.createItem()&&a.preventDefault());case p:case q:return void b.deleteSelection(a)}return!b.isFull()&&!b.isInputHidden||(f?a.metaKey:a.ctrlKey)?void 0:void a.preventDefault()},onKeyUp:function(a){var b=this;if(b.isLocked)return a&&a.preventDefault();var c=b.$control_input.val()||"";b.lastValue!==c&&(b.lastValue=c,b.onSearchChange(c),b.refreshOptions(),b.trigger("type",c))},onSearchChange:function(a){var b=this,c=b.settings.load;c&&(b.loadedSearches.hasOwnProperty(a)||(b.loadedSearches[a]=!0,b.load(function(d){c.apply(b,[a,d])})))},onFocus:function(a){var b=this,c=b.isFocused;return b.isDisabled?(b.blur(),a&&a.preventDefault(),!1):void(b.ignoreFocus||(b.isFocused=!0,"focus"===b.settings.preload&&b.onSearchChange(""),c||b.trigger("focus"),b.$activeItems.length||(b.showInput(),b.setActiveItem(null),b.refreshOptions(!!b.settings.openOnFocus)),b.refreshState()))},onBlur:function(a,b){var c=this;if(c.isFocused&&(c.isFocused=!1,!c.ignoreFocus)){if(!c.ignoreBlur&&document.activeElement===c.$dropdown_content[0])return c.ignoreBlur=!0,void c.onFocus(a);var d=function(){c.close(),c.setTextboxValue(""),c.setActiveItem(null),c.setActiveOption(null),c.setCaret(c.items.length),c.refreshState(),(b||document.body).focus(),c.ignoreFocus=!1,c.trigger("blur")};c.ignoreFocus=!0,c.settings.create&&c.settings.createOnBlur?c.createItem(null,!1,d):d()}},onOptionHover:function(a){this.ignoreHover||this.setActiveOption(a.currentTarget,!1)},onOptionSelect:function(b){var c,d,e=this;b.preventDefault&&(b.preventDefault(),b.stopPropagation()),d=a(b.currentTarget),d.hasClass("create")?e.createItem(null,function(){e.settings.closeAfterSelect&&e.close()}):(c=d.attr("data-value"),"undefined"!=typeof c&&(e.lastQuery=null,e.setTextboxValue(""),e.addItem(c),e.settings.closeAfterSelect?e.close():!e.settings.hideSelected&&b.type&&/mouse/.test(b.type)&&e.setActiveOption(e.getOption(c))))},onItemSelect:function(a){var b=this;b.isLocked||"multi"===b.settings.mode&&(a.preventDefault(),b.setActiveItem(a.currentTarget,a))},load:function(a){var b=this,c=b.$wrapper.addClass(b.settings.loadingClass);b.loading++,a.apply(b,[function(a){b.loading=Math.max(b.loading-1,0),a&&a.length&&(b.addOption(a),b.refreshOptions(b.isFocused&&!b.isInputHidden)),b.loading||c.removeClass(b.settings.loadingClass),b.trigger("load",a)}])},setTextboxValue:function(a){var b=this.$control_input,c=b.val()!==a;c&&(b.val(a).triggerHandler("update"),this.lastValue=a)},getValue:function(){return this.tagType===v&&this.$input.attr("multiple")?this.items:this.items.join(this.settings.delimiter)},setValue:function(a,b){var c=b?[]:["change"];F(this,c,function(){this.clear(b),this.addItems(a,b)})},setActiveItem:function(b,c){var d,e,f,g,h,i,j,k,l=this;if("single"!==l.settings.mode){if(b=a(b),!b.length)return a(l.$activeItems).removeClass("active"),l.$activeItems=[],void(l.isFocused&&l.showInput());if(d=c&&c.type.toLowerCase(),"mousedown"===d&&l.isShiftDown&&l.$activeItems.length){for(k=l.$control.children(".active:last"),g=Array.prototype.indexOf.apply(l.$control[0].childNodes,[k[0]]),h=Array.prototype.indexOf.apply(l.$control[0].childNodes,[b[0]]),g>h&&(j=g,g=h,h=j),e=g;h>=e;e++)i=l.$control[0].childNodes[e],-1===l.$activeItems.indexOf(i)&&(a(i).addClass("active"),l.$activeItems.push(i));c.preventDefault()}else"mousedown"===d&&l.isCtrlDown||"keydown"===d&&this.isShiftDown?b.hasClass("active")?(f=l.$activeItems.indexOf(b[0]),l.$activeItems.splice(f,1),b.removeClass("active")):l.$activeItems.push(b.addClass("active")[0]):(a(l.$activeItems).removeClass("active"),l.$activeItems=[b.addClass("active")[0]]);l.hideInput(),this.isFocused||l.focus()}},setActiveOption:function(b,c,d){var e,f,g,h,i,j=this;j.$activeOption&&j.$activeOption.removeClass("active"),j.$activeOption=null,b=a(b),b.length&&(j.$activeOption=b.addClass("active"),(c||!y(c))&&(e=j.$dropdown_content.height(),f=j.$activeOption.outerHeight(!0),c=j.$dropdown_content.scrollTop()||0,g=j.$activeOption.offset().top-j.$dropdown_content.offset().top+c,h=g,i=g-e+f,g+f>e+c?j.$dropdown_content.stop().animate({scrollTop:i},d?j.settings.scrollDuration:0):c>g&&j.$dropdown_content.stop().animate({scrollTop:h},d?j.settings.scrollDuration:0)))},selectAll:function(){var a=this;"single"!==a.settings.mode&&(a.$activeItems=Array.prototype.slice.apply(a.$control.children(":not(input)").addClass("active")),a.$activeItems.length&&(a.hideInput(),a.close()),a.focus())},hideInput:function(){var a=this;a.setTextboxValue(""),a.$control_input.css({opacity:0,position:"absolute",left:a.rtl?1e4:-1e4}),a.isInputHidden=!0},showInput:function(){this.$control_input.css({opacity:1,position:"relative",left:0}),this.isInputHidden=!1},focus:function(){var a=this;a.isDisabled||(a.ignoreFocus=!0,a.$control_input[0].focus(),window.setTimeout(function(){a.ignoreFocus=!1,a.onFocus()},0))},blur:function(a){this.$control_input[0].blur(),this.onBlur(null,a)},getScoreFunction:function(a){return this.sifter.getScoreFunction(a,this.getSearchOptions())},getSearchOptions:function(){var a=this.settings,b=a.sortField;return"string"==typeof b&&(b=[{field:b}]),{fields:a.searchField,conjunction:a.searchConjunction,sort:b}},search:function(b){var c,d,e,f=this,g=f.settings,h=this.getSearchOptions();if(g.score&&(e=f.settings.score.apply(this,[b]),"function"!=typeof e))throw new Error('Selectize "score" setting must be a function that returns a function');if(b!==f.lastQuery?(f.lastQuery=b,d=f.sifter.search(b,a.extend(h,{score:e})),f.currentResults=d):d=a.extend(!0,{},f.currentResults),g.hideSelected)for(c=d.items.length-1;c>=0;c--)-1!==f.items.indexOf(z(d.items[c].id))&&d.items.splice(c,1);return d},refreshOptions:function(b){var c,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s;"undefined"==typeof b&&(b=!0);var t=this,u=a.trim(t.$control_input.val()),v=t.search(u),w=t.$dropdown_content,x=t.$activeOption&&z(t.$activeOption.attr("data-value"));for(g=v.items.length,"number"==typeof t.settings.maxOptions&&(g=Math.min(g,t.settings.maxOptions)),h={},i=[],c=0;g>c;c++)for(j=t.options[v.items[c].id],k=t.render("option",j),l=j[t.settings.optgroupField]||"",m=a.isArray(l)?l:[l],e=0,f=m&&m.length;f>e;e++)l=m[e],t.optgroups.hasOwnProperty(l)||(l=""),h.hasOwnProperty(l)||(h[l]=[],i.push(l)),h[l].push(k);for(this.settings.lockOptgroupOrder&&i.sort(function(a,b){var c=t.optgroups[a].$order||0,d=t.optgroups[b].$order||0;return c-d}),n=[],c=0,g=i.length;g>c;c++)l=i[c],t.optgroups.hasOwnProperty(l)&&h[l].length?(o=t.render("optgroup_header",t.optgroups[l])||"",o+=h[l].join(""),n.push(t.render("optgroup",a.extend({},t.optgroups[l],{html:o})))):n.push(h[l].join(""));if(w.html(n.join("")),t.settings.highlight&&v.query.length&&v.tokens.length)for(c=0,g=v.tokens.length;g>c;c++)d(w,v.tokens[c].regex);if(!t.settings.hideSelected)for(c=0,g=t.items.length;g>c;c++)t.getOption(t.items[c]).addClass("selected");p=t.canCreate(u),p&&(w.prepend(t.render("option_create",{input:u})),s=a(w[0].childNodes[0])),t.hasOptions=v.items.length>0||p,t.hasOptions?(v.items.length>0?(r=x&&t.getOption(x),r&&r.length?q=r:"single"===t.settings.mode&&t.items.length&&(q=t.getOption(t.items[0])),q&&q.length||(q=s&&!t.settings.addPrecedence?t.getAdjacentOption(s,1):w.find("[data-selectable]:first"))):q=s,t.setActiveOption(q),b&&!t.isOpen&&t.open()):(t.setActiveOption(null),b&&t.isOpen&&t.close())},addOption:function(b){var c,d,e,f=this;if(a.isArray(b))for(c=0,d=b.length;d>c;c++)f.addOption(b[c]);else(e=f.registerOption(b))&&(f.userOptions[e]=!0,f.lastQuery=null,f.trigger("option_add",e,b))},registerOption:function(a){var b=z(a[this.settings.valueField]);return!b||this.options.hasOwnProperty(b)?!1:(a.$order=a.$order||++this.order,this.options[b]=a,b)},registerOptionGroup:function(a){var b=z(a[this.settings.optgroupValueField]);return b?(a.$order=a.$order||++this.order,this.optgroups[b]=a,b):!1},addOptionGroup:function(a,b){b[this.settings.optgroupValueField]=a,(a=this.registerOptionGroup(b))&&this.trigger("optgroup_add",a,b)},removeOptionGroup:function(a){this.optgroups.hasOwnProperty(a)&&(delete this.optgroups[a],this.renderCache={},this.trigger("optgroup_remove",a))},clearOptionGroups:function(){this.optgroups={},this.renderCache={},this.trigger("optgroup_clear")},updateOption:function(b,c){var d,e,f,g,h,i,j,k=this;if(b=z(b),f=z(c[k.settings.valueField]),null!==b&&k.options.hasOwnProperty(b)){if("string"!=typeof f)throw new Error("Value must be set in option data");j=k.options[b].$order,f!==b&&(delete k.options[b],g=k.items.indexOf(b),-1!==g&&k.items.splice(g,1,f)),c.$order=c.$order||j,k.options[f]=c,h=k.renderCache.item,i=k.renderCache.option,h&&(delete h[b],delete h[f]),i&&(delete i[b],delete i[f]),-1!==k.items.indexOf(f)&&(d=k.getItem(b),e=a(k.render("item",c)),d.hasClass("active")&&e.addClass("active"),d.replaceWith(e)),k.lastQuery=null,k.isOpen&&k.refreshOptions(!1)}},removeOption:function(a,b){var c=this;a=z(a);var d=c.renderCache.item,e=c.renderCache.option;d&&delete d[a],e&&delete e[a],delete c.userOptions[a],delete c.options[a],c.lastQuery=null,c.trigger("option_remove",a),c.removeItem(a,b)},clearOptions:function(){var a=this;a.loadedSearches={},a.userOptions={},a.renderCache={},a.options=a.sifter.items={},a.lastQuery=null,a.trigger("option_clear"),a.clear()},getOption:function(a){return this.getElementWithValue(a,this.$dropdown_content.find("[data-selectable]"))},getAdjacentOption:function(b,c){var d=this.$dropdown.find("[data-selectable]"),e=d.index(b)+c;return e>=0&&e<d.length?d.eq(e):a()},getElementWithValue:function(b,c){if(b=z(b),"undefined"!=typeof b&&null!==b)for(var d=0,e=c.length;e>d;d++)if(c[d].getAttribute("data-value")===b)return a(c[d]);return a()},getItem:function(a){return this.getElementWithValue(a,this.$control.children())},addItems:function(b,c){for(var d=a.isArray(b)?b:[b],e=0,f=d.length;f>e;e++)this.isPending=f-1>e,this.addItem(d[e],c)},addItem:function(b,c){var d=c?[]:["change"];F(this,d,function(){var d,e,f,g,h,i=this,j=i.settings.mode;return b=z(b),-1!==i.items.indexOf(b)?void("single"===j&&i.close()):void(i.options.hasOwnProperty(b)&&("single"===j&&i.clear(c),"multi"===j&&i.isFull()||(d=a(i.render("item",i.options[b])),h=i.isFull(),i.items.splice(i.caretPos,0,b),i.insertAtCaret(d),(!i.isPending||!h&&i.isFull())&&i.refreshState(),i.isSetup&&(f=i.$dropdown_content.find("[data-selectable]"),i.isPending||(e=i.getOption(b),g=i.getAdjacentOption(e,1).attr("data-value"),i.refreshOptions(i.isFocused&&"single"!==j),g&&i.setActiveOption(i.getOption(g))),!f.length||i.isFull()?i.close():i.positionDropdown(),i.updatePlaceholder(),i.trigger("item_add",b,d),i.updateOriginalInput({silent:c})))))})},removeItem:function(a,b){var c,d,e,f=this;c="object"==typeof a?a:f.getItem(a),a=z(c.attr("data-value")),d=f.items.indexOf(a),-1!==d&&(c.remove(),c.hasClass("active")&&(e=f.$activeItems.indexOf(c[0]),f.$activeItems.splice(e,1)),f.items.splice(d,1),f.lastQuery=null,!f.settings.persist&&f.userOptions.hasOwnProperty(a)&&f.removeOption(a,b),d<f.caretPos&&f.setCaret(f.caretPos-1),f.refreshState(),f.updatePlaceholder(),f.updateOriginalInput({silent:b}),f.positionDropdown(),f.trigger("item_remove",a,c))},createItem:function(b,c){var d=this,e=d.caretPos;b=b||a.trim(d.$control_input.val()||"");var f=arguments[arguments.length-1];if("function"!=typeof f&&(f=function(){}),"boolean"!=typeof c&&(c=!0),!d.canCreate(b))return f(),!1;d.lock();var g="function"==typeof d.settings.create?this.settings.create:function(a){var b={};return b[d.settings.labelField]=a,b[d.settings.valueField]=a,b},h=D(function(a){if(d.unlock(),!a||"object"!=typeof a)return f();var b=z(a[d.settings.valueField]);return"string"!=typeof b?f():(d.setTextboxValue(""),d.addOption(a),d.setCaret(e),d.addItem(b),d.refreshOptions(c&&"single"!==d.settings.mode),void f(a))}),i=g.apply(this,[b,h]);return"undefined"!=typeof i&&h(i),!0},refreshItems:function(){this.lastQuery=null,this.isSetup&&this.addItem(this.items),this.refreshState(),this.updateOriginalInput()},refreshState:function(){var a,b=this;b.isRequired&&(b.items.length&&(b.isInvalid=!1),b.$control_input.prop("required",a)),b.refreshClasses()},refreshClasses:function(){var b=this,c=b.isFull(),d=b.isLocked;b.$wrapper.toggleClass("rtl",b.rtl),b.$control.toggleClass("focus",b.isFocused).toggleClass("disabled",b.isDisabled).toggleClass("required",b.isRequired).toggleClass("invalid",b.isInvalid).toggleClass("locked",d).toggleClass("full",c).toggleClass("not-full",!c).toggleClass("input-active",b.isFocused&&!b.isInputHidden).toggleClass("dropdown-active",b.isOpen).toggleClass("has-options",!a.isEmptyObject(b.options)).toggleClass("has-items",b.items.length>0),b.$control_input.data("grow",!c&&!d)},isFull:function(){return null!==this.settings.maxItems&&this.items.length>=this.settings.maxItems},updateOriginalInput:function(a){var b,c,d,e,f=this;if(a=a||{},f.tagType===v){for(d=[],b=0,c=f.items.length;c>b;b++)e=f.options[f.items[b]][f.settings.labelField]||"",d.push('<option value="'+A(f.items[b])+'" selected="selected">'+A(e)+"</option>");d.length||this.$input.attr("multiple")||d.push('<option value="" selected="selected"></option>'),f.$input.html(d.join(""))}else f.$input.val(f.getValue()),f.$input.attr("value",f.$input.val());f.isSetup&&(a.silent||f.trigger("change",f.$input.val()))},updatePlaceholder:function(){if(this.settings.placeholder){var a=this.$control_input;this.items.length?a.removeAttr("placeholder"):a.attr("placeholder",this.settings.placeholder),a.triggerHandler("update",{force:!0})}},open:function(){var a=this;a.isLocked||a.isOpen||"multi"===a.settings.mode&&a.isFull()||(a.focus(),a.isOpen=!0,a.refreshState(),a.$dropdown.css({visibility:"hidden",display:"block"}),a.positionDropdown(),a.$dropdown.css({visibility:"visible"}),a.trigger("dropdown_open",a.$dropdown))},close:function(){var a=this,b=a.isOpen;"single"===a.settings.mode&&a.items.length&&a.hideInput(),a.isOpen=!1,a.$dropdown.hide(),a.setActiveOption(null),a.refreshState(),b&&a.trigger("dropdown_close",a.$dropdown)},positionDropdown:function(){var a=this.$control,b="body"===this.settings.dropdownParent?a.offset():a.position();b.top+=a.outerHeight(!0),this.$dropdown.css({width:a.outerWidth(),top:b.top,left:b.left})},clear:function(a){var b=this;b.items.length&&(b.$control.children(":not(input)").remove(),b.items=[],b.lastQuery=null,b.setCaret(0),b.setActiveItem(null),b.updatePlaceholder(),b.updateOriginalInput({silent:a}),b.refreshState(),b.showInput(),b.trigger("clear"))},insertAtCaret:function(b){var c=Math.min(this.caretPos,this.items.length);0===c?this.$control.prepend(b):a(this.$control[0].childNodes[c]).before(b),this.setCaret(c+1)},deleteSelection:function(b){var c,d,e,f,g,h,i,j,k,l=this;if(e=b&&b.keyCode===p?-1:1,f=H(l.$control_input[0]),l.$activeOption&&!l.settings.hideSelected&&(i=l.getAdjacentOption(l.$activeOption,-1).attr("data-value")),g=[],l.$activeItems.length){for(k=l.$control.children(".active:"+(e>0?"last":"first")),h=l.$control.children(":not(input)").index(k),e>0&&h++,c=0,d=l.$activeItems.length;d>c;c++)g.push(a(l.$activeItems[c]).attr("data-value"));
b&&(b.preventDefault(),b.stopPropagation())}else(l.isFocused||"single"===l.settings.mode)&&l.items.length&&(0>e&&0===f.start&&0===f.length?g.push(l.items[l.caretPos-1]):e>0&&f.start===l.$control_input.val().length&&g.push(l.items[l.caretPos]));if(!g.length||"function"==typeof l.settings.onDelete&&l.settings.onDelete.apply(l,[g])===!1)return!1;for("undefined"!=typeof h&&l.setCaret(h);g.length;)l.removeItem(g.pop());return l.showInput(),l.positionDropdown(),l.refreshOptions(!0),i&&(j=l.getOption(i),j.length&&l.setActiveOption(j)),!0},advanceSelection:function(a,b){var c,d,e,f,g,h,i=this;0!==a&&(i.rtl&&(a*=-1),c=a>0?"last":"first",d=H(i.$control_input[0]),i.isFocused&&!i.isInputHidden?(f=i.$control_input.val().length,g=0>a?0===d.start&&0===d.length:d.start===f,g&&!f&&i.advanceCaret(a,b)):(h=i.$control.children(".active:"+c),h.length&&(e=i.$control.children(":not(input)").index(h),i.setActiveItem(null),i.setCaret(a>0?e+1:e))))},advanceCaret:function(a,b){var c,d,e=this;0!==a&&(c=a>0?"next":"prev",e.isShiftDown?(d=e.$control_input[c](),d.length&&(e.hideInput(),e.setActiveItem(d),b&&b.preventDefault())):e.setCaret(e.caretPos+a))},setCaret:function(b){var c=this;if(b="single"===c.settings.mode?c.items.length:Math.max(0,Math.min(c.items.length,b)),!c.isPending){var d,e,f,g;for(f=c.$control.children(":not(input)"),d=0,e=f.length;e>d;d++)g=a(f[d]).detach(),b>d?c.$control_input.before(g):c.$control.append(g)}c.caretPos=b},lock:function(){this.close(),this.isLocked=!0,this.refreshState()},unlock:function(){this.isLocked=!1,this.refreshState()},disable:function(){var a=this;a.$input.prop("disabled",!0),a.$control_input.prop("disabled",!0).prop("tabindex",-1),a.isDisabled=!0,a.lock()},enable:function(){var a=this;a.$input.prop("disabled",!1),a.$control_input.prop("disabled",!1).prop("tabindex",a.tabIndex),a.isDisabled=!1,a.unlock()},destroy:function(){var b=this,c=b.eventNS,d=b.revertSettings;b.trigger("destroy"),b.off(),b.$wrapper.remove(),b.$dropdown.remove(),b.$input.html("").append(d.$children).removeAttr("tabindex").removeClass("selectized").attr({tabindex:d.tabindex}).show(),b.$control_input.removeData("grow"),b.$input.removeData("selectize"),a(window).off(c),a(document).off(c),a(document.body).off(c),delete b.$input[0].selectize},render:function(a,b){var c,d,e="",f=!1,g=this,h=/^[\t \r\n]*<([a-z][a-z0-9\-_]*(?:\:[a-z][a-z0-9\-_]*)?)/i;return("option"===a||"item"===a)&&(c=z(b[g.settings.valueField]),f=!!c),f&&(y(g.renderCache[a])||(g.renderCache[a]={}),g.renderCache[a].hasOwnProperty(c))?g.renderCache[a][c]:(e=g.settings.render[a].apply(this,[b,A]),("option"===a||"option_create"===a)&&(e=e.replace(h,"<$1 data-selectable")),"optgroup"===a&&(d=b[g.settings.optgroupValueField]||"",e=e.replace(h,'<$1 data-group="'+B(A(d))+'"')),("option"===a||"item"===a)&&(e=e.replace(h,'<$1 data-value="'+B(A(c||""))+'"')),f&&(g.renderCache[a][c]=e),e)},clearCache:function(a){var b=this;"undefined"==typeof a?b.renderCache={}:delete b.renderCache[a]},canCreate:function(a){var b=this;if(!b.settings.create)return!1;var c=b.settings.createFilter;return!(!a.length||"function"==typeof c&&!c.apply(b,[a])||"string"==typeof c&&!new RegExp(c).test(a)||c instanceof RegExp&&!c.test(a))}}),L.count=0,L.defaults={options:[],optgroups:[],plugins:[],delimiter:",",splitOn:null,persist:!0,diacritics:!0,create:!1,createOnBlur:!1,createFilter:null,highlight:!0,openOnFocus:!0,maxOptions:1e3,maxItems:null,hideSelected:null,addPrecedence:!1,selectOnTab:!1,preload:!1,allowEmptyOption:!1,closeAfterSelect:!1,scrollDuration:60,loadThrottle:300,loadingClass:"loading",dataAttr:"data-data",optgroupField:"optgroup",valueField:"value",labelField:"text",optgroupLabelField:"label",optgroupValueField:"value",lockOptgroupOrder:!1,sortField:"$order",searchField:["text"],searchConjunction:"and",mode:null,wrapperClass:"selectize-control",inputClass:"selectize-input",dropdownClass:"selectize-dropdown",dropdownContentClass:"selectize-dropdown-content",dropdownParent:null,copyClassesToDropdown:!0,render:{}},a.fn.selectize=function(b){var c=a.fn.selectize.defaults,d=a.extend({},c,b),e=d.dataAttr,f=d.labelField,g=d.valueField,h=d.optgroupField,i=d.optgroupLabelField,j=d.optgroupValueField,k=function(b,c){var h,i,j,k,l=b.attr(e);if(l)for(c.options=JSON.parse(l),h=0,i=c.options.length;i>h;h++)c.items.push(c.options[h][g]);else{var m=a.trim(b.val()||"");if(!d.allowEmptyOption&&!m.length)return;for(j=m.split(d.delimiter),h=0,i=j.length;i>h;h++)k={},k[f]=j[h],k[g]=j[h],c.options.push(k);c.items=j}},l=function(b,c){var k,l,m,n,o=c.options,p={},q=function(a){var b=e&&a.attr(e);return"string"==typeof b&&b.length?JSON.parse(b):null},r=function(b,e){b=a(b);var i=z(b.attr("value"));if(i||d.allowEmptyOption)if(p.hasOwnProperty(i)){if(e){var j=p[i][h];j?a.isArray(j)?j.push(e):p[i][h]=[j,e]:p[i][h]=e}}else{var k=q(b)||{};k[f]=k[f]||b.text(),k[g]=k[g]||i,k[h]=k[h]||e,p[i]=k,o.push(k),b.is(":selected")&&c.items.push(i)}},s=function(b){var d,e,f,g,h;for(b=a(b),f=b.attr("label"),f&&(g=q(b)||{},g[i]=f,g[j]=f,c.optgroups.push(g)),h=a("option",b),d=0,e=h.length;e>d;d++)r(h[d],f)};for(c.maxItems=b.attr("multiple")?null:1,n=b.children(),k=0,l=n.length;l>k;k++)m=n[k].tagName.toLowerCase(),"optgroup"===m?s(n[k]):"option"===m&&r(n[k])};return this.each(function(){if(!this.selectize){var e,f=a(this),g=this.tagName.toLowerCase(),h=f.attr("placeholder")||f.attr("data-placeholder");h||d.allowEmptyOption||(h=f.children('option[value=""]').text());var i={placeholder:h,options:[],optgroups:[],items:[]};"select"===g?l(f,i):k(f,i),e=new L(f,a.extend(!0,{},c,i,b))}})},a.fn.selectize.defaults=L.defaults,a.fn.selectize.support={validity:x},L.define("drag_drop",function(){if(!a.fn.sortable)throw new Error('The "drag_drop" plugin requires jQuery UI "sortable".');if("multi"===this.settings.mode){var b=this;b.lock=function(){var a=b.lock;return function(){var c=b.$control.data("sortable");return c&&c.disable(),a.apply(b,arguments)}}(),b.unlock=function(){var a=b.unlock;return function(){var c=b.$control.data("sortable");return c&&c.enable(),a.apply(b,arguments)}}(),b.setup=function(){var c=b.setup;return function(){c.apply(this,arguments);var d=b.$control.sortable({items:"[data-value]",forcePlaceholderSize:!0,disabled:b.isLocked,start:function(a,b){b.placeholder.css("width",b.helper.css("width")),d.css({overflow:"visible"})},stop:function(){d.css({overflow:"hidden"});var c=b.$activeItems?b.$activeItems.slice():null,e=[];d.children("[data-value]").each(function(){e.push(a(this).attr("data-value"))}),b.setValue(e),b.setActiveItem(c)}})}}()}}),L.define("dropdown_header",function(b){var c=this;b=a.extend({title:"Untitled",headerClass:"selectize-dropdown-header",titleRowClass:"selectize-dropdown-header-title",labelClass:"selectize-dropdown-header-label",closeClass:"selectize-dropdown-header-close",html:function(a){return'<div class="'+a.headerClass+'"><div class="'+a.titleRowClass+'"><span class="'+a.labelClass+'">'+a.title+'</span><a href="javascript:void(0)" class="'+a.closeClass+'">&times;</a></div></div>'}},b),c.setup=function(){var d=c.setup;return function(){d.apply(c,arguments),c.$dropdown_header=a(b.html(b)),c.$dropdown.prepend(c.$dropdown_header)}}()}),L.define("optgroup_columns",function(b){var c=this;b=a.extend({equalizeWidth:!0,equalizeHeight:!0},b),this.getAdjacentOption=function(b,c){var d=b.closest("[data-group]").find("[data-selectable]"),e=d.index(b)+c;return e>=0&&e<d.length?d.eq(e):a()},this.onKeyDown=function(){var a=c.onKeyDown;return function(b){var d,e,f,g;return!this.isOpen||b.keyCode!==j&&b.keyCode!==m?a.apply(this,arguments):(c.ignoreHover=!0,g=this.$activeOption.closest("[data-group]"),d=g.find("[data-selectable]").index(this.$activeOption),g=b.keyCode===j?g.prev("[data-group]"):g.next("[data-group]"),f=g.find("[data-selectable]"),e=f.eq(Math.min(f.length-1,d)),void(e.length&&this.setActiveOption(e)))}}();var d=function(){var a,b=d.width,c=document;return"undefined"==typeof b&&(a=c.createElement("div"),a.innerHTML='<div style="width:50px;height:50px;position:absolute;left:-50px;top:-50px;overflow:auto;"><div style="width:1px;height:100px;"></div></div>',a=a.firstChild,c.body.appendChild(a),b=d.width=a.offsetWidth-a.clientWidth,c.body.removeChild(a)),b},e=function(){var e,f,g,h,i,j,k;if(k=a("[data-group]",c.$dropdown_content),f=k.length,f&&c.$dropdown_content.width()){if(b.equalizeHeight){for(g=0,e=0;f>e;e++)g=Math.max(g,k.eq(e).height());k.css({height:g})}b.equalizeWidth&&(j=c.$dropdown_content.innerWidth()-d(),h=Math.round(j/f),k.css({width:h}),f>1&&(i=j-h*(f-1),k.eq(f-1).css({width:i})))}};(b.equalizeHeight||b.equalizeWidth)&&(C.after(this,"positionDropdown",e),C.after(this,"refreshOptions",e))}),L.define("remove_button",function(b){if("single"!==this.settings.mode){b=a.extend({label:"&times;",title:"Remove",className:"remove",append:!0},b);var c=this,d='<a href="javascript:void(0)" class="'+b.className+'" tabindex="-1" title="'+A(b.title)+'">'+b.label+"</a>",e=function(a,b){var c=a.search(/(<\/[^>]+>\s*)$/);return a.substring(0,c)+b+a.substring(c)};this.setup=function(){var f=c.setup;return function(){if(b.append){var g=c.settings.render.item;c.settings.render.item=function(){return e(g.apply(this,arguments),d)}}f.apply(this,arguments),this.$control.on("click","."+b.className,function(b){if(b.preventDefault(),!c.isLocked){var d=a(b.currentTarget).parent();c.setActiveItem(d),c.deleteSelection()&&c.setCaret(c.items.length)}})}}()}}),L.define("restore_on_backspace",function(a){var b=this;a.text=a.text||function(a){return a[this.settings.labelField]},this.onKeyDown=function(){var c=b.onKeyDown;return function(b){var d,e;return b.keyCode===p&&""===this.$control_input.val()&&!this.$activeItems.length&&(d=this.caretPos-1,d>=0&&d<this.items.length)?(e=this.options[this.items[d]],this.deleteSelection(b)&&(this.setTextboxValue(a.text.apply(this,[e])),this.refreshOptions(!0)),void b.preventDefault()):c.apply(this,arguments)}}()}),L});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment