Criminal networks are known to be well organised and resilient to disruptions. This demo shows how social network analysis can play an important role in successfully damaging such a network.
Whenever items are expanded or removed, the chart will adjust the node positions adaptively.
The nodes can be removed in two scenarios. You can select one or more individuals to be “arrested” and click on Remove selected. Alternatively, you can simulate a “police raid” and Remove n largest nodes (based on degrees score), which causes even greater disruption to the network.
The nodes removed directly will ping blue, while nodes removed indirectly (by losing connection to any other node) will ping red.
Although the names are fictional, the featured data is based on a study Disrupting Resilient Criminal Networks through Data Analysis: The case of Sicilian Mafia.
Key functions used:
import KeyLines from "keylines";
import { data } from "./data.js";
let visibleChart;
let hiddenChart;
let savedChartItems;
let nodeSelection = [];
let nodeIdsRemovedBySlider = [];
let allNodeIds = [];
const familyIdsCache = {};
const allNodeIdsLookup = {};
// Stacks to maintain the order of items filtered by manual selection and the slider
let manuallyRemovedStack = [];
let sliderStack = [];
// Get elements from the UI
const familyCheckBoxesEls = [...document.querySelectorAll("input[type=checkbox]")];
const largestCompSizeEl = document.getElementById("lcc");
const restoreItemsButtonEl = document.getElementById("restore");
const removeItemsButtonEl = document.getElementById("remove");
const sliderEl = document.getElementById("slider");
const resetAllEl = document.getElementById("resetAll");
function setButtonAvailability(element, available) {
element.classList[available ? "add" : "remove"](["active", "btn-kl"]);
element.disabled = !available;
}
function setUIAvailability(available) {
if (manuallyRemovedStack.length) {
setButtonAvailability(restoreItemsButtonEl, available);
}
familyCheckBoxesEls.forEach((radio) => {
radio.disabled = !available;
});
sliderEl.disabled = !available;
resetAllEl.disabled = !available;
}
// Update order of available nodes for the slider
function setIdsForSliderStack() {
const sortedAvailableNodeIds = allNodeIds
// Available nodes are those on the visible chart
.filter(
(nodeId) =>
allNodeIdsLookup[nodeId].sliderAvailability && allNodeIdsLookup[nodeId].filterState
)
.sort((idA, idB) => allNodeIdsLookup[idB].index - allNodeIdsLookup[idA].index);
// Append items already filtered by the slider to the end of the stack, in order they were removed
sliderStack = sortedAvailableNodeIds.concat(nodeIdsRemovedBySlider);
}
function setLargestComponentSize() {
const components = visibleChart.graph().components();
largestCompSizeEl.innerText = components.length
? components.reduce((a, b) => (b.nodes.length < a.nodes.length ? a : b)).nodes.length
: 0;
}
function setNodeState(nodeIds, property, state) {
nodeIds.forEach((id) => {
allNodeIdsLookup[id][property] = state;
});
}
function setNodesManuallySelected(newSelectedNodes) {
// Clear the previously selected nodes
if (nodeSelection.length) {
setNodeState(nodeSelection, "filterState", true);
nodeSelection = [];
}
if (newSelectedNodes.length) {
// Prepare selected nodes to be removed
nodeSelection = newSelectedNodes;
setNodeState(newSelectedNodes, "filterState", false);
// Highlight neighbours of selected items
const neighbours = visibleChart.graph().neighbours(newSelectedNodes).nodes;
visibleChart.foreground(
(node) => newSelectedNodes.includes(node.id) || neighbours.includes(node.id)
);
// Allow selected nodes to be removed
setButtonAvailability(removeItemsButtonEl, true);
} else {
// No nodes selected
visibleChart.selection([]);
visibleChart.foreground(() => true);
setButtonAvailability(removeItemsButtonEl, false);
}
}
async function pingNodes(allNodeIdsToRemove, primaryNodeIds) {
const collateralNodeIdsToRemove = allNodeIdsToRemove.filter((id) => !primaryNodeIds.includes(id));
if (collateralNodeIdsToRemove.length) {
// Primary removed nodes ping blue
visibleChart.ping(allNodeIdsToRemove, { time: 1200, c: "#5d81f8" });
// Collateral nodes ping red
await visibleChart.ping(collateralNodeIdsToRemove, { time: 1200, c: "#FF0000" });
} else {
await visibleChart.ping(allNodeIdsToRemove, { time: 1200, c: "#5d81f8" });
}
}
async function getItemsFromFilter() {
function matchFilter(node) {
return allNodeIdsLookup[node.id].familyCheckbox && allNodeIdsLookup[node.id].filterState;
}
// Filter the hidden chart and return the items to be removed or expanded into visible chart
const { shown, hidden } = await hiddenChart.filter(matchFilter, {
type: "node",
animate: false,
hideSingletons: true,
});
const nodesShown = shown.nodes;
const nodesHidden = hidden.nodes;
const itemsShown = nodesShown.length ? nodesShown.concat(shown.links) : [];
const itemsHidden = nodesHidden.length ? nodesHidden.concat(hidden.links) : [];
return {
nodesShown,
nodesHidden,
itemsShown,
itemsHidden,
};
}
async function doFiltering(filteredBy) {
// Disable the UI while visible chart is updated
setUIAvailability(false);
// Get items to be expanded or removed
const {
nodesShown: nodeIdsToExpand,
nodesHidden: nodeIdsToRemove,
itemsShown: itemIdsToExpand,
itemsHidden: itemIdsToRemove,
} = await getItemsFromFilter();
if (itemIdsToExpand.length) {
// Allow expanded items to be available for filtering on the slider
setNodeState(nodeIdsToExpand, "sliderAvailability", true);
// Retrieve saved item so we can expand with the correct node size
const itemsToExpand = savedChartItems.filter((item) => itemIdsToExpand.includes(item.id));
await visibleChart.expand(itemsToExpand, { layout: { name: "organic", fit: true } });
} else if (itemIdsToRemove.length) {
let primaryNodesToHide;
// Check which filter was used and identify primary nodes for correct ping colour
if (filteredBy === "selected") {
manuallyRemovedStack.push(nodeIdsToRemove);
primaryNodesToHide = nodeSelection;
// Remove the node selection so that the remove animation is consistent with other filters
nodeSelection = [];
setNodesManuallySelected([]);
} else if (["batanesi", "mistretta", "none"].includes(filteredBy)) {
primaryNodesToHide = familyIdsCache[filteredBy];
} else if (filteredBy === "slider") {
primaryNodesToHide = nodeIdsRemovedBySlider;
}
// Make removed nodes unavailable to the slider
setNodeState(nodeIdsToRemove, "sliderAvailability", false);
// Ping nodes to be removed
await pingNodes(nodeIdsToRemove, primaryNodesToHide);
// Remove items from the visible chart
await visibleChart.removeItem(nodeIdsToRemove);
// Layout items
await visibleChart.layout("organic", { mode: "adaptive" });
}
// Update the slider for the nodes remaining on the visible chart
setIdsForSliderStack();
// Update the largest component indicator
setLargestComponentSize();
// Enable the UI after the visible chart has been updated
setUIAvailability(true);
}
function initialiseInteractions() {
const sliderValueEl = document.getElementById("sliderValue");
// Filter the chart when any checkbox is changed
familyCheckBoxesEls.forEach((checkbox) => {
checkbox.addEventListener("click", (event) => {
let familyIdsToBeFiltered;
const familyName = event.target.id;
const familyChecked = event.target.checked;
setNodesManuallySelected([]);
// Check if family has been filtered before
if (familyIdsCache[familyName]) {
familyIdsToBeFiltered = familyIdsCache[familyName];
} else {
// Get the family ids and cache the ids for later use
familyIdsToBeFiltered = allNodeIds.filter(
(id) => allNodeIdsLookup[id].family === familyName
);
familyIdsCache[familyName] = familyIdsToBeFiltered;
}
setNodeState(familyIdsToBeFiltered, "familyCheckbox", familyChecked);
doFiltering(familyName);
});
});
visibleChart.on("selection-change", () => {
const selectedItems = visibleChart.selection();
// Filter selection to include only nodes
const newSelectedNodes = selectedItems.filter((id) => !id.match(/-/));
setNodesManuallySelected(newSelectedNodes);
});
// Remove manually selected nodes
removeItemsButtonEl.addEventListener("click", async () => {
setButtonAvailability(removeItemsButtonEl, false);
await doFiltering("selected");
setButtonAvailability(restoreItemsButtonEl, true);
});
// Restore previously removed nodes
restoreItemsButtonEl.addEventListener("click", () => {
setNodesManuallySelected([]);
// Update state of nodes to be restoreed
setNodeState(manuallyRemovedStack.pop(), "filterState", true);
// Disable the restore button if stack is empty
if (manuallyRemovedStack.length === 0) {
setButtonAvailability(restoreItemsButtonEl, false);
}
doFiltering();
});
// Update the slider value before the change event if it is dragged
sliderEl.addEventListener("input", () => {
sliderValueEl.innerText = +sliderEl.value;
});
// Filter the chart once the slider value has been changed
sliderEl.addEventListener("change", () => {
setNodesManuallySelected([]);
const sliderValue = +sliderEl.value;
const availableNodes = sliderStack.length;
const nodesToRemove = Math.min(sliderValue, availableNodes);
nodeIdsRemovedBySlider = sliderStack.slice(availableNodes - nodesToRemove, availableNodes);
// Update filter state of nodes on the stack
sliderStack.forEach((id) => {
allNodeIdsLookup[id].filterState = !nodeIdsRemovedBySlider.includes(id);
});
doFiltering("slider");
});
resetAllEl.addEventListener("click", async () => {
// Clear all filters and reset the UI
setNodesManuallySelected([]);
manuallyRemovedStack = [];
nodeIdsRemovedBySlider = [];
setButtonAvailability(restoreItemsButtonEl, false);
sliderEl.value = 0;
sliderValueEl.innerText = 0;
familyCheckBoxesEls.forEach((checkbox) => {
checkbox.checked = true;
});
// Update state of all nodes and filter the chart
setNodeState(allNodeIds, "filterState", true);
setNodeState(allNodeIds, "familyCheckbox", true);
await doFiltering();
visibleChart.layout("organic", { mode: "adaptive" });
});
}
// Set the lookup for the ranking and availability of each node for the slider
function setNodesIdsLookup(sizedNodes) {
// All node ids sorted by degree score
allNodeIds = sizedNodes.sort((nodeA, nodeB) => nodeB.e - nodeA.e).map((node) => node.id);
allNodeIds.forEach((id, index) => {
allNodeIdsLookup[id] = {
// Ranking of node by size
index,
// Availability of node to be filtered by the slider
sliderAvailability: true,
// Check for whether node should be filtered from the chart
filterState: true,
// If a family checkbox is unchecked, this state ensures nodes won't be expanded
// back in if they have already been removed by the other filters
familyCheckbox: true,
};
});
// Add family property to the lookup
savedChartItems.forEach((item) => {
if (item.type === "node") {
allNodeIdsLookup[item.id].family = item.d.family;
}
});
}
// Helper function to normalize degrees score
function getResizeArray(values) {
const valuesArray = Object.values(values);
const max = Math.max.apply(null, valuesArray);
const min = Math.min.apply(null, valuesArray);
const resizeArray = Object.keys(values).map((id) => ({
id,
e: ((values[id] - min) / (max - min)) * 2 + 1,
}));
return resizeArray;
}
async function setNodesSize() {
const degreeScores = await visibleChart.graph().degrees({ value: "total" });
const resizeValues = getResizeArray(degreeScores);
visibleChart.setProperties(resizeValues);
// Save the chart to retrieve nodes sizes when filtering them back in.
savedChartItems = visibleChart.serialize().items;
return resizeValues;
}
async function startKeyLines() {
const options = {
logo: {
u: "/images/Logo.png",
},
selectedNode: {
ha0: {
c: "#5d81f8",
r: 35,
w: 15,
},
},
selectedLink: {},
};
[visibleChart, hiddenChart] = await KeyLines.create([
{ container: "klchart", options },
{ container: "hiddenChart" },
]);
visibleChart.load(data);
hiddenChart.load(data);
// Set the size of each node by normalized degree score
const nodesSizedByDegree = await setNodesSize();
// Set the order of nodes ids to be filtered for the slider
setNodesIdsLookup(nodesSizedByDegree);
// Set nodes to be filtered by the slider
setIdsForSliderStack();
visibleChart.layout("organic", { consistent: true, packing: "adaptive" });
initialiseInteractions();
setLargestComponentSize();
}
window.addEventListener("DOMContentLoaded", startKeyLines); export const data = {
type: "LinkChart",
items: [
{
id: "14-101",
id1: "14",
id2: "101",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-19",
id1: "18",
id2: "19",
d: {
meetings: 2,
phonecalls: 11,
total: 13,
},
type: "link",
w: 19.5,
},
{
id: "102-18",
id1: "102",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "32-18",
id1: "32",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "103-18",
id1: "103",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "104-18",
id1: "104",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-31",
id1: "22",
id2: "31",
d: {
meetings: 2,
phonecalls: 1,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "22-19",
id1: "22",
id2: "19",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-105",
id1: "61",
id2: "105",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-61",
id1: "18",
id2: "61",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "33-18",
id1: "33",
id2: "18",
d: {
meetings: 0,
phonecalls: 6,
total: 6,
},
type: "link",
w: 9,
},
{
id: "18-21",
id1: "18",
id2: "21",
d: {
meetings: 1,
phonecalls: 3,
total: 4,
},
type: "link",
w: 6,
},
{
id: "108-18",
id1: "108",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "109-58",
id1: "109",
id2: "58",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "110-109",
id1: "110",
id2: "109",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "75-58",
id1: "75",
id2: "58",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "109-111",
id1: "109",
id2: "111",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "75-112",
id1: "75",
id2: "112",
d: {
meetings: 0,
phonecalls: 5,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "75-64",
id1: "75",
id2: "64",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "75-113",
id1: "75",
id2: "113",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "75-114",
id1: "75",
id2: "114",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "75-115",
id1: "75",
id2: "115",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "75-116",
id1: "75",
id2: "116",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "117-61",
id1: "117",
id2: "61",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "80-61",
id1: "80",
id2: "61",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "99-23",
id1: "99",
id2: "23",
d: {
meetings: 0,
phonecalls: 5,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "99-118",
id1: "99",
id2: "118",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "27-47",
id1: "27",
id2: "47",
d: {
meetings: 6,
phonecalls: 5,
total: 11,
},
type: "link",
w: 16.5,
},
{
id: "119-27",
id1: "119",
id2: "27",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "43-120",
id1: "43",
id2: "120",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "43-47",
id1: "43",
id2: "47",
d: {
meetings: 3,
phonecalls: 5,
total: 8,
},
type: "link",
w: 12,
},
{
id: "47-121",
id1: "47",
id2: "121",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-36",
id1: "47",
id2: "36",
d: {
meetings: 3,
phonecalls: 2,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "45-40",
id1: "45",
id2: "40",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-122",
id1: "47",
id2: "122",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-49",
id1: "47",
id2: "49",
d: {
meetings: 1,
phonecalls: 2,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "47-48",
id1: "47",
id2: "48",
d: {
meetings: 8,
phonecalls: 4,
total: 12,
},
type: "link",
w: 18,
},
{
id: "47-123",
id1: "47",
id2: "123",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "96-47",
id1: "96",
id2: "47",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "54-47",
id1: "54",
id2: "47",
d: {
meetings: 1,
phonecalls: 4,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "47-45",
id1: "47",
id2: "45",
d: {
meetings: 9,
phonecalls: 7,
total: 16,
},
type: "link",
w: 24,
},
{
id: "47-51",
id1: "47",
id2: "51",
d: {
meetings: 5,
phonecalls: 4,
total: 9,
},
type: "link",
w: 13.5,
},
{
id: "52-124",
id1: "52",
id2: "124",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "56-125",
id1: "56",
id2: "125",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "56-49",
id1: "56",
id2: "49",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "97-27",
id1: "97",
id2: "27",
d: {
meetings: 1,
phonecalls: 2,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "27-126",
id1: "27",
id2: "126",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "58-18",
id1: "58",
id2: "18",
d: {
meetings: 1,
phonecalls: 5,
total: 6,
},
type: "link",
w: 9,
},
{
id: "127-18",
id1: "127",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-66",
id1: "61",
id2: "66",
d: {
meetings: 1,
phonecalls: 9,
total: 10,
},
type: "link",
w: 15,
},
{
id: "18-66",
id1: "18",
id2: "66",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-67",
id1: "61",
id2: "67",
d: {
meetings: 0,
phonecalls: 5,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "129-61",
id1: "129",
id2: "61",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "128-61",
id1: "128",
id2: "61",
d: {
meetings: 0,
phonecalls: 6,
total: 6,
},
type: "link",
w: 9,
},
{
id: "75-61",
id1: "75",
id2: "61",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-130",
id1: "61",
id2: "130",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "131-61",
id1: "131",
id2: "61",
d: {
meetings: 0,
phonecalls: 4,
total: 4,
},
type: "link",
w: 6,
},
{
id: "18-29",
id1: "18",
id2: "29",
d: {
meetings: 4,
phonecalls: 15,
total: 19,
},
type: "link",
w: 28.5,
},
{
id: "18-132",
id1: "18",
id2: "132",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "133-61",
id1: "133",
id2: "61",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "29-54",
id1: "29",
id2: "54",
d: {
meetings: 1,
phonecalls: 1,
total: 2,
},
type: "link",
w: 3,
},
{
id: "29-64",
id1: "29",
id2: "64",
d: {
meetings: 5,
phonecalls: 1,
total: 6,
},
type: "link",
w: 9,
},
{
id: "29-63",
id1: "29",
id2: "63",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "134-61",
id1: "134",
id2: "61",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-125",
id1: "18",
id2: "125",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "135-47",
id1: "135",
id2: "47",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-29",
id1: "47",
id2: "29",
d: {
meetings: 2,
phonecalls: 1,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "43-29",
id1: "43",
id2: "29",
d: {
meetings: 4,
phonecalls: 6,
total: 10,
},
type: "link",
w: 15,
},
{
id: "27-51",
id1: "27",
id2: "51",
d: {
meetings: 4,
phonecalls: 1,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "29-51",
id1: "29",
id2: "51",
d: {
meetings: 2,
phonecalls: 2,
total: 4,
},
type: "link",
w: 6,
},
{
id: "136-27",
id1: "136",
id2: "27",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "50-47",
id1: "50",
id2: "47",
d: {
meetings: 10,
phonecalls: 2,
total: 12,
},
type: "link",
w: 18,
},
{
id: "68-47",
id1: "68",
id2: "47",
d: {
meetings: 2,
phonecalls: 5,
total: 7,
},
type: "link",
w: 10.5,
},
{
id: "77-137",
id1: "77",
id2: "137",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "69-77",
id1: "69",
id2: "77",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "77-58",
id1: "77",
id2: "58",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "54-69",
id1: "54",
id2: "69",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-54",
id1: "68",
id2: "54",
d: {
meetings: 1,
phonecalls: 3,
total: 4,
},
type: "link",
w: 6,
},
{
id: "68-45",
id1: "68",
id2: "45",
d: {
meetings: 4,
phonecalls: 3,
total: 7,
},
type: "link",
w: 10.5,
},
{
id: "69-45",
id1: "69",
id2: "45",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "51-45",
id1: "51",
id2: "45",
d: {
meetings: 5,
phonecalls: 1,
total: 6,
},
type: "link",
w: 9,
},
{
id: "27-68",
id1: "27",
id2: "68",
d: {
meetings: 5,
phonecalls: 1,
total: 6,
},
type: "link",
w: 9,
},
{
id: "138-27",
id1: "138",
id2: "27",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "98-29",
id1: "98",
id2: "29",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "139-29",
id1: "139",
id2: "29",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "43-139",
id1: "43",
id2: "139",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-95",
id1: "47",
id2: "95",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "140-18",
id1: "140",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-71",
id1: "18",
id2: "71",
d: {
meetings: 1,
phonecalls: 1,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-141",
id1: "18",
id2: "141",
d: {
meetings: 0,
phonecalls: 4,
total: 4,
},
type: "link",
w: 6,
},
{
id: "77-114",
id1: "77",
id2: "114",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "142-61",
id1: "142",
id2: "61",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "142-19",
id1: "142",
id2: "19",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-62",
id1: "61",
id2: "62",
d: {
meetings: 1,
phonecalls: 2,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "11-12",
id1: "11",
id2: "12",
d: {
meetings: 10,
phonecalls: 1,
total: 11,
},
type: "link",
w: 16.5,
},
{
id: "145-11",
id1: "145",
id2: "11",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-146",
id1: "18",
id2: "146",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "144-11",
id1: "144",
id2: "11",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "144-143",
id1: "144",
id2: "143",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "143-11",
id1: "143",
id2: "11",
d: {
meetings: 0,
phonecalls: 2,
total: 2,
},
type: "link",
w: 3,
},
{
id: "97-68",
id1: "97",
id2: "68",
d: {
meetings: 1,
phonecalls: 1,
total: 2,
},
type: "link",
w: 3,
},
{
id: "147-47",
id1: "147",
id2: "47",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-56",
id1: "47",
id2: "56",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-97",
id1: "47",
id2: "97",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "148-36",
id1: "148",
id2: "36",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "36-61",
id1: "36",
id2: "61",
d: {
meetings: 0,
phonecalls: 4,
total: 4,
},
type: "link",
w: 6,
},
{
id: "36-27",
id1: "36",
id2: "27",
d: {
meetings: 0,
phonecalls: 3,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "68-149",
id1: "68",
id2: "149",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "150-68",
id1: "150",
id2: "68",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-151",
id1: "68",
id2: "151",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "152-68",
id1: "152",
id2: "68",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "151-47",
id1: "151",
id2: "47",
d: {
meetings: 0,
phonecalls: 4,
total: 4,
},
type: "link",
w: 6,
},
{
id: "61-70",
id1: "61",
id2: "70",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "70-68",
id1: "70",
id2: "68",
d: {
meetings: 4,
phonecalls: 3,
total: 7,
},
type: "link",
w: 10.5,
},
{
id: "153-18",
id1: "153",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-34",
id1: "18",
id2: "34",
d: {
meetings: 2,
phonecalls: 3,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "99-18",
id1: "99",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "110-18",
id1: "110",
id2: "18",
d: {
meetings: 0,
phonecalls: 1,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-4",
id1: "3",
id2: "4",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-5",
id1: "3",
id2: "5",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-6",
id1: "3",
id2: "6",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-7",
id1: "3",
id2: "7",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-8",
id1: "3",
id2: "8",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-9",
id1: "3",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "4-5",
id1: "4",
id2: "5",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "4-6",
id1: "4",
id2: "6",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "4-7",
id1: "4",
id2: "7",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "4-8",
id1: "4",
id2: "8",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "4-9",
id1: "4",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "5-6",
id1: "5",
id2: "6",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "5-7",
id1: "5",
id2: "7",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "5-8",
id1: "5",
id2: "8",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "5-9",
id1: "5",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-7",
id1: "6",
id2: "7",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-8",
id1: "6",
id2: "8",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-9",
id1: "6",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "7-8",
id1: "7",
id2: "8",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "7-9",
id1: "7",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "8-9",
id1: "8",
id2: "9",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "10-11",
id1: "10",
id2: "11",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "10-12",
id1: "10",
id2: "12",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "10-13",
id1: "10",
id2: "13",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "10-14",
id1: "10",
id2: "14",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "10-15",
id1: "10",
id2: "15",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "11-14",
id1: "11",
id2: "14",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "11-15",
id1: "11",
id2: "15",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "12-14",
id1: "12",
id2: "14",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "12-15",
id1: "12",
id2: "15",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "13-14",
id1: "13",
id2: "14",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "13-15",
id1: "13",
id2: "15",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "14-15",
id1: "14",
id2: "15",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "11-18",
id1: "11",
id2: "18",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-20",
id1: "18",
id2: "20",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "19-20",
id1: "19",
id2: "20",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-12",
id1: "18",
id2: "12",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "21-12",
id1: "21",
id2: "12",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-22",
id1: "18",
id2: "22",
d: {
meetings: 5,
phonecalls: 0,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "22-23",
id1: "22",
id2: "23",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "23-24",
id1: "23",
id2: "24",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "25-26",
id1: "25",
id2: "26",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "25-27",
id1: "25",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "26-27",
id1: "26",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "11-25",
id1: "11",
id2: "25",
d: {
meetings: 5,
phonecalls: 0,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "12-25",
id1: "12",
id2: "25",
d: {
meetings: 5,
phonecalls: 0,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "3-11",
id1: "3",
id2: "11",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3-12",
id1: "3",
id2: "12",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-11",
id1: "6",
id2: "11",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-12",
id1: "6",
id2: "12",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-28",
id1: "6",
id2: "28",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "6-25",
id1: "6",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "11-5",
id1: "11",
id2: "5",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "11-28",
id1: "11",
id2: "28",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "12-5",
id1: "12",
id2: "5",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "12-28",
id1: "12",
id2: "28",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "5-28",
id1: "5",
id2: "28",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "5-25",
id1: "5",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "28-25",
id1: "28",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-29",
id1: "22",
id2: "29",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "22-30",
id1: "22",
id2: "30",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "29-30",
id1: "29",
id2: "30",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "31-18",
id1: "31",
id2: "18",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "32-19",
id1: "32",
id2: "19",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "32-33",
id1: "32",
id2: "33",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "19-33",
id1: "19",
id2: "33",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-35",
id1: "18",
id2: "35",
d: {
meetings: 1,
phonecalls: 5,
total: 6,
},
type: "link",
w: 9,
},
{
id: "18-23",
id1: "18",
id2: "23",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "18-25",
id1: "18",
id2: "25",
d: {
meetings: 2,
phonecalls: 1,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "34-19",
id1: "34",
id2: "19",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "34-35",
id1: "34",
id2: "35",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "34-25",
id1: "34",
id2: "25",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "19-35",
id1: "19",
id2: "35",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "19-23",
id1: "19",
id2: "23",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "19-25",
id1: "19",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "35-23",
id1: "35",
id2: "23",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "35-25",
id1: "35",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "23-25",
id1: "23",
id2: "25",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "36-37",
id1: "36",
id2: "37",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "38-27",
id1: "38",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-40",
id1: "39",
id2: "40",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-41",
id1: "39",
id2: "41",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-42",
id1: "39",
id2: "42",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "40-41",
id1: "40",
id2: "41",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "40-42",
id1: "40",
id2: "42",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "41-42",
id1: "41",
id2: "42",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "43-44",
id1: "43",
id2: "44",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "45-36",
id1: "45",
id2: "36",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "45-46",
id1: "45",
id2: "46",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "45-48",
id1: "45",
id2: "48",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "36-46",
id1: "36",
id2: "46",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "36-48",
id1: "36",
id2: "48",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "46-47",
id1: "46",
id2: "47",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "46-48",
id1: "46",
id2: "48",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-47",
id1: "39",
id2: "47",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-49",
id1: "39",
id2: "49",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-50",
id1: "39",
id2: "50",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "39-48",
id1: "39",
id2: "48",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "49-50",
id1: "49",
id2: "50",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "49-48",
id1: "49",
id2: "48",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "51-52",
id1: "51",
id2: "52",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "51-53",
id1: "51",
id2: "53",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "52-53",
id1: "52",
id2: "53",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "51-54",
id1: "51",
id2: "54",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "45-54",
id1: "45",
id2: "54",
d: {
meetings: 1,
phonecalls: 1,
total: 2,
},
type: "link",
w: 3,
},
{
id: "47-55",
id1: "47",
id2: "55",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "45-55",
id1: "45",
id2: "55",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "56-57",
id1: "56",
id2: "57",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "27-45",
id1: "27",
id2: "45",
d: {
meetings: 5,
phonecalls: 0,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "58-59",
id1: "58",
id2: "59",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "59-18",
id1: "59",
id2: "18",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-60",
id1: "22",
id2: "60",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "60-18",
id1: "60",
id2: "18",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-63",
id1: "18",
id2: "63",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-64",
id1: "18",
id2: "64",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "63-64",
id1: "63",
id2: "64",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "18-65",
id1: "18",
id2: "65",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "67-37",
id1: "67",
id2: "37",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-43",
id1: "18",
id2: "43",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-27",
id1: "18",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-47",
id1: "18",
id2: "47",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "43-27",
id1: "43",
id2: "27",
d: {
meetings: 5,
phonecalls: 2,
total: 7,
},
type: "link",
w: 10.5,
},
{
id: "43-64",
id1: "43",
id2: "64",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "43-68",
id1: "43",
id2: "68",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "27-64",
id1: "27",
id2: "64",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "29-68",
id1: "29",
id2: "68",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "64-68",
id1: "64",
id2: "68",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "29-27",
id1: "29",
id2: "27",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "43-51",
id1: "43",
id2: "51",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-44",
id1: "47",
id2: "44",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "44-27",
id1: "44",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "69-68",
id1: "69",
id2: "68",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "29-71",
id1: "29",
id2: "71",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "63-72",
id1: "63",
id2: "72",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "63-22",
id1: "63",
id2: "22",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "29-75",
id1: "29",
id2: "75",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "76-77",
id1: "76",
id2: "77",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "76-75",
id1: "76",
id2: "75",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-77",
id1: "22",
id2: "77",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "22-75",
id1: "22",
id2: "75",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "77-75",
id1: "77",
id2: "75",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "76-29",
id1: "76",
id2: "29",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "76-78",
id1: "76",
id2: "78",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-78",
id1: "22",
id2: "78",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-76",
id1: "18",
id2: "76",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-76",
id1: "22",
id2: "76",
d: {
meetings: 11,
phonecalls: 0,
total: 11,
},
type: "link",
w: 16.5,
},
{
id: "22-72",
id1: "22",
id2: "72",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "79-80",
id1: "79",
id2: "80",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "79-81",
id1: "79",
id2: "81",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "79-82",
id1: "79",
id2: "82",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "80-81",
id1: "80",
id2: "81",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "80-82",
id1: "80",
id2: "82",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "81-82",
id1: "81",
id2: "82",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "79-68",
id1: "79",
id2: "68",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "79-83",
id1: "79",
id2: "83",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-83",
id1: "68",
id2: "83",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "12-84",
id1: "12",
id2: "84",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "12-85",
id1: "12",
id2: "85",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "12-86",
id1: "12",
id2: "86",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "12-87",
id1: "12",
id2: "87",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "84-85",
id1: "84",
id2: "85",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "84-86",
id1: "84",
id2: "86",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "84-87",
id1: "84",
id2: "87",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "85-86",
id1: "85",
id2: "86",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "85-87",
id1: "85",
id2: "87",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "86-87",
id1: "86",
id2: "87",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "13-11",
id1: "13",
id2: "11",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "13-12",
id1: "13",
id2: "12",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "13-85",
id1: "13",
id2: "85",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "11-85",
id1: "11",
id2: "85",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "85-14",
id1: "85",
id2: "14",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "85-15",
id1: "85",
id2: "15",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "19-88",
id1: "19",
id2: "88",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "33-88",
id1: "33",
id2: "88",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-27",
id1: "61",
id2: "27",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "61-43",
id1: "61",
id2: "43",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "51-50",
id1: "51",
id2: "50",
d: {
meetings: 5,
phonecalls: 0,
total: 5,
},
type: "link",
w: 7.5,
},
{
id: "51-48",
id1: "51",
id2: "48",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "48-50",
id1: "48",
id2: "50",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "51-89",
id1: "51",
id2: "89",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "89-50",
id1: "89",
id2: "50",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "47-89",
id1: "47",
id2: "89",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "47-90",
id1: "47",
id2: "90",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "90-50",
id1: "90",
id2: "50",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "45-50",
id1: "45",
id2: "50",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "36-91",
id1: "36",
id2: "91",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "36-92",
id1: "36",
id2: "92",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "91-92",
id1: "91",
id2: "92",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "47-93",
id1: "47",
id2: "93",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-89",
id1: "68",
id2: "89",
d: {
meetings: 7,
phonecalls: 0,
total: 7,
},
type: "link",
w: 10.5,
},
{
id: "45-89",
id1: "45",
id2: "89",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "38-93",
id1: "38",
id2: "93",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "38-89",
id1: "38",
id2: "89",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "45-94",
id1: "45",
id2: "94",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "89-94",
id1: "89",
id2: "94",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "93-48",
id1: "93",
id2: "48",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "48-89",
id1: "48",
id2: "89",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "27-89",
id1: "27",
id2: "89",
d: {
meetings: 4,
phonecalls: 0,
total: 4,
},
type: "link",
w: 6,
},
{
id: "93-95",
id1: "93",
id2: "95",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "95-48",
id1: "95",
id2: "48",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "95-89",
id1: "95",
id2: "89",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "96-52",
id1: "96",
id2: "52",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "54-70",
id1: "54",
id2: "70",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "89-93",
id1: "89",
id2: "93",
d: {
meetings: 8,
phonecalls: 0,
total: 8,
},
type: "link",
w: 12,
},
{
id: "89-70",
id1: "89",
id2: "70",
d: {
meetings: 3,
phonecalls: 0,
total: 3,
},
type: "link",
w: 4.5,
},
{
id: "93-70",
id1: "93",
id2: "70",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "27-70",
id1: "27",
id2: "70",
d: {
meetings: 3,
phonecalls: 1,
total: 4,
},
type: "link",
w: 6,
},
{
id: "97-70",
id1: "97",
id2: "70",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-36",
id1: "68",
id2: "36",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "68-48",
id1: "68",
id2: "48",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "98-22",
id1: "98",
id2: "22",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "98-76",
id1: "98",
id2: "76",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "22-99",
id1: "22",
id2: "99",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "23-34",
id1: "23",
id2: "34",
d: {
meetings: 2,
phonecalls: 0,
total: 2,
},
type: "link",
w: 3,
},
{
id: "23-100",
id1: "23",
id2: "100",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "18-100",
id1: "18",
id2: "100",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "34-100",
id1: "34",
id2: "100",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "100-25",
id1: "100",
id2: "25",
d: {
meetings: 1,
phonecalls: 0,
total: 1,
},
type: "link",
w: 1.5,
},
{
id: "3",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Tranquillo Morrone",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "4",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Nicolò Lo Bello",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "5",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Pantaleo Poppa",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "6",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Odorico Matto",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "7",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Cecco De Cicco",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "8",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Aldobrando Cornelio",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "9",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ottavio Di Mambro",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "10",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Plinio Corsa",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "11",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Gianfranco Verni",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "12",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Ottavio Petosa",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "13",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Zaccaria Fatica",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "14",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Coronato Montemurro",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "15",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Narsete Maggiore",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "18",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
ha0: {
c: "#F5BD1F",
r: 35,
w: 15,
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Ivanoe Melillo",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "19",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Omar Freda",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "20",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ambrogio La Rossa",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "21",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Giadero Cicale",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "22",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Malco Perelli",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "23",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Eufebio D'Ettore",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "24",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Telchide Petraglia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "25",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Lidio Saeli",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "26",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Valente Mezzanotte",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "27",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
ha0: {
c: "#F5BD1F",
r: 35,
w: 15,
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Regolo Signorello",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "28",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rocco Turi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "29",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Vidiano Pala",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "30",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Lauriano Ciresi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "31",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Teodosio Calcaterra",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "32",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Filomeno Ratti",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "33",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Vulpiano Barsanti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "34",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Pardo Falsone",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "35",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rufino Sollecito",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "36",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Silvano Sirico",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "37",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Davino Domanico",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "38",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Alfio Faustino",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "39",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Alfio Orlandini",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "40",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Aristofane Larocca",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "41",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Frontiano Zirpoli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "42",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ivanoe Nicolai",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "43",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Virginio Di Fabio",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "44",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Claudio Fini",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "45",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Vedasto Balestri",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "46",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Renato Mello",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "47",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Procopio Matranga",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "48",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Ludano Gillotti",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "49",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Aronne Traino",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "50",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Ennio Pirri",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "51",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Sante Pagliaro",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "52",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Eufemio Santorelli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "53",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Cassio Elia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "54",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Gianmarco Crognale",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "55",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Anselmo D'Egidio",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "56",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Ursmaro Liberti",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "57",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Metrofane Dura",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "58",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Manfredo Amante",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "59",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Raffaele Cilento",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "60",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Maccabeo Ardizzone",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "61",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Tiziano Elefante",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "62",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Manetto Saccomanno",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "63",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Quintino Caponera",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "64",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Laurentino Martorana",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "65",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Frido Di Mauro",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "66",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Mirocleto Ciarcia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "67",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Doriano Manfredi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "68",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
ha0: {
c: "#F5BD1F",
r: 35,
w: 15,
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Tarcisio Anastasio",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "69",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Enzo Passeri",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "70",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Benigno Lala",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "71",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Divo D'Urbano",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "72",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Fleano Muscarello",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "75",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
ha0: {
c: "#F5BD1F",
r: 35,
w: 15,
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Colombano Pellegrino",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "76",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Sandro Biagiotti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "77",
type: "node",
c: "#a04b6d",
b: "#4B4848",
d: {
family: "mistretta",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Diodoro Di Pietro",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "78",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Antioco Gazzara",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "79",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Olindo Bassetti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "80",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Silverio Galgano",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "81",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Uriele Ruocco",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "82",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Virgilio Coppi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "83",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Marino Gasparini",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "84",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Apuleio Traino",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "85",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Melanio Caro",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "86",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Fazio Giovanetti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "87",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Garimberto Lia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "88",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Duccio Mazziotta",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "89",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ticone Giraldo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "90",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Eriberto Devoto",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "91",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Quirino Muto",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "92",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Callisto Martorella",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "93",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ezechiele Matteo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "94",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Onofrio Tursi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "95",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Agostino Pirolli",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "96",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rutilo Salvia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "97",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Amico Deliso",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "98",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Tussio Porrazzo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "99",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rosario Ferra",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "100",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Nicodemo Cacchione",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "101",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Coriolano Pellegrino",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "102",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Antelmo Onofrio",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "103",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Albano Guarnera",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "104",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Renzo De Napoli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "105",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Canziano Buonomo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "108",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Mirco Borrelli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "109",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rosario Infante",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "110",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ramiro Catano",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "111",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Antimo Coscarelli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "112",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Vinicio Arcidia",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "113",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Gianuario Biagini",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "114",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Erminio Palermo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "115",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Elpidio Masso",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "116",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Gaspare Drago",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "117",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Delfino Fonzi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "118",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Sergio Ventura",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "119",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Pacomio Sirignano",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "120",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Narseo Passarelli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "121",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Pietro Puccinelli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "122",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Otello Arcuri",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "123",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Dagoberto Rigoli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "124",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Calanico Girolamo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "125",
type: "node",
c: "#8e9542",
b: "#4B4848",
d: {
family: "batanesi",
},
fb: true,
fbc: "rgba(0,0,0,0)",
t: {
t: "Esaù Vizzini",
fs: "auto",
textWrap: "normal",
},
fc: "#FFFFFF",
},
{
id: "126",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Caio Santoli",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "127",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Athos Giampaolo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "128",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Rubiano Sortino",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "129",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Lauriano Domenici",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "130",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Elogio Bellini",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "131",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Acario Zaccardi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "132",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Aimone De Nucci",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "133",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Eleuterio Annino",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "134",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Leo Baiocchi",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "135",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Acario Salata",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "136",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Verenzio Gandolfo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "137",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Canziano Viani",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "138",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Armando Del Greco",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "139",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Gualtiero Mariotti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "140",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Teobaldo D'Avanzo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "141",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Panfilo Marchionda",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "142",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ansaldo Panico",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "143",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Gianluigi Giammona",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "144",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Neoterio Polidori",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "145",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Spano Proietti",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "146",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Eugenio Falasca",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "147",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Venerio Del Tufo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "148",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Calanico Fasullo",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "149",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Pasquale Catapano",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "150",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Benvenuto Patrone",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "151",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Amico Fosco",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "152",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Publio Rotunda",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
{
id: "153",
type: "node",
c: "#FFFFFF",
b: "#4B4848",
d: {
family: "none",
},
fbc: "rgba(0,0,0,0)",
t: {
t: "Ampelio Tommaso",
fs: "auto",
textWrap: "normal",
},
fc: "#000000",
},
],
}; <!doctype html>
<html lang="en" style="background-color: #2d383f">
<head>
<meta charset="utf-8" />
<title>Mafia Network</title>
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/keylines.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/minimalsdk.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/sdk-layout.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/demo.css" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="klchart" class="klchart"></div>
<div style="display: none" id="hiddenChart"></div>
<script type="module" src="./code.js"></script>
</body>
</html> .sliderContainer {
width: 100%;
}
dl {
margin: 0px;
}
dl dt {
color: #fff;
float: left;
font-weight: bold;
margin-left: 0px;
margin-right: 10px;
margin-block-start: 0em;
padding: 3px;
width: 22px;
height: 22px;
border-radius: 22px;
line-height: 12px;
}
dl dd {
margin: 2px 0;
padding: 5px 0;
line-height: 12px;
font-size: 12px;
}
.batanesi dt {
background-color: #8e9542;
}
.mistretta dt {
background-color: #a04b6d;
}
.none dt {
background-color: white;
}