diff --git a/package.json b/package.json index d65f98c486..c25160cac3 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "@commitlint/config-conventional": "^17.4.4", "husky": "^8.0.3", "react-scripts": "3.1.2", - "vite": "^4.2.1" + "vite": "^4.2.1", + "stats.js": "^0.17.0" } } diff --git a/packages/g6/docs/api-ts/classes/default.md b/packages/g6/docs/api-ts/classes/default.md index 36e50da263..2516357d7a 100644 --- a/packages/g6/docs/api-ts/classes/default.md +++ b/packages/g6/docs/api-ts/classes/default.md @@ -248,10 +248,10 @@ Update a behavior on a mode. #### Parameters -| Name | Type | Description | -| :--------- | :------------------------------ | :---------------------------------------------------------------- | -| `behavior` | `BehaviorObjectOptionsOf`<`B`\> | behavior configs, whose name indicates the behavior to be updated | -| `mode?` | `string` | mode name | +| Name | Type | Description | +| :--------- | :------------------------ | :---------------------------------------------------------------- | +| `behavior` | `BehaviorOptionsOf`<`B`\> | behavior configs, whose name indicates the behavior to be updated | +| `mode?` | `string` | mode name | #### Returns diff --git a/packages/g6/package.json b/packages/g6/package.json index 0a381a6831..83cae9f247 100644 --- a/packages/g6/package.json +++ b/packages/g6/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6", - "version": "5.0.0-beta.1", + "version": "5.0.0-alpha.4", "description": "A Graph Visualization Framework in JavaScript", "keywords": [ "antv", @@ -43,7 +43,7 @@ "clean": "rimraf es lib", "coverage": "jest --coverage", "doc": "rimraf apis && typedoc", - "lint": "eslint ./src ./tests --quiet && prettier ./src ./tests --check", + "lint": "eslint ./src --quiet && prettier ./src --check", "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx", "fix": "eslint ./src ./tests --fix && prettier ./src ./tests --write ", "test": "jest", @@ -60,6 +60,7 @@ }, "dependencies": { "@ant-design/colors": "^7.0.0", + "@antv/algorithm": "^0.1.25", "@antv/dom-util": "^2.0.4", "@antv/g": "^5.15.7", "@antv/g-canvas": "^1.9.28", @@ -67,11 +68,12 @@ "@antv/g-plugin-control": "^1.7.43", "@antv/g-svg": "^1.8.36", "@antv/g-webgl": "^1.7.44", + "@antv/g6": "^4.8.13", "@antv/graphlib": "^2.0.0", "@antv/gui": "^0.5.0-alpha.16", "@antv/layout": "^1.2.0", "@antv/layout-gpu": "^1.0.0", - "@antv/layout-wasm": "^1.3.0", + "@antv/layout-wasm": "1.3.1", "@antv/matrix-util": "^3.0.4", "@antv/util": "~2.0.5", "color": "^4.2.3", @@ -103,6 +105,7 @@ "rollup-plugin-typescript": "^1.0.1", "rollup-plugin-uglify": "^6.0.4", "rollup-plugin-visualizer": "^5.6.0", + "stats.js": "^0.17.0", "ts-jest": "^24.1.0", "typedoc": "^0.23.24", "typescript": "^4.6.3", diff --git a/packages/g6/rollup.config.js b/packages/g6/rollup.config.js index e77de5a0f4..19e6362cb4 100644 --- a/packages/g6/rollup.config.js +++ b/packages/g6/rollup.config.js @@ -12,7 +12,7 @@ module.exports = [ input: 'src/index.ts', output: { file: 'dist/g6.min.js', - name: 'G6', + name: 'G6V5', format: 'umd', sourcemap: false, }, diff --git a/packages/g6/src/item/edge.ts b/packages/g6/src/item/edge.ts index f39f162a0e..9e42f5ec41 100644 --- a/packages/g6/src/item/edge.ts +++ b/packages/g6/src/item/edge.ts @@ -2,7 +2,7 @@ import { Group } from '@antv/g'; import { clone, throttle } from '@antv/util'; import { EdgeDisplayModel, EdgeModel, NodeModelData } from '../types'; import { EdgeModelData } from '../types/edge'; -import { DisplayMapper, State, ZoomStrategyObj } from '../types/item'; +import { DisplayMapper, State, lodStrategyObj } from '../types/item'; import { updateShapes } from '../util/shape'; import Item from './item'; import Node from './node'; @@ -22,7 +22,7 @@ interface IProps { zoom?: number; theme: { styles: EdgeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }; onframe?: Function; } @@ -88,10 +88,11 @@ export default class Edge extends Item { if (firstRendering) { // update the transform this.renderExt.onZoom(this.shapeMap, this.zoom); + } else { + // terminate previous animations + this.stopAnimations(); } - // terminate previous animations - this.stopAnimations(); const timing = firstRendering ? 'buildIn' : 'update'; // handle shape's animate if (!disableAnimate && usingAnimates[timing]?.length) { @@ -154,7 +155,7 @@ export default class Edge extends Item { } const clonedModel = clone(this.model); clonedModel.data.disableAnimate = disableAnimate; - return new Edge({ + const clonedEdge = new Edge({ model: clonedModel, renderExtensions: this.renderExtensions, sourceItem, @@ -164,9 +165,14 @@ export default class Edge extends Item { stateMapper: this.stateMapper, zoom: this.zoom, theme: { - styles: clone(this.themeStyles), - zoomStrategy: this.zoomStrategy, + styles: this.themeStyles, + lodStrategy: this.lodStrategy, }, }); + Object.keys(this.shapeMap).forEach((shapeId) => { + if (!this.shapeMap[shapeId].isVisible()) + clonedEdge.shapeMap[shapeId].hide(); + }); + return clonedEdge; } } diff --git a/packages/g6/src/item/item.ts b/packages/g6/src/item/item.ts index 5ed8958db4..2ab8eddae6 100644 --- a/packages/g6/src/item/item.ts +++ b/packages/g6/src/item/item.ts @@ -11,7 +11,7 @@ import { ItemShapeStyles, ITEM_TYPE, State, - ZoomStrategyObj, + lodStrategyObj, } from '../types/item'; import { NodeShapeMap } from '../types/node'; import { EdgeStyleSet, NodeStyleSet } from '../types/theme'; @@ -23,8 +23,10 @@ import { getShapeAnimateBeginStyles, animateShapes, GROUP_ANIMATE_STYLES, + stopAnimate, } from '../util/animate'; import { AnimateTiming, IAnimates } from '../types/animate'; +import { formatLodStrategy } from '../util/zoom'; export default abstract class Item implements IItem { public destroyed = false; @@ -58,6 +60,8 @@ export default abstract class Item implements IItem { public afterDrawShapeMap = {}; /** Set to different value in implements. */ public type: ITEM_TYPE; + /** The flag of transient item. */ + public transient: Boolean = false; public renderExtensions: any; // TODO /** Cache the animation instances to stop at next lifecycle. */ public animations: IAnimation[]; @@ -66,8 +70,8 @@ export default abstract class Item implements IItem { default?: ItemShapeStyles; [stateName: string]: ItemShapeStyles; }; - /** The zoom strategy to show and hide shapes according to their showLevel. */ - public zoomStrategy: ZoomStrategyObj; + /** The zoom strategy to show and hide shapes according to their lod. */ + public lodStrategy: lodStrategyObj; /** Last zoom ratio. */ public zoom: number; /** Cache the chaging states which are not consomed by draw */ @@ -108,14 +112,20 @@ export default abstract class Item implements IItem { this.stateMapper = stateMapper; this.displayModel = this.getDisplayModelAndChanges(model).model; this.renderExtensions = renderExtensions; - const { type = this.type === 'node' ? 'circle-node' : 'line-edge' } = - this.displayModel.data; + const { + type = this.type === 'node' ? 'circle-node' : 'line-edge', + lodStrategy: modelLodStrategy, + } = this.displayModel.data; const RenderExtension = renderExtensions.find((ext) => ext.type === type); this.themeStyles = theme.styles; + const lodStrategy = modelLodStrategy + ? formatLodStrategy(modelLodStrategy) + : theme.lodStrategy; this.renderExt = new RenderExtension({ themeStyles: this.themeStyles.default, - zoomStrategy: theme.zoomStrategy, + lodStrategy, device: this.device, + zoom: this.zoom, }); } @@ -163,7 +173,7 @@ export default abstract class Item implements IItem { isReplace?: boolean, itemTheme?: { styles: NodeStyleSet | EdgeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }, onlyMove?: boolean, onfinish?: Function, @@ -172,7 +182,6 @@ export default abstract class Item implements IItem { this.model = model; if (itemTheme) { this.themeStyles = itemTheme.styles; - this.zoomStrategy = itemTheme.zoomStrategy; } // 2. map new merged model to displayModel, keep prevModel and newModel for 3. const { model: displayModel, typeChange } = this.getDisplayModelAndChanges( @@ -182,6 +191,10 @@ export default abstract class Item implements IItem { ); this.displayModel = displayModel; + this.lodStrategy = displayModel.data.lodStrategy + ? formatLodStrategy(displayModel.data.lodStrategy) + : itemTheme?.lodStrategy || this.lodStrategy; + if (onlyMove) { this.updatePosition(displayModel, diffData, onfinish); return; @@ -197,12 +210,13 @@ export default abstract class Item implements IItem { ); this.renderExt = new RenderExtension({ themeStyles: this.themeStyles.default, - zoomStrategy: this.zoomStrategy, + lodStrategy: this.lodStrategy, device: this.device, + zoom: this.zoom, }); } else { this.renderExt.themeStyles = this.themeStyles.default; - this.renderExt.zoomStrategy = this.zoomStrategy; + this.renderExt.lodStrategy = this.lodStrategy; } // 3. call element update fn from useLib if (this.states?.length) { @@ -630,10 +644,7 @@ export default abstract class Item implements IItem { // displayModel { ...this.displayModel, - data: { - ...displayModelData, - ...styles, - }, + data: mergeStyles([displayModelData, styles]), } as ItemDisplayModel, // diffData undefined, @@ -675,13 +686,7 @@ export default abstract class Item implements IItem { * Stop all the animations on the item. */ public stopAnimations() { - this.animations?.forEach((animation) => { - const timing = animation.effect.getTiming(); - if (animation.playState !== 'running') return; - animation.currentTime = - Number(timing.duration) + Number(timing.delay || 0); - animation.cancel(); - }); + this.animations?.forEach(stopAnimate); this.animations = []; } @@ -719,7 +724,7 @@ export default abstract class Item implements IItem { // 1. stop animations, run buildOut animations this.stopAnimations(); const { animates } = this.displayModel.data; - if (animates.buildOut?.length) { + if (animates?.buildOut?.length && !this.transient) { this.animations = this.runWithAnimates( animates, 'buildOut', diff --git a/packages/g6/src/item/node.ts b/packages/g6/src/item/node.ts index e59581aee5..d5c760b71f 100644 --- a/packages/g6/src/item/node.ts +++ b/packages/g6/src/item/node.ts @@ -2,7 +2,7 @@ import { Group } from '@antv/g'; import { clone } from '@antv/util'; import { Point } from '../types/common'; import { NodeModel } from '../types'; -import { DisplayMapper, State, ZoomStrategyObj } from '../types/item'; +import { DisplayMapper, State, lodStrategyObj } from '../types/item'; import { NodeDisplayModel, NodeModelData } from '../types/node'; import { NodeStyleSet } from '../types/theme'; import { updateShapes } from '../util/shape'; @@ -26,7 +26,7 @@ interface IProps { zoom?: number; theme: { styles: NodeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }; device?: any; // for 3d shapes onframe?: Function; @@ -74,6 +74,8 @@ export default class Node extends Item { // first rendering, move the group group.setLocalPosition(x, y, z); } else { + // terminate previous animations + this.stopAnimations(); this.updatePosition(displayModel, diffData, onfinish); } @@ -90,8 +92,6 @@ export default class Node extends Item { renderExt.onZoom(this.shapeMap, this.zoom); } - // terminate previous animations - this.stopAnimations(); // handle shape's and group's animate if (!disableAnimate && animates) { const animatesExcludePosition = getAnimatesExcludePosition(animates); @@ -114,7 +114,7 @@ export default class Node extends Item { isReplace?: boolean, theme?: { styles: NodeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }, onlyMove?: boolean, onfinish?: Function, @@ -150,8 +150,8 @@ export default class Node extends Item { this.animateFrameListener, () => onfinish(displayModel.id), ); + return; } - return; } group.setLocalPosition(x, y, z); } @@ -172,7 +172,7 @@ export default class Node extends Item { } const clonedModel = clone(this.model); clonedModel.data.disableAnimate = disableAnimate; - return new Node({ + const clonedNode = new Node({ model: clonedModel, renderExtensions: this.renderExtensions, containerGroup, @@ -180,10 +180,15 @@ export default class Node extends Item { stateMapper: this.stateMapper, zoom: this.zoom, theme: { - styles: clone(this.themeStyles), - zoomStrategy: this.zoomStrategy, + styles: this.themeStyles, + lodStrategy: this.lodStrategy, }, }); + Object.keys(this.shapeMap).forEach((shapeId) => { + if (!this.shapeMap[shapeId].isVisible()) + clonedNode.shapeMap[shapeId].hide(); + }); + return clonedNode; } public getAnchorPoint(point: Point) { diff --git a/packages/g6/src/runtime/controller/interaction.ts b/packages/g6/src/runtime/controller/interaction.ts index ff8e1f04b1..d01cdc3543 100644 --- a/packages/g6/src/runtime/controller/interaction.ts +++ b/packages/g6/src/runtime/controller/interaction.ts @@ -247,7 +247,6 @@ export class InteractionController { private initEvents = () => { Object.values(CANVAS_EVENT_TYPE).forEach((eventName) => { - // console.debug('Listen on canvas: ', eventName); this.graph.canvas.document.addEventListener( eventName, this.handleCanvasEvent, @@ -262,13 +261,6 @@ export class InteractionController { }; private handleCanvasEvent = (gEvent: FederatedPointerEvent) => { - // const debug = gEvent.type.includes('over') || gEvent.type.includes('move') ? () => {} : console.debug; - - // Find the Node/Edge/Combo group element. - // const itemGroup = findItemGroup(gEvent.target as IElement); - // const itemType = itemGroup?.getAttribute('data-item-type') || 'canvas'; - // const itemId = itemGroup?.getAttribute('data-item-id') || 'CANVAS'; - const itemInfo = getItemInfoFromElement(gEvent.target as IElement); if (!itemInfo) { // This event was triggered from an element which belongs to none of the nodes/edges/canvas. @@ -313,7 +305,6 @@ export class InteractionController { } this.graph.emit(`${itemType}:${gEvent.type}`, event); this.graph.emit(`${gEvent.type}`, event); - // debug(`Item ${event.type} :`, event); } }; @@ -328,14 +319,11 @@ export class InteractionController { const preType = prevItemInfo.itemType; this.graph.emit(`${preType}:pointerleave`, { ...event, + itemId: prevItemInfo.itemId, + itemType: prevItemInfo.itemType, type: 'pointerleave', target: prevItemInfo.groupElement, }); - // console.debug(`${preType}:pointerleave`, { - // ...event, - // type: 'pointerleave', - // target: prevItemInfo.groupElement, - // }); } if (curItemInfo) { const curType = curItemInfo.itemType; @@ -344,11 +332,6 @@ export class InteractionController { type: 'pointerenter', target: curItemInfo.groupElement, }); - // console.debug(`${curType}:pointerenter`, { - // ...event, - // type: 'pointerenter', - // target: curItemInfo.groupElement, - // }); } } this.prevItemInfo = curItemInfo; diff --git a/packages/g6/src/runtime/controller/item.ts b/packages/g6/src/runtime/controller/item.ts index e676056e1a..7dcd0b8f91 100644 --- a/packages/g6/src/runtime/controller/item.ts +++ b/packages/g6/src/runtime/controller/item.ts @@ -28,7 +28,7 @@ import { ITEM_TYPE, ShapeStyle, SHAPE_TYPE, - ZoomStrategyObj, + lodStrategyObj, } from '../../types/item'; import { ThemeSpecification, @@ -39,7 +39,7 @@ import { } from '../../types/theme'; import { DirectionalLight, AmbientLight } from '@antv/g-plugin-3d'; import { ViewportChangeHookParams } from '../../types/hook'; -import { formatZoomStrategy } from '../../util/zoom'; +import { formatLodStrategy } from '../../util/zoom'; /** * Manages and stores the node / edge / combo items. @@ -125,6 +125,8 @@ export class ItemController { ); this.graph.hooks.transientupdate.tap(this.onTransientUpdate.bind(this)); this.graph.hooks.viewportchange.tap(this.onViewportChange.bind(this)); + this.graph.hooks.themechange.tap(this.onThemeChange.bind(this)); + this.graph.hooks.destroy.tap(this.onDestroy.bind(this)); } /** @@ -196,7 +198,7 @@ export class ItemController { graph.canvas.appendChild(ambientLight); graph.canvas.appendChild(light); const { width, height } = graph.canvas.getConfig(); - graph.canvas.getCamera().setPerspective(0.1, 5000, 45, width / height); + graph.canvas.getCamera().setPerspective(0.1, 50000, 45, width / height); } // 2. create node / edge / combo items, classes from ../../item, and element drawing and updating fns from node/edge/comboExtensions @@ -287,8 +289,8 @@ export class ItemController { const { dataTypeField: nodeDataTypeField } = nodeTheme; const edgeToUpdate = {}; const updateEdges = throttle( - () => { - Object.keys(edgeToUpdate).forEach((id) => { + (updateMap) => { + Object.keys(updateMap || edgeToUpdate).forEach((id) => { const item = itemMap[id] as Edge; if (item && !item.destroyed) item.forceUpdate(); }); @@ -316,7 +318,15 @@ export class ItemController { } const node = itemMap[id] as Node; const innerModel = graphCore.getNode(id); - node.onframe = updateEdges; + + const relatedEdgeInnerModels = graphCore.getRelatedEdges(id); + const nodeRelatedToUpdate = {}; + relatedEdgeInnerModels.forEach((edge) => { + edgeToUpdate[edge.id] = edge; + nodeRelatedToUpdate[edge.id] = edge; + }); + + node.onframe = () => updateEdges(nodeRelatedToUpdate); node.update( innerModel, { previous, current }, @@ -328,10 +338,6 @@ export class ItemController { node.onframe = undefined; }, ); - const relatedEdgeInnerModels = graphCore.getRelatedEdges(id); - relatedEdgeInnerModels.forEach((edge) => { - edgeToUpdate[edge.id] = edge; - }); }); updateEdges(); } @@ -461,6 +467,40 @@ export class ItemController { false, ); + private onThemeChange = ({ theme }) => { + if (!theme) return; + const { nodeDataTypeSet, edgeDataTypeSet } = this; + const { node: nodeTheme, edge: edgeTheme } = theme; + Object.values(this.itemMap).forEach((item) => { + const itemTye = item.getType(); + const usingTheme = itemTye === 'node' ? nodeTheme : edgeTheme; + const usingTypeSet = + itemTye === 'node' ? nodeDataTypeSet : edgeDataTypeSet; + const { dataTypeField } = usingTheme; + let dataType; + if (dataTypeField) dataType = item.model.data[dataTypeField] as string; + const itemTheme = getItemTheme( + usingTypeSet, + dataTypeField, + dataType, + usingTheme, + ); + item.update( + item.model, + undefined, + false, + itemTheme as { + styles: NodeStyleSet; + lodStrategy: lodStrategyObj; + }, + ); + }); + }; + + private onDestroy = () => { + Object.values(this.itemMap).forEach((item) => item.destroy()); + }; + private onTransientUpdate(param: { type: ITEM_TYPE | SHAPE_TYPE; id: ID; @@ -583,7 +623,7 @@ export class ItemController { zoom, theme: itemTheme as { styles: NodeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }, device: graph.rendererType === 'webgl-3d' @@ -640,7 +680,7 @@ export class ItemController { zoom, theme: itemTheme as { styles: EdgeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; }, }); }); @@ -717,16 +757,16 @@ const getItemTheme = ( itemTheme: NodeThemeSpecifications | EdgeThemeSpecifications, ): { styles: NodeStyleSet | EdgeStyleSet; - zoomStrategy: ZoomStrategyObj; + lodStrategy: lodStrategyObj; } => { - const { styles: themeStyles, zoomStrategy } = itemTheme; - const formattedZoomStrategy = formatZoomStrategy(zoomStrategy); + const { styles: themeStyles, lodStrategy } = itemTheme; + const formattedLodStrategy = formatLodStrategy(lodStrategy); if (!dataTypeField) { // dataType field is not assigned const styles = isArray(themeStyles) ? themeStyles[0] : Object.values(themeStyles)[0]; - return { styles, zoomStrategy: formattedZoomStrategy }; + return { styles, lodStrategy: formattedLodStrategy }; } dataTypeSet.add(dataType as string); let themeStyle; @@ -739,6 +779,6 @@ const getItemTheme = ( } return { styles: themeStyle, - zoomStrategy: formattedZoomStrategy, + lodStrategy: formattedLodStrategy, }; }; diff --git a/packages/g6/src/runtime/controller/layout.ts b/packages/g6/src/runtime/controller/layout.ts index 157d03459b..1f5b5f8d9e 100644 --- a/packages/g6/src/runtime/controller/layout.ts +++ b/packages/g6/src/runtime/controller/layout.ts @@ -55,6 +55,8 @@ export class LayoutController { const { graphCore, options } = params; + this.graph.emit('startlayout'); + if (isImmediatelyInvokedLayoutOptions(options)) { const { animated = false, @@ -145,6 +147,8 @@ export class LayoutController { } } + this.graph.emit('endlayout'); + // Update nodes' positions. this.updateNodesPosition(positions); } diff --git a/packages/g6/src/runtime/controller/theme.ts b/packages/g6/src/runtime/controller/theme.ts index 31c07f63ca..f09cb7e1d7 100644 --- a/packages/g6/src/runtime/controller/theme.ts +++ b/packages/g6/src/runtime/controller/theme.ts @@ -29,6 +29,7 @@ export class ThemeController { this.extension = this.getExtension(); this.themes = this.getThemes(); this.graph.hooks.init.tap(this.onInit.bind(this)); + this.graph.hooks.themechange.tap(this.onThemeChange.bind(this)); } /** @@ -59,4 +60,10 @@ export class ThemeController { Object.keys(canvas).forEach((key) => (dom.style[key] = canvas[key])); } } + + private onThemeChange({ canvases }) { + if (!canvases) return; + this.extension = this.getExtension(); + this.onInit({ canvases }); + } } diff --git a/packages/g6/src/runtime/controller/viewport.ts b/packages/g6/src/runtime/controller/viewport.ts index 1ed224bdf4..c59ef8688c 100644 --- a/packages/g6/src/runtime/controller/viewport.ts +++ b/packages/g6/src/runtime/controller/viewport.ts @@ -48,11 +48,11 @@ export class ViewportController { }> = {}; if (translate) { - const { dx = 0, dy = 0 } = translate; - const [px, py] = camera.getPosition(); - const [fx, fy] = camera.getFocalPoint(); - landmarkOptions.position = [px - dx, py - dy]; - landmarkOptions.focalPoint = [fx - dx, fy - dy]; + const { dx = 0, dy = 0, dz = 0 } = translate; + const [px, py, pz] = camera.getPosition(); + const [fx, fy, fz] = camera.getFocalPoint(); + landmarkOptions.position = [px - dx, py - dy, pz - dz]; + landmarkOptions.focalPoint = [fx - dx, fy - dy, fz - dz]; } if (zoom) { @@ -73,6 +73,7 @@ export class ViewportController { `mark${landmarkCounter}`, landmarkOptions, ); + return new Promise((resolve) => { transientCamera.gotoLandmark(transientLandmark, { duration: Number(duration), diff --git a/packages/g6/src/runtime/graph.ts b/packages/g6/src/runtime/graph.ts index b4578ef25d..22d8fed808 100644 --- a/packages/g6/src/runtime/graph.ts +++ b/packages/g6/src/runtime/graph.ts @@ -11,11 +11,7 @@ import { Specification, } from '../types'; import { CameraAnimationOptions } from '../types/animate'; -import { - BehaviorObjectOptionsOf, - BehaviorOptionsOf, - BehaviorRegistry, -} from '../types/behavior'; +import { BehaviorOptionsOf, BehaviorRegistry } from '../types/behavior'; import { ComboModel } from '../types/combo'; import { Padding, Point } from '../types/common'; import { DataChangeType, GraphCore } from '../types/data'; @@ -29,9 +25,13 @@ import { } from '../types/layout'; import { NodeModel, NodeModelData } from '../types/node'; import { RendererName } from '../types/render'; -import { ThemeRegistry, ThemeSpecification } from '../types/theme'; +import { + ThemeOptionsOf, + ThemeRegistry, + ThemeSpecification, +} from '../types/theme'; import { FitViewRules, GraphTransformOptions } from '../types/view'; -import { createCanvas } from '../util/canvas'; +import { changeRenderer, createCanvas } from '../util/canvas'; import { formatPadding } from '../util/shape'; import { DataController, @@ -187,6 +187,16 @@ export default class Graph ).then(() => (this.canvasReady = true)); } + /** + * Change the renderer at runtime. + * @param type renderer name + * @returns + */ + public changeRenderer(type) { + this.rendererType = type || 'canvas'; + changeRenderer(this.rendererType, this.canvas); + } + /** * Initialize the hooks for graph's lifecycles. */ @@ -249,6 +259,14 @@ export default class Graph | { key: string; type: string; [cfgName: string]: unknown } )[]; }>({ name: 'pluginchange' }), + themechange: new Hook<{ + theme: ThemeSpecification; + canvases: { + background: Canvas; + main: Canvas; + transient: Canvas; + }; + }>({ name: 'init' }), destroy: new Hook<{}>({ name: 'destroy' }), }; } @@ -256,10 +274,30 @@ export default class Graph /** * Update the specs(configurations). */ - public updateSpecification(spec: Specification) { + public updateSpecification(spec: Specification): Specification { return Object.assign(this.specification, spec); } + /** + * Update the theme specs (configurations). + */ + public updateTheme(theme: ThemeOptionsOf) { + this.specification.theme = theme; + // const { specification } = this.themeController; + // notifiying the themeController + this.hooks.themechange.emit({ + canvases: { + background: this.backgroundCanvas, + main: this.canvas, + transient: this.transientCanvas, + }, + }); + // theme is formatted by themeController, notify the item controller to update the items + this.hooks.themechange.emit({ + theme: this.themeController.specification, + }); + } + /** * Get the copy of specs(configurations). * @returns graph specs @@ -358,16 +396,16 @@ export default class Graph * @param effectTiming animation configurations */ public async translate( - dx: number, - dy: number, + distance: Partial<{ + dx: number; + dy: number; + dz: number; + }>, effectTiming?: CameraAnimationOptions, ) { await this.transform( { - translate: { - dx, - dy, - }, + translate: distance, }, effectTiming, ); @@ -383,7 +421,7 @@ export default class Graph effectTiming?: CameraAnimationOptions, ) { const { x: cx, y: cy } = this.getViewportCenter(); - await this.translate(cx - x, cy - y, effectTiming); + await this.translate({ dx: cx - x, dy: cy - y }, effectTiming); } /** @@ -1210,7 +1248,7 @@ export default class Graph * @returns * @group Interaction */ - public updateBehavior(behavior: BehaviorObjectOptionsOf, mode?: string) { + public updateBehavior(behavior: BehaviorOptionsOf, mode?: string) { this.hooks.behaviorchange.emit({ action: 'update', modes: [mode], @@ -1377,10 +1415,14 @@ export default class Graph * @returns * @group Graph Instance */ - public destroy() { - this.canvas.destroy(); - this.backgroundCanvas.destroy(); - this.transientCanvas.destroy(); + public destroy(callback?: Function) { + // TODO: call the destroy functions after items' buildOut animations finished + setTimeout(() => { + this.canvas.destroy(); + this.backgroundCanvas.destroy(); + this.transientCanvas.destroy(); + callback?.(); + }, 500); this.hooks.destroy.emit({}); diff --git a/packages/g6/src/stdlib/behavior/activate-relations.ts b/packages/g6/src/stdlib/behavior/activate-relations.ts index 0bc05efe74..7775620239 100644 --- a/packages/g6/src/stdlib/behavior/activate-relations.ts +++ b/packages/g6/src/stdlib/behavior/activate-relations.ts @@ -21,31 +21,31 @@ interface ActivateRelationsOptions { * Defaults to true. * If set to false, `trigger` options will be ignored. */ - multiple: boolean; + multiple?: boolean; /** * The key to pressed with mouse click to apply multiple selection. * Defaults to `"click"`. * Could be "click", "mouseenter". */ - trigger: Trigger; + trigger?: Trigger; /** * * Defaults to `"selected"`. * */ - activeState: 'selected'; + activeState?: 'selected'; /** * Whether allow the behavior happen on the current item. */ - shouldBegin: (event: IG6GraphEvent) => boolean; + shouldBegin?: (event: IG6GraphEvent) => boolean; /** * Whether to update item state. * If it returns false, you may probably listen to `eventName` and * manage states or data manually */ - shouldUpdate: (event: IG6GraphEvent) => boolean; + shouldUpdate?: (event: IG6GraphEvent) => boolean; } const DEFAULT_OPTIONS: ActivateRelationsOptions = { diff --git a/packages/g6/src/stdlib/behavior/brush-select.ts b/packages/g6/src/stdlib/behavior/brush-select.ts index 51f205f41b..8cd64ce545 100644 --- a/packages/g6/src/stdlib/behavior/brush-select.ts +++ b/packages/g6/src/stdlib/behavior/brush-select.ts @@ -123,13 +123,9 @@ export default class BrushSelect extends Behavior { getEvents = () => { return { - // 'dragstart': this.onMouseDown, - // 'drag': this.onMouseMove, - // 'dragend': this.onMouseUp, - - 'canvas:pointerdown': this.onMouseDown, - 'canvas:pointermove': this.onMouseMove, - 'canvas:pointerup': this.onMouseUp, + pointerdown: this.onMouseDown, + pointermove: this.onMouseMove, + pointerup: this.onMouseUp, }; }; @@ -147,16 +143,19 @@ export default class BrushSelect extends Behavior { public onMouseDown(event: IG6GraphEvent) { if (!this.options.shouldBegin(event)) return; - const { itemId, canvas } = event; - // should not begin at an item - if (itemId) return; + const { itemId, itemType, canvas } = event; + // should not begin at node + if (itemId && itemType === 'node') return; this.beginPoint = { x: canvas.x, y: canvas.y, }; - if (!this.isKeydown(event as any)) return; + if (!this.isKeydown(event as any)) { + this.clearStates(); + return; + } const { brush } = this; if (!brush) { diff --git a/packages/g6/src/stdlib/behavior/click-select.ts b/packages/g6/src/stdlib/behavior/click-select.ts index 98166b856c..a72b59e3d6 100644 --- a/packages/g6/src/stdlib/behavior/click-select.ts +++ b/packages/g6/src/stdlib/behavior/click-select.ts @@ -1,5 +1,7 @@ +import { ID } from '@antv/graphlib'; import { Behavior } from '../../types/behavior'; import { IG6GraphEvent } from '../../types/event'; +import { Point } from '../../types/common'; const ALLOWED_TRIGGERS = ['shift', 'ctrl', 'alt', 'meta'] as const; type Trigger = (typeof ALLOWED_TRIGGERS)[number]; @@ -19,7 +21,7 @@ interface ClickSelectOptions { trigger: Trigger; /** * Item types to be able to select. - * Defaults to `["nodes"]`. + * Defaults to `["node"]`. * Should be an array of "node", "edge", or "combo". */ itemTypes: Array<'node' | 'edge' | 'combo'>; @@ -49,7 +51,7 @@ const DEFAULT_OPTIONS: ClickSelectOptions = { multiple: true, trigger: 'shift', selectedState: 'selected', - itemTypes: ['node'], + itemTypes: ['node', 'edge'], eventName: '', shouldBegin: () => true, shouldUpdate: () => true, @@ -57,6 +59,15 @@ const DEFAULT_OPTIONS: ClickSelectOptions = { export default class ClickSelect extends Behavior { options: ClickSelectOptions; + /** + * Cache the ids of items selected by this behavior + */ + private selectedIds: ID[] = []; + /** + * Two flag to avoid onCanvasClick triggered while dragging canvas + */ + private canvasPointerDown: Point | undefined = undefined; + private canvasPointerMove: Boolean = false; constructor(options: Partial) { super(Object.assign({}, DEFAULT_OPTIONS, options)); @@ -73,7 +84,9 @@ export default class ClickSelect extends Behavior { return { 'node:click': this.onClick, 'edge:click': this.onClick, - 'canvas:click': this.onCanvasClick, + 'canvas:pointerdown': this.onCanvasPointerDown, + 'canvas:pointermove': this.onCanvasPointerMove, + 'canvas:pointerup': this.onCanvasPointerUp, }; }; @@ -111,17 +124,15 @@ export default class ClickSelect extends Behavior { // Select/Unselect item. if (this.options.shouldUpdate(event)) { - if (multiple) { - this.graph.setItemState(itemId, state, isSelectAction); - } else { + if (!multiple) { // Not multiple, clear all currently selected items - const selectedItemIds = [ - ...this.graph.findIdByState('node', state), - ...this.graph.findIdByState('edge', state), - ...this.graph.findIdByState('combo', state), - ]; - this.graph.setItemState(selectedItemIds, state, false); - this.graph.setItemState(itemId, state, isSelectAction); + this.graph.setItemState(this.selectedIds, state, false); + } + this.graph.setItemState(itemId, state, isSelectAction); + if (isSelectAction) { + this.selectedIds.push(itemId); + } else { + this.selectedIds.filter((id) => id !== itemId); } } @@ -141,21 +152,38 @@ export default class ClickSelect extends Behavior { } } + public onCanvasPointerDown(event: IG6GraphEvent) { + this.canvasPointerDown = { + x: event.canvas.x, + y: event.canvas.y, + }; + this.canvasPointerMove = false; + } + public onCanvasPointerMove(event: IG6GraphEvent) { + if (this.canvasPointerDown) { + const deltaX = Math.abs(this.canvasPointerDown.x - event.canvas.x); + const deltaY = Math.abs(this.canvasPointerDown.y - event.canvas.y); + if (deltaX > 1 || deltaY > 1) this.canvasPointerMove = true; + } + } + + public onCanvasPointerUp(event: IG6GraphEvent) { + if (this.canvasPointerDown && !this.canvasPointerMove) + this.onCanvasClick(event); + this.canvasPointerDown = undefined; + this.canvasPointerMove = false; + } + public onCanvasClick(event: IG6GraphEvent) { if (!this.options.shouldBegin(event)) return; // Find current selected items. const state = this.options.selectedState; - const selectedItemIds = [ - ...this.graph.findIdByState('node', state), - ...this.graph.findIdByState('edge', state), - ...this.graph.findIdByState('combo', state), - ]; - if (!selectedItemIds.length) return; + if (!this.selectedIds.length) return; // Unselect all items. if (this.options.shouldUpdate(event)) { - this.graph.setItemState(selectedItemIds, state, false); + this.graph.setItemState(this.selectedIds, state, false); } // Emit an event. diff --git a/packages/g6/src/stdlib/behavior/drag-canvas.ts b/packages/g6/src/stdlib/behavior/drag-canvas.ts index b0a17b1590..3c38524699 100644 --- a/packages/g6/src/stdlib/behavior/drag-canvas.ts +++ b/packages/g6/src/stdlib/behavior/drag-canvas.ts @@ -24,19 +24,24 @@ export interface DragCanvasOptions { * The assistant secondary key on keyboard. If it is not assigned, the behavior will be triggered when trigger happens. */ secondaryKey?: string; + /** + * The assistant secondary key on keyboard to prevent the behavior to be tiggered. 'shift' by default. + */ + secondaryKeyToDisable?: string; /** * The key on keyboard to speed up translating while pressing and drag-canvas by direction keys. The trigger should be 'directionKeys' for this option. */ speedUpKey?: string; /** * The range of canvas to limit dragging, 0 by default, which means the graph cannot be dragged totally out of the view port range. - * If scalableRange > 0, the graph can be dragged out of the view port range. + * If scalableRange is number or a string without 'px', means it is a ratio of the graph content. + * If scalableRange is a string with 'px', it is regarded as pixels. + * If scalableRange = 0, no constrains; + * If scalableRange > 0, the graph can be dragged out of the view port range * If scalableRange < 0, the range is smaller than the view port. - * If 0 < abs(scalableRange) < 1, it is regarded as a ratio of view port size. - * If abs(scalableRange) > 1, it is regarded as pixels. * Refer to https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*IFfoS67_HssAAAAAAAAAAAAAARQnAQ */ - scalableRange?: number; + scalableRange?: string | number; /** * The event name to trigger when drag end. */ @@ -48,11 +53,12 @@ export interface DragCanvasOptions { } const DEFAULT_OPTIONS: Required = { - enableOptimize: true, + enableOptimize: false, dragOnItems: false, trigger: 'drag', direction: 'both', secondaryKey: '', + secondaryKeyToDisable: 'shift', speedUpKey: '', scalableRange: 0, eventName: '', @@ -66,6 +72,7 @@ export default class DragCanvas extends Behavior { private dragging: boolean; // pointerdown + pointermove a distance private keydown: boolean; private speedupKeydown: boolean; + private disableKeydown: boolean; private hiddenEdgeIds: ID[]; private hiddenNodeIds: ID[]; @@ -81,6 +88,10 @@ export default class DragCanvas extends Behavior { } getEvents() { + if (typeof window !== 'undefined') { + window.addEventListener('keydown', this.onKeydown.bind(this)); + window.addEventListener('keyup', this.onKeyup.bind(this)); + } if (this.options.trigger === 'directionKeys') { return { keydown: this.onKeydown, @@ -97,7 +108,10 @@ export default class DragCanvas extends Behavior { } public onPointerDown(event) { - const { secondaryKey, dragOnItems, shouldBegin } = this.options; + const { secondaryKey, secondaryKeyToDisable, dragOnItems, shouldBegin } = + this.options; + // disabled key is pressing + if (secondaryKeyToDisable && this.disableKeydown) return; // assistant key is not pressing if (secondaryKey && !this.keydown) return; // should not begin @@ -145,12 +159,25 @@ export default class DragCanvas extends Behavior { const { scalableRange, direction } = this.options; const [width, height] = graph.getSize(); const graphBBox = graph.canvas.getRoot().getRenderBounds(); - let expandWidth = scalableRange; - let expandHeight = scalableRange; - // 若 scalableRange 是 0~1 的小数,则作为比例考虑 - if (expandWidth < 1 && expandWidth > -1) { - expandWidth = width * expandWidth; - expandHeight = height * expandHeight; + let rangeNum = Number(scalableRange); + let isPixel; + if (typeof scalableRange === 'string') { + if (scalableRange.includes('px')) { + isPixel = scalableRange.includes('px'); + rangeNum = Number(scalableRange.replace('px', '')); + } + if (scalableRange.includes('%')) { + rangeNum = Number(scalableRange.replace('%', '')) / 100; + } + } + if (rangeNum === 0) return { dx: diffX, dy: diffY }; + + let expandWidth = rangeNum; + let expandHeight = rangeNum; + // If it is not a string with 'px', regard as ratio + if (!isPixel) { + expandWidth = width * rangeNum; + expandHeight = height * rangeNum; } const leftTopClient = graph.getViewportByCanvas({ x: graphBBox.min[0], @@ -182,9 +209,11 @@ export default class DragCanvas extends Behavior { public onPointerMove(event) { if (!this.pointerDownAt) return; + const { eventName, direction, secondaryKeyToDisable } = this.options; + // disabled key is pressing + if (secondaryKeyToDisable && this.disableKeydown) return; const { graph } = this; const { client } = event; - const { eventName, direction } = this.options; const diffX = client.x - this.pointerDownAt.x; const diffY = client.y - this.pointerDownAt.y; if (direction === 'x' && !diffX) return; @@ -198,7 +227,7 @@ export default class DragCanvas extends Behavior { } const { dx, dy } = this.formatDisplacement(diffX, diffY); - graph.translate(dx, dy); + graph.translate({ dx, dy }); this.pointerDownAt = { x: client.x, y: client.y }; @@ -228,16 +257,26 @@ export default class DragCanvas extends Behavior { public onKeydown(event) { const { key } = event; - const { secondaryKey, trigger, speedUpKey, eventName, shouldBegin } = - this.options; + const { + secondaryKey, + secondaryKeyToDisable, + trigger, + speedUpKey, + eventName, + shouldBegin, + } = this.options; if (secondaryKey && secondaryKey === key.toLowerCase()) { this.keydown = true; } if (speedUpKey && speedUpKey === key.toLowerCase()) { this.speedupKeydown = true; } + if (secondaryKeyToDisable && secondaryKeyToDisable === key.toLowerCase()) { + this.disableKeydown = true; + } if (trigger === 'directionKeys') { if (secondaryKey && !this.keydown) return; + if (secondaryKeyToDisable && this.disableKeydown) return; if (!shouldBegin(event)) return; const { graph, speedupKeydown } = this; const speed = speedupKeydown ? 20 : 1; @@ -262,7 +301,7 @@ export default class DragCanvas extends Behavior { dx, dy, ); - graph.translate(formattedDx, formattedDy); + graph.translate({ dx: formattedDx, dy: formattedDy }); if (eventName) { this.graph.emit(eventName, { translate: { dx: formattedDx, dy: formattedDy }, @@ -274,12 +313,21 @@ export default class DragCanvas extends Behavior { public onKeyup(event) { const { key } = event; - const { secondaryKey, speedUpKey } = this.options; + const { secondaryKey, secondaryKeyToDisable, speedUpKey } = this.options; if (secondaryKey && secondaryKey === key.toLowerCase()) { this.keydown = false; } if (speedUpKey && speedUpKey === key.toLowerCase()) { this.speedupKeydown = false; } + if (secondaryKeyToDisable && secondaryKeyToDisable === key.toLowerCase()) { + this.disableKeydown = false; + } + } + public destroy() { + if (typeof window !== 'undefined') { + window.removeEventListener('keydown', this.onKeydown.bind(this)); + window.removeEventListener('keyup', this.onKeyup.bind(this)); + } } } diff --git a/packages/g6/src/stdlib/behavior/drag-node.ts b/packages/g6/src/stdlib/behavior/drag-node.ts index 1f96663ffd..ad01a3ac31 100644 --- a/packages/g6/src/stdlib/behavior/drag-node.ts +++ b/packages/g6/src/stdlib/behavior/drag-node.ts @@ -3,6 +3,7 @@ import { throttle, uniq } from '@antv/util'; import { EdgeModel } from '../../types'; import { Behavior } from '../../types/behavior'; import { IG6GraphEvent } from '../../types/event'; +import { Point } from '../../types/common'; const DELEGATE_SHAPE_ID = 'g6-drag-node-delegate-shape'; @@ -17,12 +18,12 @@ export interface DragNodeOptions { * Ignored when enableDelegate is true. * Defaults to true. */ - enableTransient?: boolean; + enableTransient?: Boolean; /** * Whether to use a virtual rect moved with the dragging mouse instead of the node. * Defaults to false. */ - enableDelegate?: boolean; + enableDelegate?: Boolean; /** * The drawing properties when the nodes are dragged. * Only used when enableDelegate is true. @@ -46,7 +47,7 @@ export interface DragNodeOptions { * Ignored when enableTransient or enableDelegate is true. * Defaults to false. */ - hideRelatedEdges?: boolean; + hideRelatedEdges?: Boolean; /** * The state name to be considered as "selected". * Defaults to "selected". @@ -79,7 +80,7 @@ const DEFAULT_OPTIONS: Required = { shouldBegin: () => true, }; -export class DragNode extends Behavior { +export default class DragNode extends Behavior { options: DragNodeOptions; // Private states @@ -96,6 +97,8 @@ export class DragNode extends Behavior { minY?: number; maxY?: number; }> = []; + private pointerDown: Point | undefined = undefined; + private dragging: Boolean = false; constructor(options: Partial) { const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options); @@ -131,85 +134,102 @@ export class DragNode extends Behavior { public onPointerDown(event: IG6GraphEvent) { if (!this.options.shouldBegin(event)) return; - const currentNodeId = event.itemId; - let selectedNodeIds = this.graph.findIdByState( - 'node', - this.options.selectedState, - true, - ); - - // If current node is selected, drag all the selected nodes together. - // Otherwise drag current node. - if (!selectedNodeIds.includes(currentNodeId)) { - selectedNodeIds = [currentNodeId]; - } - - this.originPositions = selectedNodeIds.map((id) => { - const { x, y } = this.graph.getNodeData(id).data as { - x: number; - y: number; - }; - // If delegate is enabled, record bbox together. - if (this.options.enableDelegate) { - const bbox = this.graph.getRenderBBox(id); - if (bbox) { - const [minX, minY] = bbox.min; - const [maxX, maxY] = bbox.max; - return { id, x, y, minX, minY, maxX, maxY }; - } - } - return { id, x, y }; - }); - - const enableTransient = - this.options.enableTransient && this.graph.rendererType !== 'webgl-3d'; - - // Hide related edge. - if (this.options.hideRelatedEdges && !enableTransient) { - this.hiddenEdges = this.getRelatedEdges(selectedNodeIds); - this.graph.hideItem( - this.hiddenEdges.map((edge) => edge.id), - true, - ); - } - - // Draw transient nodes and edges. - if (enableTransient) { - // Draw transient edges and nodes. - this.hiddenEdges = this.getRelatedEdges(selectedNodeIds); - this.hiddenEdges.forEach((edge) => { - this.graph.drawTransient('edge', edge.id, {}); - }); - selectedNodeIds.forEach((nodeId) => { - this.graph.drawTransient('node', nodeId, {}); - }); - - // Hide original edges and nodes. They will be restored when pointerup. - this.graph.hideItem(selectedNodeIds, true); - this.graph.hideItem( - this.hiddenEdges.map((edge) => edge.id), - true, - ); - } - - // Throttle moving. - if (this.options.throttle > 0) { - this.throttledMoveNodes = throttle( - this.moveNodes, - this.options.throttle, - { leading: true, trailing: true }, - ); - } else { - this.throttledMoveNodes = this.moveNodes; - } - - // @ts-ignore FIXME: Type - this.originX = event.client.x; - // @ts-ignore FIXME: Type - this.originY = event.client.y; + this.pointerDown = { x: event.canvas.x, y: event.canvas.y }; + this.dragging = false; } public onPointerMove(event: IG6GraphEvent) { + if (!this.pointerDown) return; + + const beginDeltaX = Math.abs(this.pointerDown.x - event.canvas.x); + const beginDeltaY = Math.abs(this.pointerDown.y - event.canvas.y); + if (beginDeltaX < 1 && beginDeltaY < 1) return; + + // pointerDown + first move = dragging + if (!this.dragging) { + this.dragging = true; + const currentNodeId = event.itemId; + let selectedNodeIds = this.graph.findIdByState( + 'node', + this.options.selectedState, + true, + ); + + // If current node is selected, drag all the selected nodes together. + // Otherwise drag current node. + if (currentNodeId && !selectedNodeIds.includes(currentNodeId)) { + selectedNodeIds = [currentNodeId]; + } + + this.originPositions = selectedNodeIds.map((id) => { + if (!this.graph.getNodeData(id)) { + console.log('node does not exist', id); + return; + } + const { x, y } = this.graph.getNodeData(id).data as { + x: number; + y: number; + }; + // If delegate is enabled, record bbox together. + if (this.options.enableDelegate) { + const bbox = this.graph.getRenderBBox(id); + if (bbox) { + const [minX, minY] = bbox.min; + const [maxX, maxY] = bbox.max; + return { id, x, y, minX, minY, maxX, maxY }; + } + } + return { id, x, y }; + }); + + const enableTransient = + this.options.enableTransient && this.graph.rendererType !== 'webgl-3d'; + + // Hide related edge. + if (this.options.hideRelatedEdges && !enableTransient) { + this.hiddenEdges = this.getRelatedEdges(selectedNodeIds); + this.graph.hideItem( + this.hiddenEdges.map((edge) => edge.id), + true, + ); + } + + // Draw transient nodes and edges. + if (enableTransient) { + // Draw transient edges and nodes. + this.hiddenEdges = this.getRelatedEdges(selectedNodeIds); + this.hiddenEdges.forEach((edge) => { + this.graph.drawTransient('edge', edge.id, {}); + }); + selectedNodeIds.forEach((nodeId) => { + this.graph.drawTransient('node', nodeId, {}); + }); + + // Hide original edges and nodes. They will be restored when pointerup. + this.graph.hideItem(selectedNodeIds, true); + this.graph.hideItem( + this.hiddenEdges.map((edge) => edge.id), + true, + ); + } + + // Throttle moving. + if (this.options.throttle > 0) { + this.throttledMoveNodes = throttle( + this.moveNodes, + this.options.throttle, + { leading: true, trailing: true }, + ); + } else { + this.throttledMoveNodes = this.moveNodes; + } + + // @ts-ignore FIXME: Type + this.originX = event.canvas.x; + // @ts-ignore FIXME: Type + this.originY = event.canvas.y; + } + if (!this.originPositions.length) { return; } @@ -217,9 +237,9 @@ export class DragNode extends Behavior { // @ts-ignore FIXME: type const pointerEvent = event as PointerEvent; // @ts-ignore FIXME: Type - const deltaX = pointerEvent.client.x - this.originX; + const deltaX = pointerEvent.canvas.x - this.originX; // @ts-ignore FIXME: Type - const deltaY = pointerEvent.client.y - this.originY; + const deltaY = pointerEvent.canvas.y - this.originY; if (this.options.enableDelegate) { this.moveDelegate(deltaX, deltaY); @@ -230,7 +250,7 @@ export class DragNode extends Behavior { } } - public moveNodes(deltaX: number, deltaY: number, transient: boolean) { + public moveNodes(deltaX: number, deltaY: number, transient: Boolean) { const positionChanges = this.originPositions.map(({ id, x, y }) => { return { id, @@ -262,7 +282,7 @@ export class DragNode extends Behavior { public throttledMoveNodes: Function = ( deltaX: number, deltaY: number, - transient: boolean, + transient: Boolean, ) => { // Should be overrided when drag start. }; @@ -325,6 +345,8 @@ export class DragNode extends Behavior { } public onPointerUp(event: IG6GraphEvent) { + this.pointerDown = undefined; + this.dragging = false; const enableTransient = this.options.enableTransient && this.graph.rendererType !== 'webgl-3d'; // If transient or delegate was enabled, move the real nodes. @@ -332,9 +354,9 @@ export class DragNode extends Behavior { // @ts-ignore FIXME: type const pointerEvent = event as PointerEvent; // @ts-ignore FIXME: Type - const deltaX = pointerEvent.client.x - this.originX; + const deltaX = pointerEvent.canvas.x - this.originX; // @ts-ignore FIXME: Type - const deltaY = pointerEvent.client.y - this.originY; + const deltaY = pointerEvent.canvas.y - this.originY; this.moveNodes(deltaX, deltaY, false); } diff --git a/packages/g6/src/stdlib/behavior/hover-activate.ts b/packages/g6/src/stdlib/behavior/hover-activate.ts new file mode 100644 index 0000000000..8e4bc48f18 --- /dev/null +++ b/packages/g6/src/stdlib/behavior/hover-activate.ts @@ -0,0 +1,104 @@ +import { ID } from '@antv/graphlib'; +import { Behavior } from '../../types/behavior'; +import { IG6GraphEvent } from '../../types/event'; +import { ITEM_TYPE } from 'types/item'; + +// TODO: Combo related features: +// hover combo + +export interface HoverActivateOptions { + /** + * The time in milliseconds to throttle moving. Useful to avoid the frequent calculation. + * Defaults to 0. + */ + throttle?: number; + /** + * The state name to be considered as "selected". + * Defaults to "selected". + */ + activateState?: string; + /** + * Item types to be able to acitvate. + * Defaults to `["node", "edge"]`. + * Should be an array of "node", "edge", or "combo". + */ + itemTypes: Array<'node' | 'edge' | 'combo'>; + /** + * The event name to trigger when drag end. + */ + eventName?: string; + /** + * Whether allow the behavior happen on the current item. + */ + shouldBegin?: (event: IG6GraphEvent) => boolean; +} + +const DEFAULT_OPTIONS: Required = { + throttle: 16, + activateState: 'active', + eventName: '', + itemTypes: ['node', 'edge', 'combo'], + shouldBegin: () => true, +}; + +export class HoverActivate extends Behavior { + options: HoverActivateOptions; + private currentItemInfo: { id: ID; itemType: ITEM_TYPE }; + + constructor(options: Partial) { + const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options); + super(finalOptions); + } + + getEvents = () => { + return { + 'node:pointerenter': this.onPointerEnter, + 'node:pointerleave': this.onPointerLeave, + 'edge:pointerenter': this.onPointerEnter, + 'edge:pointerleave': this.onPointerLeave, + }; + }; + + public onPointerEnter(event: IG6GraphEvent) { + const { itemId, itemType } = event; + const { graph, currentItemInfo } = this; + const { activateState, itemTypes, eventName } = this.options; + + if (currentItemInfo && itemTypes.includes(currentItemInfo.itemType)) { + graph.setItemState(currentItemInfo.id, activateState, false); + } + + if (!itemTypes.includes(itemType as ITEM_TYPE)) return; + graph.setItemState(itemId, activateState, true); + this.currentItemInfo = { id: itemId, itemType: itemType as ITEM_TYPE }; + + // Emit event. + if (eventName) { + this.graph.emit(eventName, { + itemId, + itemType, + state: activateState, + action: 'pointerenter', + }); + } + } + + public onPointerLeave(event: IG6GraphEvent) { + const { itemId, itemType } = event; + const { activateState, itemTypes, eventName } = this.options; + if (!itemTypes.includes(itemType as ITEM_TYPE)) return; + const { graph } = this; + graph.setItemState(itemId, activateState, false); + this.currentItemInfo = undefined; + + // Emit event. + if (eventName) { + this.graph.emit(eventName, { + itemId, + itemType, + state: activateState, + action: 'pointerleave', + }); + } + } +} diff --git a/packages/g6/src/stdlib/behavior/lasso-select.ts b/packages/g6/src/stdlib/behavior/lasso-select.ts index 58ad096f15..0a39938849 100644 --- a/packages/g6/src/stdlib/behavior/lasso-select.ts +++ b/packages/g6/src/stdlib/behavior/lasso-select.ts @@ -53,7 +53,7 @@ export default class LassoSelect extends BrushSelect { return this.points; } - publiccreateBrush() { + public createBrush() { const { graph, options } = this; const { brushStyle } = options; return graph.drawTransient('path', LASSO_SHAPE_ID, { diff --git a/packages/g6/src/stdlib/behavior/rotate-canvas-3d.ts b/packages/g6/src/stdlib/behavior/rotate-canvas-3d.ts index 2bdd0a752b..150f79204c 100644 --- a/packages/g6/src/stdlib/behavior/rotate-canvas-3d.ts +++ b/packages/g6/src/stdlib/behavior/rotate-canvas-3d.ts @@ -1,7 +1,4 @@ import { ICamera } from '@antv/g'; -import { ID } from '@antv/graphlib'; -import { debounce, uniq } from '@antv/util'; -import { EdgeModel } from '../../types'; import { Behavior } from '../../types/behavior'; import { IG6GraphEvent } from '../../types/event'; import { Point } from '../../types/common'; diff --git a/packages/g6/src/stdlib/behavior/zoom-canvas-3d.ts b/packages/g6/src/stdlib/behavior/zoom-canvas-3d.ts index 136025eb1c..1f37ccd68f 100644 --- a/packages/g6/src/stdlib/behavior/zoom-canvas-3d.ts +++ b/packages/g6/src/stdlib/behavior/zoom-canvas-3d.ts @@ -31,6 +31,14 @@ export interface ZoomCanvas3DOptions { * The event name to trigger when drag end. */ eventName?: string; + /** + * The min value of camera's dolly to constrain the zoom-canvas-3d behavior + */ + minZoom?: number; + /** + * The max value of camera's dolly to constrain the zoom-canvas-3d behavior + */ + maxZoom?: number; /** * Whether allow the behavior happen on the current item. */ @@ -41,8 +49,10 @@ const DEFAULT_OPTIONS: Required = { trigger: 'wheel', secondaryKey: '', eventName: '', - sensitivity: 1, - triggerOnItems: false, + sensitivity: 10, + triggerOnItems: true, + minZoom: 0.01, + maxZoom: 10, shouldBegin: () => true, }; @@ -70,6 +80,17 @@ export default class ZoomCanvas3D extends Behavior { } getEvents = () => { + this.graph.canvas + .getContextService() + .getDomElement() + .addEventListener( + 'wheel', + (e) => { + e.preventDefault(); + }, + { passive: false }, + ); + if (this.options.trigger === 'wheel') { return { wheel: this.onWheel, @@ -89,6 +110,8 @@ export default class ZoomCanvas3D extends Behavior { secondaryKey, triggerOnItems, eventName, + minZoom, + maxZoom, sensitivity = 1, shouldBegin, } = options; @@ -96,10 +119,28 @@ export default class ZoomCanvas3D extends Behavior { if (!shouldBegin(event)) return; if (secondaryKey && !this.keydown) return; const camera = graph.canvas.getCamera(); + const sign = event.deltaY > 0 ? 1 : -1; + const currentDistance = camera.getDistance(); + const dolly = + ((100 * sign * sensitivity) / currentDistance) * + Math.sqrt(currentDistance); + const toDistance = currentDistance + dolly; + const cameraFrontOfFocalPoint = camera.getDistanceVector()[2] < 0; - console.log(event.deltaY); + // zoom out constraint + if ( + dolly > 0 && + cameraFrontOfFocalPoint && + toDistance > (1 / minZoom) * 200 + ) { + return; + } + // zoom in constraint + if (dolly < 0 && !cameraFrontOfFocalPoint && toDistance > maxZoom * 200) { + return; + } - camera.dolly(event.deltaY * sensitivity); + camera.dolly(dolly); // Emit event. if (eventName) { diff --git a/packages/g6/src/stdlib/behavior/zoom-canvas.ts b/packages/g6/src/stdlib/behavior/zoom-canvas.ts index 72d81b33c9..c4ec0bbbf2 100644 --- a/packages/g6/src/stdlib/behavior/zoom-canvas.ts +++ b/packages/g6/src/stdlib/behavior/zoom-canvas.ts @@ -11,7 +11,7 @@ export interface ZoomCanvasOptions { /** * Whether allow trigger this behavior when wheeling start on nodes / edges / combos. */ - zoomOnItems?: boolean; + triggerOnItems?: boolean; /** * The trigger for the behavior, 'wheel' by default. 'upDownKeys' means trigger this behavior by up / down keys on keyboard. */ @@ -32,6 +32,14 @@ export interface ZoomCanvasOptions { * The event name to trigger when zoom end. */ eventName?: string; + /** + * The min value of zoom ratio to constrain the zoom-canvas-3d behavior + */ + minZoom?: number; + /** + * The max value of zoom ratio to constrain the zoom-canvas-3d behavior + */ + maxZoom?: number; /** * Whether allow the behavior happen on the current item. */ @@ -49,12 +57,14 @@ export interface ZoomCanvasOptions { const DEFAULT_OPTIONS: Required = { enableOptimize: false, - zoomOnItems: false, - sensitivity: 1, + triggerOnItems: true, + sensitivity: 2, trigger: 'wheel', secondaryKey: '', speedUpKey: 'shift', eventName: '', + minZoom: 0.00001, + maxZoom: 1000, shouldBegin: () => true, }; @@ -80,6 +90,17 @@ export default class ZoomCanvas extends Behavior { } getEvents() { + this.graph.canvas + .getContextService() + .getDomElement() + .addEventListener( + 'wheel', + (e) => { + e.preventDefault(); + }, + { passive: false }, + ); + if (this.options.trigger === 'upDownKeys') { return { keydown: this.onKeydown, @@ -137,15 +158,22 @@ export default class ZoomCanvas extends Behavior { public onWheel(event) { const { graph, keydown } = this; - const { deltaY, canvas, itemId } = event; - const { eventName, sensitivity, secondaryKey, zoomOnItems, shouldBegin } = - this.options; + const { deltaY, client, itemId } = event; + const { + eventName, + sensitivity, + secondaryKey, + triggerOnItems, + minZoom, + maxZoom, + shouldBegin, + } = this.options; // TODO: CANVAS const isOnItem = itemId && itemId !== 'CANVAS'; if ( (secondaryKey && !keydown) || - (isOnItem && !zoomOnItems) || + (isOnItem && !triggerOnItems) || !shouldBegin(event) ) { this.endZoom(); @@ -160,8 +188,11 @@ export default class ZoomCanvas extends Behavior { let zoomRatio = 1; if (deltaY < 0) zoomRatio = (100 + sensitivity) / 100; if (deltaY > 0) zoomRatio = 100 / (100 + sensitivity); + const zoomTo = zoomRatio * graph.getZoom(); + if (minZoom && zoomTo < minZoom) return; + if (maxZoom && zoomTo > maxZoom) return; // TODO: the zoom center is wrong? - graph.zoom(zoomRatio, { x: canvas.x, y: canvas.y }); + graph.zoom(zoomRatio, { x: client.x, y: client.y }); clearTimeout(this.zoomTimer); this.zoomTimer = setTimeout(() => { diff --git a/packages/g6/src/stdlib/index.ts b/packages/g6/src/stdlib/index.ts index 619663bd1a..ef6c056679 100644 --- a/packages/g6/src/stdlib/index.ts +++ b/packages/g6/src/stdlib/index.ts @@ -5,7 +5,7 @@ import BrushSelect from './behavior/brush-select'; import ClickSelect from './behavior/click-select'; import DragCanvas from './behavior/drag-canvas'; import LassoSelect from './behavior/lasso-select'; -import { DragNode } from './behavior/drag-node'; +import DragNode from './behavior/drag-node'; import { comboFromNode } from './data/comboFromNode'; import { LineEdge } from './item/edge'; import { CircleNode, SphereNode } from './item/node'; @@ -23,6 +23,7 @@ import ZoomCanvas3D from './behavior/zoom-canvas-3d'; import RotateCanvas3D from './behavior/rotate-canvas-3d'; import TrackCanvas3D from './behavior/track-canvas-3d'; import OrbitCanvas3D from './behavior/orbit-canvas-3d'; +import { HoverActivate } from './behavior/hover-activate'; const stdLib = { transforms: { @@ -40,6 +41,7 @@ const stdLib = { behaviors: { 'activate-relations': ActivateRelations, 'drag-canvas': DragCanvas, + 'hover-activate': HoverActivate, 'zoom-canvas': ZoomCanvas, 'drag-node': DragNode, 'click-select': ClickSelect, diff --git a/packages/g6/src/stdlib/item/edge/base.ts b/packages/g6/src/stdlib/item/edge/base.ts index 188ba86465..28d0e12082 100644 --- a/packages/g6/src/stdlib/item/edge/base.ts +++ b/packages/g6/src/stdlib/item/edge/base.ts @@ -17,7 +17,7 @@ import { SHAPE_TYPE, ShapeStyle, State, - ZoomStrategyObj, + lodStrategyObj, } from '../../../types/item'; import { LOCAL_BOUNDS_DIRTY_FLAG_KEY, @@ -37,7 +37,7 @@ export abstract class BaseEdge { mergedStyles: EdgeShapeStyles; sourcePoint: Point; targetPoint: Point; - zoomStrategy?: ZoomStrategyObj; + lodStrategy?: lodStrategyObj; labelPosition: { x: number; y: number; @@ -54,8 +54,6 @@ export abstract class BaseEdge { private zoomCache: { // the id of shapes which are hidden by zoom changing. hiddenShape: { [shapeId: string]: boolean }; - // timeout timer for scaling shapes with balanceRatio, simulates debounce in function. - balanceTimer: NodeJS.Timeout; // the ratio to scale the size of shapes whose visual size should be kept, e.g. label and badges. balanceRatio: number; // last responsed zoom ratio. @@ -70,24 +68,28 @@ export abstract class BaseEdge { wordWrapWidth: number; // animate configurations for zoom level changing animateConfig: AnimateCfg; + // the tag of first rendering + firstRender: boolean; } = { hiddenShape: {}, balanceRatio: 1, zoom: 1, zoomLevel: 0, - balanceTimer: undefined, levelShapes: {}, wordWrapWidth: 50, animateConfig: DEFAULT_ANIMATE_CFG.zoom, + firstRender: true, }; constructor(props) { - const { themeStyles, zoomStrategy } = props; + const { themeStyles, lodStrategy, zoom } = props; if (themeStyles) this.themeStyles = themeStyles; - this.zoomStrategy = zoomStrategy; + this.lodStrategy = lodStrategy; this.boundsCache = {}; + this.zoomCache.zoom = zoom; + this.zoomCache.balanceRatio = 1 / zoom; this.zoomCache.animateConfig = { ...DEFAULT_ANIMATE_CFG.zoom, - ...zoomStrategy?.animateCfg, + ...lodStrategy?.animateCfg, }; } public mergeStyles(model: EdgeDisplayModel) { @@ -137,10 +139,10 @@ export abstract class BaseEdge { const { levelShapes, zoom } = this.zoomCache; Object.keys(shapeMap).forEach((shapeId) => { - const { showLevel } = shapeMap[shapeId].attributes; - if (showLevel !== undefined) { - levelShapes[showLevel] = levelShapes[showLevel] || []; - levelShapes[showLevel].push(shapeId); + const { lod } = shapeMap[shapeId].attributes; + if (lod !== undefined) { + levelShapes[lod] = levelShapes[lod] || []; + levelShapes[lod].push(shapeId); } }); @@ -436,12 +438,14 @@ export abstract class BaseEdge { ): DisplayObject { const { keyShape } = shapeMap; const { haloShape: haloShapeStyle } = this.mergedStyles; + if (haloShapeStyle.visible === false) return; const { nodeName, attributes } = keyShape; return this.upsertShape( nodeName as SHAPE_TYPE, 'haloShape', { ...attributes, + stroke: attributes.stroke, ...haloShapeStyle, }, shapeMap, @@ -461,38 +465,53 @@ export abstract class BaseEdge { this.balanceShapeSize(shapeMap, zoom); // zoomLevel changed - if (!this.zoomStrategy) return; - const { levels } = this.zoomStrategy; + if (!this.lodStrategy) return; + const { levels } = this.lodStrategy; const { levelShapes, hiddenShape, animateConfig, + firstRender = true, zoomLevel: previousLevel, } = this.zoomCache; // last zoom ratio responsed by zoom changing, which might not equal to zoom.previous in props since the function is debounced. const currentLevel = getZoomLevel(levels, zoom); + const levelNums = Object.keys(levelShapes).map(Number); + const maxLevel = Math.max(...levelNums); + const minLevel = Math.min(...levelNums); if (currentLevel < previousLevel) { // zoomLevel changed, from higher to lower, hide something - levelShapes[currentLevel + 1]?.forEach((id) => - fadeOut(id, shapeMap[id], hiddenShape, animateConfig), - ); + if (firstRender) { + for (let i = currentLevel + 1; i <= maxLevel; i++) { + levelShapes[String(i)]?.forEach((id) => shapeMap[id]?.hide()); + } + } else { + for (let i = currentLevel + 1; i <= maxLevel; i++) { + levelShapes[String(i)]?.forEach((id) => + fadeOut(id, shapeMap[id], hiddenShape, animateConfig), + ); + } + } } else if (currentLevel > previousLevel) { // zoomLevel changed, from lower to higher, show something - levelShapes[String(currentLevel)]?.forEach((id) => - fadeIn( - id, - shapeMap[id], - this.mergedStyles[id] || - this.mergedStyles[id.replace('Background', '')], - hiddenShape, - animateConfig, - ), - ); + for (let i = currentLevel; i >= minLevel; i--) { + levelShapes[String(i)]?.forEach((id) => + fadeIn( + id, + shapeMap[id], + this.mergedStyles[id] || + this.mergedStyles[id.replace('Background', '')], + hiddenShape, + animateConfig, + ), + ); + } } this.zoomCache.zoom = zoom; this.zoomCache.zoomLevel = currentLevel; + this.zoomCache.firstRender = false; }; /** @@ -521,7 +540,7 @@ export abstract class BaseEdge { if (!labelBackgroundShape) return; const oriBgTransform = this.boundsCache.labelBackgroundShapeTransform; - labelBackgroundShape.style.transform = `${oriBgTransform} scale(1, ${balanceRatio})`; + labelBackgroundShape.style.transform = `${oriBgTransform} scale(${balanceRatio}, ${balanceRatio})`; } /** diff --git a/packages/g6/src/stdlib/item/node/base.ts b/packages/g6/src/stdlib/item/node/base.ts index be0b64b5d3..2e3291f3a1 100644 --- a/packages/g6/src/stdlib/item/node/base.ts +++ b/packages/g6/src/stdlib/item/node/base.ts @@ -8,7 +8,7 @@ import { SHAPE_TYPE_3D, ShapeStyle, State, - ZoomStrategyObj, + lodStrategyObj, } from '../../../types/item'; import { NodeModelData, @@ -18,6 +18,7 @@ import { import { LOCAL_BOUNDS_DIRTY_FLAG_KEY, formatPadding, + getShapeLocalBoundsByStyle, mergeStyles, upsertShape, } from '../../../util/shape'; @@ -31,17 +32,15 @@ export abstract class BaseNode { defaultStyles: NodeShapeStyles; themeStyles: NodeShapeStyles; mergedStyles: NodeShapeStyles; - zoomStrategy?: ZoomStrategyObj; + lodStrategy?: lodStrategyObj; boundsCache: { keyShapeLocal?: AABB; labelShapeLocal?: AABB; }; // cache the zoom level infomations - private zoomCache: { + protected zoomCache: { // the id of shapes which are hidden by zoom changing. hiddenShape: { [shapeId: string]: boolean }; - // timeout timer for scaling shapes with to keep the visual size, simulates debounce in function. - balanceTimer: NodeJS.Timeout; // the ratio to scale the shapes (e.g. labelShape, labelBackgroundShape) to keep to visual size while zooming. balanceRatio: number; // last responsed zoom ratio. @@ -56,25 +55,29 @@ export abstract class BaseNode { wordWrapWidth: number; // animate configurations for zoom level changing animateConfig: AnimateCfg; + // the tag of first rendering + firstRender: boolean; } = { hiddenShape: {}, zoom: 1, zoomLevel: 0, - balanceTimer: undefined, balanceRatio: 1, levelShapes: {}, wordWrapWidth: 32, animateConfig: DEFAULT_ANIMATE_CFG.zoom, + firstRender: true, }; constructor(props) { - const { themeStyles, zoomStrategy } = props; + const { themeStyles, lodStrategy, zoom } = props; if (themeStyles) this.themeStyles = themeStyles; - this.zoomStrategy = zoomStrategy; + this.lodStrategy = lodStrategy; this.boundsCache = {}; + this.zoomCache.zoom = zoom; + this.zoomCache.balanceRatio = 1 / zoom; this.zoomCache.animateConfig = { ...DEFAULT_ANIMATE_CFG.zoom, - ...zoomStrategy?.animateCfg, + ...lodStrategy?.animateCfg, }; } public mergeStyles(model: NodeDisplayModel) { @@ -131,31 +134,37 @@ export abstract class BaseNode { * Call it after calling draw function to update cache about bounds and zoom levels. */ public updateCache(shapeMap) { - ['keyShape', 'labelShape', 'rightBadgeShape'] - .concat(Object.keys(BadgePosition).map((pos) => `${pos}BadgeShape`)) + ['keyShape', 'labelShape'] + .concat(Object.keys(BadgePosition)) + .map((pos) => `${pos}BadgeShape`) .forEach((id) => { const shape = shapeMap[id]; if (shape?.getAttribute(LOCAL_BOUNDS_DIRTY_FLAG_KEY)) { - this.boundsCache[`${id}Local`] = shape.getLocalBounds(); + this.boundsCache[`${id}Local`] = + id === 'labelShape' + ? shape.getGeometryBounds() + : shape.getLocalBounds(); shape.setAttribute(LOCAL_BOUNDS_DIRTY_FLAG_KEY, false); } }); const { levelShapes } = this.zoomCache; Object.keys(shapeMap).forEach((shapeId) => { - const { showLevel } = shapeMap[shapeId].attributes; - if (showLevel !== undefined) { - levelShapes[showLevel] = levelShapes[showLevel] || []; - levelShapes[showLevel].push(shapeId); + const { lod } = shapeMap[shapeId].attributes; + if (lod !== undefined) { + levelShapes[lod] = levelShapes[lod] || []; + levelShapes[lod].push(shapeId); } }); - const { maxWidth = '200%' } = this.mergedStyles.labelShape || {}; - this.zoomCache.wordWrapWidth = getWordWrapWidthByBox( - this.boundsCache.keyShapeLocal, - maxWidth, - 1, - ); + if (shapeMap.labelShape && this.boundsCache.keyShapeLocal) { + const { maxWidth = '200%' } = this.mergedStyles.labelShape || {}; + this.zoomCache.wordWrapWidth = getWordWrapWidthByBox( + this.boundsCache.keyShapeLocal, + maxWidth, + 1, + ); + } } abstract draw( model: NodeDisplayModel, @@ -199,18 +208,23 @@ export abstract class BaseNode { const { keyShape } = shapeMap; this.boundsCache.keyShapeLocal = this.boundsCache.keyShapeLocal || keyShape.getLocalBounds(); - const keyShapeBox = this.boundsCache.keyShapeLocal; + const keyShapeBox = getShapeLocalBoundsByStyle( + keyShape, + this.mergedStyles.keyShape, + this.boundsCache.keyShapeLocal, + ); const { labelShape: shapeStyle } = this.mergedStyles; const { position, offsetX: propsOffsetX, offsetY: propsOffsetY, + offsetZ: propsOffsetZ, maxWidth, ...otherStyle } = shapeStyle; const wordWrapWidth = getWordWrapWidthByBox( - keyShapeBox, + keyShapeBox as AABB, maxWidth, this.zoomCache.zoom, ); @@ -218,10 +232,12 @@ export abstract class BaseNode { const positionPreset = { x: keyShapeBox.center[0], y: keyShapeBox.max[1], + z: keyShapeBox.center[2], textBaseline: 'top', textAlign: 'center', offsetX: 0, offsetY: 0, + offsetZ: 0, wordWrapWidth, }; switch (position) { @@ -257,8 +273,12 @@ export abstract class BaseNode { const offsetY = ( propsOffsetY === undefined ? positionPreset.offsetY : propsOffsetY ) as number; + const offsetZ = ( + propsOffsetZ === undefined ? positionPreset.offsetZ : propsOffsetZ + ) as number; positionPreset.x += offsetX; positionPreset.y += offsetY; + positionPreset.z += offsetZ; const style: any = { ...this.defaultStyles.labelShape, @@ -280,24 +300,33 @@ export abstract class BaseNode { !this.boundsCache.labelShapeLocal || labelShape.getAttribute(LOCAL_BOUNDS_DIRTY_FLAG_KEY) ) { - this.boundsCache.labelShapeLocal = labelShape.getLocalBounds(); + this.boundsCache.labelShapeLocal = labelShape.getGeometryBounds(); labelShape.setAttribute(LOCAL_BOUNDS_DIRTY_FLAG_KEY, false); } + // label's local bounds, will take scale into acount const { labelShapeLocal: textBBox } = this.boundsCache; + const labelWidth = Math.min( + textBBox.max[0] - textBBox.min[0], + labelShape.attributes.wordWrapWidth, + ); + const height = textBBox.max[1] - textBBox.min[1]; + const labelAspectRatio = labelWidth / (textBBox.max[1] - textBBox.min[1]); + const width = labelAspectRatio * height; const { padding, ...backgroundStyle } = this.mergedStyles.labelBackgroundShape; - const { balanceRatio = 1 } = this.zoomCache; + const y = + labelShape.attributes.y - + (labelShape.attributes.textBaseline === 'top' + ? padding[0] + : height / 2 + padding[0]); const bgStyle: any = { fill: '#fff', ...backgroundStyle, - x: textBBox.min[0] - padding[3], - y: textBBox.min[1] - padding[0] / balanceRatio, - width: textBBox.max[0] - textBBox.min[0] + padding[1] + padding[3], - height: - textBBox.max[1] - - textBBox.min[1] + - (padding[0] + padding[2]) / balanceRatio, + x: textBBox.center[0] - width / 2 - padding[3], + y, + width: width + padding[1] + padding[3], + height: height + padding[0] + padding[2], }; return this.upsertShape( @@ -357,12 +386,14 @@ export abstract class BaseNode { ): DisplayObject { const { keyShape } = shapeMap; const { haloShape: haloShapeStyle } = this.mergedStyles; + if (haloShapeStyle.visible === false) return; const { nodeName, attributes } = keyShape; return this.upsertShape( nodeName as SHAPE_TYPE, 'haloShape', { ...attributes, + stroke: attributes.fill, ...haloShapeStyle, }, shapeMap, @@ -420,14 +451,19 @@ export abstract class BaseNode { ): { [shapeId: string]: DisplayObject; } { - const commonStyle = this.mergedStyles.badgeShapes; + const { badgeShapes: commonStyle, keyShape: keyShapeStyle } = + this.mergedStyles; const individualConfigs = Object.values(this.mergedStyles).filter( (style) => style.tag === 'badgeShape', ); if (!individualConfigs.length) return {}; this.boundsCache.keyShapeLocal = this.boundsCache.keyShapeLocal || shapeMap.keyShape.getLocalBounds(); - const { keyShapeLocal: keyShapeBBox } = this.boundsCache; + const keyShapeBBox = getShapeLocalBoundsByStyle( + shapeMap.keyShape, + keyShapeStyle, + this.boundsCache.keyShapeLocal, + ); const keyShapeWidth = keyShapeBBox.max[0] - keyShapeBBox.min[0]; const shapes = {}; individualConfigs.forEach((config) => { @@ -498,7 +534,7 @@ export abstract class BaseNode { { text, fill: textColor, - fontSize: bgHeight - 2, + fontSize: bgHeight - 3, x: pos.x, y: pos.y, ...otherStyles, @@ -509,8 +545,7 @@ export abstract class BaseNode { shapeMap, model, ); - this.boundsCache[`${id}Local`] = - this.boundsCache[`${id}Local`] || shapes[id].getLocalBounds(); + this.boundsCache[`${id}Local`] = shapes[id].getLocalBounds(); const bbox = this.boundsCache[`${id}Local`]; const bgShapeId = `${position}BadgeBackgroundShape`; @@ -526,7 +561,7 @@ export abstract class BaseNode { fill: color, height: bgHeight, width: bgWidth, - x: bbox.min[0] - 2, // begin at the border, minus half height + x: bbox.min[0] - 3, // begin at the border, minus half height y: bbox.min[1], radius: bgHeight / 2, zIndex, @@ -557,37 +592,57 @@ export abstract class BaseNode { * @param zoom */ public onZoom = (shapeMap: NodeShapeMap, zoom: number) => { - this.balanceShapeSize(shapeMap, zoom); // zoomLevel changed - if (!this.zoomStrategy) return; - const { levels } = this.zoomStrategy; - // last zoom ratio responsed by zoom changing, which might not equal to zoom.previous in props since the function is debounced. - const { - levelShapes, - hiddenShape, - animateConfig, - zoomLevel: previousLevel, - } = this.zoomCache; - const currentLevel = getZoomLevel(levels, zoom); - if (currentLevel < previousLevel) { - // zoomLevel changed, from higher to lower, hide something - levelShapes[currentLevel + 1]?.forEach((id) => - fadeOut(id, shapeMap[id], hiddenShape, animateConfig), - ); - } else if (currentLevel > previousLevel) { - // zoomLevel changed, from lower to higher, show something - levelShapes[String(currentLevel)]?.forEach((id) => - fadeIn( - id, - shapeMap[id], - this.mergedStyles[id] || - this.mergedStyles[id.replace('Background', '')], - hiddenShape, - animateConfig, - ), - ); + if (this.lodStrategy) { + const { levels } = this.lodStrategy; + // last zoom ratio responsed by zoom changing, which might not equal to zoom.previous in props since the function is debounced. + const { + levelShapes, + hiddenShape, + animateConfig, + firstRender = true, + zoomLevel: previousLevel, + } = this.zoomCache; + const currentLevel = getZoomLevel(levels, zoom); + const levelNums = Object.keys(levelShapes).map(Number); + const maxLevel = Math.max(...levelNums); + const minLevel = Math.min(...levelNums); + if (currentLevel < previousLevel) { + if (firstRender) { + // zoomLevel changed, from higher to lower, hide something + for (let i = currentLevel + 1; i <= maxLevel; i++) { + levelShapes[String(i)]?.forEach((id) => { + if (!shapeMap[id]) return; + shapeMap[id].hide(); + hiddenShape[id] = true; + }); + } + } else { + // zoomLevel changed, from higher to lower, hide something + for (let i = currentLevel + 1; i <= maxLevel; i++) { + levelShapes[String(i)]?.forEach((id) => + fadeOut(id, shapeMap[id], hiddenShape, animateConfig), + ); + } + } + } else if (currentLevel > previousLevel) { + // zoomLevel changed, from lower to higher, show something + for (let i = currentLevel; i >= minLevel; i--) { + levelShapes[String(i)]?.forEach((id) => { + fadeIn( + id, + shapeMap[id], + this.mergedStyles[id] || + this.mergedStyles[id.replace('Background', '')], + hiddenShape, + animateConfig, + ); + }); + } + } + this.zoomCache.zoomLevel = currentLevel; } - this.zoomCache.zoomLevel = currentLevel; + this.balanceShapeSize(shapeMap, zoom); this.zoomCache.zoom = zoom; }; @@ -604,7 +659,7 @@ export abstract class BaseNode { this.zoomCache.balanceRatio = balanceRatio; const { labelShape: labelStyle } = this.mergedStyles; const { position = 'bottom' } = labelStyle; - if (!labelShape) return; + if (!labelShape || !labelShape.isVisible()) return; if (position === 'bottom') labelShape.style.transformOrigin = '0'; else labelShape.style.transformOrigin = ''; @@ -612,7 +667,7 @@ export abstract class BaseNode { const wordWrapWidth = this.zoomCache.wordWrapWidth * zoom; labelShape.style.wordWrapWidth = wordWrapWidth; - if (!labelBackgroundShape) return; + if (!labelBackgroundShape || !labelBackgroundShape.isVisible()) return; const { padding } = this.mergedStyles.labelBackgroundShape; const { width, height } = labelBackgroundShape.attributes; @@ -641,8 +696,16 @@ export abstract class BaseNode { paddingLeft + (width - paddingLeft - paddingRight) / 2 } ${paddingTop + (height - paddingTop - paddingBottom) / 2}`; } - // only scale y-asix, to expand the text range while zoom-in - labelBackgroundShape.style.transform = `scale(1, ${balanceRatio})`; + + const labelBBox = labelShape.getGeometryBounds(); + const labelWidth = Math.min( + labelBBox.max[0] - labelBBox.min[0], + this.zoomCache.wordWrapWidth, + ); + const xAxistRatio = + ((labelWidth + paddingLeft + paddingRight) * balanceRatio) / width; + + labelBackgroundShape.style.transform = `scale(${xAxistRatio}, ${balanceRatio})`; } public upsertShape( diff --git a/packages/g6/src/stdlib/item/node/base3d.ts b/packages/g6/src/stdlib/item/node/base3d.ts index 7ee2d8cf57..953d1a7031 100644 --- a/packages/g6/src/stdlib/item/node/base3d.ts +++ b/packages/g6/src/stdlib/item/node/base3d.ts @@ -1,9 +1,7 @@ import { DisplayObject } from '@antv/g'; -import { DEFAULT_LABEL_BG_PADDING } from '../../../constant'; import { NodeDisplayModel } from '../../../types'; import { GShapeStyle, - ItemShapeStyles, SHAPE_TYPE, SHAPE_TYPE_3D, ShapeStyle, @@ -19,7 +17,7 @@ import { BaseNode } from './base'; export abstract class BaseNode3D extends BaseNode { type: string; - defaultStyles: ItemShapeStyles; + defaultStyles: NodeShapeStyles; themeStyles: NodeShapeStyles; mergedStyles: NodeShapeStyles; device: any; // for 3d renderer @@ -35,7 +33,78 @@ export abstract class BaseNode3D extends BaseNode { diffData?: { previous: NodeModelData; current: NodeModelData }, diffState?: { previous: State[]; current: State[] }, ): DisplayObject { - return super.drawLabelShape(model, shapeMap, diffData, diffState); + const { keyShape } = shapeMap; + const { r, width, height, depth, x, y, z } = keyShape.attributes; + const keyShapeBox = { + center: [x, y, z], + min: [x - r || width / 2, y - r || height / 2, z - r || depth / 2], + max: [x + r || width / 2, y + r || height / 2, z + r || depth / 2], + }; + const { labelShape: shapeStyle } = this.mergedStyles; + const { + position, + offsetX: propsOffsetX, + offsetY: propsOffsetY, + maxWidth, + ...otherStyle + } = shapeStyle; + + // TODO + // const wordWrapWidth = getWordWrapWidthByBox( + // keyShapeBox, + // maxWidth, + // this.zoomCache.zoom, + // ); + + const positionPreset = { + x: keyShapeBox.center[0], + y: keyShapeBox.max[1], + z: keyShapeBox.center[2], + textBaseline: 'top', + textAlign: 'center', + offsetX: 0, + offsetY: 0, + // wordWrapWidth, + }; + switch (position) { + case 'top': + positionPreset.y = keyShapeBox.min[1]; + positionPreset.textBaseline = 'bottom'; + positionPreset.offsetY = -4; + break; + case 'left': + positionPreset.x = keyShapeBox.min[0]; + positionPreset.y = keyShapeBox.center[1]; + positionPreset.textAlign = 'right'; + positionPreset.textBaseline = 'middle'; + positionPreset.offsetX = -8; + break; + case 'right': + positionPreset.x = keyShapeBox.max[0]; + positionPreset.y = keyShapeBox.center[1]; + positionPreset.textAlign = 'left'; + positionPreset.textBaseline = 'middle'; + positionPreset.offsetX = 8; + break; + default: // at bottom by default + positionPreset.offsetY = 4; + break; + } + const offsetX = ( + propsOffsetX === undefined ? positionPreset.offsetX : propsOffsetX + ) as number; + const offsetY = ( + propsOffsetY === undefined ? positionPreset.offsetY : propsOffsetY + ) as number; + positionPreset.x += offsetX; + positionPreset.y += offsetY; + + const style: any = { + ...this.defaultStyles.labelShape, + ...positionPreset, + ...otherStyle, + }; + return this.upsertShape('text', 'labelShape', style, shapeMap); } // TODO: 3d icon? - billboard image or text for alpha @@ -57,12 +126,14 @@ export abstract class BaseNode3D extends BaseNode { ): DisplayObject { const { keyShape } = shapeMap; const { haloShape: haloShapeStyle } = this.mergedStyles; + if (haloShapeStyle.visible === false) return; const { nodeName, attributes } = keyShape; return this.upsertShape( nodeName as SHAPE_TYPE, 'haloShape', { ...attributes, + stroke: attributes.fill, ...haloShapeStyle, }, shapeMap, diff --git a/packages/g6/src/stdlib/plugin/minimap/index.ts b/packages/g6/src/stdlib/plugin/minimap/index.ts index 238b0758cd..ce98ddb15c 100644 --- a/packages/g6/src/stdlib/plugin/minimap/index.ts +++ b/packages/g6/src/stdlib/plugin/minimap/index.ts @@ -173,9 +173,14 @@ export default class Minimap extends Base { } // Translate tht graph and update minimap viewport. - graph!.translate((dx * zoom) / ratio, (dy * zoom) / ratio).then(() => { - this.updateViewport(); - }); + graph! + .translate({ + dx: (dx * zoom) / ratio, + dy: (dy * zoom) / ratio, + }) + .then(() => { + this.updateViewport(); + }); x = e.clientX; y = e.clientY; }; diff --git a/packages/g6/src/stdlib/theme/dark.ts b/packages/g6/src/stdlib/theme/dark.ts index 74b81459da..427dfbaa52 100644 --- a/packages/g6/src/stdlib/theme/dark.ts +++ b/packages/g6/src/stdlib/theme/dark.ts @@ -1,100 +1,188 @@ import { DEFAULT_SHAPE_STYLE, DEFAULT_TEXT_STYLE } from '../../constant'; import { ThemeSpecification } from '../../types/theme'; -const subjectColor = 'rgb(95, 149, 255)'; -const textColor = 'rgb(0, 0, 0)'; +const subjectColor = 'rgb(34,126,255)'; +const textColor = 'rgba(255,255,255,0.85)'; -const activeFill = 'rgb(247, 250, 255)'; -// const nodeMainFill = 'rgb(239, 244, 255)'; -const nodeMainFill = 'rgb(255, 255, 255)'; +const nodeColor = 'rgb(34,126,255)'; +const edgeColor = 'rgb(153, 173, 209)'; const comboFill = 'rgb(253, 253, 253)'; -const disabledFill = 'rgb(250, 250, 250)'; +const disabledFill = '#D0E4FF'; -const edgeMainStroke = 'rgb(224, 224, 224)'; -const edgeInactiveStroke = 'rgb(234, 234, 234)'; -const edgeDisablesStroke = 'rgb(245, 245, 245)'; -const inactiveStroke = 'rgb(191, 213, 255)'; +const edgeMainStroke = '#637088'; -const highlightStroke = '#4572d9'; -const highlightFill = 'rgb(223, 234, 255)'; +const nodeStroke = '#D0E4FF'; export default { node: { - palette: [], + palette: [ + '#227EFF', + '#AD5CFF', + '#00B8B8', + '#FA822D', + '#F252AF', + '#1EB8F5', + '#108A44', + '#F4B106', + '#5241A8', + '#95CF21', + ], + lodStrategy: { + levels: [ + { zoomRange: [0, 0.65] }, + { zoomRange: [0.65, 0.8] }, + { zoomRange: [0.8, 1.6], primary: true }, + { zoomRange: [1.6, 2] }, + { zoomRange: [2, Infinity] }, + ], + animateCfg: { + duration: 200, + }, + }, styles: [ { default: { keyShape: { ...DEFAULT_SHAPE_STYLE, - r: 10, - fill: nodeMainFill, - stroke: subjectColor, - lineWidth: 1, + r: 16, + fill: nodeColor, + lineWidth: 0, + zIndex: 0, }, labelShape: { ...DEFAULT_TEXT_STYLE, - fill: '#000', + fill: textColor, + opacity: 0.85, position: 'bottom', - offsetY: 4, + zIndex: 2, + lod: 0, + maxWidth: '200%', + textOverflow: 'ellipsis', + wordWrap: true, + maxLines: 1, + }, + labelBackgroundShape: { + padding: [2, 4, 2, 4], + lineWidth: 0, + fill: '#000', + opacity: 0.75, + zIndex: -1, + lod: 0, }, iconShape: { ...DEFAULT_TEXT_STYLE, - fill: '#333', - img: 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*wAmHQJbNVdwAAAAAAAAAAABkARQnAQ', - width: 15, - height: 15, + fill: '#fff', + fontSize: 16, + zIndex: 1, + lod: -1, + }, + anchorShapes: { + lineWidth: 1, + stroke: nodeStroke, + fill: '#000', + zIndex: 2, + r: 3, + lod: 0, + }, + badgeShapes: { + color: 'rgb(140, 140, 140)', + textColor: '#fff', + zIndex: 3, + lod: -1, + }, + haloShape: { + visible: false, }, }, selected: { keyShape: { - fill: nodeMainFill, - stroke: subjectColor, - lineWidth: 4, - shadowColor: subjectColor, - shadowBlur: 10, + stroke: nodeStroke, + lineWidth: 3, }, labelShape: { - fontWeight: 500, + fontWeight: 700, + }, + haloShape: { + opacity: 0.45, + lineWidth: 20, + zIndex: -1, + visible: true, }, }, active: { keyShape: { - fill: activeFill, - stroke: subjectColor, - shadowColor: subjectColor, - lineWidth: 2, - shadowBlur: 10, + lineWidth: 0, + }, + haloShape: { + opacity: 0.25, + lineWidth: 20, + zIndex: -1, + visible: true, }, }, highlight: { keyShape: { - fill: highlightFill, - stroke: highlightStroke, - lineWidth: 2, + stroke: nodeStroke, + lineWidth: 3, }, labelShape: { - fontWeight: 500, + fontWeight: 700, + }, + haloShape: { + visible: false, }, }, inactive: { keyShape: { - fill: activeFill, - stroke: inactiveStroke, - lineWidth: 1, + opacity: 0.45, + }, + labelShape: { + opacity: 0.45, + }, + iconShape: { + opacity: 0.45, + }, + haloShape: { + visible: false, }, }, disable: { keyShape: { fill: disabledFill, - stroke: edgeMainStroke, - lineWidth: 1, + lineWidth: 0, + }, + haloShape: { + visible: false, }, }, }, ], }, edge: { - palette: [], + palette: [ + '#63A4FF', + '#CD9CFF', + '#2DEFEF', + '#FFBDA1', + '#F49FD0', + '#80DBFF', + '#41CB7C', + '#FFD362', + '#A192E8', + '#CEFB75', + ], + lodStrategy: { + levels: [ + { zoomRange: [0, 0.65] }, + { zoomRange: [0.65, 0.8] }, + { zoomRange: [0.8, 1.6], primary: true }, + { zoomRange: [1.6, 2] }, + { zoomRange: [2, Infinity] }, + ], + animateCfg: { + duration: 200, + }, + }, styles: [ { default: { @@ -107,52 +195,77 @@ export default { labelShape: { ...DEFAULT_TEXT_STYLE, fill: textColor, - textAlign: 'center', + opacity: 0.85, + position: 'middle', textBaseline: 'middle', + zIndex: 2, + textOverflow: 'ellipsis', + wordWrap: true, + maxLines: 1, + maxWidth: '60%', + lod: 0, + }, + labelBackgroundShape: { + padding: [4, 4, 4, 4], + lineWidth: 0, + fill: '#000', + opacity: 0.75, + zIndex: 1, + lod: 0, }, iconShape: { ...DEFAULT_TEXT_STYLE, - fill: '#333', - img: 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*wAmHQJbNVdwAAAAAAAAAAABkARQnAQ', - width: 15, - height: 15, + fill: 'rgb(140, 140, 140)', + fontSize: 16, + zIndex: 2, + offsetX: -10, + lod: -1, }, }, selected: { keyShape: { - stroke: subjectColor, lineWidth: 2, - shadowColor: subjectColor, - shadowBlur: 10, }, labelShape: { - fontWeight: 500, + fontWeight: 700, + }, + haloShape: { + opacity: 0.25, + lineWidth: 12, + zIndex: -1, + visible: true, }, }, active: { keyShape: { - stroke: subjectColor, lineWidth: 1, }, + haloShape: { + opacity: 0.25, + lineWidth: 12, + zIndex: -1, + visible: true, + }, }, highlight: { keyShape: { - stroke: subjectColor, lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, inactive: { keyShape: { - stroke: edgeInactiveStroke, + stroke: edgeMainStroke, lineWidth: 1, + opacity: 0.45, }, }, disable: { keyShape: { - stroke: edgeDisablesStroke, + stroke: edgeMainStroke, + opacity: 0.08, lineWidth: 1, }, }, @@ -177,31 +290,28 @@ export default { }, selected: { keyShape: { - stroke: subjectColor, + stroke: nodeStroke, fill: comboFill, - shadowColor: subjectColor, lineWidth: 2, - shadowBlur: 10, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, active: { keyShape: { - stroke: subjectColor, + stroke: nodeStroke, lineWidth: 1, - fill: activeFill, }, }, highlight: { keyShape: { - stroke: highlightStroke, + stroke: nodeStroke, fill: comboFill, lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, inactive: { @@ -213,9 +323,12 @@ export default { }, disable: { keyShape: { - stroke: edgeInactiveStroke, fill: disabledFill, - lineWidth: 1, + opacity: 0.25, + }, + iconShape: { + fill: disabledFill, + opacity: 0.25, }, }, }, diff --git a/packages/g6/src/stdlib/theme/light.ts b/packages/g6/src/stdlib/theme/light.ts index 823bb04102..dd808805e9 100644 --- a/packages/g6/src/stdlib/theme/light.ts +++ b/packages/g6/src/stdlib/theme/light.ts @@ -14,7 +14,6 @@ const edgeDisableStroke = 'rgb(217, 217, 217)'; const edgeInactiveStroke = 'rgb(210, 218, 233)'; const nodeStroke = 'rgba(0,0,0,0.85)'; -const haloStroke = 'rgb(0, 0, 0)'; export default { node: { @@ -30,13 +29,13 @@ export default { '#5241A8', '#95CF21', ], - zoomStrategy: { + lodStrategy: { levels: [ - { range: [0, 0.65] }, - { range: [0.65, 0.8] }, - { range: [0.8, 1.6], primary: true }, - { range: [1.6, 2] }, - { range: [2, Infinity] }, + { zoomRange: [0, 0.65] }, + { zoomRange: [0.65, 0.8] }, + { zoomRange: [0.8, 1.6], primary: true }, + { zoomRange: [1.6, 2] }, + { zoomRange: [2, Infinity] }, ], animateCfg: { duration: 200, @@ -57,7 +56,7 @@ export default { fill: '#000', position: 'bottom', zIndex: 2, - showLevel: 0, + lod: 0, maxWidth: '200%', textOverflow: 'ellipsis', wordWrap: true, @@ -69,53 +68,56 @@ export default { fill: '#fff', opacity: 0.75, zIndex: -1, - showLevel: 0, + lod: 0, }, iconShape: { ...DEFAULT_TEXT_STYLE, fill: '#fff', fontSize: 16, zIndex: 1, - showLevel: -1, + lod: -1, }, anchorShapes: { lineWidth: 1, stroke: 'rgba(0, 0, 0, 0.65)', zIndex: 2, r: 3, - showLevel: 0, + lod: 0, }, badgeShapes: { color: 'rgb(140, 140, 140)', textColor: '#fff', zIndex: 3, - showLevel: -1, + lod: -1, + }, + haloShape: { + visible: false, }, }, selected: { keyShape: { - stroke: nodeStroke, + stroke: '#000', lineWidth: 3, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, haloShape: { - stroke: haloStroke, - opacity: 0.06, + opacity: 0.25, lineWidth: 20, + zIndex: -1, + visible: true, }, }, active: { keyShape: { - stroke: nodeStroke, - lineWidth: 2, + lineWidth: 0, }, haloShape: { - stroke: haloStroke, - opacity: 0.06, - lineWidth: 4, + opacity: 0.25, + lineWidth: 20, zIndex: -1, + visible: true, }, }, highlight: { @@ -124,7 +126,10 @@ export default { lineWidth: 3, }, labelShape: { - fontWeight: 500, + fontWeight: 700, + }, + haloShape: { + visible: false, }, }, inactive: { @@ -137,12 +142,18 @@ export default { iconShape: { opacity: 0.25, }, + haloShape: { + visible: false, + }, }, disable: { keyShape: { fill: disabledFill, lineWidth: 0, }, + haloShape: { + visible: false, + }, }, }, ], @@ -160,13 +171,13 @@ export default { '#A192E8', '#CEFB75', ], - zoomStrategy: { + lodStrategy: { levels: [ - { range: [0, 0.65] }, - { range: [0.65, 0.8] }, - { range: [0.8, 1.6], primary: true }, - { range: [1.6, 2] }, - { range: [2, Infinity] }, + { zoomRange: [0, 0.65] }, + { zoomRange: [0.65, 0.8] }, + { zoomRange: [0.8, 1.6], primary: true }, + { zoomRange: [1.6, 2] }, + { zoomRange: [2, Infinity] }, ], animateCfg: { duration: 200, @@ -191,7 +202,7 @@ export default { wordWrap: true, maxLines: 1, maxWidth: '60%', - showLevel: 0, + lod: 0, }, labelBackgroundShape: { padding: [4, 4, 4, 4], @@ -199,7 +210,7 @@ export default { fill: '#fff', opacity: 0.75, zIndex: 1, - showLevel: 0, + lod: 0, }, iconShape: { ...DEFAULT_TEXT_STYLE, @@ -207,7 +218,7 @@ export default { fontSize: 16, zIndex: 2, offsetX: -10, - showLevel: -1, + lod: -1, }, }, selected: { @@ -215,13 +226,13 @@ export default { lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, haloShape: { - stroke: haloStroke, - opacity: 0.06, + opacity: 0.25, lineWidth: 12, zIndex: -1, + visible: true, }, }, active: { @@ -229,10 +240,10 @@ export default { lineWidth: 1, }, haloShape: { - stroke: haloStroke, - opacity: 0.06, + opacity: 0.25, lineWidth: 12, zIndex: -1, + visible: true, }, }, highlight: { @@ -240,7 +251,7 @@ export default { lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, inactive: { @@ -281,7 +292,7 @@ export default { lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, active: { @@ -297,7 +308,7 @@ export default { lineWidth: 2, }, labelShape: { - fontWeight: 500, + fontWeight: 700, }, }, inactive: { @@ -317,6 +328,6 @@ export default { ], }, canvas: { - backgroundColor: '#000', + backgroundColor: '#fff', }, } as ThemeSpecification; diff --git a/packages/g6/src/stdlib/themeSolver/base.ts b/packages/g6/src/stdlib/themeSolver/base.ts index 0e6cc83207..1a536c1323 100644 --- a/packages/g6/src/stdlib/themeSolver/base.ts +++ b/packages/g6/src/stdlib/themeSolver/base.ts @@ -9,6 +9,7 @@ export default abstract class BaseThemeSolver { protected options: ThemeSolverOptions; constructor(options: ThemeSolverOptions, themes: ThemeSpecificationMap) { this.specification = this.solver(options, themes); + this.options = options; } abstract solver( options: ThemeSolverOptions, diff --git a/packages/g6/src/stdlib/themeSolver/spec.ts b/packages/g6/src/stdlib/themeSolver/spec.ts index f016d4fb88..e4b335ce4f 100644 --- a/packages/g6/src/stdlib/themeSolver/spec.ts +++ b/packages/g6/src/stdlib/themeSolver/spec.ts @@ -46,7 +46,7 @@ export default class SpecThemeSolver extends BaseThemeSolver { if (!specification[itemType]) return; const { palette = mergedSpec[itemType].palette, - zoomStrategy = mergedSpec[itemType].zoomStrategy, + lodStrategy = mergedSpec[itemType].lodStrategy, dataTypeField, } = specification[itemType]; let { getStyleSets } = specification[itemType]; @@ -96,7 +96,7 @@ export default class SpecThemeSolver extends BaseThemeSolver { mergedSpec[itemType] = { dataTypeField, palette, - zoomStrategy, + lodStrategy, styles: mergedStyles, }; }); diff --git a/packages/g6/src/types/animate.ts b/packages/g6/src/types/animate.ts index 81b3891fb1..6af0d757cd 100644 --- a/packages/g6/src/types/animate.ts +++ b/packages/g6/src/types/animate.ts @@ -66,7 +66,6 @@ export interface IAnimates { update?: (IAnimate | IStateAnimate)[]; } -export type CameraAnimationOptions = Pick< - IAnimationEffectTiming, - 'duration' | 'easing' | 'easingFunction' +export type CameraAnimationOptions = Partial< + Pick >; diff --git a/packages/g6/src/types/behavior.ts b/packages/g6/src/types/behavior.ts index fddc987697..be4e15a521 100644 --- a/packages/g6/src/types/behavior.ts +++ b/packages/g6/src/types/behavior.ts @@ -39,16 +39,10 @@ export type BehaviorOptionsOf = | Extract | { [K in keyof B]: B[K] extends { new (options: infer O): any } - ? O & { type: K; key: string } - : never; + ? { type: K; key: string } & O + : { type: K; key: string }; }[Extract]; -export type BehaviorObjectOptionsOf = { - [K in keyof B]: B[K] extends { new (options: infer O): any } - ? O & { type: K; key: string } - : never; -}[Extract]; - /** * TODO: interaction specification */ diff --git a/packages/g6/src/types/combo.ts b/packages/g6/src/types/combo.ts index b4e63fd49e..3657118a13 100644 --- a/packages/g6/src/types/combo.ts +++ b/packages/g6/src/types/combo.ts @@ -10,6 +10,7 @@ import { ShapeAttrEncode, ShapesEncode, ShapeStyle, + LodStrategy, } from './item'; export type ComboLabelPosition = @@ -46,6 +47,7 @@ export interface ComboShapeStyles extends ItemShapeStyles { position?: ComboLabelPosition; offsetX?: number; offsetY?: number; + offsetZ?: number; }; labelBackgroundShape?: ShapeStyle & { padding?: number | number[]; @@ -68,6 +70,7 @@ export interface ComboShapeStyles extends ItemShapeStyles { size?: number; offsetX?: number; offsetY?: number; + offsetZ?: number; // individual styles and their position [key: number]: ShapeStyle & { position?: BadgePosition; @@ -76,12 +79,14 @@ export interface ComboShapeStyles extends ItemShapeStyles { size?: number; offsetX?: number; offsetY?: number; + offsetZ?: number; }; }; } /** Displayed data, only for drawing and not received by users. */ -export type ComboDisplayModelData = ComboModelData & ComboShapeStyles; +export type ComboDisplayModelData = ComboModelData & + ComboShapeStyles & { lodStrategy?: LodStrategy }; /** User input model. */ export type ComboUserModel = GNode; @@ -97,6 +102,7 @@ interface ComboLabelShapeAttrEncode extends ShapeAttrEncode { position?: ComboLabelPosition | Encode; offsetX?: number | Encode; offsetY?: number | Encode; + offsetZ?: number | Encode; background?: LabelBackground | Encode; } export interface ComboShapesEncode extends ShapesEncode { diff --git a/packages/g6/src/types/edge.ts b/packages/g6/src/types/edge.ts index d243260e17..30a8c10ae7 100644 --- a/packages/g6/src/types/edge.ts +++ b/packages/g6/src/types/edge.ts @@ -10,6 +10,7 @@ import { ShapeAttrEncode, ShapesEncode, ShapeStyle, + LodStrategy, } from './item'; export interface EdgeUserModelData extends PlainObject { @@ -61,6 +62,7 @@ export interface EdgeShapeStyles extends ItemShapeStyles { position?: 'start' | 'middle' | 'end'; offsetX?: number; offsetY?: number; + offsetZ?: number; autoRotate?: boolean; // if it is a string, means the percentage of the keyShape, number means pixel maxWidth?: string | number; @@ -74,7 +76,8 @@ export interface EdgeShapeStyles extends ItemShapeStyles { }; } -export type EdgeDisplayModelData = EdgeModelData & EdgeShapeStyles; +export type EdgeDisplayModelData = EdgeModelData & + EdgeShapeStyles & { lodStrategy?: LodStrategy }; /** User input data. */ export type EdgeUserModel = GEdge; @@ -88,8 +91,9 @@ export type EdgeDisplayModel = GEdge; export type EdgeLabelPosition = 'start' | 'middle' | 'end'; interface EdgeLabelShapeAttrEncode extends ShapeAttrEncode { position?: EdgeLabelPosition | Encode; - offsetX: number | Encode; + offsetX?: number | Encode; offsetY?: number | Encode; + offsetZ?: number | Encode; background?: LabelBackground | Encode; autoRotate?: boolean | Encode; } diff --git a/packages/g6/src/types/graph.ts b/packages/g6/src/types/graph.ts index eea5ae4f83..48486a5c7c 100644 --- a/packages/g6/src/types/graph.ts +++ b/packages/g6/src/types/graph.ts @@ -3,11 +3,7 @@ import { AABB, Canvas, DisplayObject, PointLike } from '@antv/g'; import { ID } from '@antv/graphlib'; import { Hooks } from '../types/hook'; import { CameraAnimationOptions } from './animate'; -import { - BehaviorObjectOptionsOf, - BehaviorOptionsOf, - BehaviorRegistry, -} from './behavior'; +import { BehaviorOptionsOf, BehaviorRegistry } from './behavior'; import { ComboModel, ComboUserModel } from './combo'; import { Padding, Point } from './common'; import { GraphData } from './data'; @@ -17,7 +13,7 @@ import { LayoutOptions } from './layout'; import { NodeModel, NodeUserModel } from './node'; import { RendererName } from './render'; import { Specification } from './spec'; -import { ThemeRegistry } from './theme'; +import { ThemeOptionsOf, ThemeRegistry } from './theme'; import { FitViewRules, GraphTransformOptions } from './view'; export interface IGraph< @@ -37,16 +33,26 @@ export interface IGraph< * @returns * @group Graph Instance */ - destroy: () => void; + destroy: (callback?: Function) => void; /** - * Update the specs(configurations). + * Update the specs (configurations). */ - updateSpecification: (spec: Specification) => void; + updateSpecification: (spec: Specification) => Specification; + /** + * Update the theme specs (configurations). + */ + updateTheme: (theme: ThemeOptionsOf) => void; /** * Get the copy of specs(configurations). * @returns graph specs */ getSpecification: () => Specification; + /** + * Change the renderer at runtime. + * @param type renderer name + * @returns + */ + changeRenderer: (type: RendererName) => void; // ====== data operations ==== /** @@ -230,8 +236,11 @@ export interface IGraph< * @param effectTiming animation configurations */ translate: ( - dx: number, - dy: number, + distance: Partial<{ + dx: number; + dy: number; + dz: number; + }>, effectTiming?: CameraAnimationOptions, ) => Promise; /** @@ -513,7 +522,7 @@ export interface IGraph< * @returns * @group Interaction */ - updateBehavior: (behavior: BehaviorObjectOptionsOf, mode?: string) => void; + updateBehavior: (behavior: BehaviorOptionsOf, mode?: string) => void; /** * Draw or update a G shape or group to the transient canvas. diff --git a/packages/g6/src/types/hook.ts b/packages/g6/src/types/hook.ts index 04ed65e4cf..1b287cec1b 100644 --- a/packages/g6/src/types/hook.ts +++ b/packages/g6/src/types/hook.ts @@ -21,7 +21,7 @@ export interface IHook { export type ViewportChangeHookParams = { transform: GraphTransformOptions; - effectTiming?: CameraAnimationOptions; + effectTiming?: Partial; }; export interface Hooks { @@ -85,6 +85,14 @@ export interface Hooks { | { key: string; type: string; [cfgName: string]: unknown } )[]; }>; + themechange: IHook<{ + theme?: ThemeSpecification; + canvases?: { + background: Canvas; + main: Canvas; + transient: Canvas; + }; + }>; destroy: IHook<{}>; // TODO: more timecycles here } diff --git a/packages/g6/src/types/item.ts b/packages/g6/src/types/item.ts index bc5e93a5ba..20fcd28bdc 100644 --- a/packages/g6/src/types/item.ts +++ b/packages/g6/src/types/item.ts @@ -61,7 +61,8 @@ export type GShapeStyle = CircleStyleProps & export type ShapeStyle = Partial< GShapeStyle & { animates?: IAnimates; - showLevel?: number; + lod?: number; + visible?: boolean; } >; export interface Encode { @@ -153,7 +154,7 @@ export type ItemShapeStyles = { ImageStyleProps & { offsetX?: number; offsetY?: number; - showLevel?: number; + lod?: number; } >; haloShape?: ShapeStyle; @@ -164,15 +165,15 @@ export type ItemShapeStyles = { animates?: IAnimates; }; -export interface ZoomStrategy { +export interface LodStrategy { levels: { - range: [number, number]; - primary: boolean; + zoomRange: [number, number]; + primary?: boolean; }[]; animateCfg: AnimateCfg; } -export interface ZoomStrategyObj { +export interface lodStrategyObj { levels: { [levelIdx: number]: [number, number]; }; @@ -221,8 +222,8 @@ export interface IItem { default?: ItemShapeStyles; [stateName: string]: ItemShapeStyles; }; - /** The zoom strategy to show and hide shapes according to their showLevel. */ - zoomStrategy: ZoomStrategyObj; + /** The zoom strategy to show and hide shapes according to their lod. */ + lodStrategy: lodStrategyObj; /** Last zoom ratio. */ zoom: number; /** Cache the chaging states which are not consomed by draw */ diff --git a/packages/g6/src/types/node.ts b/packages/g6/src/types/node.ts index 6c6ee11b8a..3c7f820320 100644 --- a/packages/g6/src/types/node.ts +++ b/packages/g6/src/types/node.ts @@ -10,6 +10,7 @@ import { ShapeAttrEncode, ShapesEncode, ShapeStyle, + LodStrategy, } from './item'; export type NodeLabelPosition = 'bottom' | 'center' | 'top' | 'left' | 'right'; @@ -78,6 +79,7 @@ export interface NodeShapeStyles extends ItemShapeStyles { position?: 'top' | 'bottom' | 'left' | 'right' | 'center'; offsetX?: number; offsetY?: number; + offsetZ?: number; // string means the percentage of the keyShape, number means pixel maxWidth?: string | number; }; @@ -102,6 +104,7 @@ export interface NodeShapeStyles extends ItemShapeStyles { size?: number; offsetX?: number; offsetY?: number; + offsetZ?: number; // individual styles and their position [key: number]: ShapeStyle & { position?: BadgePosition; @@ -110,12 +113,14 @@ export interface NodeShapeStyles extends ItemShapeStyles { size?: number; offsetX?: number; offsetY?: number; + offsetZ?: number; }; }; } /** Data in display model. */ -export type NodeDisplayModelData = NodeModelData & NodeShapeStyles; +export type NodeDisplayModelData = NodeModelData & + NodeShapeStyles & { lodStrategy?: LodStrategy }; /** User input model. */ export type NodeUserModel = GNode; @@ -131,6 +136,7 @@ interface NodeLabelShapeAttrEncode extends ShapeAttrEncode { position?: NodeLabelPosition | Encode; offsetX?: number | Encode; offsetY?: number | Encode; + offsetZ?: number | Encode; } export interface NodeShapesEncode extends ShapesEncode { labelShape?: NodeLabelShapeAttrEncode | Encode; diff --git a/packages/g6/src/types/stdlib.ts b/packages/g6/src/types/stdlib.ts index 1aa1371868..b74b216ed5 100644 --- a/packages/g6/src/types/stdlib.ts +++ b/packages/g6/src/types/stdlib.ts @@ -1,4 +1,5 @@ import { BehaviorRegistry } from './behavior'; +import { ThemeRegistry } from './theme'; export type StdLibCategory = | 'transform' @@ -12,12 +13,13 @@ export type StdLibCategory = | 'plugin'; export interface Lib { - transforms?: Record; behaviors?: BehaviorRegistry; + themes?: ThemeRegistry; + // TODO: type templates + transforms?: Record; layouts?: Record; nodes?: Record; edges?: Record; combos?: Record; - themes?: Record; plugins?: Record; } diff --git a/packages/g6/src/types/theme.ts b/packages/g6/src/types/theme.ts index d5aac237a6..6c68993a83 100644 --- a/packages/g6/src/types/theme.ts +++ b/packages/g6/src/types/theme.ts @@ -1,6 +1,7 @@ +import BaseThemeSolver from 'stdlib/themeSolver/base'; import { ComboShapeStyles } from './combo'; import { EdgeShapeStyles } from './edge'; -import { ZoomStrategy } from './item'; +import { LodStrategy } from './item'; import { NodeShapeStyles } from './node'; export interface ThemeOption {} @@ -9,21 +10,21 @@ export interface ThemeOption {} * Two implementing ways: getSpec or getEvents */ export abstract class Theme { - protected options: ThemeOption = {}; - constructor(options: ThemeOption) { + options: any = {}; + constructor(options: any) { this.options = options; } - public updateConfig = (options: ThemeOption) => { + updateConfig = (options: any) => { this.options = Object.assign(this.options, options); }; - abstract destroy(): void; + destroy() {} } /** Theme regisry table. * @example { 'drag-node': DragNodeBehavior, 'my-drag-node': MyDragNodeBehavior } */ export interface ThemeRegistry { - [type: string]: typeof Theme; + [type: string]: typeof BaseThemeSolver; } /** @@ -34,8 +35,8 @@ export type ThemeOptionsOf = | Extract | { [K in keyof T]: T[K] extends { new (options: infer O): any } - ? O & { type: K; key: string } - : never; + ? O & { type: K } + : { type: K }; }[Extract]; export type ThemeObjectOptionsOf = { @@ -73,19 +74,19 @@ export interface NodeThemeSpecifications { dataTypeField?: string; palette?: string[] | { [dataTypeValue: string]: string }; styles?: NodeStyleSets; - zoomStrategy?: ZoomStrategy; + lodStrategy?: LodStrategy; } export interface EdgeThemeSpecifications { dataTypeField?: string; palette?: string[] | { [dataTypeValue: string]: string }; styles?: EdgeStyleSets; - zoomStrategy?: ZoomStrategy; + lodStrategy?: LodStrategy; } export interface ComboThemeSpecifications { dataTypeField?: string; palette?: string[] | { [dataTypeValue: string]: string }; styles?: ComboStyleSets; - zoomStrategy?: ZoomStrategy; + lodStrategy?: LodStrategy; } /** * Theme specification diff --git a/packages/g6/src/types/view.ts b/packages/g6/src/types/view.ts index 97b4ef6501..33da90b856 100644 --- a/packages/g6/src/types/view.ts +++ b/packages/g6/src/types/view.ts @@ -13,10 +13,11 @@ export type GraphAlignment = | [number, number]; export type GraphTransformOptions = { - translate?: { + translate?: Partial<{ dx: number; dy: number; - }; + dz: number; + }>; rotate?: { angle: number; }; diff --git a/packages/g6/src/util/animate.ts b/packages/g6/src/util/animate.ts index 1fb055b668..0eb5cc84f9 100644 --- a/packages/g6/src/util/animate.ts +++ b/packages/g6/src/util/animate.ts @@ -275,6 +275,7 @@ const runAnimateOnShape = ( beginStyle: ShapeStyle, animateConfig, ) => { + if (!shape.isVisible()) return; let animateArr; if (!fields?.length) { animateArr = getStyleDiff(shape.attributes, targetStyle); @@ -284,7 +285,8 @@ const runAnimateOnShape = ( animateArr[0][key] = shape.attributes.hasOwnProperty(key) ? shape.style[key] : beginStyle[key]; - animateArr[1][key] = targetStyle[key]; + animateArr[1][key] = + targetStyle[key] === undefined ? animateArr[0][key] : targetStyle[key]; if (key === 'lineDash' && animateArr[1][key].includes('100%')) { const totalLength = (shape as Line | Polyline | Path).getTotalLength(); replaceElements(animateArr[1][key], '100%', totalLength); @@ -329,7 +331,7 @@ export const animateShapes = ( let i = 0; const groupKeys = Object.keys(timingAnimateGroups); if (!groupKeys.length) return; - let animations = []; + const animations = []; let canceled = false; const onfinish = () => { if (i >= groupKeys.length) { @@ -348,11 +350,8 @@ export const animateShapes = ( ).filter(Boolean); groupAnimations.forEach((animation) => { animation.onframe = onAnimatesFrame; + animations.push(animation); }); - if (i === 0) { - // collect the first group animations - animations = groupAnimations; - } i++; }; onfinish(); @@ -408,7 +407,12 @@ export const getAnimatesExcludePosition = (animates) => { export const fadeIn = (id, shape, style, hiddenShape, animateConfig) => { // omit inexist shape and the shape which is not hidden by zoom changing if (!shape || !hiddenShape[id]) return; - shape.show(); + if (!shape?.isVisible()) { + shape.style.opacity = 0; + shape.show(); + } + const { opacity: oriOpacity = 1 } = shape.attributes; + if (oriOpacity === 1) return; const { opacity = 1 } = style; shape.animate([{ opacity: 0 }, { opacity }], animateConfig); }; @@ -421,3 +425,13 @@ export const fadeOut = (id, shape, hiddenShape, animateConfig) => { const animation = shape.animate([{ opacity }, { opacity: 0 }], animateConfig); animation.onfinish = () => shape.hide(); }; + +/** + * Make the animation to the end frame and clear it from the target shape. + * @param animation + */ +export const stopAnimate = (animation) => { + const timing = animation.effect.getTiming(); + animation.currentTime = Number(timing.duration) + Number(timing.delay || 0); + animation.cancel(); +}; diff --git a/packages/g6/src/util/canvas.ts b/packages/g6/src/util/canvas.ts index a392a087c8..76c9ac4772 100644 --- a/packages/g6/src/util/canvas.ts +++ b/packages/g6/src/util/canvas.ts @@ -23,7 +23,7 @@ export const createCanvas = ( pixelRatio?: number, customCanvasTag = true, style: any = {}, -) => { +): Canvas => { let renderer; switch (rendererType.toLowerCase()) { case 'svg': @@ -65,3 +65,31 @@ export const createCanvas = ( renderer, }); }; + +/** + * Change renderer type for the canvas. + * @param rendererType renderer type + * @param canvas Canvas instance + * @returns + */ +export const changeRenderer = ( + rendererType: RendererName, + canvas: Canvas, +): Canvas => { + let renderer; + switch (rendererType.toLowerCase()) { + case 'svg': + renderer = new SVGRenderer(); + break; + case 'webgl-3d': + case 'webgl': + renderer = new WebGLRenderer(); + renderer.registerPlugin(new Plugin3D()); + break; + default: + renderer = new CanvasRenderer(); + break; + } + canvas.setRenderer(renderer); + return canvas; +}; diff --git a/packages/g6/src/util/extend.ts b/packages/g6/src/util/extend.ts index 29c047f71c..4ca2ef22dd 100644 --- a/packages/g6/src/util/extend.ts +++ b/packages/g6/src/util/extend.ts @@ -14,15 +14,17 @@ import registry from '../stdlib'; export const extend = < B1 extends BehaviorRegistry, B2 extends BehaviorRegistry, - T extends ThemeRegistry = ThemeRegistry, + T1 extends ThemeRegistry, + T2 extends ThemeRegistry, >( - GraphClass: typeof Graph, + GraphClass: typeof Graph, extendLibrary: { behaviors?: B1; + themeSolvers?: T1; nodes?: any; // TODO edges?: any; // TODO }, -): typeof Graph => { +): typeof Graph => { // merged the extendLibrary to useLib for global usage Object.keys(extendLibrary).forEach((cat) => { registry.useLib[cat] = Object.assign( diff --git a/packages/g6/src/util/extension.ts b/packages/g6/src/util/extension.ts index 464a59c2ac..892d31b049 100644 --- a/packages/g6/src/util/extension.ts +++ b/packages/g6/src/util/extension.ts @@ -1,4 +1,4 @@ -import { isFunction } from 'util'; +import { isFunction } from '@antv/util'; import { StdLibCategory } from '../types/stdlib'; /** diff --git a/packages/g6/src/util/item.ts b/packages/g6/src/util/item.ts index a8f95a3072..3952632110 100644 --- a/packages/g6/src/util/item.ts +++ b/packages/g6/src/util/item.ts @@ -36,8 +36,9 @@ export const upsertTransientItem = ( return transientItem; } if (item.type === 'node') { - const transientNode = item.clone(nodeGroup, onlyDrawKeyShape, true); + const transientNode = item.clone(nodeGroup, onlyDrawKeyShape, true) as Node; transientItemMap[item.model.id] = transientNode; + transientNode.transient = true; return transientNode; } else if (item.type === 'edge') { const source = upsertTransientItem( @@ -60,7 +61,8 @@ export const upsertTransientItem = ( target, undefined, true, - ); + ) as Edge; + transientEdge.transient = true; transientItemMap[item.model.id] = transientEdge; return transientEdge; } diff --git a/packages/g6/src/util/shape.ts b/packages/g6/src/util/shape.ts index f588fb8f8c..76babb456c 100644 --- a/packages/g6/src/util/shape.ts +++ b/packages/g6/src/util/shape.ts @@ -14,7 +14,7 @@ import { AABB, } from '@antv/g'; import { clone, isArray, isNumber } from '@antv/util'; -import { DEFAULT_LABEL_BG_PADDING } from '../constant'; +import { DEFAULT_LABEL_BG_PADDING, RESERVED_SHAPE_IDS } from '../constant'; import { Point } from '../types/common'; import { EdgeDisplayModel, EdgeShapeMap } from '../types/edge'; import { @@ -29,6 +29,7 @@ import { ComboDisplayModel } from '../types'; import { getShapeAnimateBeginStyles } from './animate'; import { isArrayOverlap } from './array'; import { isBetween } from './math'; +import { getZoomLevel } from './zoom'; export const ShapeTagMap = { circle: Circle, @@ -129,7 +130,9 @@ export const upsertShape = ( const updateStyles = {}; const oldStyles = shape.attributes; // update - if (disableAnimate || !animates?.update) { + // update the styles excludes the ones in the animate fields + const animateFields = findAnimateFields(animates, 'update', id); + if (disableAnimate || !animates?.update || !animateFields.length) { // update all the style directly when there are no animates for update timing Object.keys(style).forEach((key) => { if (oldStyles[key] !== style[key]) { @@ -138,9 +141,6 @@ export const upsertShape = ( } }); } else { - // update the styles excludes the ones in the animate fields - const animateFields = findAnimateFields(animates, 'update', id); - if (!animateFields.length) return shape; Object.keys(style).forEach((key) => { if (oldStyles[key] !== style[key]) { updateStyles[key] = style[key]; @@ -292,7 +292,7 @@ const merge2Styles = ( export const isPolygonsIntersect = ( points1: number[][], points2: number[][], -): boolean => { +): Boolean => { const getBBox = (points): Partial => { const xArr = points.map((p) => p[0]); const yArr = points.map((p) => p[1]); @@ -532,3 +532,78 @@ export const isStyleAffectBBox = ( ) => { return isArrayOverlap(Object.keys(style), FEILDS_AFFECT_BBOX[type]); }; + +/** + * Estimate the width of the shape according to the given style. + * @param shape target shape + * @param style computed merged style + * @param bounds shape's local bounds + * @returns + */ +export const getShapeLocalBoundsByStyle = ( + shape: DisplayObject, + style: ShapeStyle, + bbox?: AABB, +): { + min: number[]; + max: number[]; + center: number[]; +} => { + const { + r, + rx, + ry, + width, + height, + depth = 0, + x1, + x2, + y1, + y2, + z1 = 0, + z2 = 0, + } = style; + const radius = Number(r); + const radiusX = Number(rx); + const radiusY = Number(ry); + switch (shape.nodeName) { + case 'circle': + return { + min: [-radius, -radius, 0], + max: [radius, radius, 0], + center: [0, 0, 0], + }; + case 'sphere': + return { + min: [-radius, -radius, -radius], + max: [radius, radius, radius], + center: [0, 0, 0], + }; + case 'image': + case 'rect': + case 'cube': + case 'plane': + return { + min: [-width / 2, -height / 2, -depth / 2], + max: [width / 2, height / 2, depth / 2], + center: [0, 0, 0], + }; + case 'ellipse': + return { + min: [-radiusX, -radiusY, 0], + max: [radiusX, radiusY, 0], + center: [0, 0, 0], + }; + case 'line': + return { + min: [x1, y1, z1], + max: [x2, y2, z2], + center: [(x1 + x2) / 2, (y1 + y2) / 2, (z1 + z2) / 2], + }; + case 'text': + case 'polyline': + case 'path': + case 'polygon': + return bbox || shape.getLocalBounds(); + } +}; diff --git a/packages/g6/src/util/shape3d.ts b/packages/g6/src/util/shape3d.ts index 33da5d72a5..31454943a3 100644 --- a/packages/g6/src/util/shape3d.ts +++ b/packages/g6/src/util/shape3d.ts @@ -92,6 +92,9 @@ export const createShape3D = ( id, }); + // set origin for shape + shape.setOrigin(0, 0, 0); + // Scale the shape to the correct size. switch (type) { case 'cube': diff --git a/packages/g6/src/util/text.ts b/packages/g6/src/util/text.ts index 377d3ac288..31dbf9b58e 100644 --- a/packages/g6/src/util/text.ts +++ b/packages/g6/src/util/text.ts @@ -15,8 +15,7 @@ export const getWordWrapWidthByBox = ( zoom = 1, ) => { const keyShapeWidth = (keyShapeBox.max[0] - keyShapeBox.min[0]) * zoom; - const wordWrapWidth = 2 * keyShapeWidth; - return getWordWrapWidthWithBase(wordWrapWidth, maxWidth); + return getWordWrapWidthWithBase(keyShapeWidth, maxWidth); }; /** diff --git a/packages/g6/src/util/zoom.ts b/packages/g6/src/util/zoom.ts index fd166143ee..f44250841e 100644 --- a/packages/g6/src/util/zoom.ts +++ b/packages/g6/src/util/zoom.ts @@ -1,20 +1,18 @@ -import { ZoomStrategy, ZoomStrategyObj } from '../types/item'; +import { LodStrategy, lodStrategyObj } from '../types/item'; /** - * Format zoomStrategy to the pattern that ratio 1 (primary level) at level 0, and higher the ratio, higher the level. - * @param zoomStrategy + * Format lodStrategy to the pattern that ratio 1 (primary level) at level 0, and higher the ratio, higher the level. + * @param lodStrategy * @returns */ -export const formatZoomStrategy = ( - zoomStrategy: ZoomStrategy, -): ZoomStrategyObj => { - const { levels, animateCfg } = zoomStrategy || {}; +export const formatLodStrategy = (lodStrategy: LodStrategy): lodStrategyObj => { + const { levels, animateCfg } = lodStrategy || {}; if (!levels) return undefined; const primaryLevel = levels.find((level) => level.primary); const primaryIndex = levels.indexOf(primaryLevel); const formattedLevels = {}; levels.forEach((level, i) => { - formattedLevels[i - primaryIndex] = level.range; + formattedLevels[i - primaryIndex] = level.zoomRange; }); return { animateCfg, @@ -34,8 +32,8 @@ export const getZoomLevel = ( ) => { let level = 0; Object.keys(levels).forEach((idx) => { - const range = levels[idx]; - if (zoom >= range[0] && zoom < range[1]) level = Number(idx); + const zoomRange = levels[idx]; + if (zoom >= zoomRange[0] && zoom < zoomRange[1]) level = Number(idx); }); return level; }; diff --git a/packages/g6/tests/intergration/demo/data.ts b/packages/g6/tests/intergration/demo/data.ts new file mode 100644 index 0000000000..dd6f6b464c --- /dev/null +++ b/packages/g6/tests/intergration/demo/data.ts @@ -0,0 +1,6 @@ +import { GraphData } from '../../../src'; + +export default { + nodes: [{"id":"1","data":{"label":"Advance Publications","x":-153.13349525376225,"y":-2464.9459622539057,"z":769.0900690899269}},{"id":"2","data":{"label":"A.H. Belo","x":4488.039430144247,"y":-189.30782326102508,"z":358.53282393772656}},{"id":"3","data":{"label":"America Online (AOL)","x":2039.1359665126474,"y":-618.6851678082976,"z":163.99856974084392}},{"id":"4","data":{"label":"AT&T","x":1108.6064297952144,"y":-1080.50469847677,"z":378.55316086623935}},{"id":"5","data":{"label":"Bertelsmann","x":900.6417863303936,"y":771.2454637357905,"z":65.50065886325318}},{"id":"6","data":{"label":"Cablevision","x":1510.0051858126672,"y":-72.8006585718158,"z":63.86582574805466}},{"id":"7","data":{"label":"CNHI","x":-1509.550343976258,"y":-397.3933792183061,"z":621.4186696023419}},{"id":"8","data":{"label":"Comcast","x":751.0108885582854,"y":-808.0822951017499,"z":428.6932809961408}},{"id":"9","data":{"label":"Cox Enterprises","x":157.5921531134827,"y":311.07108351965053,"z":528.4369540972971}},{"id":"10","data":{"label":"Disney","x":104.53569665081886,"y":-22.374279608349752,"z":508.6969624989068}},{"id":"11","data":{"label":"Dow-Jones &","x":-642.1976287796911,"y":-1707.5412833292603,"z":483.87473757866206}},{"id":"12","data":{"label":"E.W. Scripps","x":3330.1379573932436,"y":-2627.995739981993,"z":652.3244823765741}},{"id":"13","data":{"label":"Gannett","x":925.7628474037851,"y":-2848.0936952512297,"z":249.22441082309788}},{"id":"14","data":{"label":"General Electric (GE)","x":2802.509093857405,"y":-1376.320516454864,"z":801.5066776939736}},{"id":"15","data":{"label":"Hearst","x":-299.54951548118606,"y":-1024.8660285929136,"z":540.2792062039115}},{"id":"16","data":{"label":"Hollinger","x":-482.0046508140613,"y":646.2245608481026,"z":872.2823374809037}},{"id":"17","data":{"label":"Knight Ridder","x":1408.2560266990995,"y":-3188.8742327415766,"z":320.57226033695565}},{"id":"18","data":{"label":"Liberty Group Publishing","x":3956.0608151555025,"y":-568.0433690245027,"z":483.1067281488999}},{"id":"19","data":{"label":"The McGraw-Hill Companies","x":2572.941730975781,"y":-3183.2373485378466,"z":329.4042935270187}},{"id":"20","data":{"label":"Media General","x":907.1506332783615,"y":-3343.181632576633,"z":444.1836319331589}},{"id":"21","data":{"label":"Meredith","x":2258.291760256143,"y":1618.897745810992,"z":807.2307013270253}},{"id":"22","data":{"label":"McClatchy","x":909.4941983215385,"y":-3217.9900657686517,"z":802.8277692336459}},{"id":"23","data":{"label":"News","x":924.2012509022798,"y":-41.64470563467148,"z":74.04077883417904}},{"id":"24","data":{"label":"New York Times","x":3058.836938926961,"y":-393.5740022398768,"z":149.95193158592124}},{"id":"25","data":{"label":"Reed Elsevier","x":1337.9960781018517,"y":427.3152898591261,"z":414.6506035212465}},{"id":"26","data":{"label":"Seagram","x":-1101.1910410009882,"y":-3476.273405333575,"z":436.6606639476713}},{"id":"27","data":{"label":"Sinclair Broadcast Group (SBG)","x":-362.93480369292956,"y":1274.221595890558,"z":201.86569833287015}},{"id":"28","data":{"label":"Sony","x":2302.3546528446022,"y":430.9402925464383,"z":754.2858857146452}},{"id":"29","data":{"label":"Times Mirror","x":991.2455813380166,"y":-824.6236057385486,"z":799.2813876632301}},{"id":"30","data":{"label":"Time Warner","x":1742.6493000104874,"y":-990.8292248379216,"z":760.2857123843461}},{"id":"31","data":{"label":"Tribune","x":2022.3194542051224,"y":-2170.7089173949425,"z":660.7859912744765}},{"id":"32","data":{"label":"USA Networks","x":1811.4982439877094,"y":-1471.6567492070044,"z":526.4573010181471}},{"id":"33","data":{"label":"Viacom","x":228.16217659757922,"y":-1077.2213582485597,"z":170.60804565026388}},{"id":"34","data":{"label":"Vulcan","x":2463.930564348795,"y":-516.4547684522131,"z":776.9166731983128}},{"id":"35","data":{"label":"Washington Post","x":2682.9979598569134,"y":-934.6257825543175,"z":819.9324890439655}},{"id":"36","data":{"label":"Yahoo!","x":2176.4572273457097,"y":-1089.2784671641443,"z":687.1859696265858}},{"id":"37","data":{"label":"The Birmingham News (Alabama)","x":-280.6561633296956,"y":-2387.6973906398275,"z":365.0707171637633}},{"id":"38","data":{"label":"Harrisburg Patriot-News (Pennsylvania)","x":-63.642463211408995,"y":-2564.7325345385534,"z":308.7439227811264}},{"id":"39","data":{"label":"The Huntsville Times (Alabama)","x":-19.398518413823695,"y":-2558.2669948582993,"z":860.9609371550813}},{"id":"41","data":{"label":"Mississippi Press (Pascagoula)","x":-95.27867328856973,"y":-2597.4371324252484,"z":445.9668254795632}},{"id":"42","data":{"label":"The Oregonian (Portland)","x":-176.58176938147062,"y":-2599.6654178872354,"z":31.184871548036508}},{"id":"43","data":{"label":"Plain Dealer (Cleveland)","x":-291.46629765499256,"y":-2356.3061477754045,"z":628.2765665234522}},{"id":" NJ)","data":{"label":"The Star-Ledger (Newark","x":-1079.7253283091322,"y":1046.4711527587333,"z":699.5494459861178}},{"id":"45","data":{"label":"Staten Island Advance (NY)","x":-293.71647887952895,"y":-2454.0197848234875,"z":307.79437582625445}},{"id":"46","data":{"label":"Syracuse Herald-Journal (NY)","x":-174.3042872027695,"y":-2684.255457210997,"z":74.06400850520134}},{"id":"47","data":{"label":"The Herald-American (Sunday)","x":-193.3454758204989,"y":-2875.3546759746287,"z":19.586247039028002}},{"id":" NY)","data":{"label":"The Post-Standard (Syracuse","x":-1649.318670461541,"y":1665.7658529896626,"z":1.2585034786576355}},{"id":"49","data":{"label":"The Times-Picayune (New Orleans)","x":-270.47965822889273,"y":-2321.3126565974517,"z":741.5258551577697}},{"id":"50","data":{"label":"The Trenton Times ( New Jersey)","x":-140.03069822708994,"y":-2607.243894386427,"z":889.6569452591125}},{"id":" MA)","data":{"label":"Union-News & Sunday Republican (Springfield","x":-808.7426359351712,"y":-4370.639042479355,"z":6.056114843703497}},{"id":"52","data":{"label":"Sun Newspapers","x":-300.7284393463801,"y":-2417.597495448118,"z":150.01115397031595}},{"id":"53","data":{"label":"Booth Newspapers of Michigan","x":-257.18396318712985,"y":-2841.058217202809,"z":307.23743573760555}},{"id":"54","data":{"label":"Ann Arbor News","x":-351.281301008064,"y":-2966.213789783347,"z":277.5011285163589}},{"id":"55","data":{"label":"Bay City Times","x":-386.08758016469983,"y":-2918.3400294471103,"z":826.8778147231328}},{"id":"56","data":{"label":"Flint Journal","x":-169.3834064169041,"y":-2978.3309811675654,"z":530.2333920721599}},{"id":"57","data":{"label":"Grand Rapids Press","x":-284.6765846965104,"y":-2990.0708587613663,"z":914.657204510041}},{"id":"58","data":{"label":"Jackson Citizen Patriot","x":-327.56021425565086,"y":-2992.310044600895,"z":228.64262344226205}},{"id":"59","data":{"label":"Kalamazoo Gazette","x":-392.41319889147144,"y":-2752.109760412472,"z":675.6615025640644}},{"id":"60","data":{"label":"Mobile Register","x":-344.75473272513,"y":-2703.5184186077145,"z":837.3633921970462}},{"id":"61","data":{"label":"Muskegon Chronicle","x":-205.23512661725363,"y":-2993.0666860906476,"z":487.1125249592372}},{"id":"62","data":{"label":"Saginaw News","x":-416.3159816033831,"y":-2889.646193957754,"z":236.8254169393309}},{"id":"63","data":{"label":"American City Business Journals","x":-266.5807469869701,"y":-2541.3981045395126,"z":510.46547421357945}},{"id":"64","data":{"label":"Conde Nast Publications","x":-459.01863379299857,"y":-2606.9595043338127,"z":423.0856682447819}},{"id":"65","data":{"label":"Allure","x":-474.10343862132413,"y":-2428.507525675975,"z":31.143535445100625}},{"id":"66","data":{"label":"Architectural Digest","x":-512.4130284626726,"y":-2455.615990132456,"z":993.000930558821}},{"id":"67","data":{"label":"Bon Appetit","x":-496.3444536038746,"y":-2757.151044732014,"z":478.15986385089303}},{"id":"68","data":{"label":"Bride's","x":-448.01118479642446,"y":-2442.9935664538143,"z":510.43904150992915}},{"id":"69","data":{"label":"Conde Nast House & Garden","x":-388.6288187147352,"y":-2434.22304811092,"z":512.4110560458341}},{"id":"70","data":{"label":"Women's Sports & Fitness","x":-554.252566570744,"y":-2482.4331123643906,"z":394.6761361003355}},{"id":"71","data":{"label":"Conde Nast Traveler","x":-541.1577869723506,"y":-2730.2222378056304,"z":719.0912208499152}},{"id":"72","data":{"label":"Details","x":-455.77491912997584,"y":-3000.4987502007643,"z":293.0144770611205}},{"id":"73","data":{"label":"Glamour","x":-399.04605597960835,"y":-2756.92300382901,"z":138.28251531709878}},{"id":"74","data":{"label":"Gourmet","x":-452.8878041303087,"y":-2769.439878728267,"z":417.0608532734881}},{"id":"75","data":{"label":"GQ","x":-419.7098815362933,"y":-2428.667214253303,"z":735.2527331592746}},{"id":"76","data":{"label":"Lucky","x":-580.3542282844942,"y":-2693.199339298317,"z":208.9516983846058}},{"id":"77","data":{"label":"Mademoiselle","x":-556.7290699287032,"y":-2749.9695491306697,"z":902.2549911136674}},{"id":"78","data":{"label":"The New Yorker","x":-356.4977512793007,"y":-2748.3151434953224,"z":611.8488680326412}},{"id":"79","data":{"label":"Self","x":-507.0411844676473,"y":-2781.921611474973,"z":524.7753840223957}},{"id":"80","data":{"label":"Tatler","x":-608.367083345569,"y":-2663.728564994336,"z":112.99658105571231}},{"id":"81","data":{"label":"The World of Interiors","x":-396.8297577825301,"y":-2778.6683608142966,"z":773.3229842320246}},{"id":"82","data":{"label":"Vanity Fair","x":-582.8315964234835,"y":-2721.3952884749797,"z":44.1947962482605}},{"id":"83","data":{"label":"Vogue","x":-536.842181183943,"y":-2771.7718308529224,"z":201.0925998084594}},{"id":"84","data":{"label":"Wired","x":-656.0642090096185,"y":-2639.231667249997,"z":121.6181698415968}},{"id":"85","data":{"label":"Parade Publications","x":-701.381988430539,"y":-2719.289572521074,"z":123.14524681818261}},{"id":"86","data":{"label":"Parade","x":-848.0841950009935,"y":-2866.776781224411,"z":418.42060337092346}},{"id":"87","data":{"label":"react","x":-620.6018596115946,"y":-2599.0215337443674,"z":622.0031881826826}},{"id":"88","data":{"label":"Fairchild Publications","x":-311.0661722395662,"y":-3062.0327757881096,"z":650.9740736805978}},{"id":"89","data":{"label":"W","x":-403.35839599653355,"y":-3172.942528119951,"z":809.7623543893382}},{"id":"90","data":{"label":"Jane","x":-162.54664178422172,"y":-3144.866134303814,"z":763.2143099483446}},{"id":"91","data":{"label":"Women's Wear Daily","x":-461.2294382862324,"y":-3063.0684617553015,"z":762.8100884195774}},{"id":"92","data":{"label":"Daily News Record","x":-440.97330115809973,"y":-2971.99953438653,"z":978.5122845100964}},{"id":"93","data":{"label":"Footwear News","x":-190.0463805092113,"y":-3154.034846442048,"z":213.22251096284228}},{"id":"94","data":{"label":"Home Furnishings News","x":-462.3766793758914,"y":-3104.492571676858,"z":556.9783758769735}},{"id":"95","data":{"label":"HighPoints","x":-164.59322278851232,"y":-3107.9340342967216,"z":91.9576508626383}},{"id":"96","data":{"label":"Executive Technology","x":-475.2631983080919,"y":-3029.3194987485595,"z":824.3497955053396}},{"id":"97","data":{"label":"Children's Business","x":-426.0079066999151,"y":-3182.03774678979,"z":730.9727071032856}},{"id":"98","data":{"label":"Supermarket News","x":-211.52571750864718,"y":-3193.1810288637716,"z":261.7432080009934}},{"id":"99","data":{"label":"Brand Marketing","x":-356.8613712988008,"y":-3217.2409030684935,"z":617.4924849530922}},{"id":"100","data":{"label":"Salon News","x":-293.28573974958545,"y":-3225.3724154924166,"z":672.5059082879228}},{"id":"101","data":{"label":"","x":-2095.268988005805,"y":391.823091073109,"z":379.75863509451614}},{"id":"102","data":{"label":"NewsFlash","x":10.654975773749356,"y":-2452.5828369398364,"z":689.573108031696}},{"id":"103","data":{"label":"Epicurious.com","x":-323.7510892891287,"y":-2500.9993660422383,"z":648.931916599496}},{"id":"104","data":{"label":"Style.com","x":4.521039858524091,"y":-2495.146070180335,"z":187.78743162220567}},{"id":"107","data":{"label":"WFAA TV- Dallas/Fort Worth (ABC)","x":-909.4065208652505,"y":-779.521408976967,"z":490.48840051249255}},{"id":"108","data":{"label":"KHOU TV - Houston (CBS)","x":-916.5488754405978,"y":-653.6633208207777,"z":622.9082136210087}},{"id":"109","data":{"label":"KING TV - Seattle (NBC)","x":-794.463461237628,"y":-878.4792868766499,"z":401.0779281583592}},{"id":"110","data":{"label":"KONG TV - Seattle (Ind)","x":-936.5168513814278,"y":-687.3645954013336,"z":129.03807723203832}},{"id":"111","data":{"label":"KXTV - Sacramento (ABC)","x":-939.0496785058549,"y":-723.2898212434238,"z":346.5430881233782}},{"id":"112","data":{"label":"KMOV TV - St. Louis (CBS)","x":-905.696831440433,"y":-851.331423456053,"z":559.0072826681383}},{"id":"113","data":{"label":"KGW TV - Portland (NBC)","x":-764.4880026153232,"y":-579.7577868521839,"z":452.47800856651145}},{"id":"114","data":{"label":"WCNC TV - Charlotte (NBC)","x":-603.4369605171396,"y":-624.2922294159744,"z":140.25638958475906}},{"id":"115","data":{"label":"KENS TV - San Antonio (CBS)","x":-746.647909889959,"y":-871.940833758752,"z":695.3723291836491}},{"id":"116","data":{"label":"WVEC TV - Hampton/Norfolk (ABC)","x":-701.8260395841808,"y":-866.8634830855335,"z":809.3073809480991}},{"id":"117","data":{"label":"WWL TV - New Orleans (CBS)","x":-638.2580315884848,"y":-578.0303546263203,"z":824.234209103583}},{"id":"118","data":{"label":"KASA TV - Albuquerque (FOX)","x":-893.4229786355831,"y":-672.9746727065885,"z":849.059792912515}},{"id":"119","data":{"label":"WHAS TV - Louisville (ABC)","x":-676.853400297724,"y":-892.7659657274571,"z":512.7726239732968}},{"id":"120","data":{"label":"KOTV - Tulsa (CBS)","x":-855.3178561588766,"y":-825.5338420670423,"z":218.6407362570535}},{"id":"121","data":{"label":"KHNL TV - Honolulu (NBC)","x":-677.689099986605,"y":-867.3877786577723,"z":584.1043150180798}},{"id":"122","data":{"label":"KFVE TV - Honolulu (UPN)","x":-649.8195412240466,"y":-855.9418762056503,"z":576.1690367954477}},{"id":"123","data":{"label":"KREM TV - Spokane (CBS)","x":-743.2094007502351,"y":-896.0899773867968,"z":710.2719187613367}},{"id":"124","data":{"label":"KSKN TV - Spokane (UPN)","x":-1699.5662566703288,"y":456.238161040661,"z":432.8167775651572}},{"id":"125","data":{"label":"KMSB TV - Tucson (FOX)","x":-618.4714660293557,"y":-638.8736353814411,"z":933.5171235213837}},{"id":"126","data":{"label":"KTTU TV - Tucson (UPN)","x":50.65456250059833,"y":2302.7827461378365,"z":330.01444688941774}},{"id":"127","data":{"label":"KTVB TV - Boise (NBC)","x":-866.8463798500688,"y":-631.1955264075714,"z":659.4002332112772}},{"id":"128","data":{"label":"KVUE TV - Austin (ABC)","x":-714.3153181682324,"y":-906.8001986836352,"z":232.12942846484762}},{"id":"129","data":{"label":"Belo Productions","x":-1193.507087882253,"y":-843.5436085313795,"z":7.776447745153181}},{"id":"130","data":{"label":"Northwest Cable News","x":-1418.1972818359345,"y":-951.1177988575928,"z":63.72644507982051}},{"id":"131","data":{"label":"Texas Cable News","x":-1366.017192980839,"y":-823.2827647762297,"z":810.6489023982995}},{"id":"132","data":{"label":"The Hemet News (California)","x":-892.3601684570995,"y":-621.3802314854956,"z":645.7439895275899}},{"id":"133","data":{"label":"The Dallas Morning News","x":-837.6980897630751,"y":-858.0397133258421,"z":193.40490758187556}},{"id":"134","data":{"label":"Providence Journal-Bulletin","x":-856.287743994551,"y":-595.7188194679602,"z":845.6526159743267}},{"id":" CA)","data":{"label":"The Press-Enterprise (Riverside","x":-474.2503623291159,"y":-4656.679080339564,"z":319.64727871372236}},{"id":" KY)","data":{"label":"Messenger-Inquirer (Owensboro","x":3996.7699423876675,"y":-3533.328569337269,"z":565.7876848706926}},{"id":" TX)","data":{"label":"The Eagle (Bryan-College Station","x":-146.7618476197099,"y":-4671.72405565876,"z":362.99677096788827}},{"id":"139","data":{"label":"Denton Publishing Company (greater Dallas area)","x":-1131.8165297667235,"y":-659.277264418507,"z":477.4121893822525}},{"id":"140","data":{"label":"Denton Record-Chronicle","x":-960.4678671924023,"y":-626.0187102287073,"z":612.630215502025}},{"id":"141","data":{"label":"Lewisville News","x":-1326.7993530757353,"y":-711.2085008049944,"z":780.0620949432117}},{"id":"142","data":{"label":"Grapevine Sun","x":-1314.8653255380686,"y":-521.2158543902278,"z":331.90787563345236}},{"id":"143","data":{"label":"Dallas Mavericks","x":-778.6213514062365,"y":-558.8238800187282,"z":359.0599040887559}},{"id":"144","data":{"label":"","x":579.5776973198876,"y":-4320.199160747383,"z":182.0365346598458}},{"id":"145","data":{"label":"CompuServe Interactive Services","x":2095.842240239941,"y":-452.76882637589733,"z":880.3089354941867}},{"id":"146","data":{"label":"AOL Instant Messenger","x":2186.2104486583976,"y":-628.2657275435131,"z":49.226017364014666}},{"id":"147","data":{"label":"AOL.com portal","x":2128.6611894171547,"y":-458.7273014467237,"z":926.0224107679725}},{"id":"148","data":{"label":"Digital City","x":1736.03933068094,"y":-1336.1692354567435,"z":820.2765213355367}},{"id":"149","data":{"label":"AOL Europe","x":1686.3860251849937,"y":-390.49249810523906,"z":252.88420743789297}},{"id":"150","data":{"label":"ICQ","x":2395.063583778301,"y":-307.4744958426745,"z":160.28186319604276}},{"id":"151","data":{"label":"The Knot","x":1610.0634132135547,"y":-651.4060206685772,"z":678.9165458038924}},{"id":"152","data":{"label":"MapQuest.com","x":1391.1353155747256,"y":44.24167720465539,"z":697.5957408151519}},{"id":"153","data":{"label":"Spinner.com","x":2160.2490795906215,"y":-697.5725384391817,"z":619.2536958837804}},{"id":"154","data":{"label":"DrKoop.com","x":2471.858329463492,"y":-354.3014011353971,"z":983.8943294937715}},{"id":"155","data":{"label":"Nullsoft","x":2003.4722983918464,"y":-467.5826558877252,"z":427.9439490830454}},{"id":"156","data":{"label":"Netscape Communications","x":2134.9033597852085,"y":-743.6786634342761,"z":12.59810725634991}},{"id":"157","data":{"label":"Netscape Netcenter portal","x":2106.4502124183227,"y":-479.9393115286557,"z":737.9145409574743}},{"id":"158","data":{"label":"AOL MovieFone","x":2069.809402891912,"y":-443.0229352491997,"z":604.5541936075053}},{"id":"159","data":{"label":"iAmaze","x":2187.3413068691916,"y":-679.9903622931715,"z":85.74321298636333}},{"id":"160","data":{"label":"Quack.com","x":2160.410958261641,"y":-548.3288066258237,"z":631.9884280654684}},{"id":"163","data":{"label":"AT&T Broadband","x":480.69970912715235,"y":-809.0940395120924,"z":85.44929411960767}},{"id":"164","data":{"label":"AT&T Cable Services","x":964.2521605510947,"y":-1059.4329600569222,"z":541.1860042414634}},{"id":"165","data":{"label":"AT&T Digital Cable","x":-2348.9783097661475,"y":-206.0423804499933,"z":310.0741878340687}},{"id":"166","data":{"label":"Excite@Home","x":527.5690082069077,"y":-898.4604806088855,"z":290.84856045528886}},{"id":"167","data":{"label":"Net2Phone","x":1809.5252851271416,"y":-1217.0102379002437,"z":655.4872555898994}},{"id":"168","data":{"label":"Kearns-Tribune","x":-903.6922623514279,"y":-264.51067371829504,"z":958.5243579251894}},{"id":"169","data":{"label":"Salt Lake Tribune","x":-890.4987693806643,"y":-350.3652585467544,"z":830.0003441201444}},{"id":"170","data":{"label":"Liberty Media","x":1072.0455472541025,"y":-1438.3569372293005,"z":778.6506294770013}},{"id":"171","data":{"label":"BET Holdings II","x":-41.999736723653314,"y":-511.2392683478947,"z":723.5332327367288}},{"id":"172","data":{"label":"BET Cable Network","x":4195.917133946704,"y":-2218.914064173945,"z":27.417597084802292}},{"id":"173","data":{"label":"BET Action Pay-Per-View","x":-151.37683195871614,"y":-356.6568063249133,"z":85.0221719482811}},{"id":"174","data":{"label":"BET on Jazz","x":-191.73436098610637,"y":-397.53165232586434,"z":54.81208711164931}},{"id":"175","data":{"label":"Canales","x":908.9024230247305,"y":-1386.3248123408675,"z":31.879791941510803}},{"id":"176","data":{"label":"Court TV","x":1433.3755264381252,"y":-1256.066066960414,"z":329.033889856871}},{"id":"177","data":{"label":"Discovery Communications","x":272.9375431924718,"y":-2482.6230945894126,"z":415.2937188087615}},{"id":"178","data":{"label":"Discovery Channel","x":325.07101302893716,"y":-3101.616020481776,"z":569.414578229219}},{"id":"179","data":{"label":"The Learning Channel","x":512.1061366838426,"y":-3076.436963954001,"z":432.2725037282278}},{"id":"180","data":{"label":"Animal Planet","x":313.77401808611285,"y":-3131.667874897602,"z":205.35192451962047}},{"id":"181","data":{"label":"Discovery People","x":411.5902714273675,"y":-3140.773699293345,"z":838.262742677832}},{"id":"182","data":{"label":"Travel Channel","x":973.6509619620983,"y":-2785.3564847512425,"z":549.783162175042}},{"id":"183","data":{"label":"Discovery Digital Services","x":133.43312722106702,"y":-2616.550016447505,"z":171.05227053397743}},{"id":"184","data":{"label":"Discovery Civilization","x":350.4193199645397,"y":-3130.736880911243,"z":317.9136468499477}},{"id":"185","data":{"label":"Discovery Health","x":381.4295226423619,"y":-3141.628092003636,"z":11.615689992813705}},{"id":"186","data":{"label":"Discovery Home & Leisure","x":457.1600489882944,"y":-3127.3944121986515,"z":504.21211987820016}},{"id":"187","data":{"label":"Discovery Kids","x":287.10340367092203,"y":-3075.3933657275993,"z":959.6003844729523}},{"id":"188","data":{"label":"Discovery Wings","x":269.73456712094776,"y":-3044.27687191352,"z":857.838712238379}},{"id":"189","data":{"label":"Discovery en Espanol","x":290.15019962074894,"y":-3109.159239623413,"z":802.5094136871285}},{"id":"190","data":{"label":"Animal Planet Asia","x":24.892933509565864,"y":-2803.747893041462,"z":630.7356020515207}},{"id":"191","data":{"label":"Animal Planet Europe","x":197.74798662502008,"y":-2921.8577796921113,"z":734.305005516924}},{"id":"192","data":{"label":"Animal Planet Latin America","x":159.58536754222905,"y":-2916.549914911967,"z":584.3012999253197}},{"id":"193","data":{"label":"Discovery Asia","x":159.97149843929992,"y":-2941.763186476258,"z":53.86282673555254}},{"id":"194","data":{"label":"Discovery India","x":124.59868735805048,"y":-2932.1234107681585,"z":348.923892274676}},{"id":"195","data":{"label":"Discovery Japan","x":638.5998635067012,"y":-2116.352951377571,"z":900.5533093884777}},{"id":"196","data":{"label":"Discovery Europe","x":24.619378567986587,"y":-2674.9895827149344,"z":858.8632810998715}},{"id":"197","data":{"label":"Discovery Turkey","x":321.8506632492399,"y":-2822.568209937751,"z":367.2783837268265}},{"id":"198","data":{"label":"Discovery Germany","x":335.7530847783464,"y":-2839.74448097521,"z":175.32952559421932}},{"id":"199","data":{"label":"Discovery Italy/Africa","x":346.83382486211394,"y":-2763.1232406470835,"z":195.84338461532047}},{"id":"200","data":{"label":"Discovery Latin America","x":277.00741311725324,"y":-2875.8789929497625,"z":904.1392948024793}},{"id":"201","data":{"label":"Discovery Latin America Kids Network","x":68.44103082783431,"y":-2853.081878380377,"z":263.0562288698801}},{"id":"202","data":{"label":"People & Arts (Latin America)","x":59.54383640128981,"y":-2656.7626265160266,"z":688.159951956729}},{"id":"203","data":{"label":"Discovery Channel Online","x":162.82430182606186,"y":-2651.1662667281366,"z":311.8725701542637}},{"id":"204","data":{"label":"Encore Media Group","x":497.3817379003617,"y":-4394.8495007326355,"z":342.4918243260173}},{"id":"205","data":{"label":"Encore","x":632.0180735853619,"y":-2341.1037524149615,"z":601.0587819138991}},{"id":"206","data":{"label":"MOVIEplex","x":601.8219461871149,"y":-2333.3182778804585,"z":303.9638417021868}},{"id":"207","data":{"label":"Thematic Multiplex","x":4469.224843198537,"y":-302.5525436002026,"z":280.7433101421508}},{"id":"208","data":{"label":"STARZ!","x":901.1033577439821,"y":-2277.35816154561,"z":354.8853773820153}},{"id":"209","data":{"label":"STARZ! Multiplex","x":1967.5791026835932,"y":-3507.47321384237,"z":912.8253407141854}},{"id":"210","data":{"label":"Love Stories","x":698.0240403770395,"y":-2403.9407300265084,"z":976.790104748235}},{"id":"211","data":{"label":"Westerns","x":649.7892942686876,"y":-2378.9051888716485,"z":16.19375847314131}},{"id":"212","data":{"label":"Mystery","x":888.3262996515905,"y":-2325.334276043381,"z":107.582318424309}},{"id":"213","data":{"label":"Action","x":609.9344785031349,"y":-2366.199536473791,"z":986.2028229254345}},{"id":"214","data":{"label":"True Stories","x":835.201411033433,"y":-2391.2492578064457,"z":980.890287505829}},{"id":"215","data":{"label":"WAM! America's Kidz Network","x":628.2689953551053,"y":-2396.9535926630847,"z":926.9348281231063}},{"id":"216","data":{"label":"STARZ! Theater","x":760.5230704167211,"y":-2419.010125577751,"z":24.995096126352536}},{"id":"217","data":{"label":"BET Movies/STARZ!","x":3683.923378065182,"y":1069.0183916232163,"z":306.5485532061925}},{"id":"218","data":{"label":"STARZ! Family","x":649.3688029548825,"y":-2419.078610039003,"z":669.8998079542284}},{"id":"219","data":{"label":"STARZ! Cinema","x":-1233.223365407564,"y":-3579.524687075825,"z":254.3690968766257}},{"id":"220","data":{"label":"E! Entertainment Television","x":596.2844845885265,"y":-738.5379003682629,"z":355.51234399183886}},{"id":"221","data":{"label":"Style","x":1118.1795729812875,"y":-1608.8509024025075,"z":669.7921387021518}},{"id":"222","data":{"label":"Flextech p.l.c.","x":716.1961363845176,"y":-1454.2083880795958,"z":265.9033184898012}},{"id":"223","data":{"label":"Bravo","x":1803.4154250231568,"y":2229.6992581772756,"z":288.1015123060768}},{"id":"224","data":{"label":"Challenge TV","x":917.9683901889694,"y":-1359.6910254953973,"z":207.80899789274554}},{"id":"225","data":{"label":"HSN Direct","x":1004.7523957210769,"y":-1624.4793728632885,"z":494.39954868872803}},{"id":"226","data":{"label":"KinderNet","x":1203.5810259657692,"y":-1587.9227028905152,"z":570.0861040150758}},{"id":"227","data":{"label":"Living","x":1035.8510097307703,"y":-1629.8328885320366,"z":368.41567661368833}},{"id":"228","data":{"label":"SMG","x":1228.567791039789,"y":-1564.254976760105,"z":49.69689394394949}},{"id":"229","data":{"label":"Trouble","x":1064.7721231352152,"y":-1621.4975239851829,"z":936.7412017436359}},{"id":"230","data":{"label":"TV Travel Shop","x":1178.2476446319088,"y":-1607.314574839525,"z":663.6609186306679}},{"id":"231","data":{"label":"UK Arena (UKTV)","x":1249.8616962308652,"y":-1530.4398918824836,"z":349.91849947171903}},{"id":"232","data":{"label":"UK Gold (UKTV)","x":935.0383823914149,"y":-1561.244261353083,"z":547.1078737152088}},{"id":"233","data":{"label":"UK Gold Classics (UKTV)","x":1116.8413331470429,"y":-1635.2870824836382,"z":506.8371688748705}},{"id":"234","data":{"label":"UK Horizons (UKTV)","x":911.9149333930523,"y":-1525.1569567977826,"z":500.65035275076417}},{"id":"235","data":{"label":"UK Style (UKTV)","x":916.8354630652693,"y":-1454.8994601679797,"z":15.334130276609237}},{"id":"236","data":{"label":"UK Play (UKTV)","x":1080.0767911460262,"y":-1639.9175920273324,"z":61.603253712902095}},{"id":"237","data":{"label":"Fox Kids Worldwide","x":916.0626411138983,"y":-696.0222715574964,"z":95.88659771142093}},{"id":"238","data":{"label":"International Channel","x":1069.6756434334093,"y":-1591.8284574731333,"z":131.4094322392163}},{"id":"239","data":{"label":"Jupiter Programming","x":982.7419573689049,"y":-1555.9020517469976,"z":389.6685069944852}},{"id":"240","data":{"label":"Cable Soft Network","x":1229.2026739132953,"y":-1478.237133965988,"z":692.7275598062157}},{"id":"241","data":{"label":"CNBC Asia","x":1226.3205267565236,"y":-1441.1354212803926,"z":49.17322006295088}},{"id":"242","data":{"label":"Golf Network","x":945.7589318646669,"y":-1538.460000590776,"z":851.4166344942029}},{"id":"243","data":{"label":"","x":4216.762386870964,"y":152.84518288130857,"z":587.3853281343986}},{"id":"244","data":{"label":"J-Sports","x":1201.6629705132,"y":-1347.3854670608257,"z":754.0325590542993}},{"id":"245","data":{"label":"The Shop Channel","x":941.6294074044781,"y":-1330.541384608924,"z":792.0084733479997}},{"id":"246","data":{"label":"MacNeil/Lehrer Productions","x":1152.2954807645492,"y":-1560.395742890903,"z":134.42041428097883}},{"id":"247","data":{"label":"MultiThematiques","x":1126.25742723647,"y":-2167.402585952077,"z":644.6004275577313}},{"id":"248","data":{"label":"Canal Jimmy (France)","x":1246.249506530332,"y":-2247.1721228927163,"z":323.9222567085205}},{"id":"249","data":{"label":"Canal Jimmy (Italy)","x":1055.5477099829895,"y":-2294.3690204123436,"z":212.95473045814583}},{"id":"250","data":{"label":"Cine Cinemas (France)","x":984.8178699005689,"y":-2240.8055975240563,"z":521.0834597476847}},{"id":"251","data":{"label":"Cine Cinemas (Italy)","x":1002.4030756924044,"y":-2230.5483087172347,"z":535.7013022338313}},{"id":"252","data":{"label":"Cine Classics (France)","x":1069.7178281061233,"y":-2321.604534828168,"z":569.0478821836147}},{"id":"253","data":{"label":"Cine Classics (Spain)","x":944.3625825732433,"y":-1588.5056670865251,"z":394.4349868527}},{"id":"254","data":{"label":"Cine Classics (Italy)","x":1284.19218072468,"y":-2217.62828841965,"z":887.5577554029614}},{"id":"255","data":{"label":"Forum Planete (France)","x":1112.8613983978703,"y":-2314.7751758297327,"z":906.9500490494406}},{"id":"256","data":{"label":"Planete (France)","x":968.6408500201551,"y":-2182.705293748543,"z":439.0899517805713}},{"id":"257","data":{"label":"Planete (Poland)","x":1023.561170542644,"y":-2291.106462326501,"z":442.92603859145}},{"id":"258","data":{"label":"Planete (Germany)","x":1221.0891245578996,"y":-2287.0144718298443,"z":866.1744430249882}},{"id":"259","data":{"label":"Planete (Italy)","x":1106.5738335563146,"y":-2338.8049731989904,"z":510.2670409224317}},{"id":"260","data":{"label":"Seasons (France)","x":1265.1559197271054,"y":-2259.319979185617,"z":981.7176630252859}},{"id":"261","data":{"label":"Seasons (Spain)","x":1210.2010082596835,"y":-2315.6410988059883,"z":967.6103062310431}},{"id":"262","data":{"label":"Seasons (Germany)","x":1151.7020307805587,"y":-2337.359335883777,"z":377.75378502721503}},{"id":"263","data":{"label":"Seasons (Italy)","x":1290.2021917810434,"y":-2177.645266957248,"z":314.0001213358781}},{"id":"264","data":{"label":"Odyssey","x":1149.7177799705887,"y":-1618.687577407627,"z":808.3422692276221}},{"id":"265","data":{"label":"Pramer","x":913.2023426316873,"y":-1925.788902168842,"z":632.8741593925857}},{"id":"266","data":{"label":"America Sports","x":931.9329475361478,"y":-2082.5758845511646,"z":503.2619145904187}},{"id":"267","data":{"label":"Big Channel","x":977.1418459334932,"y":-2076.8420571609104,"z":668.2958052346206}},{"id":"268","data":{"label":"Canal a","x":889.8396140803407,"y":-2077.775809355525,"z":99.72562746976178}},{"id":"269","data":{"label":"Cineplaneta","x":849.3499575304568,"y":-2069.4972298159273,"z":5.71473869090755}},{"id":"270","data":{"label":"CV SAT","x":852.3096851116889,"y":-2095.394499931499,"z":610.4863308023769}},{"id":"271","data":{"label":"Ideas","x":796.4802269654492,"y":-2039.911656248721,"z":893.1712478383824}},{"id":"272","data":{"label":"Magic Kids","x":896.5794270194515,"y":-2105.5080423077206,"z":907.5052220077038}},{"id":"273","data":{"label":"P&E","x":808.4577917847741,"y":-2069.930351000817,"z":928.2648420600617}},{"id":"274","data":{"label":"The Premium Movie Partnership","x":991.5050255511892,"y":-1587.5766704277394,"z":331.0813089796944}},{"id":"275","data":{"label":"QVC","x":1098.8030578321204,"y":-874.4321617084288,"z":334.640732399081}},{"id":"276","data":{"label":"QVC Network","x":1066.7014452195745,"y":-727.570153065155,"z":899.9398830506498}},{"id":"277","data":{"label":"QVC The Shopping Network (UK)","x":1188.7810867029539,"y":-997.9318426969685,"z":373.7522272405589}},{"id":"278","data":{"label":"QVC Germany","x":1201.4071920512188,"y":-749.2495797892079,"z":701.6210604076672}},{"id":"279","data":{"label":"iQVC","x":1252.2402251604772,"y":-830.2440952754496,"z":264.0014512701798}},{"id":"280","data":{"label":"Telemundo Network","x":1172.8654158326626,"y":-1575.8658356212773,"z":35.00675828879207}},{"id":"281","data":{"label":"Telemundo Station Group","x":1197.0966470566818,"y":-1546.9367358969794,"z":343.4301747629798}},{"id":"282","data":{"label":"Torneos y Competencias","x":1095.7867507848432,"y":-1700.354652967988,"z":388.7369914906611}},{"id":"283","data":{"label":"","x":-1961.6060585490743,"y":-2622.261128069958,"z":180.22252353742618}},{"id":"284","data":{"label":"TV Guide Channel","x":-1476.59003356428,"y":-2995.1309914353433,"z":562.3914908493437}},{"id":"285","data":{"label":"TV Guide Interactive","x":768.0924104721616,"y":-1497.0998198092752,"z":261.6532906542284}},{"id":"286","data":{"label":"TV Guide Sneak Prevue","x":928.7944923998339,"y":-1494.6050678140946,"z":340.04147074260425}},{"id":"287","data":{"label":"UVTV","x":716.995200234388,"y":-1490.101917631714,"z":376.4610838416824}},{"id":"288","data":{"label":"Superstar","x":1224.7229195498794,"y":-1526.7951661912589,"z":371.54023736079523}},{"id":"289","data":{"label":"TV Guide Magazine","x":865.3181191799517,"y":-852.898312361117,"z":347.6439005420193}},{"id":"290","data":{"label":"TV Guide Online","x":679.587430281711,"y":-1422.160216312293,"z":83.0864993174163}},{"id":"291","data":{"label":"The Television Games Network","x":1228.2532998568067,"y":-1378.2165168348656,"z":837.5989924368027}},{"id":"292","data":{"label":"","x":2594.4643534465786,"y":2036.919878010638,"z":687.818461675223}},{"id":"293","data":{"label":"","x":-1081.551833593071,"y":-3726.218172475417,"z":477.86404014416183}},{"id":"294","data":{"label":"America's Store","x":-1376.5401003157433,"y":545.82147185337,"z":648.785641575438}},{"id":"295","data":{"label":"ISN","x":1938.9809390439914,"y":-4099.468926567379,"z":329.03999484555845}},{"id":"296","data":{"label":"","x":-880.2722632064606,"y":1057.5920152752687,"z":974.2803626125951}},{"id":"297","data":{"label":"HOT (Germany)","x":1206.3187862925788,"y":-1506.125442814589,"z":934.9909136258323}},{"id":"298","data":{"label":"Shop Channel (Japan)","x":1709.8954955773152,"y":-1586.275332302148,"z":83.07802838215883}},{"id":"299","data":{"label":"Sci-Fi Channel","x":2421.7787064643335,"y":-2191.0436104085657,"z":801.4863986486622}},{"id":"300","data":{"label":"USA Network","x":1936.8604101693345,"y":-1344.9232693335312,"z":457.83885445812575}},{"id":"301","data":{"label":"USA Broadcasting","x":2485.2913316931154,"y":-2115.7428758839987,"z":50.3501542720548}},{"id":"302","data":{"label":"","x":-558.7361519480592,"y":-4005.2427130067063,"z":148.49059275744293}},{"id":"303","data":{"label":"Studios USA","x":1986.393567666777,"y":-1690.4092503052702,"z":204.0553236659588}},{"id":"304","data":{"label":"USA Films","x":2387.428317601789,"y":-2204.1206235127866,"z":226.21228352096347}},{"id":"305","data":{"label":"Hotel Reservations Network","x":1688.542206768292,"y":-1857.0114579164483,"z":967.0696231845388}},{"id":"306","data":{"label":"","x":1404.089268744986,"y":1456.1304953255985,"z":428.33025933892}},{"id":"307","data":{"label":"New England Cable News","x":413.9797962057155,"y":-1034.7508225863062,"z":728.4931094765876}},{"id":"308","data":{"label":"Time Warner Entertainment","x":1255.2610290092898,"y":-1496.403006547841,"z":446.0812387615187}},{"id":"309","data":{"label":"Academic Systems","x":1319.16027444678,"y":-1413.1529663695987,"z":296.77742892289547}},{"id":"310","data":{"label":"ACTV","x":1807.7240145945043,"y":-677.8880034805361,"z":493.6467742450374}},{"id":"311","data":{"label":"Digital Health Group","x":1063.7181775206718,"y":-942.705807151734,"z":150.7088035340969}},{"id":"312","data":{"label":"DMX","x":1199.911058719491,"y":-1107.3464014194274,"z":606.7659573715733}},{"id":"313","data":{"label":"drugstore.com","x":602.5952586213248,"y":-921.3152775300528,"z":810.7843931322201}},{"id":"314","data":{"label":"HomeGrocer.com","x":1145.296486306508,"y":-1228.3770608092582,"z":28.156558022584434}},{"id":"315","data":{"label":"iBeam Broadcasting","x":1674.1627802073444,"y":-1401.0040804092741,"z":482.2495820954307}},{"id":"316","data":{"label":"Interactive Pictures","x":885.2619577343326,"y":-1206.6413655104998,"z":419.5193160054616}},{"id":"317","data":{"label":"iVillage","x":293.76506370907373,"y":-1348.16509737962,"z":470.8606491830205}},{"id":" L.P.","data":{"label":"KPCB Java Fund","x":3212.8596914031277,"y":2355.428697864091,"z":309.17231589080285}},{"id":"319","data":{"label":"The Lightspan Partnership","x":1232.78481439779,"y":-1194.9500709721788,"z":812.1592962525621}},{"id":"320","data":{"label":"priceline.com","x":955.2936238786724,"y":-1369.352847624492,"z":829.8161423933101}},{"id":"321","data":{"label":"Quokka Sports","x":1316.3819704992802,"y":-1701.665629149336,"z":121.17183418454135}},{"id":"322","data":{"label":"Sportsline USA","x":1250.232020210352,"y":-1024.7965569839353,"z":381.8960984506123}},{"id":"323","data":{"label":"MTVN Online","x":1255.4960768706733,"y":-1179.5148977950744,"z":879.1592865423261}},{"id":"324","data":{"label":"TiVo","x":1330.0580724038464,"y":-636.2724019046973,"z":15.848340869575761}},{"id":"325","data":{"label":"Total Entertainment Network","x":1047.6970920926374,"y":-1217.5495093558152,"z":603.1568643924761}},{"id":"326","data":{"label":"PRIMEDIA","x":2510.7482857227214,"y":-1747.3030790563894,"z":790.2427111617405}},{"id":"327","data":{"label":"Bresnan International Partners (Chile)","x":1269.0806278439431,"y":-1114.4930028868057,"z":682.4370595762166}},{"id":" S.A.","data":{"label":"Metropolis Intercom","x":-1491.3344256031335,"y":-3811.368905654441,"z":529.2994961028312}},{"id":"329","data":{"label":"Cablevision S.A.","x":1165.1977177954168,"y":-1687.2547176521466,"z":619.0001625850942}},{"id":"330","data":{"label":"Jupiter Telecommunications Co.","x":1256.4670665920148,"y":-1463.169977099385,"z":506.03337236233494}},{"id":"331","data":{"label":"Princes Holdings","x":900.787837584041,"y":-1483.663080035844,"z":894.121286969511}},{"id":"332","data":{"label":"Sky Latin America","x":1028.961523570002,"y":-1596.323499295674,"z":756.6573195404019}},{"id":"333","data":{"label":"Sprint PCS Group","x":1610.7859618880238,"y":-4458.692465223347,"z":824.9438956827204}},{"id":"334","data":{"label":"TCI Cablevision of Puerto Rico","x":372.48288267312637,"y":-658.8845561654953,"z":293.9416587542312}},{"id":"335","data":{"label":"Telewest Communications plc","x":879.9610103129585,"y":-1424.0901391143711,"z":922.5937669381328}},{"id":"336","data":{"label":"Antec","x":973.5519502102948,"y":-1604.7433123302471,"z":577.0877844998772}},{"id":"337","data":{"label":"General Instrument","x":1446.6004717150518,"y":-1080.5157452330604,"z":195.49397267252243}},{"id":"338","data":{"label":"Bantam Doubleday Dell","x":804.5425131330703,"y":1328.4536219420852,"z":405.61375319157133}},{"id":"339","data":{"label":"Bantam Books","x":632.4526500976385,"y":1317.102680862744,"z":292.9159547803255}},{"id":"340","data":{"label":"Doubleday","x":967.8559938123217,"y":1391.4872578915983,"z":519.8552199870674}},{"id":"341","data":{"label":"Dell - Delacorte","x":669.5158917882286,"y":1218.218482838206,"z":533.3822105938722}},{"id":"342","data":{"label":"Broadway Books","x":639.6991995964704,"y":1364.5140225111281,"z":60.790658960252046}},{"id":"343","data":{"label":"Bantam Doubleday Dell Books for Young Readers","x":923.1375224142016,"y":1442.741251513151,"z":263.5637244619353}},{"id":"344","data":{"label":"Bantam Doubleday Audio","x":670.6098617647349,"y":1456.6717238227866,"z":55.80178030904914}},{"id":"345","data":{"label":"Bantam Books Canada","x":846.9001294499176,"y":1503.8262127601547,"z":753.7776891956194}},{"id":"346","data":{"label":"Doubleday Canada","x":772.2206925692171,"y":1538.3134487688512,"z":275.8153118869009}},{"id":"347","data":{"label":"Transworld Publishers","x":920.0251213173951,"y":1472.762611020039,"z":481.59849510930155}},{"id":"348","data":{"label":"Doubleday Direct","x":876.0869693907925,"y":1364.8578349657155,"z":692.3360288732069}},{"id":"349","data":{"label":"Literary Guild","x":769.6240887929503,"y":1566.2315181640352,"z":731.8040659320179}},{"id":"350","data":{"label":"Doubleday Book Club","x":939.267738638509,"y":1597.917543138592,"z":260.01051486563}},{"id":"351","data":{"label":"Crossings","x":908.8654754256818,"y":1574.16781826437,"z":869.0141624252077}},{"id":"352","data":{"label":"Random House","x":489.8625903552829,"y":1394.6554198597596,"z":703.4609508444929}},{"id":"353","data":{"label":"Random House Trade Publishing Group","x":617.2783714739467,"y":1488.8989672456319,"z":766.5664769523654}},{"id":"354","data":{"label":"Random House Information Publishing Group","x":436.72714664851355,"y":1230.2028238569392,"z":660.8919916247415}},{"id":"355","data":{"label":"Knopf Publishing Group","x":629.2120385338835,"y":1446.5617385618725,"z":87.06527727982439}},{"id":"356","data":{"label":"Crown Publishing Group","x":587.1991559800199,"y":1530.0723969753471,"z":893.6253021186096}},{"id":"357","data":{"label":"Ballantine Publishing Group","x":378.2094158390378,"y":1266.000618137019,"z":823.2088238890005}},{"id":"358","data":{"label":"Random House Children's Publishing","x":535.6399263641242,"y":1545.5829734650988,"z":716.9255623321432}},{"id":"359","data":{"label":"Random House Audio","x":367.29390501516446,"y":1488.3002947895948,"z":229.76069147277144}},{"id":"360","data":{"label":"Random House Value Publishing","x":340.1380334001178,"y":1321.7654484634068,"z":603.8982978800873}},{"id":"361","data":{"label":"Fodors Travel Publications","x":329.5936767863004,"y":1422.9553855589174,"z":775.5381347405314}},{"id":"362","data":{"label":"Random House New Media","x":469.9394883144055,"y":1571.298969995907,"z":341.465001683565}},{"id":"363","data":{"label":"Random House Canada","x":413.0152298013145,"y":1561.9984498374188,"z":162.67415521475414}},{"id":"364","data":{"label":"Random House U.K.","x":500.3666635341315,"y":1573.875825545745,"z":970.9844022819639}},{"id":"365","data":{"label":"Random House Australia","x":380.1392551554404,"y":1553.3086996812108,"z":357.23954917018676}},{"id":"366","data":{"label":"Random House New Zealand","x":330.6236727520727,"y":1460.8562862931567,"z":337.0680760929479}},{"id":"367","data":{"label":"Random House South Africa","x":533.1959861689847,"y":1573.577076291349,"z":49.5289571480444}},{"id":"368","data":{"label":"Bee Book","x":810.8498581485683,"y":904.0276649416883,"z":817.31182889153}},{"id":"369","data":{"label":"Bertelsmann Lexikon Verlag","x":1083.0553438320935,"y":787.2423879287799,"z":195.70874402266858}},{"id":"370","data":{"label":"Donauland","x":780.3828425936804,"y":871.8078133051349,"z":251.78285098451215}},{"id":"371","data":{"label":"Science Fiction Book Club","x":1000.3670473323314,"y":885.7902450942074,"z":180.7066631441998}},{"id":"372","data":{"label":"Bold Type","x":874.980588956018,"y":922.7472149969417,"z":961.0874169738526}},{"id":"373","data":{"label":"BOL","x":755.0155333013231,"y":698.4782646156009,"z":300.39984950500354}},{"id":"374","data":{"label":"ABI Building Data","x":1047.9118250999359,"y":877.1102527608446,"z":56.1521894732242}},{"id":"375","data":{"label":"AZ Bertelsmann","x":1010.0470812195449,"y":856.7196559565036,"z":707.4758967610176}},{"id":"376","data":{"label":"BauNetz","x":910.8159732791542,"y":927.6316206153988,"z":214.88816116546207}},{"id":"377","data":{"label":"Entertainment Media Verlag","x":1068.8550457074807,"y":854.9862008889959,"z":131.56886570860627}},{"id":"378","data":{"label":"Gabler/Vieweg/Westdeutscher Verlag","x":1079.5429355425244,"y":817.712021482449,"z":42.9160726781761}},{"id":"379","data":{"label":"ICW Publications","x":959.499190848353,"y":914.4641557486275,"z":776.5297804003312}},{"id":"380","data":{"label":"MMV Medizin Verlag","x":855.0356226193517,"y":947.2652787722272,"z":432.46813234957335}},{"id":"381","data":{"label":"Verkehr Online","x":1007.7119524596537,"y":919.7612080908993,"z":997.9566740928339}},{"id":"382","data":{"label":"Heinrich Vogel Verlag","x":830.8301360120395,"y":934.21599140524,"z":447.47184368662073}},{"id":"383","data":{"label":"Wila Verlag","x":911.6784132102875,"y":958.3201569265939,"z":992.8622785299368}},{"id":"384","data":{"label":"Springer Verlag","x":939.7485898424811,"y":950.3849428968169,"z":639.7230845852353}},{"id":"385","data":{"label":"CLT-UFA","x":798.475013929421,"y":929.6214404469129,"z":657.2116566093736}},{"id":"386","data":{"label":"RTL","x":991.4777860700674,"y":941.4108328301318,"z":470.22169251356513}},{"id":"387","data":{"label":"RTL-2","x":1030.8122501423022,"y":900.7625524848718,"z":268.45545549872486}},{"id":"388","data":{"label":"SUPER RTL","x":477.40392021368007,"y":396.5253976756003,"z":206.3125409367048}},{"id":"389","data":{"label":"Premiere World","x":888.6179644481344,"y":378.0213372414073,"z":303.72860918675906}},{"id":"390","data":{"label":"VOX","x":816.6609443502516,"y":1118.2833169936002,"z":951.8255641362847}},{"id":"391","data":{"label":"Channel 5","x":756.0601881853281,"y":770.3943310556424,"z":81.75678221746763}},{"id":"392","data":{"label":"FUN TV","x":986.3197291406041,"y":655.1841077580575,"z":318.291695349854}},{"id":"393","data":{"label":"M6","x":762.3940347182324,"y":672.4438862499464,"z":948.2776780348701}},{"id":"394","data":{"label":"Multivision","x":1016.7420820942975,"y":718.0394063176982,"z":327.1504568287178}},{"id":"395","data":{"label":"Teva","x":744.7787037601825,"y":740.5922571157871,"z":197.47454838866375}},{"id":"396","data":{"label":"RTL - 4","x":728.3366478997787,"y":669.64032131163,"z":610.8044372232198}},{"id":"397","data":{"label":"RTL - 5","x":711.4692473975829,"y":748.3257437756938,"z":672.9967606257757}},{"id":"398","data":{"label":"RTL - 9","x":723.5546984614102,"y":838.7236584368766,"z":360.0228336841056}},{"id":"399","data":{"label":"RTL - Tele Letzebuerg","x":747.0503362556242,"y":836.6086548771164,"z":971.5567868342625}},{"id":"400","data":{"label":"RTL Klub","x":1056.3873171313744,"y":766.8029814337224,"z":52.05126563475848}},{"id":"401","data":{"label":"UFA Film & TV Production","x":1034.1986570513068,"y":789.3578313150783,"z":492.51443703882546}},{"id":"402","data":{"label":"Trebitsch Production","x":724.3724304255447,"y":719.8637250929569,"z":878.605672933438}},{"id":"403","data":{"label":"Delux Productions","x":935.5232294120015,"y":902.9122447023874,"z":298.248746729604}},{"id":"404","data":{"label":"Cinevideo","x":834.983255343047,"y":894.0958354427821,"z":960.3865563075861}},{"id":"405","data":{"label":"Holland Media House","x":755.2616088258774,"y":811.9133990816117,"z":85.53560655143633}},{"id":"406","data":{"label":"First Choice","x":725.6989949457261,"y":798.049633861232,"z":898.7976341334727}},{"id":"407","data":{"label":"RTL Radio","x":712.1272876480662,"y":699.2662176480717,"z":223.61645605388247}},{"id":"408","data":{"label":"Gruner + Jahr","x":916.0604956869224,"y":1397.2180915996669,"z":93.7770340403683}},{"id":"409","data":{"label":"Brigitte","x":1075.9834582159729,"y":1394.2537672387716,"z":203.45462354204824}},{"id":"410","data":{"label":"Capital","x":811.2346187658727,"y":1255.9977535635317,"z":660.7425833101719}},{"id":"411","data":{"label":"Eltern","x":835.8037545752877,"y":1526.8162127950054,"z":939.1531261497852}},{"id":"412","data":{"label":"Frau im Spiegel","x":761.9573517027834,"y":1314.0813309777313,"z":348.84285928242264}},{"id":"413","data":{"label":"Schoner Wohnen","x":1048.933219726432,"y":1478.9642247365937,"z":278.47801820385246}},{"id":"414","data":{"label":"Der Spiegel","x":1068.948103335586,"y":1454.6831671575346,"z":595.9457785510959}},{"id":"415","data":{"label":"Flora","x":750.7798701217462,"y":1359.8880538180538,"z":645.569739168109}},{"id":"416","data":{"label":"Geo","x":781.1307410909744,"y":1491.1517441575215,"z":804.9441519454406}},{"id":"417","data":{"label":"Geo Saison","x":837.3147057614588,"y":1555.46714500299,"z":756.3156684792449}},{"id":"418","data":{"label":"Oskar's","x":949.151108934168,"y":1577.7671648103114,"z":770.0953235212667}},{"id":"419","data":{"label":"P.M. Magazine","x":1031.236438709468,"y":1537.3688812706569,"z":50.72284129936633}},{"id":"420","data":{"label":"Stern","x":878.9775588715493,"y":1597.5395267174108,"z":861.8865113169765}},{"id":"421","data":{"label":"Tip","x":1054.895213891221,"y":1510.4263665733997,"z":602.1746743658887}},{"id":"422","data":{"label":"TV Today","x":1005.0700268782798,"y":1571.7590020082553,"z":383.98291391798665}},{"id":"423","data":{"label":"American Homestyle","x":1078.4492945528473,"y":753.1402474324796,"z":645.5830769268139}},{"id":"424","data":{"label":"Child","x":1050.7230374740675,"y":811.3690492689639,"z":746.5569340099852}},{"id":"425","data":{"label":"Fitness","x":880.0069531108597,"y":961.9292337990992,"z":993.888603621162}},{"id":"426","data":{"label":"Computer & Co.","x":707.4262349220171,"y":780.0010845496708,"z":370.35180616363664}},{"id":"427","data":{"label":"rtv","x":772.0437522255593,"y":903.5651545690416,"z":919.45890139666}},{"id":"428","data":{"label":"AOL Germany","x":1221.8790255259855,"y":239.46654358803244,"z":875.8728902751536}},{"id":"429","data":{"label":"AOL France","x":1210.1084120161058,"y":216.24083029042686,"z":425.7631784535745}},{"id":"430","data":{"label":"bs medic","x":839.7206760703598,"y":594.4611094487891,"z":856.0877255789783}},{"id":"431","data":{"label":"Sport 1","x":1054.6592790993518,"y":719.8195021656084,"z":138.06326154376737}},{"id":"432","data":{"label":"Lycos Europe","x":968.4863652478853,"y":1169.6057932962158,"z":186.72059091495962}},{"id":"433","data":{"label":"CD Now","x":778.4997710838297,"y":646.3004560113359,"z":432.95292661593976}},{"id":"434","data":{"label":"Bertelsmann Interactive Studios","x":813.1730304803013,"y":643.1391623075269,"z":106.66076575004469}},{"id":"435","data":{"label":"Bertelsmann mediaSystems","x":1019.6362284023353,"y":642.614928164362,"z":231.9515119179991}},{"id":"436","data":{"label":"Bertelsmann Corporate Information Systems","x":963.8791041056029,"y":622.752709364413,"z":269.1892854758533}},{"id":"437","data":{"label":"mediaWays","x":828.0924124911967,"y":615.6699332074513,"z":609.9879609549693}},{"id":"438","data":{"label":"Pixelpark","x":1033.5480650859795,"y":672.1528396639042,"z":727.0105345461213}},{"id":"439","data":{"label":"Telemedia","x":752.2860702367166,"y":1138.1796556101563,"z":803.7358429078685}},{"id":"440","data":{"label":"Services","x":749.4048483724864,"y":640.7845262419796,"z":826.8094828619006}},{"id":"441","data":{"label":"eps Bertelsmann","x":884.6340702500047,"y":619.1138442935971,"z":550.9101838689838}},{"id":"442","data":{"label":"Mount Media","x":781.5003902355547,"y":616.1598450688416,"z":785.4237070715882}},{"id":"443","data":{"label":"Bertelsmann Music Group (BMG)","x":1380.1564578964144,"y":1061.2369995814424,"z":536.7878440069636}},{"id":"444","data":{"label":"BMG North America","x":1276.0337249670647,"y":1209.6522643897351,"z":298.0282363439435}},{"id":"445","data":{"label":"Arista Records","x":1569.827224446618,"y":701.646101629075,"z":659.2720066675486}},{"id":"446","data":{"label":"RCA","x":1445.728389248,"y":1201.7920110463128,"z":154.4652893333247}},{"id":"447","data":{"label":"RCA Victor","x":1221.3440085256407,"y":1045.9792587579932,"z":280.2722197714713}},{"id":"448","data":{"label":"BMG Classics","x":1232.9549104244888,"y":1145.6129909363463,"z":499.27343423166894}},{"id":"449","data":{"label":"BMG Music Publishing","x":1231.493492521614,"y":1081.5004236868917,"z":729.1012419335949}},{"id":"450","data":{"label":"BMG Music Service","x":1546.9711212095517,"y":1096.0085109095235,"z":666.5841861743291}},{"id":"451","data":{"label":"BMG Special Products","x":1524.5277885075084,"y":1087.1080953847559,"z":115.95774333593955}},{"id":"452","data":{"label":"Windham Hill Group","x":1511.4941550758876,"y":1134.0780499985522,"z":51.821557016155765}},{"id":"453","data":{"label":"Bugjuice","x":1277.9911215344218,"y":1182.8563980825165,"z":505.7993613142757}},{"id":"454","data":{"label":"Peeps Republic","x":1222.3907204000525,"y":1166.455589388147,"z":835.7335747184098}},{"id":"455","data":{"label":"Twang This!","x":1486.744098893305,"y":1175.7490408159538,"z":325.7009818263892}},{"id":"456","data":{"label":"BMG Austria","x":1539.1319003653498,"y":1038.994066801938,"z":735.493493326179}},{"id":"457","data":{"label":"BMG Australia","x":1256.1149593837654,"y":1158.7838250669029,"z":80.32560149182721}},{"id":"458","data":{"label":"BMG Canada","x":1518.2504818817852,"y":1163.6175975806273,"z":876.3647417078902}},{"id":"459","data":{"label":"BMG Germany","x":1382.6977278814738,"y":1221.8811880997855,"z":261.4086522418142}},{"id":"460","data":{"label":"BMG Germany Interactive","x":1487.4688777206538,"y":1201.7412666346281,"z":560.7964010611604}},{"id":"461","data":{"label":"BMG Germany Studios","x":1543.1522920538318,"y":1133.8936635905357,"z":896.0107751689177}},{"id":"462","data":{"label":"BMG Germany Video","x":1321.9380341880678,"y":1223.6686668760176,"z":303.9000217049548}},{"id":"463","data":{"label":"BMG Hongkong","x":1366.132210861917,"y":1243.7822452845394,"z":830.1777225756313}},{"id":"464","data":{"label":"BMG United Kingdom","x":1406.355593999946,"y":1240.5601811971874,"z":990.5058615175116}},{"id":"465","data":{"label":"Sonopress","x":1467.42656380496,"y":1226.6668980766408,"z":266.1955865082486}},{"id":"466","data":{"label":"Cablevision Cable System","x":1468.065515016675,"y":42.76135372337194,"z":829.146436397437}},{"id":"467","data":{"label":"Optimum TV","x":1671.5589710080612,"y":-92.64522113350722,"z":370.0331220709472}},{"id":"468","data":{"label":"Cablevision Lightpath","x":1386.931708246494,"y":-16.5720274018322,"z":228.85032763070456}},{"id":"469","data":{"label":"Optimum Telephone","x":1375.259230023381,"y":-92.34089640221828,"z":36.8291648374155}},{"id":"470","data":{"label":"Optimum Online","x":1439.4452162257985,"y":41.00245277211616,"z":1.1646988350557663}},{"id":"471","data":{"label":"Rainbow Media Holdings","x":1183.8017918347068,"y":599.0559642365934,"z":968.7377209170606}},{"id":"472","data":{"label":"American Movie Classics","x":1276.7914100875514,"y":779.0902963372264,"z":978.1897132520098}},{"id":"473","data":{"label":"","x":4084.5062463118074,"y":593.4443740169736,"z":329.7878922774773}},{"id":"474","data":{"label":"Independent Film Channel","x":1225.0745264162797,"y":806.2644208200118,"z":951.208754217781}},{"id":"475","data":{"label":"MuchMusic","x":1333.8626458129138,"y":291.56478204705763,"z":816.207225951467}},{"id":"476","data":{"label":"News 12","x":1253.3464674266943,"y":465.2547195880925,"z":735.4003932336815}},{"id":"477","data":{"label":"News 12 Long Island","x":1050.6109116444059,"y":510.2990366267568,"z":622.4816981321358}},{"id":"478","data":{"label":"News 12 Connecticut","x":1116.3399163438235,"y":629.7617423732045,"z":773.6042612582048}},{"id":"479","data":{"label":"News 12 Westchester","x":1258.8469869648397,"y":672.7063999602251,"z":182.3765597656457}},{"id":"480","data":{"label":"News 12 New Jersey","x":3234.864608558639,"y":-2302.836297897245,"z":926.5410925935347}},{"id":"481","data":{"label":"News 12 The Bronx","x":1289.9582644613956,"y":665.6015197629058,"z":966.5112741874924}},{"id":"482","data":{"label":"Neighborhood News 12","x":-215.3898579964207,"y":1912.1178960114357,"z":36.05342814675305}},{"id":"483","data":{"label":"Romance Classics","x":1251.3035321051875,"y":793.953312361773,"z":293.53150234074144}},{"id":"484","data":{"label":"extrahelp","x":1153.3598455316878,"y":794.3860333529647,"z":926.1681656486688}},{"id":"485","data":{"label":"Regional Programming Partners","x":1001.1921851149687,"y":886.4229286682439,"z":195.02324974907182}},{"id":"486","data":{"label":"Fox Sports Bay Area","x":616.1898471184168,"y":2243.473225169051,"z":46.97678282279316}},{"id":"487","data":{"label":"Fox Sports Chicago","x":-586.4933986219039,"y":-3886.5475164466443,"z":393.02079075193876}},{"id":"488","data":{"label":"Fox Sports New England","x":-1100.7687995674814,"y":1406.1784340597314,"z":665.5124140754136}},{"id":"489","data":{"label":"Fox Sports New York","x":-2031.1196740469677,"y":723.9088027985708,"z":205.1122161799095}},{"id":"490","data":{"label":"Fox Sports Ohio","x":1592.8775185057584,"y":1546.939830413784,"z":374.8846953476499}},{"id":"491","data":{"label":"Madison Square Garden Network","x":1343.00174596934,"y":880.9474742017028,"z":564.4472814272075}},{"id":"492","data":{"label":"MSG Metro Learning","x":1176.5393870761327,"y":1029.4823399514808,"z":965.7324816757144}},{"id":"493","data":{"label":"MSG Metro Guide","x":1200.5811248700375,"y":1080.5960934695622,"z":401.80242136027357}},{"id":"494","data":{"label":"MSG Metro Traffic and Weather","x":1388.12527912533,"y":1067.087899665119,"z":318.38831324254426}},{"id":"495","data":{"label":"Radio City Productions","x":1662.6794358955594,"y":-138.17811184390666,"z":837.0939349237145}},{"id":"496","data":{"label":"Madison Square Garden Properties","x":4253.603616759099,"y":-2237.6262069484737,"z":920.522144262984}},{"id":"497","data":{"label":"New York Knicks","x":1253.7898090884519,"y":-52.24195099402459,"z":157.2774749653829}},{"id":"498","data":{"label":"New York Rangers","x":1263.2715473973112,"y":-154.68911695993484,"z":46.81632299666627}},{"id":"499","data":{"label":"New York Liberty (WNBA)","x":1659.5278808457888,"y":-242.5207533376897,"z":120.68441386927087}},{"id":"500","data":{"label":"New England Seawolves","x":1486.716751634308,"y":-239.942435349245,"z":87.18431148866568}},{"id":"501","data":{"label":"Hartford Wolf Pack","x":1630.7671008294174,"y":-234.47088631574297,"z":731.195175836584}},{"id":"502","data":{"label":"Radio City Music Hall","x":1547.3634393967932,"y":39.27103993187302,"z":972.5460212334649}},{"id":"8199","data":{"label":"Music.com","x":-275.65873982381845,"y":-3507.2145175818378,"z":113.6757576871803}},{"id":"504","data":{"label":"Nobody Beats the Wiz","x":1394.619498095778,"y":-158.6840154082729,"z":926.0743898091231}},{"id":"505","data":{"label":"EZSeek","x":1493.3301428742361,"y":-259.7732603064205,"z":736.5975736670125}},{"id":" Alabama)","data":{"label":"The News Courier (Athens","x":1736.323263099841,"y":2940.730483704074,"z":262.07722098803464}},{"id":"508","data":{"label":"The Leeds News (Alabama)","x":-1586.7049983102947,"y":-594.203817114766,"z":499.5408656091087}},{"id":"509","data":{"label":"St. Clair News (Alabama)","x":-1318.0845163992649,"y":-237.00820986845702,"z":191.61868746486266}},{"id":"510","data":{"label":"The Cullman Times (Alabama)","x":-1303.8670230745088,"y":-444.61251050280316,"z":32.48420671435004}},{"id":"511","data":{"label":"Harrison Daily Times (Arkansas)","x":-1660.9285634395303,"y":-352.21238804102995,"z":584.2307418592396}},{"id":"512","data":{"label":"Newton County Times (Arkansas)","x":-1703.5208498465158,"y":-447.8730011203197,"z":746.4713020457858}},{"id":"513","data":{"label":"Boca Raton News (Florida)","x":-1475.8005660544563,"y":-636.2439882963918,"z":107.80360599444849}},{"id":" Georgia)","data":{"label":"Busy Shopper (Fort Ogelthorpe","x":4945.784132704648,"y":-642.805269942899,"z":260.7372879252072}},{"id":"516","data":{"label":"Monroe County Register (Georgia)","x":-1742.3721639042742,"y":-404.6736045373009,"z":474.10132012772556}},{"id":"517","data":{"label":"Jackson Progress-Argus (Georgia)","x":-1723.6261645984791,"y":-507.4402145345821,"z":397.27394204734054}},{"id":"519","data":{"label":"The Madisonian (Georgia)","x":-1603.8939494052352,"y":-214.57308774731428,"z":63.779598449120066}},{"id":"522","data":{"label":"The Thomaston Times (Georgia)","x":-1378.2045951835505,"y":-298.9231769753742,"z":541.4098498759874}},{"id":"523","data":{"label":"Americus Times-Recorder (Georgia)","x":-1744.627550395545,"y":-377.29127327032893,"z":25.806619001795596}},{"id":"524","data":{"label":"Cordele Dispatch (Georgia)","x":-1612.3461664019158,"y":-273.9225746313423,"z":389.5447649570094}},{"id":"525","data":{"label":"The (Moultrie) Observer (Georgia)","x":-1549.7533532450268,"y":-156.29391323604796,"z":708.4812929557403}},{"id":"526","data":{"label":"Thomasville Times-Enterprise (Georgia)","x":-1386.2872558554845,"y":-211.3271238558391,"z":524.1299051762736}},{"id":"527","data":{"label":"The Tifton Gazette (Georgia)","x":-1507.2863620490955,"y":-569.3483064899301,"z":840.9005274138461}},{"id":"528","data":{"label":"The Valdosta Daily Times (Georgia)","x":-1719.0557002950197,"y":-304.9439183203576,"z":437.3376661048209}},{"id":" Illinois)","data":{"label":"Commercial-News (Danville","x":-1725.3295956314048,"y":-3759.1137420292584,"z":190.13578077463134}},{"id":"530","data":{"label":"Bourbon News-Mirror (Indiana)","x":-1348.2394340127064,"y":-221.2825365990484,"z":908.4055087670154}},{"id":"531","data":{"label":"Bremen Enquirer (Indiana)","x":-1693.3955016639322,"y":-552.3188902046213,"z":786.5923724594696}},{"id":"532","data":{"label":"Culver Citizen (Indiana)","x":-1561.2579167345496,"y":-214.2240690945482,"z":213.7323726863636}},{"id":"533","data":{"label":"The Jeffersonville Evening News (Indiana)","x":-1476.7839567706596,"y":-602.3826733025935,"z":904.6015853431566}},{"id":" Indiana)","data":{"label":"The Leader & Review (Knox","x":-2462.5696157130496,"y":746.0792118625295,"z":526.2906959365388}},{"id":"535","data":{"label":"Nappanee Advance News (Indiana)","x":-1412.571221734001,"y":-526.3394306825621,"z":57.45439958332766}},{"id":"537","data":{"label":"Washington Times Herald (Indiana)","x":-1611.448852332835,"y":-595.0750477681668,"z":13.812845352400238}},{"id":"540","data":{"label":"The (Anderson) Herald-Bulletin (Indiana)","x":-1295.360024606174,"y":-277.6755531751569,"z":376.58195819633653}},{"id":"541","data":{"label":"Greensburg Daily News (Indiana)","x":-1590.4237933215609,"y":-566.2579460707384,"z":588.9444300768203}},{"id":"542","data":{"label":"The Kokomo Tribune (Indiana)","x":-1662.9721294701744,"y":-223.61642015654252,"z":561.882314020044}},{"id":"543","data":{"label":"The (Lebanon) Reporter (Indiana)","x":-1338.11161895336,"y":-426.7155204591272,"z":443.29695795283453}},{"id":"544","data":{"label":"Linton Daily Citizen (Indiana)","x":-1365.3380840237367,"y":-538.4676264408545,"z":126.77811032441477}},{"id":"546","data":{"label":"Rushville Republican (Indiana)","x":-1639.2618252157797,"y":-283.25511709031616,"z":357.8732062939305}},{"id":"547","data":{"label":"The (Terre Haute) Tribune-Star (Indiana)","x":-1396.6936904655472,"y":-598.9739783340347,"z":821.3430241060499}},{"id":"548","data":{"label":"Alta Advertiser (Iowa)","x":-1475.6073251485918,"y":-241.47458184466268,"z":112.0831470164112}},{"id":"549","data":{"label":"Clinton Herald (Iowa)","x":-1649.2974745031893,"y":-499.7008477720901,"z":833.0534825516564}},{"id":"550","data":{"label":"Oskaloosa Herald (Iowa)","x":-1697.8998454393718,"y":-254.06619532590958,"z":133.2666780474625}},{"id":" Iowa)","data":{"label":"Ad Express & Daily Lowegian (Centerville","x":4863.9909699556665,"y":-1395.755383045111,"z":507.09765709757914}},{"id":"552","data":{"label":"Aurelia Sentinel (Iowa)","x":-1482.0409975087455,"y":-557.7815330485591,"z":471.1788721971948}},{"id":"553","data":{"label":"Cherokee County Daily Times (Iowa)","x":-1677.996649883628,"y":-428.14544776890943,"z":468.3849283726784}},{"id":"554","data":{"label":"Knoxville Journal Express (Iowa)","x":-1469.9429825507536,"y":-192.1884947354356,"z":824.6310783656319}},{"id":"555","data":{"label":"Lake Park News (Iowa)","x":-1690.211942063305,"y":-313.91650277676126,"z":688.8622141741703}},{"id":"556","data":{"label":"Milford Mail (Iowa)","x":-1576.7056380057966,"y":-161.92444091979633,"z":631.2620355021295}},{"id":"557","data":{"label":"Pella Chronicle (Iowa)","x":-1717.333908376719,"y":-275.8049279703937,"z":585.0855726949248}},{"id":"558","data":{"label":"Sioux Rapids Bulletin Press (Iowa)","x":-1412.9775056238414,"y":-164.1560255382774,"z":6.006265924859422}},{"id":"560","data":{"label":"Sprit Lake Beacon (Iowa)","x":-1389.034322227149,"y":-555.6974699616494,"z":80.73908133258278}},{"id":"562","data":{"label":"The Coffeyville Journal (Kansas)","x":-1313.0873780989332,"y":-358.8220955267125,"z":409.2834582046905}},{"id":"563","data":{"label":"Kiowa County Signal (Kansas)","x":2603.4853616226865,"y":-3294.6105448267786,"z":142.71025028764495}},{"id":"564","data":{"label":"Carlisle Mercury (Kentucky)","x":-1694.32572369343,"y":-376.71334294637654,"z":266.0399714176296}},{"id":"565","data":{"label":"Corbin Times Tribune (Kentucky)","x":-1501.905467466006,"y":-605.1582255345074,"z":511.3226037749656}},{"id":" Kentucky)","data":{"label":"The Cumberland Trading Post (Middlesboro","x":542.666666377218,"y":-4857.146437266957,"z":945.0097340476367}},{"id":"567","data":{"label":"Glasgow Daily Times (Kentucky)","x":-1748.7664375012184,"y":-432.5182729199041,"z":404.12200451568634}},{"id":"568","data":{"label":"Grayson Journal Enquirer (Kentucky)","x":-1636.8069580769122,"y":-536.7409199225467,"z":738.2105786304525}},{"id":"569","data":{"label":"Grayson County News Gazette (Kentucky)","x":-1336.0586552710333,"y":-547.9630133187775,"z":819.7680759838839}},{"id":"570","data":{"label":"Greenup News Times (Kentucky)","x":-1329.0418589141075,"y":-490.9217790376306,"z":676.0953367696585}},{"id":"571","data":{"label":"Harlan Daily Enterprise (Kentucky)","x":-1525.5611171208204,"y":-613.8154245137339,"z":772.7523712017093}},{"id":"572","data":{"label":"The Hazard Herald (Kentucky)","x":-1309.3041192802793,"y":-386.59459700200296,"z":341.92636577021204}},{"id":"573","data":{"label":"Hazard Shopper (Kentucky)","x":-1404.1753461055657,"y":-268.4589359567999,"z":935.5742325331476}},{"id":"575","data":{"label":"McCreary County Record (Kentucky)","x":-1573.5362004639614,"y":-644.6543640971813,"z":22.573440246032916}},{"id":"577","data":{"label":"Morehead News (Kentucky)","x":-1694.5714383587506,"y":-504.7205623725822,"z":557.2882168572761}},{"id":"578","data":{"label":"Olive Hill Times (Kentucky)","x":-1564.7651853935713,"y":-239.68212092658996,"z":664.2537272453123}},{"id":"579","data":{"label":"The Floyd County Times (Kentucky)","x":-1342.2615691339763,"y":-373.2223032392394,"z":513.1753273192296}},{"id":"580","data":{"label":"Pratt Tribune (Kentucky)","x":-1521.7752216405802,"y":-157.27319587958937,"z":818.7615837845387}},{"id":"581","data":{"label":"The Richmond Register (Kentucky)","x":-1562.0225034925897,"y":-190.09277127441055,"z":927.5834260972471}},{"id":"585","data":{"label":"Wayne County Outlook (Kentucky)","x":-1566.331200067175,"y":-606.4335335504556,"z":918.4458069268928}},{"id":"586","data":{"label":"The Cumberland Times-News (Maryland)","x":-1684.913590331729,"y":-226.36084854506316,"z":950.7564255284123}},{"id":"587","data":{"label":"Picayune Item (Mississippi)","x":-1506.2488030951579,"y":-142.36526457648142,"z":331.05853792911574}},{"id":"588","data":{"label":"The Poplarville Democrat (Mississippi)","x":-1386.9649738091869,"y":-169.28086553422872,"z":25.022939668260857}},{"id":" Mississippi)","data":{"label":"The Star Herald (Kosciusdo","x":-735.499557966164,"y":-4556.998053410429,"z":883.5856544704221}},{"id":"590","data":{"label":"The Laurel Leader (Mississippi)","x":-1554.5993092616357,"y":-565.6103918545032,"z":323.996748142785}},{"id":"591","data":{"label":"The Newton Record (Mississippi)","x":-1375.2218892205242,"y":-188.75174668098953,"z":763.5398449871828}},{"id":"592","data":{"label":"Wayne County News (Mississippi)","x":-1578.30831809517,"y":-533.1942388178404,"z":482.3954007445128}},{"id":"593","data":{"label":"Chadron Record (Nebraska)","x":-1430.4313587361758,"y":-258.2075360362405,"z":81.04308541529149}},{"id":"594","data":{"label":"Custer County Chief (Nebraska)","x":-1661.4392594621916,"y":-545.668929859843,"z":261.71388348830635}},{"id":"595","data":{"label":"Alamogordo Daily News (New Mexico)","x":-1616.4492681614126,"y":-623.3131659274277,"z":457.8645394470047}},{"id":"596","data":{"label":"Albion Advertiser (New York)","x":-1689.5832066267394,"y":-283.8692038858262,"z":43.51046537824455}},{"id":" New York)","data":{"label":"Union-Sun & Journal (Lockport","x":-2722.9749948188305,"y":84.12048893924839,"z":980.3134821721658}},{"id":"599","data":{"label":"Niagara Gazette (New York)","x":-1620.4000540944344,"y":-246.0158111878318,"z":457.16291892775484}},{"id":"600","data":{"label":"Tonawanda News (New York)","x":-1366.2733751729884,"y":-319.5929191145997,"z":917.8551009615799}},{"id":" North Carolina)","data":{"label":"The Stanly News & Press (Albemarle","x":2722.1365567247285,"y":-4401.012429644014,"z":127.04152774023969}},{"id":"602","data":{"label":"The Apex Herald (North Carolina)","x":-1434.586955027712,"y":-541.4531208441449,"z":78.7968478710246}},{"id":"610","data":{"label":"Garner News (North Carolina)","x":-864.8320015701647,"y":-3456.5587656667676,"z":641.8519695175739}},{"id":"611","data":{"label":"The King Times - News (North Carolina)","x":-1594.2920227324942,"y":-632.3025087161677,"z":669.3803198299173}},{"id":"614","data":{"label":"The Randleman Reporter (North Carolina)","x":-1337.6731033070273,"y":-204.3037847168007,"z":721.3645836595064}},{"id":"619","data":{"label":"Yadkin Valley Shopper (North Carolina)","x":-1527.1591763424647,"y":-643.412245423814,"z":933.4428296456952}},{"id":"620","data":{"label":"Gallipolis Daily Tribune (Ohio)","x":-2029.3893721187192,"y":38.39630940229563,"z":438.01059130805544}},{"id":" Ohio)","data":{"label":"The Daily Sentinel (Pomeroy","x":4424.029824651533,"y":-2633.7330978563045,"z":920.9315129938329}},{"id":"623","data":{"label":"Ada Evening News (Oklahoma)","x":-1629.1377836914648,"y":-579.3955772996214,"z":770.2079260767065}},{"id":"624","data":{"label":"Altus Times (Oklahoma)","x":-1374.4173342923232,"y":-584.1972557158342,"z":913.2792684882716}},{"id":"625","data":{"label":"The Antlers American (Oklahoma)","x":-1641.206707495811,"y":-615.398128576413,"z":704.6647782045475}},{"id":"626","data":{"label":"Blackwell Journal Tribune (Oklahoma)","x":-1290.4133889749123,"y":-470.52130192136246,"z":290.88033357276123}},{"id":"627","data":{"label":"Bristow News - Recorder Citizen (Oklahoma)","x":-1530.1950524611766,"y":-228.95954499984146,"z":440.4041239429766}},{"id":"628","data":{"label":"Chickasha Daily Express (Oklahoma)","x":-1512.1987467248891,"y":-187.65140223621165,"z":847.7419483477997}},{"id":"629","data":{"label":"Claremore Daily Progress (Oklahoma)","x":-1666.164923362669,"y":-265.3446678763321,"z":54.82025803059876}},{"id":"630","data":{"label":"Cushing Daily Citizen (Oklahoma)","x":-1281.5545073278913,"y":-407.4374240315701,"z":652.607493153581}},{"id":"631","data":{"label":"Duncan Banner (Oklahoma)","x":-1319.0437313356874,"y":-308.4665328810697,"z":634.4089561335912}},{"id":"632","data":{"label":"Durant Daily Democrat (Oklahoma)","x":-1435.320914061707,"y":-196.14566230359924,"z":106.60768961553191}},{"id":"633","data":{"label":"Edmond Evening Sun (Oklahoma)","x":-1363.1747868244554,"y":-250.6009266996616,"z":664.69777517337}},{"id":"634","data":{"label":"Enid News & Eagle (Oklahoma)","x":-1589.933918131809,"y":-249.17851193973183,"z":609.3634565411379}},{"id":" Oklahoma)","data":{"label":"Indian Journal (Eufaula","x":-1787.7331587688577,"y":1829.5307483209508,"z":492.55887410039725}},{"id":"636","data":{"label":"Lake Eufaula World (Oklahoma)","x":-1659.117264230714,"y":-597.0348332968242,"z":188.29987469406385}},{"id":"637","data":{"label":"Fort Gibson Times (Oklahoma)","x":-1334.2033429115468,"y":-287.98364045676226,"z":948.7533256422389}},{"id":"638","data":{"label":"Frederick Leader (Oklahoma)","x":-1605.5872932724196,"y":-170.73361684348401,"z":116.48081197354698}},{"id":"639","data":{"label":"Guthrie News Leader (Oklahoma)","x":-1638.2441838756358,"y":-190.98601096341645,"z":97.01895336659084}},{"id":"640","data":{"label":"Guymon Daily Herald (Oklahoma)","x":-1310.270130345442,"y":-414.30513243879705,"z":62.68514182685414}},{"id":"641","data":{"label":"Hartshorne Sun (Oklahoma)","x":-1410.7440080681954,"y":-233.10533482610663,"z":258.95849362319166}},{"id":"642","data":{"label":"Henryetta Daily Free-Lance (Oklahoma)","x":-1670.7241601325507,"y":-383.8426833757012,"z":355.5012984528758}},{"id":"643","data":{"label":"Holdenville Daily News (Oklahoma)","x":-1735.3126082771973,"y":-324.1344442874297,"z":810.2994962373316}},{"id":"644","data":{"label":"Jay American (Oklahoma)","x":-1456.0843843397652,"y":-556.7184507810744,"z":661.4451693491911}},{"id":"646","data":{"label":"Macintosh County Democrat (Oklahoma)","x":-1436.972346901665,"y":-145.46361387508932,"z":531.4532435565071}},{"id":"648","data":{"label":"Mid West City Sun (Oklahoma)","x":-1415.2614682447547,"y":-567.1567346571583,"z":776.7612820042223}},{"id":"650","data":{"label":"Moore American (Oklahoma)","x":-1356.605937891618,"y":-445.18665180981134,"z":165.39697559313637}},{"id":"651","data":{"label":"Nowata Star (Oklahoma)","x":-1630.3037449262695,"y":-213.16814866733876,"z":787.190812195199}},{"id":"652","data":{"label":"The Norman Transcript (Oklahoma)","x":-1676.1531809754968,"y":-522.7078345221289,"z":376.52927809979775}},{"id":"654","data":{"label":"Okmulgee Daily Times (Oklahoma)","x":-1675.463748409751,"y":-480.4615146715714,"z":983.9625740528604}},{"id":"655","data":{"label":"Pauls Valley Daily Democrat (Oklahoma)","x":-1316.283165824928,"y":-522.4744015431424,"z":169.01286727239452}},{"id":"656","data":{"label":"Poteau News & Sun (Oklahoma)","x":-1530.7663714509874,"y":-548.4621430549687,"z":196.50589066219726}},{"id":"658","data":{"label":"Pryor Daily Times (Oklahoma)","x":-1278.3213636560008,"y":-379.59951392948824,"z":364.3904050166258}},{"id":"659","data":{"label":"Sapulpa Daily Herald (Oklahoma)","x":-1703.1719968552238,"y":-341.64640294650417,"z":369.2702285748959}},{"id":"662","data":{"label":"Stilwell Democrat Journal (Oklahoma)","x":-1714.1837534729575,"y":-423.751673013031,"z":937.3273757307796}},{"id":"663","data":{"label":"Tahlequah Daily Press (Oklahoma)","x":-1550.603850176742,"y":-637.5495715484512,"z":207.95053441672584}},{"id":"664","data":{"label":"The Tuttle Times (Oklahoma)","x":-1387.187508419172,"y":-515.2255017019934,"z":705.5551327498462}},{"id":"665","data":{"label":"Waurika News-Democrat (Oklahoma)","x":-1705.461054056002,"y":-474.45337207974353,"z":513.0285038447593}},{"id":"666","data":{"label":"Westville Reporter (Oklahoma)","x":-1720.0636012459859,"y":-363.8518938615962,"z":406.0196058024539}},{"id":"667","data":{"label":"Wewoka Daily Times (Oklahoma)","x":-1505.2703353037407,"y":-212.23053495356908,"z":412.6953543221101}},{"id":"668","data":{"label":"Woodward News (Oklahoma)","x":-1746.5933050703131,"y":-348.72138796399486,"z":458.5135556838116}},{"id":"669","data":{"label":"Corry Evening Journal (Pennsylvania)","x":-1312.5016855018214,"y":-260.8405493094033,"z":50.30883110572182}},{"id":" Pennsylvania)","data":{"label":"Tribune Democrat (Johnstown","x":-1415.1033795697963,"y":-4132.170215724969,"z":580.7468803464088}},{"id":"671","data":{"label":"Kane Republican (Pennsylvania)","x":-1409.0751644538273,"y":-196.16348400707193,"z":162.07643654935987}},{"id":"672","data":{"label":"The Meadville Tribune (Pennsylvania)","x":-1375.411387307173,"y":-230.19757994741485,"z":396.83089789639257}},{"id":"673","data":{"label":"Punxsutawney Sprit (Pennsylvania)","x":-1713.1473862196754,"y":-397.51613286564316,"z":207.23825409155182}},{"id":"674","data":{"label":"Ridgway Record (Pennsylvania)","x":-1348.9011057200696,"y":-399.89193716052796,"z":489.3572544052158}},{"id":"675","data":{"label":"St. Mary's Daily Press (Pennsylvania)","x":-1420.9475095018643,"y":-610.0372504679599,"z":600.3204369438406}},{"id":"676","data":{"label":"Titusville Herald (Pennsylvania)","x":-1279.9284369802933,"y":-435.61256457287163,"z":855.1019719154298}},{"id":"677","data":{"label":"New Castle News (Pennsylvania)","x":-1537.844540038949,"y":-183.57322698090866,"z":783.5857327161004}},{"id":"678","data":{"label":"Warren County Guide (Pennsylvania)","x":-1441.9079413852296,"y":-229.54980022286054,"z":545.4151154822235}},{"id":"679","data":{"label":"The Dispatch - News (South Carolina)","x":-1479.9454489122377,"y":-144.28358232931078,"z":945.7997908585794}},{"id":"680","data":{"label":"Marion Star/Mullins Enterprise (South Carolina)","x":-1737.4051171651968,"y":-480.6807929302886,"z":338.2244329739088}},{"id":"681","data":{"label":"The Newberry Observer (South Carolina)","x":-1324.0565810691191,"y":-462.71931313310324,"z":558.8658059051086}},{"id":" South Carolina)","data":{"label":"The Herald Independent (Winnsboro","x":-630.3518901985044,"y":2520.176999610904,"z":71.95577581280665}},{"id":"683","data":{"label":"Hot Springs Star (South Dakota)","x":-1590.4518009631431,"y":-192.1453733935814,"z":211.89328062706747}},{"id":" Tennessee)","data":{"label":"Clarborne Progress (Tazewall","x":-2272.353011891919,"y":1011.0966977575972,"z":5.604522874454121}},{"id":"685","data":{"label":"Crossville Chronicle (Tennessee)","x":-1347.6589176527746,"y":-514.013830354701,"z":397.9495637932486}},{"id":"686","data":{"label":"Macon County Times (Tennessee)","x":-1354.6614732979822,"y":-566.5300363127535,"z":853.8205757943009}},{"id":"687","data":{"label":"The Millington Star (Tennessee)","x":-1384.1342951091553,"y":-491.35102893144085,"z":306.0390880186048}},{"id":"688","data":{"label":"Athens Daily Review (Texas)","x":-1501.9205321754146,"y":-640.2521769405894,"z":992.1677602498098}},{"id":"689","data":{"label":"Big Spring Herald (Texas)","x":-1651.0446850640449,"y":-567.0215769638107,"z":431.5640767390887}},{"id":"690","data":{"label":"Bonham Daily Favorite (Texas)","x":-1647.3560507645948,"y":-240.20811202258028,"z":460.06976359631915}},{"id":"691","data":{"label":"Borger News-Herald (Texas)","x":-1668.764768640283,"y":-326.8464873006651,"z":265.80028222573327}},{"id":" Texas)","data":{"label":"Cedar Creek Pilot (Gun Barrel City","x":-2996.146943330504,"y":-737.5530717367747,"z":604.4811808733557}},{"id":"693","data":{"label":"Cleburne Times Review (Texas)","x":-1282.7842929891658,"y":-300.0412572137975,"z":673.6898956635602}},{"id":"694","data":{"label":"Commerce Journal (Texas)","x":-1358.966115172006,"y":-473.74177186280394,"z":509.87502388039417}},{"id":"695","data":{"label":"Corsicana Daily Sun (Texas)","x":-1736.5338874917325,"y":-454.4424331749615,"z":669.7425271958355}},{"id":"697","data":{"label":"Del Rio News Herald (Texas)","x":-1656.1150476931425,"y":-302.8025627904444,"z":739.7670245597936}},{"id":"698","data":{"label":"Gainesville Daily Register (Texas)","x":-1309.2728134483002,"y":-334.3756964370177,"z":737.9520735685668}},{"id":"700","data":{"label":"Honey Grove Signal Citizen (Texas)","x":-1711.1364440608713,"y":-532.0543517910646,"z":707.7295429316022}},{"id":"701","data":{"label":"The Huntsville Item (Texas)","x":-1485.633493229226,"y":-171.05334151314128,"z":833.9439466270966}},{"id":"702","data":{"label":"Jacksonville Daily Progress (Texas)","x":-1608.8999498717942,"y":-540.0683282815307,"z":379.611016015778}},{"id":"703","data":{"label":"Kilgor News Herald (Texas)","x":-1456.5477848718933,"y":-155.35060465254446,"z":969.8714372249033}},{"id":"704","data":{"label":"Mexia Daily News (Texas)","x":-1376.4617106879218,"y":-273.9180798505231,"z":495.22398767656625}},{"id":"705","data":{"label":"Mineral Wells Index (Texas)","x":-1680.797591483847,"y":-576.7450477185967,"z":984.9957798859135}},{"id":"706","data":{"label":"Orange Leader (Texas)","x":-1431.546343312374,"y":-586.4240995823866,"z":517.1399147026851}},{"id":"707","data":{"label":"Palo Pinto County Shopper (Texas)","x":-1469.343107333866,"y":-215.5369799957043,"z":313.6668391664632}},{"id":"708","data":{"label":"Palestine Herald Press (Texas)","x":-1450.0419775432374,"y":-624.3705178906566,"z":761.222373199661}},{"id":"709","data":{"label":"Port Arthur News (Texas)","x":-1340.578504913268,"y":-261.8972108895241,"z":383.9478422181548}},{"id":"710","data":{"label":"Sweetwater Reporter (Texas)","x":-1301.4095158082391,"y":-496.99242664809026,"z":587.2636096385686}},{"id":"711","data":{"label":"Parker County Shopper (Texas)","x":-1645.6564150063832,"y":-468.46247579803185,"z":817.1658689047796}},{"id":"712","data":{"label":"The Weatherford Democrat (Texas)","x":-1342.476560910855,"y":-333.7483389387862,"z":120.72805760370686}},{"id":" West Virginia)","data":{"label":"Times West Virginian (Fairmont","x":892.5445838086721,"y":2860.0120832307985,"z":964.9212625166923}},{"id":"714","data":{"label":"The Logan Banner (West Virginia)","x":-1276.9893163040274,"y":-352.60389646635485,"z":656.5695116179919}},{"id":"716","data":{"label":"Point Pleasant Register (West Virginia)","x":2197.7438340747303,"y":2215.5747034544847,"z":120.98947256323677}},{"id":"717","data":{"label":"The Jackson Star News (West Virginia)","x":-1284.6879475265537,"y":-324.4196453079985,"z":130.18042954718356}},{"id":"719","data":{"label":"The (Beckley) Register-Herald (West Virginia)","x":-1614.9204492599551,"y":-504.31768890485,"z":903.3542689440832}},{"id":"720","data":{"label":"Bluefield Daily Telegraph (West Virginia)","x":-1542.0759118386798,"y":-597.2266240524013,"z":718.3491522234908}},{"id":" Alaska)","data":{"label":"KASH-FM (Anchorage","x":2338.736405837102,"y":2682.329492410303,"z":672.6529582325669}},{"id":" Arizona)","data":{"label":"KESZ-FM (Phoenix","x":1285.2009018808458,"y":-4816.787753566776,"z":284.2419534342218}},{"id":" Arkansas)","data":{"label":"KDDK-FM (Little Rock","x":1646.6997829184847,"y":2707.598063271261,"z":685.1212138181469}},{"id":" California)","data":{"label":"KEZY-AM (Anaheim","x":4443.785833888933,"y":721.1395710652323,"z":100.21710304077791}},{"id":" Colorado)","data":{"label":"KBCO-FM (Denver","x":-512.9543380999085,"y":2581.317554621093,"z":835.1556523981627}},{"id":" Connecticut)","data":{"label":"WAVZ-AM (New Haven","x":4617.850942409685,"y":-2534.597734331038,"z":345.5142472392372}},{"id":" Florida)","data":{"label":"WGNE-FM (Daytona Beach","x":2653.5658444558176,"y":-4605.530269879413,"z":465.29924619746635}},{"id":"847","data":{"label":"WAIL-FM (Florida Keys)","x":-514.1443765755917,"y":-1992.9566791915368,"z":595.907058514144}},{"id":"848","data":{"label":"WAVK-FM (Florida Keys)","x":-568.3117819562008,"y":-1976.5907556791344,"z":490.18926309867305}},{"id":"849","data":{"label":"WCTH-FM (Florida Keys)","x":-732.9905097277779,"y":-2194.6102816204025,"z":561.3686341202883}},{"id":"850","data":{"label":"WEOW-FM (Florida Keys)","x":-529.2635984346553,"y":-2239.372911879438,"z":803.6570844502704}},{"id":"851","data":{"label":"WFKZ-FM (Florida Keys)","x":-736.9022009134756,"y":-2158.7182766678347,"z":915.9701654944483}},{"id":"852","data":{"label":"WKEZ-AM/FM (Florida Keys)","x":-714.7506249060739,"y":-2219.081497134589,"z":559.9959681759091}},{"id":"853","data":{"label":"WKWF-AM (Florida Keys)","x":-636.6251033688395,"y":-2258.55016242264,"z":941.1477548016876}},{"id":" Idaho)","data":{"label":"KARO-FM (Boise","x":3268.0334550463376,"y":2289.494049582274,"z":759.5942904009752}},{"id":" Louisiana)","data":{"label":"KKND-FM (New Orleans","x":3447.495188562715,"y":2060.622144218265,"z":881.6536456285926}},{"id":" Maryland)","data":{"label":"WCAO-AM (Baltimore","x":-2424.3505393993473,"y":987.3294852595773,"z":963.5939399864715}},{"id":" Massachusetts)","data":{"label":"WSRS-FM (Worcester","x":1371.4654758169054,"y":2761.68575162209,"z":146.81508511374264}},{"id":" Michigan)","data":{"label":"WBCT-AM (Grand Rapids","x":3255.3686946411544,"y":2174.0725865161403,"z":914.1770867796606}},{"id":" Missisppi)","data":{"label":"WJMI-FM (Jackson","x":-2844.428823176051,"y":15.105277160774676,"z":478.6632904358934}},{"id":" Missouri)","data":{"label":"KATZ-AM/FM (St. Louis","x":1456.8370493132861,"y":-4920.574957366954,"z":558.4672831352113}},{"id":" Nevada)","data":{"label":"KFMS-FM (Las Vegas","x":-2080.053021603035,"y":1248.2304578924231,"z":509.24211281347897}},{"id":" New Mexico)","data":{"label":"KZRR-FM (Albuquerque","x":2371.1005923002795,"y":-4602.477482967455,"z":597.806881014318}},{"id":" North Dakota)","data":{"label":"KFYR-AM (Bismarck","x":4919.165421303678,"y":-566.4663833600089,"z":711.0179277681756}},{"id":" Oregon)","data":{"label":"KLOO-AM (Albany","x":-1749.7122785083434,"y":1778.8173688366023,"z":609.9383473199873}},{"id":" Rhode Island)","data":{"label":"WWBB-FM (Providence","x":3403.16252592156,"y":2120.3068942058417,"z":670.9273466264991}},{"id":" Utah)","data":{"label":"KALL-AM (Salt Lake City","x":633.6140087536414,"y":-4934.825445172921,"z":368.1144015166311}},{"id":" Virginia)","data":{"label":"WCYK-FM (Charlottesville","x":4385.012012559374,"y":-3074.686087929502,"z":104.07339751268464}},{"id":" Washington)","data":{"label":"KELA-AM (Centralia","x":-2710.9751284068393,"y":-1489.4953141009064,"z":40.303624601220946}},{"id":" Wisconsin)","data":{"label":"WKKV-FM (Milwaukee","x":1733.1693604437896,"y":2672.03972017878,"z":70.17684029926285}},{"id":" Wyoming)","data":{"label":"KRVK-FM (Casper","x":1568.2030383793708,"y":2637.6178730244965,"z":91.70139435441138}},{"id":"1243","data":{"label":"Hispanic Broadcasting","x":-165.2676695477021,"y":-1826.6487032062473,"z":347.86169208353977}},{"id":"1244","data":{"label":"Clear Channel International","x":-447.51920407283615,"y":-2124.801065121056,"z":940.2629369838238}},{"id":"Arizona)","data":{"label":"KTTU TV (Tucson","x":2257.674264279274,"y":-4292.037164455391,"z":480.68729382337017}},{"id":" Kansas)","data":{"label":"KSAS TV (Wichita","x":-1636.1817523174466,"y":-3739.545375171246,"z":120.34959600030959}},{"id":" Minnesota)","data":{"label":"WFTC (TV Minneapolis","x":2297.2961673131376,"y":-4650.663384119463,"z":259.92097300233064}},{"id":"1265","data":{"label":"Adshel Eller Media","x":-487.79292758408064,"y":-1990.5848516783308,"z":371.5953842726898}},{"id":"1266","data":{"label":"Katz Media Group","x":-761.9215092873906,"y":-2242.3158115544397,"z":158.76486387799727}},{"id":"1267","data":{"label":"SFX Entertainment","x":-824.3900544048824,"y":-2179.8177667775035,"z":890.7463045397357}},{"id":"1268","data":{"label":"Comcast Cable","x":-1908.6615753515093,"y":548.8833717024363,"z":916.2956654056374}},{"id":"1269","data":{"label":"Comcast Digital TV","x":600.5751393462465,"y":-692.233240028283,"z":187.51552634906244}},{"id":"1270","data":{"label":"Garden State Cablevision","x":601.3600219370956,"y":-715.271374883615,"z":228.64125673919978}},{"id":"1271","data":{"label":"","x":154.90193041858402,"y":-4077.7995264310334,"z":251.73393402764344}},{"id":"1272","data":{"label":"","x":3334.5630184510064,"y":-2097.5118482384196,"z":19.810616933531477}},{"id":"1273","data":{"label":"","x":-2364.9825136031895,"y":-271.42236342144406,"z":771.3701129456314}},{"id":"1274","data":{"label":"Comcast SportsNet","x":576.1435433684128,"y":-768.7894755200869,"z":994.5357138991078}},{"id":"1275","data":{"label":"Home Team Sports","x":627.3242950993736,"y":-662.3479441578902,"z":321.80683757283913}},{"id":"1276","data":{"label":"Midwest Sports Channel","x":623.3086542075116,"y":-875.3001767268397,"z":106.29734015323078}},{"id":"1277","data":{"label":"CN8","x":573.8271433776958,"y":-733.4538623455701,"z":753.9987006776414}},{"id":"1278","data":{"label":"The Golf Channel","x":802.6013254198606,"y":-421.1764691373919,"z":725.8779275635843}},{"id":"1279","data":{"label":"The Speedvision Network","x":-2011.7807315669995,"y":-1834.0908605401041,"z":150.55970771576565}},{"id":"1280","data":{"label":"The Outdoor Life Network","x":2791.767843770336,"y":1831.63337390573,"z":721.2507910946724}},{"id":"1281","data":{"label":"Sunshine Network","x":747.6571595318915,"y":-958.1674314013685,"z":276.7244395796984}},{"id":"1282","data":{"label":"Viewer's Choice","x":667.9067951531938,"y":-644.057892784911,"z":265.22263771280774}},{"id":"1283","data":{"label":"Philadelphia 76ers","x":548.9797362935246,"y":-867.9177602987074,"z":687.9069456633797}},{"id":"1284","data":{"label":"Philadelphia Flyers","x":484.45056321432503,"y":-725.3845278045983,"z":743.6926726328987}},{"id":"1285","data":{"label":"Philadelphia Phantoms","x":600.8117119050976,"y":-659.8473262977705,"z":313.3136473140492}},{"id":"1286","data":{"label":"Comcast-Spectacor","x":374.7664698511403,"y":-798.8229509920011,"z":781.2175944752744}},{"id":"1287","data":{"label":"FirstUnion Center","x":260.65589112495627,"y":-956.7309912712035,"z":799.8609966803765}},{"id":"1288","data":{"label":"","x":-796.5262549508038,"y":-3514.4520237754787,"z":922.8759889952904}},{"id":"1289","data":{"label":"Cox Cable","x":862.3599592135674,"y":-1085.5410718397006,"z":892.0411788257534}},{"id":"1290","data":{"label":"Cox Digital TV","x":946.1369324381067,"y":-1091.5137878081841,"z":816.5386733999167}},{"id":"1291","data":{"label":"TWC Cable Partners","x":781.7730121811019,"y":-859.7086913601979,"z":645.6344798720402}},{"id":"1292","data":{"label":"","x":-9.870254929148814,"y":1895.0668140019006,"z":678.9512455277784}},{"id":"1293","data":{"label":"National Cable Communications","x":781.1391211682849,"y":-1028.8965416236806,"z":677.1001395856734}},{"id":"1294","data":{"label":"Sprint Spectrum","x":670.948154404437,"y":-1296.0222083475924,"z":92.6784384648065}},{"id":"1295","data":{"label":"Cox Communications PCS","x":844.6063206076205,"y":-1107.4284299432402,"z":678.6235679568493}},{"id":"1296","data":{"label":"Phillie Co","x":764.7669254367411,"y":-996.5320898041282,"z":268.4857839351964}},{"id":"1297","data":{"label":"Teleport Communications Group","x":978.8300526346111,"y":-1206.3250082685358,"z":792.3528122899697}},{"id":"1298","data":{"label":"Cox Digital Telephone","x":1032.8242759890409,"y":-851.4980886813173,"z":846.4818405329173}},{"id":"1299","data":{"label":"Cox Fibernet","x":918.2955766153873,"y":-815.859606634107,"z":161.17885483191395}},{"id":"1300","data":{"label":"Syntellect","x":820.0246238084146,"y":-822.1915378884878,"z":331.3588672965251}},{"id":"1301","data":{"label":"","x":1128.8748669348906,"y":-4359.93116773213,"z":182.3642641533727}},{"id":"1302","data":{"label":"","x":1138.2064796332188,"y":2453.8440098815818,"z":965.2256431977104}},{"id":"1303","data":{"label":"","x":896.4967779044773,"y":-4406.969599049349,"z":35.28890793443629}},{"id":"1304","data":{"label":"","x":4224.821508726374,"y":-2309.2798879819525,"z":510.1125820209893}},{"id":"1305","data":{"label":"PPVN Holding","x":3602.264948407379,"y":-2072.2934876352224,"z":219.49299596413007}},{"id":"1306","data":{"label":"Digital Cable Radio Associates","x":89.63809738169311,"y":2103.2659152891065,"z":936.927477589353}},{"id":"1307","data":{"label":"","x":3430.8193452110436,"y":-140.37259669748346,"z":750.793229718256}},{"id":"1308","data":{"label":"Product Information Network","x":903.3105546086722,"y":-793.7826656392299,"z":369.5798448558891}},{"id":"1309","data":{"label":"","x":4262.324913576002,"y":-1762.362511100207,"z":724.9376956515316}},{"id":"1310","data":{"label":"","x":3343.7497011004634,"y":-3481.945440193177,"z":860.3654183859209}},{"id":"1311","data":{"label":"European Channel Management","x":-2393.9944736442485,"y":-1573.1578780805803,"z":386.0369953436937}},{"id":"1312","data":{"label":"GEMS Television","x":809.1319664718967,"y":-1079.0503124410816,"z":986.0934330563088}},{"id":"1313","data":{"label":"","x":-2262.330480162026,"y":-2011.1208129440179,"z":520.3570255937237}},{"id":"1314","data":{"label":"Cox Interactive Media","x":537.783801574185,"y":-972.4868609357422,"z":635.0225041795277}},{"id":"1315","data":{"label":"MP3.com","x":343.4437343738268,"y":-1181.7865658105375,"z":8.554952958435447}},{"id":"1316","data":{"label":"Talk City","x":1926.9761047930488,"y":-1201.909627401691,"z":667.4581814998512}},{"id":"1317","data":{"label":"Cox Newspapers","x":-398.7135118186179,"y":571.4308562242159,"z":529.0060264569997}},{"id":"1318","data":{"label":"The Atlanta Journal-Constitution","x":-445.8479007664341,"y":722.0275501435253,"z":881.6489931229167}},{"id":"1319","data":{"label":"Austin American -Statesman","x":-476.2958453150027,"y":432.88349257207756,"z":463.1916360463513}},{"id":" NC)","data":{"label":"The Daily Advance (Elizabeth City","x":2413.2970786772694,"y":2566.998474161891,"z":254.69026997450038}},{"id":" CO)","data":{"label":"The Daily Sentinel (Grand Junction","x":2846.1701285711706,"y":2248.190476173577,"z":54.55913876237317}},{"id":"1324","data":{"label":"Dayton Daily News","x":-427.02293953079106,"y":407.1849523122364,"z":79.96682484444074}},{"id":"1325","data":{"label":"Longview News-Journal (TX)","x":-349.10114181916697,"y":713.1386489446004,"z":135.53300278252632}},{"id":"1326","data":{"label":"The Lufkin Daily News (TX)","x":-440.84053741559273,"y":746.2461557674051,"z":639.336059512761}},{"id":"1327","data":{"label":"The Marshall News Messenger (TX)","x":-529.4505248729793,"y":668.5500154996662,"z":424.03019847108305}},{"id":"1328","data":{"label":"Palm Beach Daily News","x":-561.9715019038117,"y":598.7664815455519,"z":234.25730198455398}},{"id":"1329","data":{"label":"The Palm Beach Post","x":-500.4737341973314,"y":704.7905476312244,"z":271.78705618742737}},{"id":"1330","data":{"label":"Rocky Mount Telegram (NC)","x":-520.5156060002437,"y":465.2831862746716,"z":880.3977514801273}},{"id":"1331","data":{"label":"Springfield News-Sun (OH)","x":-320.8007729254814,"y":715.9181162865125,"z":389.6760676069904}},{"id":"1332","data":{"label":"Waco Tribune-Herald (TX)","x":-479.4241289032311,"y":726.8973722184764,"z":303.77373816040443}},{"id":"1333","data":{"label":"Cox News Service","x":-97.48644464190056,"y":458.79214112334193,"z":37.68338618166411}},{"id":"1334","data":{"label":"Florida Pennysaver (West Palm Beach)","x":-288.71394649393187,"y":461.59411523951803,"z":637.5406865635978}},{"id":" OH)","data":{"label":"Tri County Shoppers News (Springfield","x":4530.036668900937,"y":-2782.7031471699324,"z":573.5808872962349}},{"id":"1343","data":{"label":"The Farmville Enterprise (NC)","x":-196.3025211579975,"y":593.9341518152687,"z":562.785343240223}},{"id":"1348","data":{"label":"Cox Broadcasting","x":-237.53955458125392,"y":332.26151811040654,"z":959.723230198361}},{"id":" GA)","data":{"label":"WSB TV (Atlanta","x":2699.1609954587966,"y":2363.452959095607,"z":0.6728645220344109}},{"id":" FL)","data":{"label":"WFTV (Orlando","x":-544.4817931350844,"y":2381.1297021736254,"z":481.6613862387906}},{"id":" PA)","data":{"label":"WPXI TV (Pittsburgh","x":-1475.2771405858784,"y":-4080.243556035507,"z":772.0340186606975}},{"id":" NV)","data":{"label":"KAME TV (Reno","x":4471.792645869432,"y":-2839.731868569531,"z":51.896298135718055}},{"id":"1357","data":{"label":"KRXI TV (Reno)","x":-396.56604209673833,"y":348.15148160021454,"z":557.9053490647601}},{"id":" WA)","data":{"label":"KIRO TV (Seattle","x":-2987.764605352663,"y":-600.2754337140286,"z":325.89516833546116}},{"id":"1360","data":{"label":"","x":-1938.8393162915418,"y":657.9782695690137,"z":543.6696217270713}},{"id":"1361","data":{"label":"Rysher Entertainment","x":-410.2434276614631,"y":296.16364495739253,"z":29.570802961961018}},{"id":"1362","data":{"label":"Cox Radio","x":-72.79891552027539,"y":369.4327298600465,"z":270.44138756172373}},{"id":" AL)","data":{"label":"WZZK-FM (Birmingham","x":95.00186766360821,"y":2764.2848180137253,"z":512.4251551537562}},{"id":" OK)","data":{"label":"WHIO-AM (Dayton","x":-240.96025056777307,"y":2515.455599143057,"z":721.5848558922015}},{"id":" CT)","data":{"label":"WEZN-FM (Bridgeport","x":2944.0761658678002,"y":-4356.715988800577,"z":101.1157196283452}},{"id":"1415","data":{"label":"Manheim Auctions","x":-39.84614529830105,"y":413.80518099179244,"z":919.6825372845332}},{"id":"1416","data":{"label":"Walt Disney Company Book Publishing","x":288.4620917944626,"y":-96.99026351593875,"z":390.2190408988737}},{"id":"1417","data":{"label":"Hyperion Books","x":127.5795568816502,"y":211.31525557428904,"z":703.9509101947601}},{"id":"1418","data":{"label":"Miramax Books","x":219.11329242131342,"y":-219.48644848207368,"z":967.1006352887648}},{"id":"1419","data":{"label":"ABC Publishing Group","x":-53.25068038763902,"y":-130.45740434959407,"z":340.4497003691629}},{"id":"1420","data":{"label":"Disney Publishing","x":247.588950624905,"y":-203.0498460132294,"z":532.362480176562}},{"id":"1421","data":{"label":"Diversified Publications Group","x":305.39625657539773,"y":-8.871496418390961,"z":773.6271738019684}},{"id":"1422","data":{"label":"Financial Services and Medical Group","x":298.36809525855415,"y":-31.17516994858488,"z":861.4049641212796}},{"id":"1423","data":{"label":"Miller Publishing","x":286.91004897492076,"y":-57.78056088195717,"z":898.0277774031691}},{"id":"1424","data":{"label":"Automotive Industries","x":-79.86800724441764,"y":105.31198905081146,"z":935.4004664753004}},{"id":"1425","data":{"label":"Biography","x":-1733.9350209064594,"y":1156.2525956958552,"z":763.1242022896223}},{"id":"1426","data":{"label":"Discover","x":-39.57512970138305,"y":-158.0984662210185,"z":455.9538776867289}},{"id":"1427","data":{"label":"Disney Adventures","x":91.33147084316533,"y":-254.11494236678755,"z":214.22058399558196}},{"id":"1428","data":{"label":"Disney Magazine","x":311.4559412827084,"y":19.796574433759815,"z":111.6128410153876}},{"id":"1429","data":{"label":"ECN News","x":-0.38797743660688866,"y":-223.96659678807737,"z":372.5804635996215}},{"id":"1430","data":{"label":"ESPN Magazine","x":4252.958985854335,"y":-2068.582740178864,"z":378.4881993624223}},{"id":"1431","data":{"label":"Family Fun","x":267.0238793207932,"y":161.76235671266295,"z":195.4251590696672}},{"id":"1432","data":{"label":"Family PC","x":56.2787017791934,"y":193.43261179648925,"z":633.4687400536776}},{"id":"1433","data":{"label":"Institutional Investor","x":155.9401296698411,"y":-255.39124881248154,"z":232.3629461753325}},{"id":"1434","data":{"label":"","x":1627.7628237745712,"y":2299.8072173279725,"z":779.7235691916218}},{"id":"1435","data":{"label":"JCK","x":36.67361823562169,"y":-246.35497897180903,"z":485.5908754543965}},{"id":"1436","data":{"label":"Kentucky Prairie Farmer","x":66.47361331362436,"y":-259.66056495580233,"z":343.73473197589675}},{"id":"1437","data":{"label":"Kodin","x":119.98469873089016,"y":-258.9727013300517,"z":296.5488882544336}},{"id":"1438","data":{"label":"Los Angeles","x":-32.55578131756829,"y":-205.68506498439183,"z":705.8808396701176}},{"id":"1439","data":{"label":"Multichannel News","x":713.6679105156163,"y":295.3108694884395,"z":993.5262208054501}},{"id":"1440","data":{"label":"Talk","x":162.8766718779989,"y":186.9949993657574,"z":50.72406219416736}},{"id":"1441","data":{"label":"Top Famille","x":293.29113967397006,"y":64.89044837020083,"z":298.22167705382174}},{"id":"1442","data":{"label":"Video Business","x":310.0555487763495,"y":84.31316005797544,"z":557.777620121912}},{"id":"1443","data":{"label":"Quality","x":289.85734093061,"y":-76.43519784194814,"z":4.340620505587589}},{"id":" MI)","data":{"label":"County Press (Lapeer","x":-2815.415952745302,"y":-2135.0587748397015,"z":17.24571536127595}},{"id":"1446","data":{"label":"Narragansett Times","x":220.9163076944492,"y":-155.0989857272607,"z":372.9380788547345}},{"id":"1447","data":{"label":"St. Louis Daily Record","x":123.03351561564887,"y":-171.68442752713963,"z":161.35459503184424}},{"id":"1448","data":{"label":"Penny Power","x":199.0731663953111,"y":140.78427357072906,"z":262.0961913759257}},{"id":"1449","data":{"label":"Sutton Industries","x":286.49212117156185,"y":143.75387615468298,"z":169.51218303284455}},{"id":"1450","data":{"label":"Disney Broadcasting","x":3914.182343480087,"y":-2905.1068939647507,"z":900.6964633766028}},{"id":"1451","data":{"label":"ABC Television Network","x":290.1267829590488,"y":-129.5838715721693,"z":494.41715487651703}},{"id":"1452","data":{"label":"WLS TV - Chicago","x":198.60233062294355,"y":-239.1380325493974,"z":323.3139267011604}},{"id":"1453","data":{"label":"WJRT TV - Flint","x":114.58882799776893,"y":125.93516138197174,"z":13.826392526614217}},{"id":"1454","data":{"label":"KFSN TV - Fresno","x":262.05225852078956,"y":-142.12998815134506,"z":884.8889711201624}},{"id":"1455","data":{"label":"KTRK TV - Houston","x":236.5829826705226,"y":75.46438986036992,"z":53.60530909699679}},{"id":"1456","data":{"label":"KABC TV - Los Angeles","x":294.51909772456065,"y":37.60158410990243,"z":800.5696701644878}},{"id":"1457","data":{"label":"WABC TV - New York City","x":275.21387651201394,"y":-170.60647696297474,"z":53.084498059438715}},{"id":"1458","data":{"label":"WPVI TV - Philadelphia","x":31.946070455191148,"y":115.11319904107677,"z":771.901225807742}},{"id":"1459","data":{"label":"WTVD TV - Raleigh - Durham","x":228.73624204429234,"y":200.3502448354493,"z":89.42936310097593}},{"id":"1460","data":{"label":"KGO TV - San Francisco","x":252.05748126585058,"y":183.63593800434137,"z":766.8699134055265}},{"id":"1461","data":{"label":"WTVG TV - Toledo","x":300.3722472173631,"y":116.73932023680572,"z":92.99931185504873}},{"id":"1462","data":{"label":"WKHX - Atlanta","x":30.2735140712025,"y":-128.58834657348507,"z":522.2270890073926}},{"id":"1463","data":{"label":"WYAY - Atlanta","x":266.869908253223,"y":62.090820343738415,"z":527.2259807795767}},{"id":"1464","data":{"label":"WDWD - Atlanta","x":209.205814704751,"y":191.08354554779726,"z":483.81155383680107}},{"id":"1465","data":{"label":"WMVP - Chicago","x":143.96022276210806,"y":-209.95619945519502,"z":876.4155048409094}},{"id":"1466","data":{"label":"WLS - Chicago","x":266.34956538314236,"y":126.30852443049207,"z":556.6039187724747}},{"id":"1467","data":{"label":"WXCD - Chicago","x":134.64743502844067,"y":181.85460397181942,"z":509.94800621010205}},{"id":"1468","data":{"label":"WBAP - Dallas","x":216.99350436405211,"y":-190.0192651586367,"z":199.63279363093855}},{"id":"1469","data":{"label":"KSCS - Dallas","x":187.903552880191,"y":215.0940208764996,"z":937.9407472668779}},{"id":"1470","data":{"label":"WDRQ - Detroit","x":158.19656573027896,"y":211.51461092297814,"z":203.0569245037599}},{"id":"1471","data":{"label":"WJR - Detroit","x":105.21697221940849,"y":191.59193359392884,"z":6.532640332957085}},{"id":"1472","data":{"label":"WPLT - Detroit","x":250.94395588080624,"y":-174.57759946718306,"z":409.4945613818337}},{"id":"1473","data":{"label":"KABC - Los Angeles","x":142.26383677743797,"y":-231.5233513711346,"z":17.799428646023905}},{"id":"1474","data":{"label":"KLOS - Los Angeles","x":-27.98718673550502,"y":69.73817633412,"z":262.09547336228025}},{"id":"1475","data":{"label":"KTZN - Los Angeles","x":-55.731255212671385,"y":-67.9150756591007,"z":569.6372791529494}},{"id":"1476","data":{"label":"KQRS - Minneapolis - St. Paul","x":14.039900138227495,"y":-139.84387720166433,"z":499.6102662645676}},{"id":"1477","data":{"label":"KXXR - Minneapolis - St. Paul","x":175.8490105644787,"y":-226.3783196367558,"z":693.2287659779865}},{"id":"1478","data":{"label":"KDIZ - Minneapolis - St. Paul","x":183.08214555560335,"y":-189.52416598447326,"z":818.1868940115515}},{"id":"1479","data":{"label":"KZNR - Minneapolis - St. Paul","x":-32.982168570854355,"y":96.3266007163038,"z":490.3309482718223}},{"id":"1480","data":{"label":"KZNT - Minneapolis - St. Paul","x":106.99917128179641,"y":-225.34370889295587,"z":598.0732692003417}},{"id":"1481","data":{"label":"KZNZ - Minneapolis - St. Paul","x":-29.828796238668474,"y":31.89845575844629,"z":975.5795137660215}},{"id":"1482","data":{"label":"WABC - New York City","x":25.317319918124213,"y":191.81606436030233,"z":532.6471221624154}},{"id":"1483","data":{"label":"WPLJ - New York City","x":-21.412197947684035,"y":133.75939859044502,"z":568.8861460778794}},{"id":"1484","data":{"label":"KGO - San Francisco","x":-35.44099296663171,"y":-102.98627290511922,"z":599.9181868632759}},{"id":"1485","data":{"label":"KSFO - San Francisco","x":-54.05299013679496,"y":49.195279229756125,"z":571.2562324686543}},{"id":"1486","data":{"label":"WMAL - Washington DC","x":-48.71697536533202,"y":118.46085666376803,"z":924.9337796965451}},{"id":"1487","data":{"label":"WJZW - Washington DC","x":30.082168586834086,"y":169.3305698308004,"z":483.6350703736918}},{"id":"1488","data":{"label":"WRQX - Washington DC","x":-4.927999849433945,"y":178.4690137397156,"z":459.4783646314482}},{"id":"1489","data":{"label":"ESPN Radio","x":57.1059472610923,"y":-227.30699684494175,"z":132.6271517245965}},{"id":"1490","data":{"label":"The Disney Channel","x":-69.40085324710299,"y":-16.12347071235581,"z":769.4411951410316}},{"id":"1491","data":{"label":"Toon Disney","x":-17.598145494803703,"y":-179.93635066517527,"z":951.1636600196302}},{"id":"1492","data":{"label":"ESPN","x":-217.2153172471444,"y":-497.67154636935265,"z":911.0312306950397}},{"id":"1493","data":{"label":"A&E Television (Arts & Entertainment)","x":85.9782203642817,"y":335.22200619356954,"z":408.89745341641805}},{"id":"1494","data":{"label":"The History Channel","x":-908.2365071712084,"y":1894.79752009609,"z":763.7564251510655}},{"id":"1495","data":{"label":"Lifetime Television","x":238.81361581532292,"y":-120.01819427691225,"z":962.6530843528476}},{"id":"1496","data":{"label":"Lifetime Movie Network","x":-61.929890551001336,"y":16.14360998783377,"z":645.3037936141743}},{"id":"1497","data":{"label":"","x":2476.85694818879,"y":-3987.7074339762166,"z":480.6990811157323}},{"id":"1498","data":{"label":"The Disney Channel UK","x":-26.83574309559799,"y":-67.47916672501196,"z":538.8112477128207}},{"id":"1499","data":{"label":"The Disney Channel Taiwan","x":279.2815229452317,"y":96.89230185831548,"z":273.648465483765}},{"id":"1500","data":{"label":"The Disney Channel Australia","x":67.21928170861247,"y":-190.87136518848092,"z":231.47844738576694}},{"id":"1501","data":{"label":"The Disney Channel Malaysia","x":250.59615234568446,"y":100.17569882180578,"z":404.59276496518794}},{"id":"1502","data":{"label":"The Disney Channel France","x":3.061942444565375,"y":79.15512079250038,"z":582.6618419818191}},{"id":"1503","data":{"label":"The Disney Channel Middle East","x":131.5742649680542,"y":-189.4660620871964,"z":442.18081400423046}},{"id":"1504","data":{"label":"The Disney Channel Italy","x":62.47032435435722,"y":-169.08728707097453,"z":808.1228933202085}},{"id":"1505","data":{"label":"The Disney Channel Spain","x":238.1642903163047,"y":160.9950965029484,"z":164.336512684355}},{"id":"1506","data":{"label":"ESPN INC. International Ventures","x":155.91083788683045,"y":132.67790578366112,"z":114.52614964439766}},{"id":"1507","data":{"label":"Eurosport","x":105.49874897996324,"y":153.66895529560497,"z":547.7169432985394}},{"id":"1508","data":{"label":"Sportsvision of Australia","x":-49.44907651486528,"y":-29.333253165791575,"z":549.1819521153059}},{"id":"1509","data":{"label":"ESPN Brazil","x":132.26027160077047,"y":160.07697024641038,"z":294.9124927972637}},{"id":"1510","data":{"label":"ESPN STAR","x":74.96877481148431,"y":176.11938442275823,"z":856.684698096625}},{"id":"1511","data":{"label":"Net STAR","x":14.274758130434293,"y":-170.10468827254044,"z":700.6713316944282}},{"id":"1512","data":{"label":"Buena Vista Television","x":-19.454966170917032,"y":-134.64509207620904,"z":847.0449078728934}},{"id":"1513","data":{"label":"Touchstone Television","x":82.79460382414027,"y":-208.53203169127846,"z":668.0804195634189}},{"id":"1514","data":{"label":"Walt Disney Television","x":49.200775991525006,"y":139.30157935086754,"z":562.3553973382716}},{"id":"1515","data":{"label":"Walt Disney Television Animation","x":-635.4703901716521,"y":116.05217627522416,"z":893.6065138307443}},{"id":"1516","data":{"label":"Walt Disney Television Animation Japan","x":-840.5535315454908,"y":125.8472992103525,"z":111.80775969611423}},{"id":"1517","data":{"label":"Walt Disney Television Animation Australia","x":-847.473996549777,"y":187.26873314177828,"z":232.19797163100077}},{"id":"1518","data":{"label":"Walt Disney Television Animation Canada","x":-872.7213989042602,"y":138.4711763404739,"z":707.1227519405858}},{"id":"1519","data":{"label":"Walt Disney Pictures","x":-1.0845921498316784,"y":114.5002154216545,"z":546.6010596626895}},{"id":"1520","data":{"label":"Touchstone Pictures","x":141.2446625745065,"y":-591.2678476336532,"z":976.9671880374768}},{"id":"1521","data":{"label":"Hollywood Pictures","x":1531.1572273687525,"y":-831.9226504261997,"z":530.1972970907678}},{"id":"1522","data":{"label":"Caravan Pictures","x":234.74408204036536,"y":134.22166416970413,"z":511.31809417926297}},{"id":"1523","data":{"label":"Miramax Films","x":202.88431838221868,"y":165.53772906175072,"z":564.6513206052301}},{"id":"1524","data":{"label":"Buena Vista Home Video","x":215.2170724130542,"y":110.13289030544183,"z":930.1482422588083}},{"id":"1525","data":{"label":"Buena Vista Home Entertainment","x":185.11727773286657,"y":114.13237856189153,"z":989.0692846990321}},{"id":"1526","data":{"label":"Buena Vista International","x":22.93400232242311,"y":-204.74947792930925,"z":567.3494944645392}},{"id":"1527","data":{"label":"","x":-2260.382909305691,"y":182.3461380381732,"z":92.71877803650463}},{"id":"1528","data":{"label":"The Disney Store","x":273.4999119874333,"y":19.90130517941725,"z":978.9770227503445}},{"id":"1529","data":{"label":"Buena Vista Internet Group","x":-431.163901724839,"y":-48.832845828772406,"z":140.00151257826033}},{"id":"1530","data":{"label":"ABC Internet Group","x":-424.9042517867056,"y":-237.73353585714904,"z":557.9892804690969}},{"id":"1531","data":{"label":"ABC.com","x":-426.77282956958607,"y":-215.26153451966638,"z":749.6326057753015}},{"id":"1532","data":{"label":"ABCNEWS.com","x":-423.5652650365737,"y":-192.72031301342486,"z":862.9693900367803}},{"id":"1533","data":{"label":"Oscar.com","x":-436.9101094384291,"y":105.93880680295933,"z":489.8272894370197}},{"id":"1534","data":{"label":"Mr. Showbiz","x":-482.6854344459716,"y":100.82100364616599,"z":219.34421065176957}},{"id":"1535","data":{"label":"Disney Online","x":-464.82714548234935,"y":-230.8033035938788,"z":691.0293054039179}},{"id":"1536","data":{"label":"Disney's Daily Blast","x":-522.7664918801888,"y":74.03791984245618,"z":767.5707697607808}},{"id":"1537","data":{"label":"Disney.Com","x":-474.85838583607256,"y":-197.20943856529084,"z":452.99470770898864}},{"id":"1538","data":{"label":"Family.Com","x":-533.9243825109384,"y":-162.94372108893276,"z":92.39466497004423}},{"id":"1539","data":{"label":"ESPN Internet Group","x":-558.2778228728303,"y":52.17379878860265,"z":926.6483231489988}},{"id":"1540","data":{"label":"ESPN.sportzone.com","x":-518.2969971215571,"y":-195.0220665093093,"z":655.8522421299642}},{"id":"1541","data":{"label":"Soccernet.com","x":-506.38373990148966,"y":113.45783581198157,"z":790.8139828065395}},{"id":"1542","data":{"label":"NFL.com","x":-568.2654015354155,"y":26.07368174147632,"z":196.48961715976986}},{"id":"1543","data":{"label":"NBA.com","x":-495.88486838480685,"y":-215.5253701271031,"z":853.8242739953994}},{"id":"1544","data":{"label":"NASCAR.com","x":-549.8612781080697,"y":80.44251829661516,"z":32.95682403894329}},{"id":"1545","data":{"label":"Go Network","x":9.167814668017854,"y":144.12857118843476,"z":168.28679756030618}},{"id":"1546","data":{"label":"Infoseek","x":-23.469007488065927,"y":159.06667014061895,"z":83.69496003085364}},{"id":"1547","data":{"label":"Disney Interactive","x":-53.34592785025416,"y":150.1545113343709,"z":321.66688709004967}},{"id":"1548","data":{"label":"Buena Vista Music Group","x":-84.931576153283,"y":60.34138320089551,"z":491.33541946822334}},{"id":"1549","data":{"label":"Hollywood Records","x":-83.8726868416411,"y":-64.93771432770154,"z":858.606690710705}},{"id":"1550","data":{"label":"Lyric Street Records","x":-80.6327422974664,"y":130.0687531517442,"z":412.0689404526785}},{"id":"1551","data":{"label":"Mammoth Records","x":-71.32528346752633,"y":-100.22388713653709,"z":919.4810808762206}},{"id":"1552","data":{"label":"Walt Disney Records","x":-66.45506913257123,"y":83.45998354883704,"z":50.08501503535712}},{"id":"1553","data":{"label":"Walt Disney Theatrical Productions","x":-101.97391457259027,"y":92.52594678232799,"z":873.8787435135293}},{"id":"1554","data":{"label":"Anaheim Sports","x":-88.71783245451388,"y":32.756674140619,"z":391.85663648099126}},{"id":"1555","data":{"label":"Mighty Ducks of Anaheim","x":-90.21979693831781,"y":-30.76832374053447,"z":993.4075203083983}},{"id":"1556","data":{"label":"Anaheim Angels","x":-112.22149509232258,"y":-21.109671309955957,"z":880.4756977948794}},{"id":" CA","data":{"label":"Disneyland - Anaheim","x":-1483.1323815297867,"y":-2912.745498551093,"z":358.13906999488654}},{"id":"1558","data":{"label":"","x":2138.4932135626923,"y":-4201.920412987721,"z":201.596324016166}},{"id":"1559","data":{"label":"Disneyland Paris","x":-127.73750495314926,"y":25.643336719503168,"z":732.6667102259859}},{"id":"1560","data":{"label":"Disney Regional Entertainment","x":-103.1479237100666,"y":8.274811801775286,"z":747.444178594598}},{"id":"1561","data":{"label":"Disneyland Resort","x":-51.732355193198146,"y":-181.6154907541295,"z":881.6953774044143}},{"id":"1562","data":{"label":"Disney Vacation Club","x":-116.70239149978897,"y":48.7867690859257,"z":543.8859266332461}},{"id":"1563","data":{"label":"Epcot","x":-72.40428032969203,"y":-149.64893948444478,"z":46.105906963019194}},{"id":"1564","data":{"label":"Magic Kingdom","x":-117.645040295542,"y":-63.22120481860111,"z":625.9378347544193}},{"id":"1565","data":{"label":"Tokyo Disneyland","x":1261.6967018194273,"y":2326.0165414614894,"z":271.5194143582986}},{"id":" FL","data":{"label":"Walt Disney World - Orlando","x":-2019.058205198683,"y":-3602.0399402371613,"z":407.6284830900383}},{"id":"1567","data":{"label":"Disney's Animal Kingdom","x":-129.75835664755277,"y":-39.78142978921642,"z":2.344390962537135}},{"id":"1568","data":{"label":"Disney - MGM Studios","x":-136.34386401091888,"y":-2.8743765798808454,"z":739.6286528592848}},{"id":"1569","data":{"label":"Walt Disney World Sports Complex","x":-96.63347919744774,"y":-120.80368360009834,"z":309.88823742770563}},{"id":"1570","data":{"label":"Disney Cruise Line","x":-121.84699431157696,"y":74.20529217400781,"z":370.5905288586848}},{"id":"1571","data":{"label":"The Disney Institute","x":-106.35906383539123,"y":-86.39714296173133,"z":770.0789965024181}},{"id":"1572","data":{"label":"The Wall Street Journal","x":-951.7408974371306,"y":-1587.9073561856057,"z":255.54321454531626}},{"id":"1573","data":{"label":"The Wall Street Journal Interactive Edition","x":-1159.7827045286806,"y":-1626.5700173306104,"z":278.28344863784804}},{"id":"1574","data":{"label":"The Asian Wall Street Journal","x":-1059.5330989591434,"y":-1346.8768075049957,"z":394.26033325605505}},{"id":"1575","data":{"label":"The Asian Wall Street Journal Weekly Edition","x":-1205.4481323860102,"y":-1200.72649350754,"z":784.428348306288}},{"id":"1576","data":{"label":"The Wall Street Journal Europe","x":-775.2210806313151,"y":-1530.9843607770754,"z":65.26538568704332}},{"id":"1577","data":{"label":"The Wall Street Journal Special Edition","x":-1142.534328395077,"y":-1609.216894639872,"z":517.2265004619599}},{"id":"1578","data":{"label":"The Wall Street Journal Americas","x":-1143.3423788709842,"y":-1656.670991658218,"z":944.8781484935384}},{"id":"1579","data":{"label":"The Wall Street Journal Classroom Edition","x":-795.2559755624725,"y":-1508.2805540944632,"z":476.55010803366736}},{"id":"1580","data":{"label":"The Wall Street Journal Sunday (insert)","x":-772.1903099433293,"y":-1579.1831635101144,"z":318.5626089428797}},{"id":"1581","data":{"label":"SmartMoney Magazine","x":-472.06455481769353,"y":-1385.4045424367832,"z":825.1365401343977}},{"id":"1582","data":{"label":"America Economia","x":-723.8592582156962,"y":-1570.8579894377249,"z":956.013138428629}},{"id":"1583","data":{"label":"Barron's","x":-603.5681532927301,"y":-1537.8902656717173,"z":9.212630733050675}},{"id":"1584","data":{"label":"Far Eastern Economic Review","x":-787.2629087811288,"y":-1712.4322889920309,"z":16.703837842756197}},{"id":"1585","data":{"label":"National Business and Employment Weekly","x":-784.7938735477737,"y":-1640.6069311173292,"z":881.4173784500721}},{"id":"1586","data":{"label":"Dow Jones Interactive","x":-785.3178253720212,"y":-1759.6917331089708,"z":572.8378143792048}},{"id":"1587","data":{"label":"World Reporter","x":-2128.14681220201,"y":443.5408293895289,"z":774.022425131099}},{"id":"1588","data":{"label":"","x":-1096.6416675429957,"y":-3539.870207882672,"z":852.5541493508919}},{"id":"1589","data":{"label":"Dow Jones Newswires","x":-752.3221300320811,"y":-1780.372483158319,"z":56.31411916008}},{"id":"1590","data":{"label":"Dow Jones Indexes","x":-768.0105596569297,"y":-1796.4142129779616,"z":961.4346185891904}},{"id":"1591","data":{"label":"Ottaway Newspapers","x":-492.5399712471126,"y":-1790.966873432979,"z":36.58842346278557}},{"id":"1592","data":{"label":"Santa Cruz Daily Sentinel (CA)","x":-766.0364155958946,"y":-1605.7379875865881,"z":415.1151875154055}},{"id":"1595","data":{"label":"Cape Cod Times (MA)","x":-814.7063767891277,"y":-1735.6357573384003,"z":513.1375641902636}},{"id":"1596","data":{"label":"Salem Evening News (MA)","x":-729.3266144912491,"y":-1844.6751595781552,"z":390.466516338956}},{"id":"1597","data":{"label":"Gloucester Times (MA)","x":-815.5760650724578,"y":-1765.1936508109566,"z":746.612593318944}},{"id":"1600","data":{"label":"Traverese City Record -Eagle (MI)","x":-804.9954637593514,"y":-1792.2763237599934,"z":270.36578668277997}},{"id":" MN)","data":{"label":"The Free Press (Mankato","x":1513.000796827423,"y":-4356.050178144342,"z":127.83311059575286}},{"id":"1602","data":{"label":"The Joplin Globe (MO)","x":-818.3284985534528,"y":-1666.7319993570454,"z":131.94146952039}},{"id":" NH)","data":{"label":"The Herald (Portsmouth","x":-1229.7201213835444,"y":-3309.5981135195443,"z":869.0011347818696}},{"id":" OR)","data":{"label":"Mail Tribune (Medford","x":-2645.079533156197,"y":288.48488538674155,"z":458.4423950513339}},{"id":"1611","data":{"label":"CNBC","x":59.0244757313576,"y":574.1787027894725,"z":43.61899197175756}},{"id":"1613","data":{"label":"CNBC Europe","x":3315.872474530707,"y":-997.752368478195,"z":266.09495021708864}},{"id":"1614","data":{"label":"The Wall Street Journal Report","x":-775.8150092593851,"y":-1820.3211040436108,"z":592.4376065914531}},{"id":" Inc. & Partners","data":{"label":"F.F. Soucy","x":-1073.17692254963,"y":-2795.28857571943,"z":421.47013187456594}},{"id":"1616","data":{"label":"U.S. Satellite Broadcasting","x":-562.3404959953878,"y":-1860.25633398734,"z":455.7305019811075}},{"id":"1617","data":{"label":"Abilene Reporter-New (TX)","x":3462.4874253333464,"y":-2725.554026629075,"z":764.6149233668522}},{"id":"1618","data":{"label":"The Albuquerque Tribune (NM)","x":3303.502347949021,"y":-2782.841656117116,"z":312.0944467122859}},{"id":" SC)","data":{"label":"Anderson Independent-Mail (Anderson","x":-2898.287128667029,"y":-118.38922240557895,"z":725.6636869241795}},{"id":"1620","data":{"label":"Birmingham Post-Herald (AL)","x":3182.481265222703,"y":-2510.437638251146,"z":783.3293968147846}},{"id":"1622","data":{"label":"The Cincinnati Post (includes The Kentucky Post) (OH)","x":3496.823335630692,"y":-2649.4961320152283,"z":414.1688473966858}},{"id":"1623","data":{"label":"Corpus Christi Caller-Times (TX)","x":3470.334608629528,"y":-2527.522455168923,"z":351.6601289312211}},{"id":"1624","data":{"label":"Denver Rocky Mountain News","x":3181.692237061705,"y":-2697.3203803400456,"z":526.3505832961977}},{"id":"1625","data":{"label":"Evansville Courier & Press (IN)(CO)","x":3236.5129043035286,"y":-2743.6817834928306,"z":130.29301067947395}},{"id":"1626","data":{"label":"The Knoxville News-Sentinel (TN)","x":3379.0808967787043,"y":-2781.587678287249,"z":271.0678440069547}},{"id":" TN)","data":{"label":"The Commercial Appeal (Memphis","x":-549.7410877792827,"y":2515.4323348975313,"z":548.8101133390861}},{"id":"1628","data":{"label":"Naples Daily News (FL)","x":3209.2218864928273,"y":-2497.1992703460382,"z":369.63910969403145}},{"id":"1629","data":{"label":"The Stuart News (includes Port St. Lucie News) (FL)","x":3343.7192223226502,"y":-2455.6225809051284,"z":450.622276180928}},{"id":"1631","data":{"label":"Redding Record-Searchlight (CA)","x":3489.0317220039306,"y":-2548.6639206551445,"z":837.7017954059729}},{"id":"1633","data":{"label":"Ventura County Star (CA)","x":3498.6723889152454,"y":-2579.444481875772,"z":234.4427822031827}},{"id":"1634","data":{"label":"Vero Beach Press Journal (FL)","x":3442.275997049899,"y":-2755.154847969316,"z":124.08780572090517}},{"id":"1636","data":{"label":"Scripps Howard News Service","x":3385.222697029514,"y":-2459.6881098003846,"z":500.97592361204926}},{"id":"1648","data":{"label":"WXYZ TV � Detroit","x":3264.465968555337,"y":-2769.9290470164965,"z":410.0896078165064}},{"id":"1649","data":{"label":"WEWS TV � Cleveland","x":3489.411600660016,"y":-2707.7109402727565,"z":843.1843813137807}},{"id":"1650","data":{"label":"WFTS TV � Tampa","x":3502.502279088856,"y":-2610.9980551362046,"z":946.5543392297111}},{"id":"1651","data":{"label":"KNXV TV � Phoenix","x":3409.1861849222414,"y":-2477.166849526869,"z":695.381711963074}},{"id":"1652","data":{"label":"WMAR TV � Baltimore","x":3172.5997746986095,"y":-2562.0015262628094,"z":713.666196401564}},{"id":"1653","data":{"label":"WCPO TV � Cincinnati","x":3177.2760865358478,"y":-2665.236801042922,"z":360.2734024402139}},{"id":" MO","data":{"label":"KSHB TV � Kansas City","x":-2961.1742470760278,"y":-1419.153121222785,"z":205.89791156453208}},{"id":"1655","data":{"label":"WPTV � West Palm Beach","x":3170.588976857014,"y":-2605.863523314555,"z":456.91372289571655}},{"id":"1656","data":{"label":"KJRH TV � Tulsa","x":3312.5119438472893,"y":-2453.700197373427,"z":820.4143728571054}},{"id":"1657","data":{"label":"Home & Garden Television","x":3412.4260735430817,"y":-2760.834595511506,"z":347.68557548404755}},{"id":"1658","data":{"label":"Food Network","x":1939.051316946392,"y":-2004.0761254698737,"z":872.4868690411531}},{"id":"1659","data":{"label":"Do-It-Yourself Network","x":3181.530516128989,"y":-2537.426409541179,"z":942.8220349476293}},{"id":"1660","data":{"label":"SportSouth Cable Television Broadcast","x":3452.7460313852944,"y":-2507.892405988063,"z":608.4704053412513}},{"id":"1661","data":{"label":"Yellow Pages","x":3662.2325723140602,"y":-2725.247367242878,"z":847.2776052065394}},{"id":"1662","data":{"label":"USA TODAY","x":1045.0027618852573,"y":-2724.8181683609782,"z":742.5456034048801}},{"id":"1663","data":{"label":"USA WEEKEND","x":766.8492594116078,"y":-2912.287392857297,"z":209.02804445853042}},{"id":"1664","data":{"label":"USA TODAY Baseball Weekly","x":979.6275947815202,"y":-2652.7848108104463,"z":943.5450407213779}},{"id":"1665","data":{"label":"USA TODAY Information Network","x":999.9327949798499,"y":-2685.5811935963084,"z":875.9188820598363}},{"id":"1666","data":{"label":"Gannett News Service","x":898.4277139370488,"y":-2676.5417734633347,"z":89.28120481727086}},{"id":"1667","data":{"label":"The Montgomery Advertiser(Alabama)","x":1001.7672071411198,"y":-2662.417240699353,"z":380.6703796526285}},{"id":"1668","data":{"label":"Tucson Citizen (Arizona)","x":1023.5753662906905,"y":-2688.5501931222607,"z":285.25593815365767}},{"id":"1669","data":{"label":"The Arizona Republic (Arizona)","x":898.8609955766178,"y":-2650.6295870946637,"z":15.468498460444069}},{"id":"1671","data":{"label":"Marin Independent Journal (California)","x":721.7670018435219,"y":-2839.6086575122663,"z":740.8373315494197}},{"id":"1674","data":{"label":"The San Bernadino County Sun (California)","x":1030.8584776197818,"y":-2981.099783544694,"z":911.225478667689}},{"id":"1675","data":{"label":"Tulare Advance -Register (California)","x":1095.241548887871,"y":-2845.710350713435,"z":924.0967894149923}},{"id":"1676","data":{"label":"Visalia Times-Delta (California)","x":1043.8861565809138,"y":-2699.077152317095,"z":771.4831534110582}},{"id":"1677","data":{"label":"Fort Collins Coloradoan (Colorado)","x":1076.1231744002316,"y":-2727.122048513634,"z":44.736163046198655}},{"id":"1678","data":{"label":"Norwich Bulletin (Connecticut)","x":923.1522512842548,"y":-2652.2628860187374,"z":367.4010130503569}},{"id":" Delaware)","data":{"label":"The News Journal (Wilmington","x":-1224.797616750102,"y":-3121.6555375983357,"z":463.52646278405916}},{"id":"1682","data":{"label":"Pensacola News Journal (Florida)","x":1084.3987413431787,"y":-2781.688432419466,"z":487.27349382844886}},{"id":"1684","data":{"label":"Pacific Daily News (Guam)","x":952.8968236431856,"y":-2656.4562597168115,"z":381.6358352318685}},{"id":"1685","data":{"label":"The Honolulu Advertiser (Hawaii)","x":772.5427855012695,"y":-2725.405118998149,"z":526.4426003194118}},{"id":"1687","data":{"label":"","x":-1835.2591363733666,"y":-2979.455631334439,"z":93.05488348048807}},{"id":"1688","data":{"label":"Rockford Register Star (Illinois)","x":880.1109565242705,"y":-2992.5886608756164,"z":549.8147149744481}},{"id":"1692","data":{"label":"The Indianapolis Star (Indiana)","x":1097.0324826284032,"y":-2758.881217177529,"z":809.5882331612703}},{"id":"1693","data":{"label":"The Des Moines Register (Iowa)","x":1016.6133758327719,"y":-2961.8075150147074,"z":397.62880201059517}},{"id":"1694","data":{"label":"Iowa City Press-Citizen (Iowa)","x":809.853912168674,"y":-2700.822660122736,"z":529.9555273401486}},{"id":"1698","data":{"label":"Alexandria Town Talk (Louisiana)","x":1112.4536355710998,"y":-2799.9201312590185,"z":254.05557612534045}},{"id":"1701","data":{"label":"Battle Creek Enquirer (Michigan)","x":860.7011561751406,"y":-2682.1532500373723,"z":123.09549429062305}},{"id":"1702","data":{"label":"The Detroit News (Michigan)","x":1640.3731398067357,"y":-3980.849572294418,"z":418.46063251970975}},{"id":"1703","data":{"label":"Lansing State Journal (Michigan)","x":1087.0340807176863,"y":-2815.577251021559,"z":168.78609340114647}},{"id":"1705","data":{"label":"St. Cloud Times (Minnesota)","x":748.8615179832072,"y":-2852.7761143272064,"z":842.7586069638833}},{"id":"1706","data":{"label":"Hattiesburg American (Mississippi)","x":836.6043900892214,"y":-2674.973575567965,"z":36.197896025740526}},{"id":"1708","data":{"label":"Springfield News-Leader (Missouri)","x":941.0863248876426,"y":-2991.905447508284,"z":642.47399312813}},{"id":"1709","data":{"label":"Great Falls Tribune (Montana)","x":1063.8922140928098,"y":-2928.5880971251804,"z":215.38324380232575}},{"id":"1710","data":{"label":"Reno Gazette-Journal (Nevada)","x":1124.8060630319706,"y":-2865.7376245843743,"z":768.0077961523948}},{"id":"1711","data":{"label":"Asbury Park Press (New Jersey)","x":1125.183995789138,"y":-2897.605642804252,"z":782.0991554920909}},{"id":" New Jersey)","data":{"label":"The Courier-News (Bridgewater","x":4668.179863916277,"y":-2159.7029112452246,"z":722.0598107439984}},{"id":"1718","data":{"label":"The Ithaca Journal (New York)","x":1081.670748396723,"y":-2867.3966966168873,"z":378.0015782317703}},{"id":"1719","data":{"label":"Poughkeepsie Journal (New York)","x":1125.9499685170358,"y":-2831.02175141094,"z":619.6605296538693}},{"id":"1720","data":{"label":"Rochester Democrat and Chronicle (New York)","x":1090.9887574083778,"y":-2907.1755642317685,"z":427.51068765855814}},{"id":"1729","data":{"label":"Rockland Journal News (New York)","x":730.0513958166148,"y":-2812.8862143717224,"z":223.86441128777633}},{"id":"1732","data":{"label":"Asheville Citizen-Times (North Carolina)","x":1072.809953420854,"y":-2984.7587263033943,"z":220.63832556444018}},{"id":"1733","data":{"label":"Chillicothe Gazette (Ohio)","x":1110.8946382453269,"y":-2925.5278743527515,"z":0.3262763522104972}},{"id":"1734","data":{"label":"The Cincinnati Enquirer (Ohio)","x":781.0538903934544,"y":-2766.1136524981375,"z":48.804665014873905}},{"id":"1736","data":{"label":"","x":-1978.0855520421846,"y":-47.0524546967481,"z":457.05109528056664}},{"id":"1737","data":{"label":"The Marietta Times (Ohio)","x":992.7864764934179,"y":-2992.5213059462785,"z":723.8268555150975}},{"id":"1738","data":{"label":"","x":114.52763903865889,"y":1688.6399352319604,"z":779.9984271994689}},{"id":"1741","data":{"label":"","x":3137.9231316642436,"y":-3642.9186704534504,"z":2.1886222204738903}},{"id":"1742","data":{"label":"Coshocton Tribune (Ohio)","x":836.9337220772827,"y":-2971.21291464703,"z":495.0713783583185}},{"id":"1743","data":{"label":"Lancaster Eagle-Gazette (Ohio)","x":806.1673319973343,"y":-2729.5986095875737,"z":935.2802715096236}},{"id":"1747","data":{"label":"Muskogee Daily Phoenix and Times-Democrat (Oklahoma)","x":762.9960407633848,"y":-2832.2646891744325,"z":108.43474141496445}},{"id":"1750","data":{"label":"The Reporter (Lansdale)","x":764.2839948959381,"y":-2751.6393442591943,"z":48.16352993826145}},{"id":"1751","data":{"label":"The Greenville News (South Carolina)","x":764.178769342213,"y":-2881.627309395145,"z":152.5250899685011}},{"id":" South Dakota)","data":{"label":"Argus Leader (Sioux Falls","x":4539.228906942924,"y":-2860.5076137960286,"z":635.7938692033622}},{"id":"1754","data":{"label":"The Jackson Sun (Tennessee)","x":1094.0407729536892,"y":-2948.6507283637593,"z":521.3181975957448}},{"id":"1756","data":{"label":"El Paso Times (Texas)","x":900.9436078565086,"y":-3014.4000546990833,"z":858.1666927905407}},{"id":"1758","data":{"label":"The Burlington Free Press (Vermont)","x":1036.898997953992,"y":-3005.8207919414017,"z":49.35757182703093}},{"id":"1760","data":{"label":"The Bellingham Herald (Washington)","x":1061.077986755718,"y":-2999.715779063453,"z":777.0133102172774}},{"id":"1761","data":{"label":"The Olympian (Washington)","x":1010.7037203225286,"y":-3021.8681746112115,"z":652.8416189397552}},{"id":"1763","data":{"label":"","x":2128.4349716181714,"y":-4358.093483677469,"z":100.56215173375982}},{"id":"1764","data":{"label":"Green Bay Press-Gazette (Wisconsin)","x":798.0439525194888,"y":-2954.7181522155715,"z":642.6323773866991}},{"id":"1765","data":{"label":"Wausau Daily Herald (Wisconsin)","x":769.1201613412068,"y":-2793.1296068910906,"z":791.9571956155422}},{"id":"1768","data":{"label":"Marshfield News-Herald (Wisconsin)","x":739.1991124710912,"y":-2785.07329133042,"z":923.6461530856484}},{"id":"1769","data":{"label":"Oshkosh Northwestern (Wisconsin)","x":734.849892572031,"y":-2906.4433827695075,"z":944.6116495449039}},{"id":"1770","data":{"label":"The Sheboygan Press (Wisconsin)","x":722.4179680352659,"y":-2865.968503333909,"z":420.50772439762807}},{"id":"1771","data":{"label":"Stevens Point Journal (Wisconsin)","x":854.0411797782172,"y":-3013.3558437346946,"z":391.7523614324636}},{"id":"1772","data":{"label":"Daily Tribune (Wisconsin Rapids)","x":957.2905625314384,"y":-3009.6978521576416,"z":131.9112992704463}},{"id":"1773","data":{"label":"Army Times Publishing","x":598.1512083501184,"y":-3402.424891739472,"z":694.1317265149003}},{"id":"1774","data":{"label":"Army Times","x":423.62817122818615,"y":-3407.3794155890296,"z":904.3237529547758}},{"id":"1775","data":{"label":"Navy Times","x":693.1546552511013,"y":-3553.6721038448377,"z":466.66790604098463}},{"id":"1776","data":{"label":"Navy Times Marine Corps","x":464.12939996133855,"y":-3292.511863626019,"z":823.8579342694002}},{"id":"1777","data":{"label":"Air Force Times","x":539.5878407934088,"y":-3576.830651840738,"z":749.7770909374142}},{"id":"1778","data":{"label":"Federal Times","x":725.7607013294855,"y":-3533.1477516709197,"z":468.6143523687472}},{"id":"1779","data":{"label":"Defense News","x":422.4571521930261,"y":-3371.7875259356597,"z":926.9416505886761}},{"id":"1780","data":{"label":"Space News","x":643.6637336255512,"y":-3582.6084375511655,"z":866.8459985979351}},{"id":"1781","data":{"label":"Military Market","x":448.98660964095825,"y":-3508.0735900490777,"z":345.2378999282391}},{"id":" Maine)","data":{"label":"WLBZ TV (Bangor","x":-2844.193050280556,"y":-425.35006652125867,"z":745.1290168257357}},{"id":" South Caroline)","data":{"label":"WLTX TV (Columbia","x":2748.2391341547873,"y":-3908.6507267640263,"z":180.7905179039031}},{"id":"1801","data":{"label":"WUSA TV (District of Columbia)","x":906.9233820755148,"y":-3041.7202691042285,"z":573.124052113639}},{"id":"1802","data":{"label":"Gannett Marketing Services","x":770.6435014386434,"y":-2958.0555557515427,"z":673.1579381235086}},{"id":"1803","data":{"label":"Gannett Direct Marketing Services","x":977.2187355375336,"y":-3042.7286876291437,"z":584.489145142836}},{"id":"1804","data":{"label":"Gannett TeleMarketing","x":873.1690795941295,"y":-3038.7051561935223,"z":800.0302245502853}},{"id":"1805","data":{"label":"Classified Ventures Com","x":1578.3312359841557,"y":-2361.841855937879,"z":633.4992625106551}},{"id":"1806","data":{"label":"Gannett Media Technologies International","x":945.9892093920371,"y":-3054.7592786906707,"z":399.52612325698556}},{"id":"1807","data":{"label":"Nursing Spectrum","x":737.6059361900261,"y":-2934.2294380195426,"z":496.44025950066407}},{"id":"1808","data":{"label":"Gannett Offset Print Group","x":712.0266643640502,"y":-2888.299137169665,"z":275.36611221061526}},{"id":"1809","data":{"label":"BrassRing","x":802.3297918811331,"y":-2988.405350579449,"z":525.2123768961785}},{"id":"1810","data":{"label":"National Broadcasting Corporation (NBC)","x":2474.6427218757717,"y":-2096.2619165170277,"z":5.458802654021433}},{"id":"1811","data":{"label":"NBC Network","x":2700.3477868634272,"y":-2254.149363179299,"z":447.6920317581274}},{"id":"1812","data":{"label":"Paxson Communications","x":1632.090960551961,"y":-2590.376237143158,"z":617.5440465616072}},{"id":"1813","data":{"label":"WVTM - Birmingham","x":2824.5731794776857,"y":-1530.4172182099146,"z":355.83993400457257}},{"id":"1814","data":{"label":"KXAS TV - Dallas","x":2936.122003431051,"y":-1502.4430856590761,"z":904.5684498826203}},{"id":"1815","data":{"label":"WMAQ TV - Chicago","x":2946.193352065461,"y":-1427.7347293147504,"z":617.6073712163447}},{"id":"1816","data":{"label":"WCMH TV - Columbus","x":2960.6674859024542,"y":-1362.2349974869458,"z":630.3840693629845}},{"id":"1817","data":{"label":"WVIT TV - Hartford","x":2951.0127048671266,"y":-1292.6806236159973,"z":583.4146338200638}},{"id":"1818","data":{"label":"KNBC TV - Los Angeles","x":2863.2946899612743,"y":-1214.9490045443167,"z":258.5496260037714}},{"id":"1819","data":{"label":"WTVJ TV - Miami","x":2974.9094474558933,"y":-1451.6968812155,"z":25.395252703231954}},{"id":"1820","data":{"label":"WNBC TV - New York","x":2907.2520587302897,"y":-1521.0028733891954,"z":110.51992745190108}},{"id":"1821","data":{"label":"WCAU TV - Philadelphia","x":2984.241407121597,"y":-1396.8468828423674,"z":718.2062478224591}},{"id":"1822","data":{"label":"WJAR TV - Providence","x":2940.470526279829,"y":-1528.5453034155084,"z":545.1882034657579}},{"id":"1823","data":{"label":"WNCN TV - Raleigh","x":2987.3149583878676,"y":-1359.6270084059101,"z":559.7724555992191}},{"id":"1824","data":{"label":"KNSD TV - San Diego","x":2957.5626240266847,"y":-1471.7778256089969,"z":136.21188980051446}},{"id":"1825","data":{"label":"WRC TV - Washington","x":2986.9100137685946,"y":-1425.9827862937668,"z":122.95218692891675}},{"id":"1826","data":{"label":"MSNBC","x":-2338.98887599564,"y":-81.18147571691134,"z":69.18241645858546}},{"id":"1827","data":{"label":"","x":-913.1586409311899,"y":1193.7166647237627,"z":255.0937307568031}},{"id":"1828","data":{"label":"","x":-1644.1369919740885,"y":-1791.291336374975,"z":938.085154103333}},{"id":"1829","data":{"label":"Prime Network","x":-102.86696002452118,"y":629.2672960259597,"z":937.7737350189634}},{"id":"1830","data":{"label":"","x":2806.869428132204,"y":1741.8120719645158,"z":464.52134422263947}},{"id":"1831","data":{"label":"","x":2599.2208526492095,"y":-4044.1394718323463,"z":412.450901896682}},{"id":"1832","data":{"label":"","x":-365.84049953392514,"y":1900.7138093554795,"z":307.71080485023236}},{"id":"1833","data":{"label":"","x":-1594.041333658273,"y":1227.247352761724,"z":853.5001264802646}},{"id":"1834","data":{"label":"","x":-1186.7144995448712,"y":-3367.77892886036,"z":285.2970201959872}},{"id":"1835","data":{"label":"","x":-1308.478788045901,"y":-2800.168693739233,"z":194.59672395644145}},{"id":"1836","data":{"label":"","x":-1379.7433781039626,"y":-2860.198380123221,"z":607.381926684776}},{"id":"1837","data":{"label":"","x":-7.5316577117591805,"y":2216.4293661196925,"z":925.3747790526139}},{"id":"1838","data":{"label":"Rainbow Advertising Sales","x":-110.31096929471823,"y":482.96922596418426,"z":432.66381013933517}},{"id":"1839","data":{"label":"Sports Channel","x":2322.8046965488793,"y":-3403.2147840252683,"z":570.2309700950221}},{"id":"1840","data":{"label":"","x":-2025.2570394072472,"y":-2692.8454804634844,"z":592.1605120785036}},{"id":"1841","data":{"label":"","x":1455.560161601641,"y":2281.8976880955915,"z":471.56590169098746}},{"id":"1842","data":{"label":"","x":2319.810125122842,"y":1488.4241558906615,"z":37.50478043866967}},{"id":"1843","data":{"label":"","x":4236.738909412425,"y":323.29914014770566,"z":770.8050852854795}},{"id":"1844","data":{"label":"","x":524.5838042580544,"y":2415.8559156055107,"z":402.82102480287296}},{"id":"1845","data":{"label":"","x":-1581.0237883500633,"y":970.0990830959381,"z":964.2004168594814}},{"id":"1846","data":{"label":"Value Vision","x":5.0922507431941995,"y":718.1294736187992,"z":654.4095530657279}},{"id":"1847","data":{"label":"National Geographic's cable channel","x":-60.545536662025825,"y":719.343878386404,"z":516.7904892568764}},{"id":"1848","data":{"label":"NBC Super Channel (Europe)","x":-131.28487694985506,"y":528.7654750245247,"z":176.09167791540935}},{"id":"1849","data":{"label":"NBC Asia","x":-126.5926505477405,"y":615.4240654471123,"z":276.27312386488813}},{"id":"1850","data":{"label":"","x":3989.652635250991,"y":132.55601281883264,"z":990.1877151883778}},{"id":"1851","data":{"label":"","x":4295.216001882154,"y":-1898.1880747958749,"z":239.62575505245897}},{"id":"1852","data":{"label":"Canal de Noticias NBC","x":4011.503127891603,"y":271.787583782042,"z":227.3205491167245}},{"id":"1853","data":{"label":"GE Capital Services","x":3227.237019491108,"y":-1574.115969546412,"z":893.2621347582916}},{"id":"1854","data":{"label":"Harcourt General","x":3468.263409181902,"y":-1636.3882513334838,"z":399.1753722899189}},{"id":"1855","data":{"label":"Northern Telecom Finance","x":3170.7495938397024,"y":-1413.4938956271035,"z":729.6190524150004}},{"id":"1856","data":{"label":"Financial Guaranty Insurance","x":3176.9082467747276,"y":-1383.8263991467165,"z":805.8495608644125}},{"id":"1857","data":{"label":"Union Fidelity Life Insurance","x":3249.4625900998126,"y":-1398.0579984605783,"z":99.0006243161543}},{"id":"1858","data":{"label":"Life Insurance Company of Virginia","x":3153.7373595271292,"y":-1711.73755230392,"z":321.2940121666923}},{"id":"1859","data":{"label":"First Colony","x":3333.4141714540037,"y":-1674.9220475033717,"z":165.52583932851329}},{"id":"1860","data":{"label":"Woodchester","x":3174.0949159938955,"y":-1736.555981064716,"z":146.77469318223356}},{"id":"1861","data":{"label":"SOVAC SA","x":3216.0012362130647,"y":-1723.1782452243856,"z":506.7085691175672}},{"id":"1862","data":{"label":"Credit de L'Est","x":3374.3569549519943,"y":-1640.2566293234204,"z":368.845817764611}},{"id":"1863","data":{"label":"Australian Retail Financial Network","x":3236.4593516565665,"y":-1742.8818245700108,"z":710.0855606028044}},{"id":"1864","data":{"label":"Pallas Group","x":3368.1278583366147,"y":-1504.7714378329101,"z":51.053154611758075}},{"id":"1865","data":{"label":"United Merchants Finance Ltd. (Hong Kong)","x":3322.475210272497,"y":-1703.281981996583,"z":681.143532752311}},{"id":"1866","data":{"label":"Minebea Co. Ltd. (Japan)","x":3397.553281716465,"y":-1576.7120125556503,"z":889.0754286342067}},{"id":"1867","data":{"label":"Frankona Reinsurance Group (Germany)","x":3340.4966717601556,"y":-1444.652893601583,"z":795.1373058408773}},{"id":"1868","data":{"label":"Aachen Reinsurance Group (Germany)","x":3391.908271288472,"y":-1509.3233817502332,"z":587.5522650423493}},{"id":"1869","data":{"label":"GE Capital","x":3250.267984507519,"y":-1878.1828289551304,"z":98.47560749461537}},{"id":"1870","data":{"label":"iXL","x":3329.621373121109,"y":-2018.5674529625117,"z":438.6750455326449}},{"id":"1871","data":{"label":"CFN","x":3540.583219680916,"y":-1965.3612766441688,"z":52.85482341312142}},{"id":"1872","data":{"label":"Realtor.com","x":3420.9280184284207,"y":-1929.5672593033073,"z":635.9915580152091}},{"id":"1873","data":{"label":"StarMedia","x":2347.2270933741947,"y":-1848.1975504526545,"z":529.8307132708873}},{"id":"1874","data":{"label":"Preview Travel","x":3423.916481266233,"y":-1844.6398410346446,"z":828.0820802603344}},{"id":"1875","data":{"label":"autobytel.com","x":3508.3907600610473,"y":-1956.579671348235,"z":594.4249389936134}},{"id":"1876","data":{"label":"Wink","x":3380.7445769674305,"y":1520.8852665758277,"z":63.339991448153164}},{"id":"1877","data":{"label":"Web TV for Windows","x":2972.4378748680556,"y":-1498.8533804128342,"z":601.6638363322998}},{"id":"1878","data":{"label":"Intercast","x":2535.5472798151195,"y":-3591.162474276043,"z":662.7040075092474}},{"id":"1879","data":{"label":"NBC Internet (NBCi)","x":2665.032115634429,"y":-1243.1723071153742,"z":143.16547989116435}},{"id":"1880","data":{"label":"Xoom.com","x":2970.0785365835163,"y":-1303.1772098133733,"z":235.80320988066816}},{"id":"1881","data":{"label":"CNBC-Dow Jones Business Video Service","x":2902.4480640171423,"y":-1258.7171007525471,"z":756.7781029645071}},{"id":"1882","data":{"label":"NBC Desktop Video","x":2800.9466528801568,"y":-1216.7975623636926,"z":249.8259256049491}},{"id":"1883","data":{"label":"NBC Data Network","x":2673.5412555961148,"y":-1236.7027678968943,"z":134.33192491958312}},{"id":"1884","data":{"label":"NBC Digital Publishing","x":2765.3047937084702,"y":-1210.0784819362157,"z":177.48715773773392}},{"id":"1885","data":{"label":"NBC Interactive Neighborhood","x":2931.240944793117,"y":-1472.6882375218297,"z":392.97847989363174}},{"id":"1886","data":{"label":"NBC SuperNet","x":2931.845801492964,"y":-1267.4423849417326,"z":9.85554393299104}},{"id":"1887","data":{"label":"NBC.com","x":2862.7989540470426,"y":-1542.1045973318924,"z":481.289877167423}},{"id":"1888","data":{"label":"Telescan","x":2926.6472879625526,"y":-1828.7060754412187,"z":855.9553188677793}},{"id":"1889","data":{"label":"VideoSeeker.com","x":2657.6828055897586,"y":-1278.1851869172797,"z":532.3615262218128}},{"id":"1890","data":{"label":"Asiacontent.com","x":2709.709569418623,"y":-984.2363044517951,"z":38.78395013939095}},{"id":"1891","data":{"label":"AllBusiness.com","x":2821.3555611570373,"y":-1317.337516434207,"z":288.86482507765}},{"id":"1892","data":{"label":"GE Americom","x":2908.3546953020405,"y":-1479.172957979088,"z":745.2428335503694}},{"id":"1893","data":{"label":"Ameridata Technologies","x":2690.190541710943,"y":-1496.5681048565384,"z":960.6509221893293}},{"id":"1894","data":{"label":"CompuNet Computer AG","x":3045.6280758562734,"y":-1473.4742134642947,"z":571.4841901389027}},{"id":"1895","data":{"label":"GE Long Distance Service","x":45.70729930773177,"y":1604.4343501360663,"z":638.4138785339657}},{"id":"1897","data":{"label":"The Beaumont Enterprise (TX)","x":-175.6528459211586,"y":-1140.299225163049,"z":318.5157033912578}},{"id":"1898","data":{"label":"Edwardsville Intelligencer (IL)","x":-403.05469363989187,"y":-1115.4742891550804,"z":53.47740619232732}},{"id":"1899","data":{"label":"Houston Chronicle","x":-215.78914606897843,"y":-874.6389851308904,"z":134.37884969613268}},{"id":"1900","data":{"label":"Huron Daily Tribune (MI)","x":-137.6632378021768,"y":-1052.7695784608413,"z":29.110569808457054}},{"id":"1901","data":{"label":"Laredo Morning Times (TX)","x":-171.86916440431014,"y":-866.1029082382693,"z":967.1633031930292}},{"id":"1902","data":{"label":"Midland Daily News (MI)","x":-304.41471069100544,"y":-810.9690699553375,"z":3.3937619115842477}},{"id":"1903","data":{"label":"Midland Reporter-Telegram (TX)","x":-181.2236001019064,"y":-1098.8395947036015,"z":735.9085432882569}},{"id":"1904","data":{"label":"Plainview Daily Herald (TX)","x":-177.82160721850687,"y":-915.3991004911786,"z":173.48379680305558}},{"id":"1905","data":{"label":"San Antonio Express-News","x":-224.71150220829531,"y":-846.0122095846673,"z":314.4634666624186}},{"id":"1906","data":{"label":"San Francisco Examiner","x":-267.8499621743781,"y":-875.0448323947203,"z":780.4114497866385}},{"id":"1907","data":{"label":"Seattle Post-Intelligencer","x":-140.28040306285493,"y":-1093.5346660654636,"z":111.00632470882799}},{"id":"1908","data":{"label":"Beaumont Journal (TX)","x":-140.96977016633673,"y":-1000.9157401109446,"z":671.5057418992054}},{"id":"1909","data":{"label":"Hardin County News (TX)","x":-200.4238685069463,"y":-902.8631113166111,"z":706.6997305504976}},{"id":"1910","data":{"label":"Jasper NewsBoy (TX)","x":-271.5752432021736,"y":-810.9166718494625,"z":794.6189438837399}},{"id":"1911","data":{"label":"Marlette Leader (MI)","x":-167.26210331659422,"y":-1052.1170172625789,"z":536.7636638385113}},{"id":"1912","data":{"label":"Mid County Chronicle (TX)","x":-256.92517095259154,"y":-853.8299459486852,"z":595.0324359898276}},{"id":"1913","data":{"label":"Orange County News (TX)","x":-196.01599380198468,"y":-845.541546680668,"z":325.5805086308383}},{"id":"1914","data":{"label":"Vassar Pioneer Times (MI)","x":-359.8083521452545,"y":-823.6033020285377,"z":417.58997827581277}},{"id":"1915","data":{"label":"Colonial Homes","x":-386.61188331298126,"y":-830.6731707387717,"z":980.3961232631941}},{"id":"1916","data":{"label":"Cosmopolitan","x":-340.8997232309039,"y":-855.4159528200225,"z":226.13223362638468}},{"id":"1917","data":{"label":"Country Living","x":-164.627211484918,"y":-893.8799001954976,"z":766.2750516065795}},{"id":"1918","data":{"label":"Country Living Gardener","x":-311.71527755951274,"y":-865.953416121275,"z":898.6667523971598}},{"id":"1919","data":{"label":"Esquire","x":-242.0875886746071,"y":-823.963269530992,"z":933.5907459503725}},{"id":"1920","data":{"label":"Good Housekeeping","x":-325.31254028162584,"y":-832.1314917256614,"z":6.971482755360858}},{"id":"1921","data":{"label":"Harper's Bazaar","x":-374.8836346888761,"y":-872.6399001338887,"z":496.1689190016982}},{"id":"1922","data":{"label":"House Beautiful","x":-384.23173419040495,"y":-854.3331746613103,"z":590.3038875296119}},{"id":"1923","data":{"label":"Motor Boating & Sailing","x":-436.2193323322158,"y":-943.4590584265907,"z":781.0505851672395}},{"id":"1924","data":{"label":"Popular Mechanics","x":-173.07293934853442,"y":-1173.3749947708075,"z":630.9667757812474}},{"id":"1925","data":{"label":"Redbook","x":-287.17689474439885,"y":-835.0367068588657,"z":34.42995932290982}},{"id":"1926","data":{"label":"Sports Afield","x":-443.2440803552249,"y":-982.8709664800372,"z":893.5780886507915}},{"id":"1927","data":{"label":"Town & Country","x":-373.50660516767675,"y":-1145.8551693717886,"z":73.40943760105412}},{"id":"1928","data":{"label":"Victoria","x":-239.62098818414233,"y":-1170.120370166208,"z":175.19186195995795}},{"id":"1929","data":{"label":"Diversion","x":-381.192809858313,"y":-894.2077659612296,"z":77.95669785864634}},{"id":"1930","data":{"label":"Electronic Engineers Master Catalog","x":-204.22287506355133,"y":-1176.2680320167897,"z":423.07547637589124}},{"id":"1931","data":{"label":"Electronic Products Magazine","x":-434.4780289827768,"y":-1077.9880362816307,"z":657.4617437818415}},{"id":"1932","data":{"label":"Floor Covering Weekly","x":-424.6600427972612,"y":-917.003630252636,"z":498.80999635937593}},{"id":"1933","data":{"label":"Integrated Circuits Master Catalog","x":-338.0789208415854,"y":-805.1591243703178,"z":119.88467810104697}},{"id":"1934","data":{"label":"Motor Professional Books","x":-320.6491008977846,"y":-1156.2774612055478,"z":370.64948672209266}},{"id":"1935","data":{"label":"Motor Crash Estimating Guides","x":-344.95404125115874,"y":-1189.1749801297456,"z":782.4203409812926}},{"id":"1936","data":{"label":"Motor Magazine","x":-223.8816476490647,"y":-1201.5470349058155,"z":672.8199993157522}},{"id":"1937","data":{"label":"Motor Professional Manuals","x":-316.56957728936004,"y":-1198.345195461889,"z":916.5845582395377}},{"id":"1938","data":{"label":"National Auto Research","x":-279.4396203368551,"y":-1195.1570028169726,"z":119.26607418124502}},{"id":"1939","data":{"label":"Official Guide to Disneyland","x":-459.7066619006596,"y":-1070.169909787929,"z":335.9866897484591}},{"id":"1940","data":{"label":"Official Guide to Walt Disney World","x":-430.8894494742799,"y":-894.5761403078241,"z":657.2707746122459}},{"id":"1941","data":{"label":"RAI","x":-369.2591955673206,"y":-1175.9845489746986,"z":791.1938674697998}},{"id":"1942","data":{"label":"Walt Disney World for Kids by Kids","x":-240.11258377862305,"y":-1225.012531086386,"z":976.3029344167633}},{"id":"1943","data":{"label":"Walt Disney World Without Kids","x":-400.43444266038705,"y":-1157.5853877962873,"z":993.6206104332632}},{"id":"1944","data":{"label":"Eastern News Distributors","x":-286.9372573041355,"y":-1220.3580029288487,"z":124.60876644270135}},{"id":"1945","data":{"label":"Communications Data Services","x":-426.6609512923824,"y":-854.7115496072811,"z":605.7239150022689}},{"id":"1946","data":{"label":"The Hearst Distribution Group","x":-432.80680749580733,"y":-1156.0381982310905,"z":208.87192411106503}},{"id":"1947","data":{"label":"Periodical Publishers' Service Bureau","x":-465.42524586882973,"y":-1015.9997316867311,"z":213.89062361009502}},{"id":"1948","data":{"label":"HDG International","x":-405.0409944123385,"y":-1186.2172297564234,"z":58.448320864624705}},{"id":"1949","data":{"label":"International Circulation Distributors","x":-322.28091752866294,"y":-1226.4246580454642,"z":325.4809879678495}},{"id":"1950","data":{"label":"Tower Publishing Services Ltd. (U.K.)","x":-198.9108939878588,"y":-1208.3351355499594,"z":707.4508558718111}},{"id":"1951","data":{"label":"Hearst News Service","x":-480.297018293194,"y":-1124.4368768248078,"z":773.481145638302}},{"id":"1952","data":{"label":"Associated Publishing","x":-471.91594985728534,"y":-1099.406436403076,"z":997.3632750528138}},{"id":"1953","data":{"label":"Hearst-Argyle Television","x":-143.34436402617666,"y":-574.7127154963264,"z":718.2259031330092}},{"id":"1954","data":{"label":"WCVB TV (Boston)","x":-380.1462489184132,"y":-1238.0031554624607,"z":99.99672374364921}},{"id":"1955","data":{"label":"WWWB TV (Tampa)","x":-261.93385250641404,"y":-1240.4765287618384,"z":646.3145069725196}},{"id":"1956","data":{"label":"WTAE TV (Pittsburgh)","x":-353.70407822326115,"y":-1219.33891023581,"z":453.84774019975873}},{"id":"1957","data":{"label":"WBAL TV (Baltimore)","x":-383.0517954930706,"y":-1210.3267351774757,"z":543.7697593289777}},{"id":"1958","data":{"label":"WLWT TV (Cincinnati)","x":-456.4581394181291,"y":-897.4168003952154,"z":416.9098835587279}},{"id":"1959","data":{"label":"WISN TV (Milwaukee)","x":-409.09194364992436,"y":-1220.3786895142994,"z":673.0578307816717}},{"id":" MO)","data":{"label":"KMBC TV (Kansas City","x":-609.0309299353944,"y":-4417.176283788729,"z":805.4028790677346}},{"id":"1962","data":{"label":"KOCO TV (Oklahoma City)","x":-433.36413141699813,"y":-1198.6234395505908,"z":69.52136181542845}},{"id":"1963","data":{"label":"WPBF TV (West Palm Beach)","x":-320.4752048689843,"y":-1254.0256155118163,"z":524.6582448938545}},{"id":"1964","data":{"label":"WNAC TV (Providence)","x":-452.79559742099354,"y":-1179.0742974619807,"z":366.109465316556}},{"id":"1965","data":{"label":"WDTN TV (Dayton)","x":-467.8901596161609,"y":-1155.088520431123,"z":453.61240951528424}},{"id":"1966","data":{"label":"KITV TV (Honolulu)","x":-351.563281007991,"y":-1251.0516889529395,"z":355.8074769981578}},{"id":" MS)","data":{"label":"WAPT TV (Jackson","x":3320.761036188361,"y":-2887.269831346121,"z":737.2333499125078}},{"id":" AK)","data":{"label":"KHBS/KHOG TV (Fort Smith/Fayetteville","x":745.2185569724807,"y":2425.8380839525953,"z":296.3485328662996}},{"id":"1969","data":{"label":"Hearst Argyle Television Productions","x":3347.1598288234636,"y":-2993.2972563325184,"z":65.1076919397302}},{"id":"1970","data":{"label":"WBAL-AM (Baltimore)","x":-467.8223327141277,"y":-928.0753296077382,"z":232.81471474554328}},{"id":"1971","data":{"label":"WIYY-FM (Baltimore)","x":-452.73114308424147,"y":-1126.99396101917,"z":341.49771759833226}},{"id":"1972","data":{"label":"King Features Syndicate","x":-289.54578398777585,"y":-1250.9696918549835,"z":22.46611249161745}},{"id":"1973","data":{"label":"Classic Sports Network","x":-468.91596775027165,"y":-987.1256075879537,"z":275.40005192808303}},{"id":"1974","data":{"label":"Hearst Entertainment Distribution","x":-474.8695372892307,"y":-959.0945422460418,"z":562.5510007443986}},{"id":"1975","data":{"label":"Hearst Entertainment Productions","x":-492.0132317186208,"y":-1077.9445484239413,"z":394.02445515846927}},{"id":"1976","data":{"label":"Hearst Animation Productions","x":-289.6069138527537,"y":-1172.5187411765774,"z":211.06371415522452}},{"id":"1977","data":{"label":"First DataBank","x":-158.28346993737523,"y":-944.9198294162707,"z":432.4840588413108}},{"id":"1978","data":{"label":"Hearst New Media Center","x":-161.69280760575657,"y":-1116.4655353541903,"z":681.2083678605939}},{"id":"1979","data":{"label":"HomeArts Networks","x":-214.6332997530144,"y":-1131.7734937636992,"z":832.7661854648907}},{"id":"1980","data":{"label":"Women.com","x":-174.07882494476098,"y":-1396.4113241802124,"z":488.5413675850736}},{"id":"1981","data":{"label":"Hearst Realties","x":-135.9315593777751,"y":-957.0929766748795,"z":742.6117762128968}},{"id":"1982","data":{"label":"San Francisco Realties","x":-489.80707579646696,"y":-1009.4782131452966,"z":536.7768157167851}},{"id":"1983","data":{"label":"Sunical Land & Livestock Division","x":-430.74807586452243,"y":-1122.3773041040686,"z":132.4846849809449}},{"id":"1984","data":{"label":"The Chicago Group (U.S.)","x":-411.3238465864524,"y":755.1787742601518,"z":647.1706690137958}},{"id":"1985","data":{"label":"Chicago Sun-Times","x":-593.0295080672886,"y":661.9249764607503,"z":415.3342163579898}},{"id":"1986","data":{"label":"Daily Southtown","x":-580.2531526768607,"y":773.9083929830686,"z":275.6670161285739}},{"id":"1988","data":{"label":"Midwest Suburban Publishing","x":3043.294561640055,"y":-3517.902092186572,"z":207.30282078250562}},{"id":"1989","data":{"label":"Pioneer Newspapers","x":-1874.727628203076,"y":405.13819096597217,"z":632.033207597525}},{"id":"1990","data":{"label":"The Community Newspaper Group (U.S.)","x":-1179.090933996028,"y":-2607.872969608056,"z":483.64781544157177}},{"id":"1991","data":{"label":"Mount Vernon Register News (Illinois)","x":-1109.0289248894067,"y":-2750.5011724167075,"z":948.5091160998509}},{"id":"1992","data":{"label":"Enid News (Oklahoma)","x":-1306.7978468921224,"y":-2515.124610853356,"z":123.3689294103193}},{"id":" Mich.)","data":{"label":"The Herald Palladium (St. Joseph","x":-694.6323883583518,"y":-3960.5514926440455,"z":40.25803834208874}},{"id":"1994","data":{"label":"Telegraph Group Limited (U.K.)","x":-510.55019572692527,"y":1014.0649087344173,"z":41.78978475457163}},{"id":"1995","data":{"label":"The Daily Telegraph (London)","x":-327.7746683894211,"y":1006.3292565654956,"z":581.8814728605348}},{"id":"1996","data":{"label":"The Saturday Telegraph","x":-555.5063361620523,"y":1179.6179292134693,"z":116.62119795482128}},{"id":"1997","data":{"label":"The Sunday Telegraph","x":-675.955729434847,"y":999.9257380055587,"z":985.8674357188187}},{"id":"1998","data":{"label":"The Weekly Telegraph","x":-635.1703381811458,"y":1134.404080099499,"z":377.80881411492163}},{"id":"1999","data":{"label":"The Spectator","x":-446.37849857122956,"y":1186.3820569150494,"z":173.32948838200446}},{"id":"2000","data":{"label":"Southam Inc. (Canada)","x":120.28901304770534,"y":-3476.73909390214,"z":325.1754193803582}},{"id":"2001","data":{"label":"The Ottawa Citizen","x":232.40394225511136,"y":-3359.6083613304604,"z":885.5829973841685}},{"id":"2002","data":{"label":"The Montreal Gazette","x":85.363747075231,"y":-3320.5318171685844,"z":24.26787826164345}},{"id":"2003","data":{"label":"The Vancouver Sun","x":150.0201460425028,"y":-3312.486521140236,"z":947.2254621775152}},{"id":"2004","data":{"label":"The Province","x":13.309821565585935,"y":-3373.775674198704,"z":606.1776203082126}},{"id":"2005","data":{"label":"Calgary Herald","x":-23.148415095634846,"y":-3552.736887904165,"z":292.4939560252555}},{"id":"2006","data":{"label":"The Edmonton Journal","x":273.28913855766586,"y":-3505.139579308268,"z":570.0263083631463}},{"id":"2007","data":{"label":"Financial Post","x":4370.18908014334,"y":-1754.1465957620749,"z":352.11867148202015}},{"id":"2008","data":{"label":"Victoria Times-Colonist","x":198.27429973442668,"y":-3319.611690982493,"z":528.1100631601768}},{"id":"2009","data":{"label":"Cambridge Reporter","x":51.517937778084615,"y":-3629.305285586952,"z":641.9294445137904}},{"id":"2010","data":{"label":"Nanaimo Daily News (Vancouver Island)","x":250.12094788751983,"y":-3554.0606802822526,"z":719.9563510518683}},{"id":"2011","data":{"label":"Southam Magazine and Information Group","x":181.97496894479127,"y":-3614.5623595072866,"z":382.16251032846384}},{"id":"2012","data":{"label":"Saturday Night (monthly magazine)","x":112.85369185335685,"y":-3638.6427590766243,"z":752.577674202109}},{"id":"2013","data":{"label":"National Post","x":-35.25448907985265,"y":-3460.082292400285,"z":613.8708872522061}},{"id":"2014","data":{"label":"Sterling Newspapers Company (Canada)","x":-464.8712901980034,"y":907.461337207832,"z":565.930223759389}},{"id":"2015","data":{"label":"Regina Leader Post","x":-601.8896402184282,"y":1002.6635077157289,"z":428.33964544438084}},{"id":"2016","data":{"label":"Niagara Falls Review","x":-339.01000473074646,"y":832.1399427564593,"z":584.590483865449}},{"id":"2017","data":{"label":"The Jerusalem Post Publications (Israel)","x":-509.737767236737,"y":845.2234245284453,"z":562.4304376453811}},{"id":"2018","data":{"label":"Jerusalem Post","x":-666.5543411611175,"y":906.7674791827922,"z":48.234472993251345}},{"id":"2019","data":{"label":"Hollinger Digital","x":-279.02066634895846,"y":845.5379075051906,"z":329.8538736187646}},{"id":"2020","data":{"label":"Trip.com","x":-52.70607691479927,"y":1073.5915509083043,"z":761.0517269862434}},{"id":"2021","data":{"label":"Canada.com","x":-328.10414468020554,"y":643.887400268618,"z":956.0878735053622}},{"id":"2022","data":{"label":"Bidhit.com","x":-416.9051428677094,"y":496.5181105245065,"z":730.7792366521528}},{"id":"2023","data":{"label":"Aberdeen American News (South Dakota)","x":1487.3517661075184,"y":-3042.6640985462172,"z":780.8968463187471}},{"id":"2024","data":{"label":"Akron Beacon Journal (Ohio)","x":1538.7177363252058,"y":-3088.173278261181,"z":248.28484815069453}},{"id":"2025","data":{"label":"Belleville News-Democrat (Illinois)","x":1447.0699234554368,"y":-3019.618492513678,"z":115.83780020137891}},{"id":" Miss)","data":{"label":"The Sun Herald (Biloxi","x":4324.787436336492,"y":20.02267729519008,"z":129.9583927847603}},{"id":"2027","data":{"label":"Bradenton Herald (Florida)","x":1524.5046135951943,"y":-3059.973405987528,"z":176.36204593408112}},{"id":"2028","data":{"label":"The Charlotte Observer (North Carolina)","x":1559.6895352007941,"y":-3134.480394922612,"z":44.64531273517069}},{"id":" S.C.)","data":{"label":"The State (Columbia","x":-1493.8125646627498,"y":-3898.836016969619,"z":215.17074916946765}},{"id":"2030","data":{"label":"Columbus Ledger-Enquirer (Georgia)","x":1441.0605232364178,"y":-3046.266281080205,"z":912.9403633103669}},{"id":"2031","data":{"label":"Contra Costa Newspapers (California)","x":1782.8883442724527,"y":-3490.854640154132,"z":894.0264258956074}},{"id":"2032","data":{"label":"Ledger Dispatch (Antioch)","x":1769.6535833705211,"y":-3669.220430366503,"z":815.5925113864193}},{"id":"2033","data":{"label":"Contra Costa Times","x":1955.8512761067377,"y":-3459.8080526954855,"z":487.72612624410795}},{"id":"2034","data":{"label":"Valley Times (Pleasanton)","x":1915.632921320508,"y":-3380.1041496277485,"z":705.1873321584809}},{"id":"2035","data":{"label":"West County Times (Richmond)","x":1920.4929285748485,"y":-3644.3246336645257,"z":327.71022418458216}},{"id":"2036","data":{"label":"Detroit Free Press","x":1416.027638278012,"y":-3033.2186730595795,"z":522.5782853744531}},{"id":"2037","data":{"label":"Duluth News Tribune (Minnesota)","x":1465.53311206533,"y":-3064.967899095882,"z":108.88228471730588}},{"id":" Ind.)","data":{"label":"The News-Sentinel (Fort Wayne","x":-2514.788513317041,"y":-2886.238143382763,"z":993.6702700677426}},{"id":"2039","data":{"label":"Fort Worth Star-Telegram","x":1567.1921675643143,"y":-3103.964699464573,"z":430.9726412954167}},{"id":"2040","data":{"label":"Grand Forks Herald (North Dakota)","x":1581.9712627643385,"y":-3158.1060641421655,"z":209.085184010793}},{"id":"2041","data":{"label":"The Kansas City Star","x":1538.4929513762818,"y":-3235.9302928015763,"z":222.67000508584167}},{"id":"2042","data":{"label":"Lexington Herald-Leader (Kentucky)","x":1504.0792344102383,"y":-3087.5236488356486,"z":27.198319527114823}},{"id":"2043","data":{"label":"The Macon Telegraph (Georgia)","x":1391.3074326687265,"y":-3027.650940715559,"z":36.75356070413649}},{"id":"2044","data":{"label":"The Miami Herald","x":1669.0726243219178,"y":-3216.2458578183123,"z":898.479808871488}},{"id":"2045","data":{"label":"el Nuevo Herald","x":1875.4894051713363,"y":-3241.9840260091023,"z":417.7047635979478}},{"id":"2046","data":{"label":"The Monterey County Herald (California)","x":1367.3867969365965,"y":-3019.073286229287,"z":857.1691920574274}},{"id":"2048","data":{"label":"Philadelphia Daily News","x":1532.1203649268327,"y":-3124.3422033432735,"z":751.0308556995091}},{"id":"2049","data":{"label":"Philadelphia Inquirer","x":1540.8139725687815,"y":-3272.0070684511415,"z":531.5273493740647}},{"id":"2050","data":{"label":"Saint Paul Pioneer Press (Minnesota)","x":1577.500780221645,"y":-3190.008154075059,"z":144.34402279264492}},{"id":"2051","data":{"label":"San Jose Mercury News","x":1549.5209407796265,"y":-3180.538200598545,"z":952.3385014285084}},{"id":"2052","data":{"label":"San Luis Obispo Telegram-Tribune (California)","x":1355.0907091779363,"y":-3045.0488447858434,"z":931.5578012123615}},{"id":" Pa)","data":{"label":"Centre Daily Times (State College","x":-2336.5384909147097,"y":-1994.3235101878167,"z":925.5440166573107}},{"id":"2054","data":{"label":"Tallahassee Democrat","x":1568.3220488084871,"y":-3222.054257538619,"z":745.6203384392209}},{"id":" Ga.)","data":{"label":"The Daily Sun (Warner Robins","x":2186.9380174844364,"y":-4312.2217372593,"z":505.0936729484341}},{"id":"2056","data":{"label":"The Wichita Eagle (Kansas)","x":1446.773718769714,"y":-3328.4593879951663,"z":389.06745435971544}},{"id":" Pa.)","data":{"label":"The Times Leader (Wilkes-Barre","x":2610.9647002957063,"y":2493.614111037118,"z":347.08043656075273}},{"id":"2058","data":{"label":"Brentwood News (California)","x":1502.5915190294118,"y":-3295.2593274606497,"z":27.094869721636883}},{"id":"2059","data":{"label":"The Byron Gazette (Georgia)","x":1472.6295276998926,"y":-3344.3939219935764,"z":366.4799946791253}},{"id":" Ill.)","data":{"label":"The Herald (Cahokia-Dupo","x":-2857.043133894668,"y":-1990.3870472762046,"z":93.2585359004563}},{"id":" Calif.)","data":{"label":"The Cambrian (Cambria","x":-2071.3000792302337,"y":-3517.030069297291,"z":38.251431550784034}},{"id":"2062","data":{"label":"Concord Transcript (California)","x":1372.4134879229705,"y":-3347.7665728665343,"z":940.8667007405625}},{"id":"2064","data":{"label":"Florida Keys Keynoter","x":1313.8089412683767,"y":-3075.3480145842914,"z":51.02779604486018}},{"id":"2065","data":{"label":"Highland News Leader (Illinois)","x":1400.2649202295115,"y":-3337.1344982538044,"z":627.3232313679755}},{"id":"2069","data":{"label":"O'Fallon Progress (Illinois)","x":1504.6679476080963,"y":-3321.7323180120648,"z":662.7509613212217}},{"id":"2073","data":{"label":"Sparta News-Plaindealer (Illinois)","x":1340.056937270113,"y":-3323.7206233823517,"z":399.94519171983154}},{"id":" Fla.)","data":{"label":"The Reporter (Tavernier","x":4878.186794133294,"y":-142.14791914408215,"z":746.7958260797884}},{"id":"2076","data":{"label":"Knight Ridder New Media","x":1373.1204117805628,"y":-3372.198959976012,"z":31.798221839018925}},{"id":"2077","data":{"label":"MediaStream","x":1438.962847906606,"y":-3362.2145294557527,"z":599.8050190999506}},{"id":"2078","data":{"label":"Observer Transportation","x":1318.8203758905383,"y":-3329.3619870191196,"z":205.39506023432529}},{"id":"2079","data":{"label":"Twin Cities Newspaper Services","x":1310.3810498041603,"y":-3351.63827728335,"z":577.4751001975595}},{"id":"2080","data":{"label":"","x":-126.05670151708,"y":-3912.5724821549547,"z":821.3141509338182}},{"id":"2081","data":{"label":"","x":-2061.7535229483065,"y":518.4377334520777,"z":801.1961637819059}},{"id":"2082","data":{"label":"InfiNet","x":1322.3976466143185,"y":-3375.267262521395,"z":55.14336436950118}},{"id":"2083","data":{"label":"Interealty","x":1271.8778170523738,"y":-3309.521275973283,"z":416.8780640433589}},{"id":"2084","data":{"label":"","x":2639.9960275694857,"y":1972.4916953518332,"z":251.36222177401234}},{"id":"2085","data":{"label":"Newspapers First","x":1409.7084516956038,"y":-3371.172678361264,"z":439.3427793858307}},{"id":"2086","data":{"label":"","x":234.58476538750574,"y":-3609.144465804735,"z":874.8472853702023}},{"id":"2087","data":{"label":"Seattle Times","x":1288.9512634618059,"y":-3330.7722588393376,"z":710.842264097072}},{"id":"2088","data":{"label":"","x":1365.4003587283496,"y":2045.2253509535649,"z":930.8324476133107}},{"id":"2093","data":{"label":"Muscatine Journal (Iowa)","x":2160.944381116273,"y":-3962.555077727652,"z":778.8333431007705}},{"id":"2094","data":{"label":"Winona Daily News (Minnesota)","x":2200.660956539664,"y":-3717.633051344226,"z":193.7474127406391}},{"id":"2095","data":{"label":"Billings Gazette (Montana)","x":2244.3948141670307,"y":-3845.5635601112554,"z":578.8181288333385}},{"id":" Montana)","data":{"label":"The Montana Standard (Butte","x":2229.55892017075,"y":2754.295069578595,"z":114.25718317995481}},{"id":"2100","data":{"label":"Beatrice Daily Sun (Nebraska)","x":-1767.0803737486642,"y":179.09802452086842,"z":949.8509737817626}},{"id":"2101","data":{"label":"Columbus Telegram (Nebraska)","x":2103.5888801914207,"y":-3987.5244919082775,"z":350.39111582926694}},{"id":"2102","data":{"label":"Fremont Tribune (Nebraska)","x":2042.8615994993324,"y":-3652.5223456244726,"z":499.8314182429582}},{"id":"2103","data":{"label":"Lincoln Journal (Nebraska)","x":2032.5624092828994,"y":-3972.2337594962187,"z":544.7597118082159}},{"id":"2104","data":{"label":"The Bismarck Tribune (North Dakota)","x":2057.021242172629,"y":-3984.251022939984,"z":988.4327694457546}},{"id":"2105","data":{"label":"Albany Democrat-Herald (Oregon)","x":2252.691264121445,"y":-3822.555514420576,"z":672.1015993722685}},{"id":"2106","data":{"label":"Ashland Daily Tidings (Oregon)","x":2115.914076655791,"y":-3650.7470585506953,"z":111.0523107544421}},{"id":"2107","data":{"label":"Corvallis Gazette-Times (Oregon)","x":2011.9104008241065,"y":-3654.6992940788687,"z":822.4405510847805}},{"id":"2108","data":{"label":"Rapid CityJournal (South Dakota)","x":2226.2713447755496,"y":-3875.2518865794923,"z":68.7254515669382}},{"id":"2109","data":{"label":"Baraboo News Republic (Wisconsin)","x":2221.744956567867,"y":-3756.2932818895206,"z":974.8260055545792}},{"id":"2110","data":{"label":"Chippewa Herald (Wisconsin)","x":1922.4114251176125,"y":-3893.5692680103853,"z":53.97580833391791}},{"id":"2111","data":{"label":"The Capital Times (Wisconsin)","x":2233.040139704416,"y":-3929.2148080021275,"z":576.3037688297412}},{"id":"2112","data":{"label":"La Crosse Tribune (Wisconsin)","x":2088.5621530804365,"y":-3658.3241488698854,"z":889.5025839733602}},{"id":"2113","data":{"label":"Portage Daily Register (Wisconsin)","x":2252.178429184263,"y":-3747.8547994602263,"z":867.2953463283}},{"id":"2114","data":{"label":"Shawano Leader (Wisconsin)","x":2082.23831464048,"y":-3974.902551019545,"z":259.2460512761199}},{"id":"2115","data":{"label":"Wisconsin State Journal (Wisconsin)","x":1944.1772380089824,"y":-3747.49578150448,"z":802.9940509216631}},{"id":"2116","data":{"label":"The Journal Times (Racine)","x":2011.5034915784581,"y":-3954.337890430137,"z":415.2617331167665}},{"id":"2117","data":{"label":"Bettendorf News (Iowa)","x":2246.9180322927596,"y":-3896.045413522729,"z":586.9785778267767}},{"id":"2118","data":{"label":"Britt Tribune News (Iowa)","x":1953.9123252697427,"y":-3709.412751948088,"z":849.1617615372444}},{"id":"2119","data":{"label":"Forest City Summit (Iowa)","x":2211.696449312176,"y":-3916.909376739569,"z":183.8762016053954}},{"id":"2120","data":{"label":"Mitchell County Press News (Iowa)","x":2064.436475199899,"y":-3664.8353740649245,"z":418.6306732502949}},{"id":"2121","data":{"label":"Big Fork Eagle (Montana)","x":2230.1079628484804,"y":-3717.4408324308424,"z":815.8314921376247}},{"id":"2127","data":{"label":"Whitefish Pilot (Montana)","x":1936.5459269467174,"y":-3866.3031083599444,"z":826.5716323719163}},{"id":"2128","data":{"label":"David City Banner Press (Nebraska)","x":1929.4791844893252,"y":-3829.7404768334764,"z":301.28411128057263}},{"id":"2129","data":{"label":"The Plattsmouth Journal (Nebraska)","x":2253.6065607907894,"y":-3799.872668619654,"z":914.2855949250468}},{"id":"2130","data":{"label":"Schuyler Sun (Nebraska)","x":2189.552760693814,"y":-3937.566980187951,"z":180.9173270569373}},{"id":" Nebraska)","data":{"label":"Burt County Plaindealer (Tekamah","x":3171.867510537877,"y":-4117.922515912011,"z":797.8624143267139}},{"id":"2132","data":{"label":"Mandan News (North Dakota)","x":2263.56044608694,"y":-3864.291975138932,"z":136.53883379524046}},{"id":"2133","data":{"label":"Cottage Grove Sentinel (Oregon)","x":1941.2196587877452,"y":-3796.9443074567266,"z":542.7014102943846}},{"id":"2134","data":{"label":"Gresham Outlook (Oregon)","x":1975.1077576677526,"y":-3924.9763728373205,"z":716.0706665789813}},{"id":"2135","data":{"label":"Lebanon Express (Oregon)","x":2132.0143080888656,"y":-3976.7936959481403,"z":545.883025044428}},{"id":"2136","data":{"label":"Newport News-Times (Oregon)","x":2021.948729972285,"y":-3684.429002646682,"z":585.9465202922559}},{"id":"2137","data":{"label":"Sandy Post (Oregon)","x":2139.5745615905153,"y":-3660.056585074842,"z":975.3291476832759}},{"id":"2138","data":{"label":"The Springfield News (Oregon)","x":2248.737614979532,"y":-3776.90969007232,"z":311.64743025086625}},{"id":"2142","data":{"label":"Reedsburg Times Press/Report (Wisconsin)","x":1954.7117040656722,"y":-3896.43244385658,"z":934.2590986285167}},{"id":"2143","data":{"label":"Sauk Prairie Eagle (Wisconsin)","x":1922.4178060139384,"y":-3770.8579157075646,"z":802.8730663554339}},{"id":"2144","data":{"label":"Tomah Journal/Monitor Herald (Wisconsin)","x":1981.7990120877876,"y":-3954.277663609938,"z":728.0776019940037}},{"id":"2145","data":{"label":"Viroqua Broadcaster (Wisconsin)","x":1909.8480669271758,"y":-3849.1977181004063,"z":935.8011002092255}},{"id":"2146","data":{"label":"Westby Times (Wisconsin)","x":2156.1311237040254,"y":-3679.4662745741116,"z":330.0354488000945}},{"id":"2147","data":{"label":"Coulee News (Wisconsin)","x":2183.899606832246,"y":-3679.6722371302612,"z":441.6218748735989}},{"id":" WI (Wisconsin)","data":{"label":"West Salem","x":-338.72727666516676,"y":-4087.6130398814325,"z":16.518727544432732}},{"id":"2149","data":{"label":"Wisconsin Dells Events (Wisconsin)","x":1908.1963928098394,"y":-3802.7788921621723,"z":433.1586490588213}},{"id":"2161","data":{"label":"Mason City Shopper (Iowa)","x":1945.4328732760769,"y":-3928.944706343966,"z":718.7820902089672}},{"id":"2164","data":{"label":"The Post (Muscatine Iowa)","x":1984.5567546295333,"y":-3685.935977996891,"z":932.9406375703895}},{"id":" Tomah","data":{"label":"Foxxy Shopper (Sparta","x":4281.431336761481,"y":124.87749356565018,"z":107.54469659706855}},{"id":" MT)","data":{"label":"Ag Almanac/Prairie Star (Great Falls","x":3281.910285121454,"y":-858.9462245705136,"z":244.69480476015227}},{"id":" NE)","data":{"label":"Midwest Messenger (Tekamah","x":-2792.155464302278,"y":-1968.5915602255463,"z":408.6758260140544}},{"id":" ND)","data":{"label":"Farm & Ranch Guide (Bismarck","x":3137.4647311373474,"y":10.845928271511184,"z":603.5574435813769}},{"id":" SD)","data":{"label":"Tri-State Neighbor (Sioux Falls","x":4068.71149644019,"y":-2560.064295716515,"z":144.9076938526268}},{"id":" WI)","data":{"label":"AgriView (Madison","x":2777.993329594715,"y":2535.091410932332,"z":580.4257593345144}},{"id":" Helena (Arkansas)","data":{"label":"The Daily World","x":-2572.1120684672096,"y":-2642.0385000032857,"z":922.5149590780264}},{"id":"2245","data":{"label":"The Stuttgart Daily TMC (Arkansas)","x":4133.036452067345,"y":-516.7906202017302,"z":54.742033936395096}},{"id":"2246","data":{"label":"The Gridley Herald (California)","x":3842.67777322493,"y":-697.2186656905033,"z":600.5504706840816}},{"id":"2247","data":{"label":"The Gridley Shopping News (California)","x":4117.92030763543,"y":-696.22911294612,"z":127.68277110015825}},{"id":"2258","data":{"label":"Bartlett/Hanover Park/Streamwood Press (Illinois)","x":4154.077866738691,"y":-674.9828465699793,"z":720.1274639381203}},{"id":"2259","data":{"label":"Bensenville Press (Illinois)","x":3811.992755336838,"y":-417.47887889860976,"z":649.0840012548151}},{"id":"2260","data":{"label":"The Benton Standard (Illinois)","x":3873.0617983618267,"y":-377.92592582221187,"z":705.202420693597}},{"id":"2261","data":{"label":"Benton Evening News (Illinois)","x":4088.321933157863,"y":-770.3341955267006,"z":343.90762944558696}},{"id":"2262","data":{"label":"Blackberry Press (Illinois)","x":4051.5731859757634,"y":-432.5833775871706,"z":902.4083668013781}},{"id":"2263","data":{"label":"Bloomingdale Press (Illinois)","x":4182.890572438882,"y":-515.5525447898654,"z":813.4214203789005}},{"id":"2266","data":{"label":"The Carmi Times (Illinois)","x":3825.3049648840424,"y":-761.1792646189388,"z":702.9685400447818}},{"id":"2268","data":{"label":"White County Shopper News (Illinois)","x":3786.8198366007255,"y":-722.5374716251663,"z":653.1364642908071}},{"id":"2269","data":{"label":"Carol Stream Press (Illinois)","x":4164.290605989709,"y":-468.9403451486505,"z":900.3324446865204}},{"id":"2270","data":{"label":"Chester Herald Tribune (Illinois)","x":3836.8980818919335,"y":-731.9699992598016,"z":775.9086526604049}},{"id":"2271","data":{"label":"Christopher Progress (Illinois)","x":3794.418125756152,"y":-689.6048351675845,"z":622.7222381702815}},{"id":"2272","data":{"label":"Darien Metropolitan (Illinois)","x":3840.044524704532,"y":-454.11587851561217,"z":843.4242671969632}},{"id":"2273","data":{"label":"DuQuoin Evening Call (Illinois)","x":3801.5392235244763,"y":-384.91392086788164,"z":849.370905169772}},{"id":"2276","data":{"label":"Dwight Star & Herald (Illinois)","x":4065.6226931307256,"y":-358.72954978859616,"z":512.2414295196786}},{"id":"2279","data":{"label":"Elmhurst Press (Illinois)","x":3930.319395334802,"y":-322.7684588996244,"z":305.65525052474453}},{"id":"2280","data":{"label":"Eldorado Daily Journal (Illinois)","x":3821.753686455775,"y":-365.0010593982224,"z":671.3283540473709}},{"id":"2286","data":{"label":"Glendale Heights Press (Illinois)","x":3932.414323042738,"y":-733.7328165117551,"z":803.2226749986819}},{"id":"2287","data":{"label":"Glen Ellyn News (Illinois)","x":3890.792820887651,"y":-358.6833489678884,"z":132.5711345056184}},{"id":"2288","data":{"label":"Harrisburg Daily Register (Illinois)","x":3798.0615060767605,"y":-438.1463740311792,"z":228.22771511978112}},{"id":"2292","data":{"label":"Homer Township Metropolitan (Illinois)","x":3820.3947809740275,"y":-708.9772951036757,"z":224.91587793243627}},{"id":"2293","data":{"label":"Huntley Farmside (Illinois)","x":3806.4943175821936,"y":-492.02630469981614,"z":758.8824935940693}},{"id":"2294","data":{"label":"LaGrange/LaGrange Park Suburban LIFE Citizen (Illinois)","x":4121.19336146334,"y":-733.1017588159457,"z":293.839298617012}},{"id":"2295","data":{"label":"LaGrange Press (Illinois)","x":4023.03016655007,"y":-411.22353830339216,"z":946.2998487286052}},{"id":"2296","data":{"label":"Lemont Metropolitan (Illinois)","x":4112.807988560011,"y":-538.0723416145656,"z":405.6461894097698}},{"id":"2297","data":{"label":"Lockport Metropolitan (Illinois)","x":3930.7753145421993,"y":-782.6530078787719,"z":347.4170926069746}},{"id":"2298","data":{"label":"Lombard Spectator (Illinois)","x":3948.2354418421874,"y":-393.6723064954822,"z":206.9975192824507}},{"id":"2299","data":{"label":"Lombard XPRess (Illinois)","x":4178.34970174356,"y":-604.7308148930697,"z":28.33729018439124}},{"id":"2300","data":{"label":"Macomb Journal (Illinois)","x":3917.192683293835,"y":-356.87034240430603,"z":813.3537636808572}},{"id":"2301","data":{"label":"Journal Extra (Illinois)","x":4137.60904367949,"y":-422.6455116425568,"z":721.6541095564697}},{"id":"2302","data":{"label":"Macomb Marion Daily (Illinois)","x":4150.019835135027,"y":-558.6152884587764,"z":986.3267638547508}},{"id":"2303","data":{"label":"Republican Marion Daily Extra (Illinois)","x":3919.7203315983934,"y":-384.87142599000344,"z":227.18268582182554}},{"id":" Monmouth (Illinois)","data":{"label":"Pennysaver","x":-2445.6793346661416,"y":-1303.2238621926426,"z":322.639892255508}},{"id":"2307","data":{"label":"Murphysboro American (Illinois)","x":3976.2417261223754,"y":-315.3380904213918,"z":547.385560613082}},{"id":"2308","data":{"label":"American Monday (Murphysboro)","x":3887.6506852602515,"y":-725.4073484057108,"z":399.56470995141234}},{"id":"2309","data":{"label":"Newton Press Mentor (Illinois)","x":3809.326971808876,"y":-522.831309526624,"z":186.4376989301355}},{"id":"2310","data":{"label":"Norris City Banner (Illinois)","x":4137.414783874433,"y":-643.5420716544886,"z":131.69722644206306}},{"id":"2311","data":{"label":"Oak Brook Press (Illinois)","x":4182.285974461457,"y":-548.634682596683,"z":414.4980181299942}},{"id":"2312","data":{"label":"Oakbrook Terrace Press (Illinois)","x":4007.1938453441644,"y":-799.220729871774,"z":810.7770104640142}},{"id":"2313","data":{"label":"The Olney Daily Mail (Illinois)","x":3885.1155496005686,"y":-327.14873463707863,"z":19.271329738746125}},{"id":" Advantage (Olney","data":{"label":"Jasper County News Eagle","x":-1811.4376183782701,"y":867.8286622857813,"z":469.00650274125576}},{"id":"2315","data":{"label":"The Weekly Mail (Illinois)","x":4159.295977624723,"y":-528.3462127437606,"z":474.59006565755345}},{"id":"2316","data":{"label":"Orland/Tinley Villager (Illinois)","x":3912.0806576168516,"y":-712.4595533120964,"z":855.2841970769438}},{"id":"2320","data":{"label":"Roselle Press (Illinois)","x":4051.186324272483,"y":-339.0662782333002,"z":376.45027219333673}},{"id":"2324","data":{"label":"Sugar Grove Herald (Illinois)","x":3992.6878762325896,"y":-345.8135049820112,"z":733.2855468051454}},{"id":"2325","data":{"label":"Teutoplis Press (Illinois)","x":3908.084617973417,"y":-318.7466884542346,"z":123.76901706863785}},{"id":"2326","data":{"label":"Villa Park Argus (Illinois)","x":4125.266489561347,"y":-458.2569918385052,"z":852.6661984502615}},{"id":"2329","data":{"label":"Westchester News (Illinois)","x":4019.7929353073796,"y":-753.4454066924573,"z":150.34316648148004}},{"id":"2330","data":{"label":"Wheaton Leader (Illinois)","x":4102.599351745138,"y":-636.7458202289199,"z":859.6967608352728}},{"id":"2331","data":{"label":"Berwyn/Stickney/Forest View LIFE (Illinois)","x":4156.514751087088,"y":-698.5435737612925,"z":771.5617715959622}},{"id":"2332","data":{"label":"Brookfield Suburban LIFE Citizen (Illinois)","x":4095.104725873115,"y":-457.23492780768447,"z":294.09591241317213}},{"id":"2333","data":{"label":"North Riverside/Riverside Suburban LIFE Citizen (Illinois)","x":3965.451101814997,"y":-795.1766830562983,"z":126.43953346353199}},{"id":"2334","data":{"label":"Western Springs Suburban LIFE Citizen (Illinois)","x":3941.952288298239,"y":-755.848638227224,"z":3.294160473833019}},{"id":"2335","data":{"label":"Countryside/Hodgkins/Indian Head Park/Willow Springs Suburban LIFE Citizen (Illinois)","x":3738.230536736369,"y":-642.0538982064882,"z":619.9828803204055}},{"id":"2336","data":{"label":"Cicero LIFE (Illinois)","x":3767.145943341373,"y":-520.3072290886257,"z":197.3005448833449}},{"id":"2337","data":{"label":"Lyons/McCook Suburban LIFE Citizen (Illinois)","x":3813.9706156764987,"y":-606.9993816414226,"z":396.85366008256227}},{"id":"2338","data":{"label":"Westchester/Broadview Suburban LIFE Citizen (Illinois)","x":3752.6198179803623,"y":-663.8476759472887,"z":748.5178599682458}},{"id":"2339","data":{"label":"Hillside/Berkeley Press (Illinois)","x":3889.3965808556914,"y":-789.2568750476885,"z":120.96891037312841}},{"id":"2340","data":{"label":"Elmhurst Suburban LIFE (Illinois)","x":4050.820804098541,"y":-794.1294320887519,"z":775.0398400246335}},{"id":"2341","data":{"label":"Villa Park Suburban LIFE (Illinois)","x":4113.491538199152,"y":-756.8787458604183,"z":177.28220950245665}},{"id":"2342","data":{"label":"Darien Suburban LIFE (Illinois)","x":3871.451273355682,"y":-701.5827373312104,"z":488.9368517940334}},{"id":"2343","data":{"label":"Lombard Suburban LIFE (Illinois)","x":4124.0561064937365,"y":-589.5586364023102,"z":375.8447396100919}},{"id":"2344","data":{"label":"Hinsdale Suburban LIFE (Illinois)","x":4088.172075916893,"y":-741.953768648893,"z":968.1546589224441}},{"id":"2345","data":{"label":"Woodridge Suburban LIFE (Illinois)","x":3997.6292964635704,"y":-401.90953228440685,"z":697.2377475208318}},{"id":"2346","data":{"label":"Burr Ridge/Willowbrook Suburban LIFE (Illinois)","x":3727.325009033284,"y":-558.9655056108822,"z":23.158460992390495}},{"id":"2347","data":{"label":"Downers Grove Suburban LIFE (Illinois)","x":3759.299365594199,"y":-480.0071939375066,"z":816.7527199356483}},{"id":"2348","data":{"label":"Westmont Suburban LIFE (Illinois)","x":4149.7795289012165,"y":-618.5545075759874,"z":1.3738668665272957}},{"id":"2349","data":{"label":"Winfield Press (Illinois)","x":3726.045116703055,"y":-587.2944393826356,"z":866.4274273958614}},{"id":"2350","data":{"label":"Wayne Countryside Press (Illinois)","x":4173.803658098657,"y":-658.3183897735262,"z":884.2853605543808}},{"id":"2351","data":{"label":"Bensenville/Itasca/Wooddale Press (Illinois)","x":3944.0090064282367,"y":-359.9368307656696,"z":797.6446094049152}},{"id":"2352","data":{"label":"Naperville Met (Illinois)","x":4066.807270239364,"y":-694.8955067700726,"z":419.8267781961962}},{"id":"2353","data":{"label":"West Chicago Press (Illinois)","x":4030.4273688269204,"y":-798.74335253362,"z":984.4060369249545}},{"id":"2354","data":{"label":"Warrenville Post (Illinois)","x":4100.938451028832,"y":-511.9448895985306,"z":210.40554468098782}},{"id":"2355","data":{"label":"Lockport/Homer Township Metropolitan (Illinois)","x":3758.5821568725805,"y":-686.7793716605574,"z":105.64396662122056}},{"id":"2356","data":{"label":"Bolingbrook/Romeoville Metropolitan (Illinois)","x":4069.9683950585395,"y":-783.3498217862907,"z":835.8929134762751}},{"id":"2357","data":{"label":"Batavia Windmill (Illinois)","x":4018.2834934256425,"y":-436.6806461989072,"z":657.8866721198282}},{"id":"2358","data":{"label":"North Aurora Herald (Illinois)","x":3779.7771602881567,"y":-496.79853432556774,"z":131.6471528949661}},{"id":"2359","data":{"label":"Batavia Republican (Illinois)","x":3875.5718540990056,"y":-439.2519892570954,"z":728.3470871267564}},{"id":"2360","data":{"label":"Geneva Republican (Illinois)","x":3830.816685978599,"y":-478.7742605167123,"z":870.794209264713}},{"id":"2361","data":{"label":"St. Charles Republican (Illinois)","x":3795.649041463814,"y":-543.5753725393806,"z":684.793686418253}},{"id":"2362","data":{"label":"Marengo/Union Press (Illinois)","x":3743.7677770274868,"y":-517.7977759425285,"z":119.27919796256403}},{"id":"2363","data":{"label":"Press-Republican Hometown (Illinois)","x":4182.780332071725,"y":-577.0146713575323,"z":512.1124027612309}},{"id":"2364","data":{"label":"Select Homes-Cook County (Illinois)","x":4139.005420614157,"y":-717.9101201102058,"z":399.0598897078117}},{"id":"2365","data":{"label":"Career Moves (Illinois)","x":3864.660080074241,"y":-794.4637399740996,"z":726.8461432029317}},{"id":"2366","data":{"label":"Prime Times (Illinois)","x":4103.247262011814,"y":-387.0189204424187,"z":356.2166127579931}},{"id":"2367","data":{"label":"Select Homes-DuPage County (Illinois)","x":4153.277768343389,"y":-445.0625981337271,"z":293.3556634138652}},{"id":"2368","data":{"label":"LIFE�s Extra (Illinois)","x":3841.4951649664317,"y":-669.4049679700638,"z":67.72041390366002}},{"id":" Burley (Idaho)","data":{"label":"Sunrise Shopper","x":4283.631129532898,"y":-3193.81179898455,"z":814.6210362980879}},{"id":"2376","data":{"label":"Minodoka County News (Idaho)","x":4025.7090548567703,"y":-338.57748851345696,"z":93.5815377919509}},{"id":"2377","data":{"label":"Charles City Press (Iowa)","x":4179.86608185095,"y":-631.9023184583803,"z":880.0989567275599}},{"id":"2380","data":{"label":"New Hampton Chronicle (Iowa)","x":3961.7150495401847,"y":-819.3551130843034,"z":131.9967319435389}},{"id":"2381","data":{"label":"Hardin County Index (Iowa)","x":4097.663003676175,"y":-669.3958315559494,"z":679.8081912623633}},{"id":"2382","data":{"label":"Eldora Herald-Ledger (Iowa)","x":3906.892215050316,"y":-765.1745102426157,"z":675.0785275886882}},{"id":"2383","data":{"label":"Cresco Times-Plain Dealer (Iowa)","x":3835.008231659205,"y":-402.7894146405979,"z":427.10762447853057}},{"id":"2384","data":{"label":"The Atchison Daily Globe (Kansas)","x":3982.6274214462337,"y":-747.0652880188545,"z":908.7038231804034}},{"id":"2385","data":{"label":"Atchison Area Advertiser (Kansas)","x":3770.3207431079645,"y":-604.4206952385357,"z":648.5508847709982}},{"id":"2386","data":{"label":"Augusta Daily Gazette (Kansas)","x":4153.513278410575,"y":-588.4883943953919,"z":926.6444014484148}},{"id":"2392","data":{"label":"The El Dorado Times (Kansas)","x":4043.037503789872,"y":-720.8242967743736,"z":574.8554282297608}},{"id":"2393","data":{"label":"El Dorado Times Weekly (Kansas)","x":3992.621034462314,"y":-817.4058810823899,"z":986.6674554198969}},{"id":"2394","data":{"label":"Kansas City Kansan (Kansas)","x":3844.301697791224,"y":-350.35305316975246,"z":296.1678674584725}},{"id":"2395","data":{"label":"Kansas City Kansan (\"Sunday\") (Kansas)","x":3935.660365194155,"y":-424.68681928193746,"z":203.7919179647074}},{"id":"2396","data":{"label":"Wynadott County Shopper (Kansas)","x":3772.102084844838,"y":-440.6763195179392,"z":753.8430388121479}},{"id":"2397","data":{"label":"The Leavenworth Times (Kansas)","x":3856.14906648329,"y":-750.9488953616356,"z":327.04384970055435}},{"id":"2398","data":{"label":"The Leavenworth Times Sunday (Kansas)","x":3787.305754938787,"y":-464.86292597040574,"z":994.3615709431508}},{"id":"2401","data":{"label":"McPherson Sentinel (Kansas)","x":3864.7287626928373,"y":-340.3558343809218,"z":678.8209681112618}},{"id":"2404","data":{"label":"The Pratt Tribune (Kansas)","x":3953.2003013006197,"y":-323.65820314438497,"z":101.11836095803817}},{"id":"2407","data":{"label":"","x":3462.9584814309983,"y":1171.7354257306488,"z":766.4343640508546}},{"id":"2411","data":{"label":"The Bastrop Daily Express (Louisiana)","x":3845.573565143335,"y":-777.8224539600023,"z":11.868103811658148}},{"id":"2413","data":{"label":"The Donaldsonville Chief (Louisiana)","x":4121.256778917909,"y":-402.5399906238763,"z":896.5855998576621}},{"id":"2420","data":{"label":"Iowa News (Louisiana)","x":4066.051031421899,"y":-457.1971445773179,"z":559.9884287594131}},{"id":"2421","data":{"label":"Leesville Daily Leader (Louisiana)","x":3974.58035050304,"y":-393.22921703587053,"z":991.1589135324941}},{"id":"2422","data":{"label":"Moss Bluf News (Louisiana)","x":4114.566361336366,"y":-564.4146131506823,"z":205.26400507496746}},{"id":"2424","data":{"label":"Vinton News (Louisiana)","x":4137.538872022889,"y":-485.2976442376075,"z":208.0167515383151}},{"id":"2425","data":{"label":"Westlake News (Louisiana)","x":3778.9683542306266,"y":-411.91956712594765,"z":61.74278911722908}},{"id":"2426","data":{"label":"Cheboygan Daily Tribune (Michigan)","x":3734.018575236032,"y":-615.5617816394752,"z":755.3958873895064}},{"id":"2432","data":{"label":"Crookston Daily Times (Minnesota)","x":3806.020387351229,"y":-742.0685443080656,"z":579.5195526243065}},{"id":"2433","data":{"label":"Crookston Valley Shopper (Minnesota)","x":3962.351780998699,"y":-717.8839334042686,"z":114.92589503377393}},{"id":"2434","data":{"label":"Granite Falls/Clarkfield Advocate-Tribune (Minnesota)","x":3873.8815581212493,"y":-408.28103304611795,"z":10.321050535854193}},{"id":"2435","data":{"label":"The Halstad Shopper (Minnesota)","x":3763.908365591302,"y":-710.9895641403427,"z":273.2288961607461}},{"id":"2436","data":{"label":"Montevideo American News (Minnesota)","x":4084.471991931525,"y":-420.52846211774886,"z":624.9953325198039}},{"id":"2438","data":{"label":"Redwood Falls Gazette (Minnesota)","x":3782.373202073645,"y":-659.2348910894261,"z":18.797262925411175}},{"id":"2439","data":{"label":"Redwood Falls Livewire (Minnesota)","x":3907.0300329261026,"y":-806.2289406311211,"z":106.15617042109137}},{"id":"2440","data":{"label":"St. James Plain Dealer (Minnesota)","x":4091.5505005646482,"y":-486.12407404112037,"z":924.1512955482751}},{"id":"2442","data":{"label":"Sleepy Eye Herald Dispatch (Minnesota)","x":3790.214944946554,"y":-590.0019830523333,"z":554.8611253966267}},{"id":"2443","data":{"label":"The Sleepy Eye Reminder (Minnesota)","x":3761.9559401483166,"y":-554.1233646458695,"z":846.6071757234419}},{"id":"2444","data":{"label":"Boonville Daily News (Missouri)","x":3844.151082298793,"y":-380.72551218623903,"z":552.792651207066}},{"id":"2448","data":{"label":"The Carthage Press (Missouri)","x":4087.970521196735,"y":-368.42316141957417,"z":985.2528166980161}},{"id":"2449","data":{"label":"The Carthage Press Scope (Missouri)","x":3802.1334324714817,"y":-635.5834290556613,"z":953.502240421294}},{"id":"2455","data":{"label":"Kirksville Crier (Missouri)","x":3724.7901154730353,"y":-528.7893319376872,"z":157.8161866775516}},{"id":"2456","data":{"label":"Kirksville Daily Express & News (Missouri)","x":4024.5108622619628,"y":-700.8846382711563,"z":402.1979246899863}},{"id":"2460","data":{"label":"Lake of the Ozarks Boats (Missouri)","x":4045.4957418988306,"y":-390.05356263043814,"z":997.2263210707624}},{"id":"2461","data":{"label":"Lake of the Ozarks Real Estate (Missouri)","x":4124.892169917443,"y":-669.4812744881247,"z":111.7472076574868}},{"id":"2463","data":{"label":"Macon Journal (Missouri)","x":3967.495971036131,"y":-773.3415549470392,"z":896.2979347615454}},{"id":"2464","data":{"label":"Marceline Press (Missouri)","x":3904.141780733229,"y":-408.9875624452161,"z":882.7254884282636}},{"id":"2466","data":{"label":"The Mexico Ledger (Missouri)","x":4104.4669476338295,"y":-609.424923862116,"z":891.7145583816471}},{"id":"2467","data":{"label":"The Mexico Ledger TMC (Missouri)","x":3999.2983475017263,"y":-722.6820905936002,"z":31.771546984650676}},{"id":"2468","data":{"label":"Monroe City News (Missouri)","x":3753.8187104813633,"y":-583.2730351211703,"z":972.5860453297183}},{"id":"2469","data":{"label":"Mark Twain Regional News (Missouri)","x":3765.8418741963833,"y":-631.6170987732294,"z":818.7195217736454}},{"id":"2470","data":{"label":"Neosho Daily News (Missouri)","x":4068.038600761676,"y":-662.953426800098,"z":246.2626799969794}},{"id":"2471","data":{"label":"Neosho Daily News \"Etc.\" (Missouri)","x":4092.5644303289646,"y":-711.3317790573665,"z":835.8577766452509}},{"id":"2472","data":{"label":"Neosho Daily News \"Sunday\" (Missouri)","x":3748.106610637825,"y":-450.2614632528921,"z":241.48939137307025}},{"id":"2473","data":{"label":"Vacation News (Osage Beach) (Missouri)","x":3966.811406892595,"y":-352.3368332031114,"z":454.35888900886545}},{"id":"2474","data":{"label":"Rolla Daily News (Missouri)","x":4004.325888555678,"y":-322.2857120212593,"z":774.1356565075486}},{"id":"2475","data":{"label":"Rolla Daily News Plus (Missouri)","x":4030.631236834968,"y":-369.369062351876,"z":938.6272738714017}},{"id":"2480","data":{"label":"","x":4399.6045078207635,"y":-87.2102139197741,"z":683.7158917555515}},{"id":"2481","data":{"label":"","x":4260.72657400754,"y":-1840.7990396024925,"z":897.0508253638718}},{"id":"2485","data":{"label":"Homell Canisteo Penn-E-Saver (New York)","x":3839.3886923029168,"y":-428.41444466167013,"z":261.6763153637522}},{"id":"2500","data":{"label":"Corning-Elmira Pennysaver (New York)","x":4059.602137298276,"y":-734.7928280117467,"z":309.45919844227654}},{"id":"2503","data":{"label":"Saugerties Post Star (New York)","x":4071.6282207770037,"y":-396.201221346847,"z":865.9450786273806}},{"id":"2504","data":{"label":"Saugerties Pennysaver (New York)","x":4110.126948327397,"y":-432.5938261091869,"z":420.47726791140127}},{"id":"2507","data":{"label":"Wellsville Daily Reporter (New York)","x":3880.7871729363524,"y":-755.1384086339895,"z":850.839666953203}},{"id":"2509","data":{"label":"Wellsville Daily TMC (New York)","x":4000.9281880543476,"y":-773.6001352771473,"z":142.44110417275402}},{"id":"2510","data":{"label":"Devils Lake Daily Journal (North Dakota)","x":4002.406102975663,"y":-368.79994133109903,"z":359.43444149642124}},{"id":"2512","data":{"label":"The Carbondale News (Pennsylvania)","x":3931.8879505450614,"y":-813.6555616718924,"z":978.7802113670185}},{"id":"2515","data":{"label":"Milton Daily Standard (Pennsylvania)","x":3814.7943265083377,"y":-662.1967982787728,"z":946.8032517239891}},{"id":"2526","data":{"label":"Community Group International Network (CGIN)","x":4049.38965316593,"y":-759.7801351021963,"z":628.9819078303134}},{"id":"2527","data":{"label":"KMGH-TV (Denver)","x":2765.1255738972395,"y":-3183.1326373058228,"z":722.5637340971053}},{"id":"2528","data":{"label":"KGTV (San Diego)","x":2512.5665868623582,"y":-3031.387909538378,"z":766.6880924821122}},{"id":"2529","data":{"label":"KERO-TV (Bakersfield)","x":2750.1821607204247,"y":-3094.6068303325724,"z":524.6803736900598}},{"id":"2530","data":{"label":"WRTV (Indianapolis)","x":2426.028156076991,"y":-3238.9347762878224,"z":419.1585971730318}},{"id":"2531","data":{"label":"Business Week Group","x":-2172.025370810809,"y":-1173.6886048665024,"z":788.7576990487551}},{"id":"2532","data":{"label":"Business Week","x":2475.541043658576,"y":-3330.204987433224,"z":390.19450603954175}},{"id":"2534","data":{"label":"McGraw-Hill Construction Information Group","x":2723.8612755534014,"y":-3118.007345771596,"z":73.05976410056036}},{"id":"2535","data":{"label":"F.W. Dodge","x":2707.8647561114376,"y":-3063.1197251045587,"z":825.303630002758}},{"id":"2536","data":{"label":"Sweet's Group","x":2507.79166162193,"y":-3327.0703077117005,"z":440.29792457183413}},{"id":"2537","data":{"label":"Architectural Record","x":2412.1511039340667,"y":-3126.274866144267,"z":516.8458407862853}},{"id":"2538","data":{"label":"Engineering-News Record","x":2671.1660894669794,"y":-3351.5159729519796,"z":553.9819566600353}},{"id":"2539","data":{"label":"Design-Build","x":2554.8321648687406,"y":-3005.54642699363,"z":871.0305502065689}},{"id":"2540","data":{"label":"Aviation Week","x":2758.8837267802865,"y":-3234.5737861615203,"z":435.60102426588185}},{"id":"2541","data":{"label":"Aviation Week & Space Technology","x":2411.0224230577196,"y":-3180.3313868300293,"z":489.73474472460697}},{"id":"2542","data":{"label":"A/C Flyer","x":2392.4966162433657,"y":-3196.774406628848,"z":445.11382429890256}},{"id":"2543","data":{"label":"Business & Commercial Aviation","x":2621.5402859793503,"y":-3026.475519677824,"z":889.5239751335196}},{"id":"2544","data":{"label":"World Aviation Directory","x":2737.1247249784383,"y":-3182.624231752936,"z":899.140054555452}},{"id":"2545","data":{"label":"O&M Magazine","x":2765.0716020944683,"y":-3121.8647013421296,"z":164.67537716736723}},{"id":"2546","data":{"label":"Aviation Week Newsletters","x":2520.787140712905,"y":-3353.2627482256676,"z":306.399763777234}},{"id":"2547","data":{"label":"Hospital Practice","x":2741.5082016025963,"y":-3213.8413141883666,"z":209.1210269443007}},{"id":"2548","data":{"label":"The Physician and Sportsmedicine","x":2445.5844506161447,"y":-3059.7244141099063,"z":930.7918053539302}},{"id":"2549","data":{"label":"Postgraduate Medicine","x":2420.512403436156,"y":-3080.8145275016864,"z":232.87032561647126}},{"id":"2550","data":{"label":"Healthcare Informatics","x":2406.619492956829,"y":-3222.1127056156365,"z":419.9675015837232}},{"id":"2551","data":{"label":"Healthcare Education Group","x":2384.281893702817,"y":-3115.946720016901,"z":526.9402074522632}},{"id":"2552","data":{"label":"Power Magazine","x":2434.9151022096194,"y":-3295.7903380375656,"z":257.17111523216187}},{"id":"2553","data":{"label":"Electrical World","x":2765.8020111052138,"y":-3152.050807527771,"z":32.67733920959426}},{"id":"2554","data":{"label":"Global Energy Business","x":2735.036384327068,"y":-3062.937266770581,"z":767.1360505975082}},{"id":"2555","data":{"label":"Information Technologies for Utilities/IT","x":2692.032624273398,"y":-3040.005516031518,"z":255.01520068478655}},{"id":"2556","data":{"label":"McGraw-Hill Energy","x":2571.0587082429756,"y":-3023.9042260418364,"z":21.760762076081797}},{"id":"2557","data":{"label":"Utility Data Institute","x":2588.0878856072177,"y":-3352.5466324265562,"z":935.7795321078379}},{"id":"2558","data":{"label":"Tower Group International","x":2495.5373333547705,"y":-3016.0535755987685,"z":749.1026324431102}},{"id":"2559","data":{"label":"McGraw-Hill School Division","x":-1176.3580881786102,"y":1688.7044769041304,"z":164.87449151293987}},{"id":"2560","data":{"label":"Glencoe/McGraw-Hill","x":2429.4136388840634,"y":-3102.675722387946,"z":460.4525417389269}},{"id":"2561","data":{"label":"CTB/McGraw-Hill","x":2417.1230539003636,"y":-3152.521841285083,"z":74.61467981349546}},{"id":"2562","data":{"label":"SRA/McGraw-Hill","x":2692.48666360487,"y":-3328.360423900598,"z":955.33222817415}},{"id":"2563","data":{"label":"McGraw-Hill Consumer Products","x":2458.7401335587147,"y":-3033.7060384297256,"z":530.3868503802427}},{"id":"2564","data":{"label":"McGraw-Hill Higher Education","x":2617.270162381412,"y":-3002.386556428576,"z":625.4443914129963}},{"id":"2565","data":{"label":"McGraw-Hill","x":2465.9575486693648,"y":-3299.9422221829154,"z":303.2044667137117}},{"id":"2566","data":{"label":"Irwin/McGraw-Hill","x":2672.4849206975296,"y":-3310.899367628187,"z":102.32293219168498}},{"id":"2567","data":{"label":"Dushkin/McGraw-Hill","x":2555.127522563448,"y":-3347.4441886199697,"z":246.81370356141642}},{"id":"2568","data":{"label":"Primis Custom Publishing","x":2327.00170240646,"y":-3288.387659486114,"z":960.942247472574}},{"id":"2569","data":{"label":"Professional Book Group","x":2708.0061358248813,"y":-3283.8416306892072,"z":420.60871539074606}},{"id":" Technical and Medical","data":{"label":"Science","x":-1651.7540248359978,"y":625.6852690588667,"z":79.47594391142742}},{"id":"2572","data":{"label":"Osborne/McGraw-Hill","x":2666.1603830768854,"y":-3048.182932895352,"z":798.4392287093469}},{"id":"2573","data":{"label":"Computing McGraw-Hill","x":2408.696073873798,"y":-3061.8083935821483,"z":154.7831295206068}},{"id":"2574","data":{"label":"Business/General Reference","x":2728.5973501446315,"y":-3246.145823308727,"z":581.0131427214001}},{"id":"2575","data":{"label":"McGraw-Hill Ryerson (Canada)","x":2716.9281529924274,"y":-3309.3991820019824,"z":174.34413708374686}},{"id":"2576","data":{"label":"McGraw-Hill Latin America (McGraw-Hill Interamericana)","x":2737.1384469379745,"y":-3145.549509910745,"z":864.9672742225578}},{"id":"2577","data":{"label":"McGraw-Hill Spain","x":2434.8932596942795,"y":-3267.2084253289213,"z":406.0511096561188}},{"id":" Middle East","data":{"label":"McGraw-Hill Europe","x":-1861.6671489298585,"y":-1499.0780903514387,"z":196.80709065351908}},{"id":"2579","data":{"label":"McGraw-Hill Asia/Pacific","x":2665.0041607967905,"y":-3017.9480323718344,"z":866.3278260874556}},{"id":"2580","data":{"label":"McGraw-Hill Australia","x":2634.506131387563,"y":-3359.0661505318776,"z":57.972059325806846}},{"id":"2581","data":{"label":"McGraw-Hill Lifetime Learning","x":2388.4667053264,"y":-3147.4527671951637,"z":702.3442242577119}},{"id":" Inc.","data":{"label":"MarketWatch.com","x":-831.7727165829756,"y":1935.8008933446054,"z":712.3489432402414}},{"id":"2583","data":{"label":"Xebec/McGraw-Hill","x":2712.336156114139,"y":-3090.9140528447797,"z":353.98988381941285}},{"id":"2584","data":{"label":"Standard & Poors Ratings Service","x":2640.555932307999,"y":-3333.938191350351,"z":672.8095118866999}},{"id":"2585","data":{"label":"Standard & Poors Financial Information Services","x":2741.7390498761733,"y":-3276.480546871599,"z":428.01244332878554}},{"id":"2586","data":{"label":"Richmond Times-Dispatch (Virginia)","x":1085.8655563410357,"y":-3348.7617641754023,"z":566.0483023528815}},{"id":"2587","data":{"label":"Star Watch Richmond (Virginia)","x":1031.3154897523145,"y":-3440.120810760428,"z":698.4688414742633}},{"id":"2589","data":{"label":"Bristol Herald Courier (Virginia)","x":797.0756139609553,"y":-3222.9259950530286,"z":382.78010667205467}},{"id":"2595","data":{"label":"Culpeper Star-Exponent(Virginia)","x":763.2477407882143,"y":-3309.8555002142048,"z":240.17333159403796}},{"id":"2597","data":{"label":"Danville Register & Bee Star Watch Danville (Virginia)","x":1054.0266149659274,"y":-3438.4271080948115,"z":151.84443925949066}},{"id":"2601","data":{"label":"The Manassas Journal Messenger (Virginia)","x":1103.5581457727476,"y":-3312.7102514147855,"z":655.9827012439395}},{"id":"2602","data":{"label":"Manassas Weekender (Virginia)","x":814.6014367247631,"y":-3456.504346633291,"z":187.55372669505977}},{"id":"2603","data":{"label":"The Newport News Gazette (Virginia)","x":1054.4689187685808,"y":-3464.079600084461,"z":870.1025589011766}},{"id":"2604","data":{"label":"Orange Express (Virginia)","x":1000.1681300081418,"y":-3485.4966551366906,"z":748.9543338442688}},{"id":"2605","data":{"label":"Orange Bullet (Virginia)","x":1026.51795462483,"y":-3488.371991685125,"z":679.2329311837691}},{"id":"2608","data":{"label":"Orange County Review (Virginia)","x":739.50132128419,"y":-3279.047631022761,"z":286.0752769729411}},{"id":"2611","data":{"label":"Richlands News-Press (Virginia)","x":765.1305199749982,"y":-3221.291036602647,"z":434.6146041582006}},{"id":"2612","data":{"label":"Suffolk News-Herald (Virginia)","x":750.9930996109788,"y":-3373.09367900988,"z":855.0963385957393}},{"id":"2623","data":{"label":"Yorktown Crier (Virginia)","x":736.7509307724304,"y":-3248.3244548874513,"z":91.14606815355786}},{"id":"2624","data":{"label":"Winston-Salem Journal (North Carolina)","x":969.0784331240402,"y":-3490.810987815719,"z":478.45372175169865}},{"id":"2629","data":{"label":"Hickory Daily Record (North Carolina)","x":708.0095976700431,"y":-3290.779702422822,"z":494.05492252296665}},{"id":"2638","data":{"label":"The Reidsville Review (North Carolina)","x":721.0161367253436,"y":-3343.9737015789924,"z":521.8418247950206}},{"id":"2640","data":{"label":"Roanoke-Chowan News Herald (North Carolina)","x":707.8940646388578,"y":-3320.0507532355045,"z":444.3799900756309}},{"id":"2641","data":{"label":"Roanoke-Chowan Weekly (North Carolina)","x":854.8985281217065,"y":-3502.7016329114567,"z":200.2228233399823}},{"id":"2642","data":{"label":"Shopper Gates County Index (North Carolina)","x":727.9114152582551,"y":-3379.12331777351,"z":691.4546431510487}},{"id":"2643","data":{"label":"Statesville Record & Landmark (North Carolina)","x":922.7017119506695,"y":-3519.709713738247,"z":776.3523184651284}},{"id":"2647","data":{"label":"The Tampa Tribune (Florida)","x":748.2620615220931,"y":-3418.7765270320124,"z":603.7189872900324}},{"id":"2661","data":{"label":"Media General News Service (District of Columbia)","x":962.8953143994131,"y":-3515.129655912251,"z":47.060884648699506}},{"id":" Ala.","data":{"label":"WIAT - Birmingham","x":-1758.3501902345301,"y":-1225.1879272381184,"z":105.96353450338202}},{"id":" Fla.","data":{"label":"WJWB - Jacksonville","x":-2787.1028476105384,"y":-1818.032619431442,"z":868.8431723290486}},{"id":" Ga.","data":{"label":"WSAV- Savannah","x":-1227.2227069574626,"y":1164.0965155406848,"z":618.1875891288986}},{"id":" Ky.","data":{"label":"WTVQ - Lexington","x":-1527.3361397619306,"y":-3229.273781263771,"z":351.17448577461465}},{"id":" La.","data":{"label":"KALB - Alexandria","x":-782.1763538610235,"y":-3848.0612045025246,"z":537.4033815246537}},{"id":" Miss.","data":{"label":"WHLT- Hattiesburg","x":-2246.6709700418696,"y":-2988.759968858243,"z":342.1285785152841}},{"id":" N.C.","data":{"label":"WNCT - Greenville","x":-311.69243178529723,"y":-4159.343913827259,"z":870.6357483304892}},{"id":" S.C.","data":{"label":"WCBD- Charleston","x":-2364.785389208157,"y":-1497.6523560008527,"z":375.38837335425734}},{"id":" Tenn.","data":{"label":"WDEF - Chattanooga","x":2147.5804051768037,"y":2744.316699173445,"z":367.1350344163744}},{"id":" Va.","data":{"label":"WSLS - Roanoke","x":-812.6249502119731,"y":1812.283300540612,"z":252.7026014631486}},{"id":"2675","data":{"label":"Garden State Paper Company","x":806.2586544992655,"y":-3478.5550797433907,"z":432.23275918072426}},{"id":"2676","data":{"label":"Southeast Paper Manufacturing","x":1177.717931683149,"y":-3379.916752303995,"z":712.0674365974817}},{"id":"2677","data":{"label":"Virginia Business Magazine","x":818.623866919891,"y":-3194.8768937890413,"z":451.23084421983873}},{"id":"2678","data":{"label":"Media General Financial Services","x":1041.506948764215,"y":-3275.2968745532407,"z":542.1308646921545}},{"id":"2679","data":{"label":"Better Homes and Gardens","x":2204.0874595883197,"y":1455.8502008944524,"z":880.8412664591818}},{"id":"2680","data":{"label":"Ladies' Home Journal","x":2139.952666558749,"y":1729.860639127748,"z":781.8256186188395}},{"id":"2681","data":{"label":"Country Home","x":2419.9219794319242,"y":1573.0556895169502,"z":925.6304230900722}},{"id":"2682","data":{"label":"Midwest Living","x":2170.912765125362,"y":1467.0313571669603,"z":330.5202053439762}},{"id":"2683","data":{"label":"Traditional Home","x":2398.803090628936,"y":1541.9711946357065,"z":916.3796096061383}},{"id":"2684","data":{"label":"WOOD","x":2139.0214028900646,"y":1488.0734079892882,"z":182.26558744851462}},{"id":"2685","data":{"label":"Crayola Kids","x":2198.3338568075387,"y":1774.9829456594716,"z":573.8733219151386}},{"id":"2686","data":{"label":"Family Money","x":2425.8646442055124,"y":1602.3474975905674,"z":80.21398297763116}},{"id":"2687","data":{"label":"more","x":2101.616597960873,"y":1567.7305908964172,"z":349.88163408740604}},{"id":"2688","data":{"label":"Successful Farming","x":2121.244122364328,"y":1691.9427190458364,"z":283.50532312987633}},{"id":"2689","data":{"label":"Renovation Style","x":2269.431035893118,"y":1455.270836292576,"z":115.87656133638701}},{"id":"2690","data":{"label":"Golf for Women","x":2343.9678202239393,"y":1470.4636872542515,"z":914.193003994114}},{"id":"2691","data":{"label":"Country Gardens","x":2413.165722427555,"y":1686.718659230568,"z":604.1361601279101}},{"id":"2692","data":{"label":"Decorative Woodcrafts","x":2377.4391676870637,"y":1502.87174422743,"z":744.8394065974376}},{"id":"2693","data":{"label":"Crafts Showcase","x":2232.13607884249,"y":1448.2114033818116,"z":281.1784017799088}},{"id":"2694","data":{"label":"Cross Stitch & Needlework","x":2235.6968525436732,"y":1779.8412505326341,"z":219.49777072581168}},{"id":"2695","data":{"label":"American Patchwork & Quilting","x":2427.8814326342317,"y":1631.2845976502422,"z":92.57881737959272}},{"id":"2696","data":{"label":"Do It Yourself","x":2121.974027757692,"y":1510.8107028817094,"z":374.959759646035}},{"id":" Deck and Landscape","data":{"label":"Garden","x":-2330.1143566601468,"y":-1936.5371191454833,"z":594.8920026504654}},{"id":"2698","data":{"label":"Decorating","x":2099.2950743160154,"y":1611.5803853302905,"z":665.6947647517226}},{"id":"2699","data":{"label":"American Park Network","x":2102.3972561106248,"y":1649.857478291604,"z":353.15661518017237}},{"id":"2700","data":{"label":"California Tourism Publications","x":2162.7405839023368,"y":1758.6646567880161,"z":568.3087564508955}},{"id":"2701","data":{"label":"Meredith Books","x":2325.019595275925,"y":1775.000670666127,"z":326.6535515633857}},{"id":"2702","data":{"label":"Meredith Press","x":2273.294835753062,"y":1787.931219337429,"z":403.52995958326574}},{"id":"2703","data":{"label":"Sedgewood Press","x":2364.5314165880827,"y":1743.3293611752306,"z":113.68574657663788}},{"id":"8197","data":{"label":"Allen & Company","x":1605.1133762930185,"y":-3660.3146660660127,"z":25.383530258372254}},{"id":"2705","data":{"label":"Ladies Home Journal","x":2391.4023189122145,"y":1712.8167355112582,"z":287.7205995847143}},{"id":"8195","data":{"label":"ACS Sports.com","x":-952.4153712663606,"y":1230.7681463925937,"z":253.93737053249566}},{"id":" GA","data":{"label":"WGNX-TV (CBS) Atlanta","x":4036.220137021446,"y":-2171.8964347452334,"z":483.1712781944766}},{"id":" OR","data":{"label":"KFXO-LP(Fox) Bend","x":1937.7240335685638,"y":2615.216257830234,"z":396.399542590153}},{"id":" AZ","data":{"label":"KPHO-TV (CBS) Phoenix","x":1231.067753097067,"y":-4320.221911176017,"z":636.7075127566319}},{"id":" NV","data":{"label":"KVVU-TV (Fox) Las Vegas","x":-901.2279076767304,"y":1394.9938027625603,"z":954.9813512657599}},{"id":" CT","data":{"label":"WFSB-TV (CBS) Hartford-New Haven","x":173.24868898149134,"y":-4014.0916413968284,"z":837.531388240147}},{"id":" TN","data":{"label":"WSMV-TV (NBC) Nashville","x":942.0246597780542,"y":-4902.033176978923,"z":631.4407008318692}},{"id":" S.C./Asheville","data":{"label":"WHNS-TV (Fox) Greenville - Spartanburg - Anderson","x":3047.0418671028856,"y":1341.3415798635888,"z":138.03521757666726}},{"id":" MI","data":{"label":"WNEM-TV (CBS) Flint-Saginaw","x":-2714.5871377553863,"y":-2500.795456960433,"z":288.88926423084115}},{"id":"2721","data":{"label":"Better Homes and Gardens Television show","x":2421.3329224328118,"y":1658.9392166357675,"z":609.8017649367305}},{"id":"2723","data":{"label":"The Sacramento Bee (California)","x":1098.855363028526,"y":-3181.787221239281,"z":929.9921076686733}},{"id":"2724","data":{"label":"The Fresno Bee (California)","x":1126.3748338366913,"y":-3209.4207150156763,"z":262.48934177187346}},{"id":"2725","data":{"label":"The Modesto Bee (California)","x":1082.4515047946352,"y":-3213.7724291730005,"z":337.1832349521595}},{"id":"2726","data":{"label":"Clovis Independent (California)","x":920.9011877170224,"y":-3034.5532136316574,"z":449.16026649119067}},{"id":"2728","data":{"label":"Chapel Hill News (North Carolina)","x":992.994625563837,"y":-3348.4117916153637,"z":40.81740177680015}},{"id":"2729","data":{"label":"Cary News (North Carolina)","x":1070.7486982283335,"y":-3272.0652825525995,"z":675.5502021402398}},{"id":"2730","data":{"label":"Zebulon Record (North Carolina)","x":808.7214243483072,"y":-3313.119267264543,"z":547.2164352357452}},{"id":"2732","data":{"label":"Mount Olive Tribune (North Carolina)","x":868.9851921082754,"y":-3013.617629496802,"z":597.8341968384686}},{"id":"2733","data":{"label":"Smithfield Herald (North Carolina)","x":901.5011079807205,"y":-3020.617589706767,"z":520.2902034734411}},{"id":"2735","data":{"label":"The Beaufort Gazette (South Carolina)","x":1027.8811986748951,"y":-3334.4626175103904,"z":224.61380331208235}},{"id":"2737","data":{"label":"The Fort Mill Times (South Carolina)","x":973.1829314868764,"y":-3371.3928672786606,"z":439.6668431575721}},{"id":"2738","data":{"label":"Clover Herald (South Carolina)","x":814.2123463604312,"y":-3065.612657885934,"z":718.0865997705346}},{"id":"2739","data":{"label":"Yorkville Enquirer (South Carolina)","x":755.3288880630116,"y":-3228.822302009267,"z":795.0980722988274}},{"id":"2740","data":{"label":"Lake Wylie Magazine (South Carolina)","x":881.3917183586882,"y":-3370.666728169785,"z":781.5547829028344}},{"id":"2741","data":{"label":"Anchorage Daily News (Alaska)","x":749.0924520263688,"y":-3286.242150535737,"z":518.093887355871}},{"id":" Richland and Pasco","data":{"label":"Tri-City Herald (Kennewick","x":4329.817765266021,"y":-1988.7522505082238,"z":757.844633742998}},{"id":"2746","data":{"label":"Nando Media","x":745.3017466668912,"y":-3113.806540331465,"z":257.8750870451321}},{"id":"2747","data":{"label":"The Newspaper Network","x":705.5895537373067,"y":-3170.582585123134,"z":433.0161730111175}},{"id":"2748","data":{"label":"Business North Carolina","x":923.8279254502959,"y":-3381.095613595789,"z":480.6946924962221}},{"id":"2749","data":{"label":"Scripps-McClatchy Western News Service","x":806.2257354904268,"y":-3343.1130433601766,"z":14.955173248350606}},{"id":"2750","data":{"label":"Newsprint Ventures","x":703.9646939085287,"y":-3203.8428911389888,"z":232.6171711722822}},{"id":"2751","data":{"label":"Ponderay Newsprint","x":1151.9430298201369,"y":-3240.3173741796763,"z":313.68534643368906}},{"id":"2752","data":{"label":"HarperCollins Publisher","x":1106.4928006755035,"y":-229.29067602061332,"z":807.1661952254993}},{"id":"2753","data":{"label":"HarperCollins General Book Group","x":276.56714397827636,"y":777.6966533861205,"z":515.935245592173}},{"id":"2754","data":{"label":"HarperCollins","x":96.77624751846224,"y":784.6913457986057,"z":338.29332709937756}},{"id":"2755","data":{"label":"Perennial","x":308.44522455948254,"y":951.474908743885,"z":148.16951350115582}},{"id":"2756","data":{"label":"Cliff Street Books","x":99.78782688464253,"y":825.6891860664373,"z":181.46066227932667}},{"id":"2757","data":{"label":"The Ecco Press","x":95.7485047040027,"y":856.9027945853486,"z":929.2839646801905}},{"id":"2758","data":{"label":"Quill","x":185.45408144721068,"y":966.8192383446676,"z":187.52848522857857}},{"id":"2759","data":{"label":"HarperAudio","x":202.19693365884632,"y":993.8503356321417,"z":808.653244239117}},{"id":"2760","data":{"label":"Regan Books","x":242.41735546964037,"y":1003.4171408707289,"z":429.04240770438173}},{"id":"2761","data":{"label":"Amistad Press","x":136.9206907841326,"y":951.6815160788246,"z":844.0018271913807}},{"id":"2762","data":{"label":"Morrow/Avon","x":389.4530940967661,"y":422.7393659403333,"z":258.30471138240017}},{"id":"2763","data":{"label":"William Morrow","x":204.86804974588495,"y":497.79644569527045,"z":920.9240013462999}},{"id":"2764","data":{"label":"Avon","x":1045.3651407072766,"y":-280.87558014571823,"z":286.4913794742705}},{"id":"2765","data":{"label":"HarperTorch","x":272.8585904253464,"y":568.004051968037,"z":418.5956463908831}},{"id":"2766","data":{"label":"Eos","x":237.6878749377488,"y":555.2446890118044,"z":796.2354317577267}},{"id":"2767","data":{"label":"HarperEntertainment","x":172.17869694190586,"y":481.5576847849097,"z":949.5492372279319}},{"id":"2768","data":{"label":"HarperSanFrancisco","x":1041.847996864578,"y":-164.45243431932704,"z":75.77182895040457}},{"id":"2769","data":{"label":"HarperInformation","x":495.3979347614368,"y":516.2688062228926,"z":375.42408724377043}},{"id":"2770","data":{"label":"HarperBusiness","x":393.58570386883093,"y":662.2590717301773,"z":945.5421573679241}},{"id":"2771","data":{"label":"HarperResource","x":357.99309589348013,"y":620.9646198197115,"z":347.85172859893}},{"id":"2772","data":{"label":"Access Travel","x":443.4566146538514,"y":700.5256170126277,"z":65.79550906541299}},{"id":"2773","data":{"label":"William Morrow Cookbooks","x":413.59845264870273,"y":701.2251064094735,"z":707.9888567783707}},{"id":"2774","data":{"label":"Branded Books Program","x":356.75986390919115,"y":657.0321830283956,"z":625.1808432328995}},{"id":"2775","data":{"label":"HarperCollins Children's Book Group","x":584.251986820901,"y":698.3489362029286,"z":826.1848421348701}},{"id":"2776","data":{"label":"Greenwillow Books","x":463.3990907335442,"y":836.4495229097565,"z":383.0874048166941}},{"id":"2777","data":{"label":"Joanna Cotler Books","x":504.233398813034,"y":871.2681315199243,"z":949.5151352637803}},{"id":"2778","data":{"label":"Laura Geringer Books","x":574.7924897696948,"y":874.5187698182872,"z":812.2919047955053}},{"id":"2779","data":{"label":"HarperCollins HarperFestival","x":550.8147888325275,"y":901.8203892428373,"z":84.59367289970143}},{"id":"2780","data":{"label":"HarperTrophy","x":516.3275951896521,"y":906.1060249820384,"z":523.0664460440371}},{"id":"2781","data":{"label":"","x":2667.0198587469213,"y":1886.1108008725205,"z":203.71575858507373}},{"id":"2782","data":{"label":"Tempest","x":580.0879663819269,"y":905.1397103483805,"z":397.25301621932863}},{"id":"2783","data":{"label":"HarperCollins International","x":1107.399840791977,"y":-117.5736426438616,"z":364.0044986889717}},{"id":"2784","data":{"label":"Fox Broadcasting","x":1093.177164800437,"y":-93.00114120630496,"z":908.1847448322711}},{"id":"2785","data":{"label":"Fox Entertainment","x":945.9070423219846,"y":386.32400821166993,"z":879.3743049306748}},{"id":"2786","data":{"label":"Fox Kid's Network","x":1133.7237161785706,"y":15.267396859908331,"z":762.6478422253062}},{"id":"2787","data":{"label":"Fox Sports","x":954.6535616703954,"y":-259.11227278442857,"z":401.6741835334909}},{"id":"2788","data":{"label":"WNVW - New York City","x":263.89827153187616,"y":717.6266694974238,"z":887.1546122031722}},{"id":"2789","data":{"label":"KTTV - Los Angeles","x":411.3358747470593,"y":691.8354793294002,"z":5.010070513178366}},{"id":"2790","data":{"label":"WFLD TV - Chicago","x":181.3616458010115,"y":837.3262908880597,"z":311.6485688888555}},{"id":"2791","data":{"label":"WTXF TV - Philadelphia","x":233.24833338585495,"y":734.0112988096571,"z":830.3048135978215}},{"id":"2792","data":{"label":"WFXT TV - Boston","x":211.75000565895607,"y":759.3678950307021,"z":117.49440679472612}},{"id":"2793","data":{"label":"WTTG TV - Washington D.C.","x":194.76876914551758,"y":789.9190088292344,"z":307.0428986120424}},{"id":"2794","data":{"label":"KDFW TV - Dallas","x":494.1339747412094,"y":874.2714507247856,"z":164.51936707671155}},{"id":"2795","data":{"label":"WJBK TV - Detroit","x":476.89406027569066,"y":764.9960092685933,"z":326.44143285544544}},{"id":"2796","data":{"label":"WAGA TV - Atlanta","x":516.4013652207987,"y":846.547850425427,"z":486.99450732927295}},{"id":"2797","data":{"label":"KRIV TV - Houston","x":490.9004464104373,"y":929.3525577779928,"z":95.36948395580347}},{"id":"2798","data":{"label":"WJW TV - Cleveland","x":204.36819904324875,"y":815.4932576147548,"z":890.2626667004158}},{"id":"2799","data":{"label":"WTVT TV - Tampa","x":202.1630951468078,"y":878.5565651891939,"z":771.2554032675661}},{"id":"2800","data":{"label":"KSAZ TV - Phoenix","x":359.96822852186506,"y":1008.3388263693687,"z":897.7879003173366}},{"id":"2801","data":{"label":"KDVR TV - Denver","x":295.7700713195145,"y":999.6114124188398,"z":623.3088668462366}},{"id":"2802","data":{"label":"KTVI TV - St. Louis","x":262.72755547047836,"y":983.4220339437725,"z":144.92087036696864}},{"id":"2803","data":{"label":"WITI TV - Milwaukee","x":318.32168378817914,"y":1040.4638540621681,"z":111.28945972730087}},{"id":"2804","data":{"label":"WDAF TV - Kansas City","x":397.1978668419588,"y":1019.5155750369713,"z":408.8768147790196}},{"id":"2805","data":{"label":"KSTU TV - Salt Lake City","x":238.20346747382928,"y":993.9636201597887,"z":370.2089982533592}},{"id":"2806","data":{"label":"WHBQ TV - Memphis","x":271.81558211564425,"y":1015.4732134579172,"z":177.0728953390508}},{"id":"2807","data":{"label":"WGHP TV - Greensboro","x":346.688858727764,"y":1039.0411630786039,"z":860.856495774989}},{"id":"2808","data":{"label":"WBRC TV - Birmingham","x":184.80579606545507,"y":915.55155213957,"z":391.74325274598874}},{"id":"2809","data":{"label":"KTBC TV - Austin","x":427.3879068963415,"y":1017.5907328243775,"z":123.87426552273828}},{"id":"2810","data":{"label":"KVC TV - Austin","x":377.9048164849587,"y":1039.6792774261376,"z":487.70273064539225}},{"id":"2811","data":{"label":"Twentieth Television","x":105.38043705071914,"y":711.6641977170593,"z":172.6650369234366}},{"id":"2812","data":{"label":"Echostar","x":983.0517500469778,"y":-471.5778503217789,"z":361.9837818023437}},{"id":"2813","data":{"label":"Fox Sports Net","x":82.56025946752197,"y":579.7634799755951,"z":427.443875912906}},{"id":"2814","data":{"label":"Fox Sports South","x":240.80634949923478,"y":802.8235307551267,"z":315.1292062436262}},{"id":"2815","data":{"label":"Fox Sports Pittsburgh","x":90.30256216026874,"y":867.0805867131503,"z":1.701622122954216}},{"id":"2816","data":{"label":"Fox Sports Southeast","x":255.91153956560447,"y":812.5081310734649,"z":328.68489090260545}},{"id":"2817","data":{"label":"Fox Sports Midwest","x":-27.881498282045868,"y":631.7364881614494,"z":265.21160696911215}},{"id":"2818","data":{"label":"Fox Sports Rocky Mountain","x":-58.96049472542245,"y":695.2602419983396,"z":897.8760177767601}},{"id":"2819","data":{"label":"Fox Sports Arizona","x":-47.46218851778394,"y":781.801213374757,"z":980.3083375062731}},{"id":"2820","data":{"label":"Fox Sports Northwest","x":-31.9050381616903,"y":812.2261308009038,"z":664.4978174932106}},{"id":"2821","data":{"label":"Fox Sports West","x":211.8536114023368,"y":850.832406687131,"z":581.2389571906351}},{"id":"2822","data":{"label":"Fox Sports West#2","x":112.28189203440343,"y":892.0287987733582,"z":965.4029356100738}},{"id":"2823","data":{"label":"Fox Sports Detroit","x":16.43656631724525,"y":869.3166881504067,"z":540.3410092609278}},{"id":"2824","data":{"label":"","x":754.5800177373117,"y":-4533.646169189995,"z":648.6509868312809}},{"id":"2825","data":{"label":"","x":3058.6879206609938,"y":-3580.4445043504247,"z":76.3686000478152}},{"id":"2826","data":{"label":"Fox Sports Cincinnati","x":-74.1274384718622,"y":760.3743253126368,"z":434.79476627537906}},{"id":"2827","data":{"label":"Fox Sports Intermountain West","x":-10.807579272370731,"y":872.4911536768423,"z":711.5920534862008}},{"id":"2828","data":{"label":"","x":583.5606460552804,"y":-4429.240716432569,"z":415.38544893148696}},{"id":"2829","data":{"label":"","x":3382.004180510193,"y":-1603.1014460798629,"z":595.2929575453704}},{"id":"2830","data":{"label":"","x":-2371.197138792427,"y":-927.893518879996,"z":522.2956498746372}},{"id":"2831","data":{"label":"Fox Sports Southwest","x":-33.166210854734345,"y":846.3428762725371,"z":113.79504247741079}},{"id":"2832","data":{"label":"","x":3767.1533667478416,"y":760.3261032613082,"z":224.92976533287302}},{"id":"2833","data":{"label":"FiT TV","x":1434.8072985066756,"y":1050.5489976713216,"z":97.41166064254547}},{"id":"2834","data":{"label":"The Health Network","x":1387.6130959415304,"y":1090.8414960039045,"z":7.782235983681218}},{"id":"2835","data":{"label":"Fox Sports World","x":1308.7760842650478,"y":1094.6932431527375,"z":458.0530432631804}},{"id":"2836","data":{"label":"FX","x":382.88563437878656,"y":2206.411733892526,"z":951.8654975431517}},{"id":"2837","data":{"label":"","x":1446.7393521396953,"y":-4434.962471843969,"z":967.1165279491054}},{"id":"2838","data":{"label":"","x":-1081.118978089532,"y":-3328.5728851862273,"z":653.6697910330711}},{"id":"2839","data":{"label":"Fox Kids Worldwide","x":-1468.6463404143433,"y":1290.8949152790947,"z":205.227540944116}},{"id":"2840","data":{"label":"The Family Channel","x":807.1658434116666,"y":-547.7716427879823,"z":272.38963096936965}},{"id":"2841","data":{"label":"MTM Entertainment","x":760.4743440920747,"y":-572.0004241689721,"z":264.773392574295}},{"id":"2842","data":{"label":"Fox News Channel","x":-59.99040348036306,"y":816.9697449497635,"z":356.3151793861745}},{"id":"2843","data":{"label":"FxM","x":165.4840169059853,"y":884.8537030641437,"z":889.6112419948512}},{"id":"2844","data":{"label":"","x":-1842.9844066923863,"y":677.5669864674537,"z":394.08527147394443}},{"id":"2845","data":{"label":"","x":3764.100448754545,"y":-2430.596613887734,"z":849.5794973005335}},{"id":"2846","data":{"label":"","x":1867.4392877831915,"y":-4312.666659194206,"z":618.297712797952}},{"id":"2847","data":{"label":"British Sky Broadcasting (BSkyB) - UK","x":1534.0125835429508,"y":613.5751544749437,"z":369.8684096331806}},{"id":"2848","data":{"label":"","x":3165.4355945602583,"y":-3730.7030355124025,"z":606.4401100606505}},{"id":"2849","data":{"label":"Music Choice Europe (UK)","x":1057.8838119374623,"y":-177.88595192453704,"z":860.5264545677637}},{"id":"2850","data":{"label":"QVC (UK)","x":1056.109630557707,"y":-201.36624072759878,"z":949.1562496679817}},{"id":"2851","data":{"label":"Sky Multi-Channels (UK)","x":1574.8566433185051,"y":788.9449735830203,"z":817.5641298210489}},{"id":"2852","data":{"label":".tv (UK)","x":1533.3244679607888,"y":816.5457510663973,"z":276.53937297031695}},{"id":"2853","data":{"label":"National Geographic Channel (UK)","x":1138.9926990242693,"y":-118.73148703119841,"z":788.1819448787747}},{"id":"2854","data":{"label":"Paramount Channel (UK)","x":1104.122881739875,"y":-157.0000332936661,"z":396.58426239439893}},{"id":"2855","data":{"label":"Sky One (UK)","x":1656.6276845595812,"y":753.2219842496052,"z":533.8394813755023}},{"id":"2856","data":{"label":"Sky News (UK)","x":1619.2222134866151,"y":795.9237355937257,"z":574.6665588559509}},{"id":"2857","data":{"label":"Sky Soap (UK)","x":1497.5304476245874,"y":795.7900548816469,"z":218.35961021596307}},{"id":"2858","data":{"label":"Sky Travel (UK)","x":1693.1791489252382,"y":730.2479792957447,"z":599.2433119452205}},{"id":"2859","data":{"label":"The Computer Channel (UK)","x":1635.0980573816578,"y":783.5080396013673,"z":681.9499731545395}},{"id":"2860","data":{"label":"Nickelodeon U.K.","x":526.28038676186,"y":-309.0594979025118,"z":644.5793597949356}},{"id":"2861","data":{"label":"The History Channel (UK)","x":1072.2014215235322,"y":-127.19774788679024,"z":99.78772053151542}},{"id":"2862","data":{"label":"Sky Scottish (UK)","x":1122.624272498675,"y":-173.32519935828805,"z":325.11543468361447}},{"id":"2863","data":{"label":"Granada Sky Broadcasting (UK)","x":707.137214702891,"y":865.3377271633954,"z":953.1858855383161}},{"id":"2864","data":{"label":"Granada Plus (UK)","x":644.7591636126017,"y":1024.5008816055733,"z":174.54833331861198}},{"id":"2865","data":{"label":"Granada Talk TV (UK)","x":789.6769300040041,"y":1026.0208952014345,"z":981.4946818798833}},{"id":"2866","data":{"label":"Granada Men and Motors (UK)","x":739.6164598823489,"y":1032.4273542177843,"z":435.58725362301163}},{"id":"2867","data":{"label":"Granada TV High Street (UK)","x":593.2680259980589,"y":1017.4007921225821,"z":158.92860127195397}},{"id":"2868","data":{"label":"Granada Food and Wine (UK)","x":671.6634550186332,"y":1046.9358930907765,"z":255.74112233389877}},{"id":"2869","data":{"label":"Granada Health and Beauty (UK)","x":619.1323143387308,"y":1045.1527513070032,"z":509.30415639276094}},{"id":"2870","data":{"label":"Granada Home and Garden (UK)","x":719.1938471733124,"y":1055.328481261332,"z":938.2852554164605}},{"id":"2871","data":{"label":"Fox Kids (UK)","x":1107.3542869963694,"y":-192.20638325255914,"z":925.619199246168}},{"id":"2872","data":{"label":"Premium Channels (UK)","x":71.11679802935623,"y":393.17104835456485,"z":185.56668762054596}},{"id":"2873","data":{"label":"Sky Movies (UK)","x":-142.51115041547337,"y":375.276602448439,"z":307.5125877756615}},{"id":"2874","data":{"label":"The Movie Channel (UK)","x":-8.907187667830385,"y":538.7542722136868,"z":816.6464195672103}},{"id":"2875","data":{"label":"Sky Sports (UK)","x":-94.1674328970289,"y":472.60567936217285,"z":663.2542863915203}},{"id":"2876","data":{"label":"Sky Movies Gold (UK)","x":-57.287816521916284,"y":513.2976925409503,"z":490.09716776262223}},{"id":"2877","data":{"label":"Sky Sports 2 (UK)","x":-100.10638759611584,"y":505.75694419108004,"z":385.438765429152}},{"id":"2878","data":{"label":"Sky Sports 3 (UK)","x":-152.80499514382336,"y":408.51789027554787,"z":805.5001282742835}},{"id":"2879","data":{"label":"TM3 (UK)","x":1082.5648918174488,"y":-145.95348792742607,"z":804.2012906974522}},{"id":"2880","data":{"label":"FOXTEL (Australia)","x":1120.270109548952,"y":-73.46461582304619,"z":400.346545047666}},{"id":"2881","data":{"label":"Arena (Australia)","x":864.3962202840466,"y":-229.9852237684554,"z":25.507007984138408}},{"id":"2882","data":{"label":"Channel V (Australia)","x":1133.4531552293483,"y":-94.37666688848549,"z":472.978127159114}},{"id":"2883","data":{"label":"FOX (Australia)","x":989.7943879292256,"y":-249.72249036281573,"z":324.83329471643543}},{"id":"2884","data":{"label":"FOX History (Australia)","x":1111.3035059132353,"y":-6.469768093245875,"z":145.11574018073836}},{"id":"2885","data":{"label":"FOX Soap (Australia)","x":1020.8711103573369,"y":-228.97658863295146,"z":227.33954165027947}},{"id":"2886","data":{"label":"FOX Talk (Australia)","x":1023.8387781739821,"y":-206.43866567896475,"z":322.825110371977}},{"id":"2887","data":{"label":"FOX Travel (Australia)","x":1121.3301464318693,"y":50.814753428611766,"z":352.01885669740005}},{"id":"2888","data":{"label":"FOXTEL Weather (Australia)","x":1014.0993160687776,"y":-267.804513307311,"z":556.9960503745343}},{"id":"2889","data":{"label":"FX (Australia)","x":944.7830785336287,"y":-309.5081183295306,"z":820.5215961342915}},{"id":"2890","data":{"label":"Nickelodeon (Australia)","x":1109.6654713218531,"y":-47.77852046661701,"z":915.8521550409096}},{"id":"2891","data":{"label":"Sky News Australia (Australia)","x":1036.5202516736426,"y":-248.40423963160356,"z":319.5679680062944}},{"id":"2892","data":{"label":"UK TV (Australia)","x":925.2829956984783,"y":-297.89484409937177,"z":902.619762652128}},{"id":"2893","data":{"label":"Fox Sports (Australia)","x":820.7868573055744,"y":52.018649867068234,"z":339.7269100627154}},{"id":"2894","data":{"label":"The Comedy Channel (Australia)","x":870.2112191516262,"y":85.67367039113287,"z":179.2095434115355}},{"id":"2895","data":{"label":"Star TV (Asia)","x":979.7554470716109,"y":-220.6243127910111,"z":820.1880058896916}},{"id":"2896","data":{"label":"STAR Chinese (Asia)","x":873.3806481104734,"y":-288.3567184093563,"z":637.9632201397592}},{"id":"2897","data":{"label":"STAR Plus (Asia)","x":1079.1421323019626,"y":-235.1746414086101,"z":644.1564365542207}},{"id":"2898","data":{"label":"STAR Movies (Asia)","x":916.9783473096477,"y":104.17707960638108,"z":429.4349450384529}},{"id":"2899","data":{"label":"STAR Plus Japan (Asia)","x":910.3032673623184,"y":-242.57838857213665,"z":489.66511540271915}},{"id":"2900","data":{"label":"STAR Movies South (Asia)","x":1103.4477217994317,"y":26.57263305230117,"z":577.1939174577552}},{"id":"2901","data":{"label":"ESPN STAR Sports (Asia)","x":1085.583243089889,"y":-51.00476003660333,"z":192.65149523862647}},{"id":"2902","data":{"label":"STAR Sports (Asia)","x":964.7596256930556,"y":-284.2833500685638,"z":321.21156932017027}},{"id":"2903","data":{"label":"Channel V - Asia","x":1079.6405196512746,"y":-209.06482234827308,"z":551.5880502637041}},{"id":"2904","data":{"label":"Viva Cinema (Asia)","x":1087.3105036479628,"y":114.253563414165,"z":753.2369046720762}},{"id":"2905","data":{"label":"Phoenix Satellite TV (Asia)","x":1067.2828714875045,"y":-258.1451343171848,"z":341.4983873020323}},{"id":"2906","data":{"label":"Phoenix Chinese (Asia)","x":1077.9242023252527,"y":7.848711147179529,"z":258.4069769926345}},{"id":"2907","data":{"label":"CTV Sportsnet (Canada)","x":1141.2610913470016,"y":-18.67497810230634,"z":95.18600119295107}},{"id":"2908","data":{"label":"ISKYB (India)","x":1145.479021748184,"y":-61.01870324907213,"z":119.37490336934786}},{"id":"2909","data":{"label":"Asia Today Ltd.(India)","x":1006.8590144294294,"y":-291.27476612797,"z":318.06353840120005}},{"id":"2910","data":{"label":"ZEE TV (India)","x":1074.5742757853795,"y":52.949759921935765,"z":671.8066800829379}},{"id":"2911","data":{"label":"EL TV (India)","x":862.4395312438601,"y":-202.5954701039591,"z":788.0425691442694}},{"id":"2912","data":{"label":"ZEE Cinema (India)","x":1044.671664211507,"y":54.987536334409924,"z":400.5087636199014}},{"id":"2913","data":{"label":"Siti Cable Network Pvt (India)","x":985.2006650924623,"y":-309.02010359978976,"z":701.5973462860345}},{"id":"2914","data":{"label":"Indiovision (Indonesia)","x":856.4360440131327,"y":-177.59395678012243,"z":290.678933011532}},{"id":"2915","data":{"label":"Film Indonesia (Indonesia)","x":792.16736306448,"y":-0.4475034290444455,"z":258.66016548750247}},{"id":"2916","data":{"label":"","x":765.1026869160155,"y":-4334.551190715698,"z":641.3678733784504}},{"id":"2917","data":{"label":"News Broadcasting Japan (Indonesia)","x":816.4247843271983,"y":-278.1801349762445,"z":960.6084916397401}},{"id":"2918","data":{"label":"SkyPerfect TV (Indonesia)","x":1041.9928167476237,"y":89.33575397452296,"z":386.27209664319497}},{"id":"2919","data":{"label":"Canal Fox (Latin America)","x":897.5507364847663,"y":-304.5414858842614,"z":0.8934248217893348}},{"id":"2920","data":{"label":"Fox Sports Americas (Latin America)","x":1080.0711869549154,"y":86.26800119114705,"z":735.1817930700236}},{"id":"2921","data":{"label":"Fox Kids(Latin America)","x":916.1945198472586,"y":-216.6857300474394,"z":850.2796169593724}},{"id":"2922","data":{"label":"Telecine (Latin America)","x":1051.6769449408143,"y":112.81350717121404,"z":457.0411521120239}},{"id":"2923","data":{"label":"CineCanal (Latin America)","x":913.5412907793134,"y":-278.4539135547866,"z":155.85941602600207}},{"id":"2924","data":{"label":"Sky Latin America DTH Platform (Latin America)","x":-958.2285206570618,"y":1840.0185753282576,"z":676.394224077311}},{"id":"2925","data":{"label":"Innova (Latin America)","x":950.4342749375219,"y":-222.03491175483668,"z":304.3955299705499}},{"id":"2926","data":{"label":"NetSat (Latin America)","x":960.4752847174741,"y":88.96364807912505,"z":908.432606745095}},{"id":"2927","data":{"label":"balance of Latin America (Latin America)","x":931.7767479579038,"y":-257.6334163968668,"z":207.78996512351134}},{"id":"2928","data":{"label":"TVSM (US)","x":828.181467547874,"y":-194.7092100449472,"z":931.4557555139764}},{"id":"2929","data":{"label":"TV Total (US)","x":878.7476761407465,"y":-265.2744784458282,"z":987.7242034295404}},{"id":"2930","data":{"label":"Cable Guide (US)","x":1009.7394886170928,"y":85.25693288100229,"z":650.934064780871}},{"id":"2931","data":{"label":"The Weekly Standard (US)","x":806.1910384826933,"y":-233.53453929601983,"z":579.2113310890248}},{"id":"2932","data":{"label":"Maximum Golf (US)","x":1101.5405574525075,"y":66.3529791960791,"z":360.4629554974499}},{"id":"2933","data":{"label":"News America Marketing (US)","x":534.7116468672407,"y":350.15549278656636,"z":8.066390671464418}},{"id":"2934","data":{"label":"In Store (US)","x":383.5731442339247,"y":513.8197319762421,"z":783.0781443627706}},{"id":"2935","data":{"label":"FSI (US)","x":337.9701936755396,"y":482.0502281406616,"z":115.06531717147128}},{"id":"2936","data":{"label":"News Canada FSI (Canada)","x":630.6193228167003,"y":412.7884517411312,"z":323.68845113968115}},{"id":"2937","data":{"label":"In Store (Canada)","x":553.0872276796399,"y":637.502114721221,"z":732.3703713871945}},{"id":"2938","data":{"label":"FSI (Canada)","x":490.6945799336181,"y":586.9324668902009,"z":870.7254190340481}},{"id":"2939","data":{"label":"The Times Educational Supplement (Canada)","x":796.1025577164082,"y":-180.55176391476198,"z":775.2753067234169}},{"id":"2940","data":{"label":"The Times Literary Supplement (Canada)","x":801.5276862194696,"y":-141.1504522841733,"z":382.11363242149065}},{"id":"2941","data":{"label":"Nursery World (Canada)","x":851.8912182262238,"y":-253.6888214412893,"z":496.5607936984198}},{"id":"2942","data":{"label":"Pacific Islands Monthly (Australia-Asia)","x":772.6203960781454,"y":-173.89531423489734,"z":759.0887381793827}},{"id":"2943","data":{"label":"","x":-1821.343588753242,"y":-2933.0730828668147,"z":136.62309930962823}},{"id":"2944","data":{"label":"Twentieth Century Fox (US)","x":779.9802844143751,"y":-103.42385954234305,"z":968.6255454906776}},{"id":"2945","data":{"label":"Fox Filmed Entertainment (US)","x":892.4802390299924,"y":118.26186326717925,"z":396.07349308614516}},{"id":"2946","data":{"label":"Fox 2000 (US)","x":1064.1343931644092,"y":134.12510152876712,"z":129.78752873332587}},{"id":"2947","data":{"label":"Fox Searchlight (US)","x":803.0031738416428,"y":-209.59677820448996,"z":938.3124953197823}},{"id":"2948","data":{"label":"Fox Family Films (US)","x":849.0452664956206,"y":-289.56228848399405,"z":209.08545169011083}},{"id":"2949","data":{"label":"Fox Animation Studios (US)","x":839.785101526586,"y":90.62993181987531,"z":266.0834201047453}},{"id":"2950","data":{"label":"Twentieth Century Fox Home (US)","x":765.4239265536603,"y":-21.033266503544837,"z":173.93354937352012}},{"id":"2951","data":{"label":"Twentieth Century Fox T.V. (US)","x":1010.4095519149505,"y":112.38487965859895,"z":203.51366536066882}},{"id":"2952","data":{"label":"Fox Studios Australia","x":815.866895305162,"y":-251.87366178890898,"z":468.8573333416208}},{"id":"2953","data":{"label":"New York Post (US)","x":773.4025519180641,"y":-227.6364925766611,"z":204.67131979785756}},{"id":"2954","data":{"label":"The Times (UK)","x":1039.6490859563291,"y":152.83294607261996,"z":583.1187782555227}},{"id":"2955","data":{"label":"The Sunday Times (UK)","x":1019.082533439223,"y":135.36873306541747,"z":296.0460087850274}},{"id":"2956","data":{"label":"The Sun (UK)","x":982.6658074461716,"y":130.09374341187322,"z":443.21712105042656}},{"id":"2957","data":{"label":"News of the World (UK)","x":812.7177749481984,"y":81.72421182775997,"z":70.82321151099502}},{"id":"2958","data":{"label":"The Times Supplements (UK)","x":963.2245892266674,"y":120.54432647842623,"z":479.6054482295102}},{"id":"2959","data":{"label":"The Australian (Australia)","x":739.8799363639705,"y":-179.96691786554857,"z":869.7074308347892}},{"id":"2960","data":{"label":"The Weekend Australian (Australia)","x":762.2321181553534,"y":-59.30626551268597,"z":525.4309339811633}},{"id":" Australia)","data":{"label":"The Daily Telegraph (New South Wales","x":4323.950789349815,"y":-3028.2907615701865,"z":782.0628360257745}},{"id":"Australia)","data":{"label":"The Sunday Mail (Queensland","x":85.87346181163184,"y":2840.439216551522,"z":31.32596923976294}},{"id":"2985","data":{"label":"The Advertiser (South Australia)","x":771.8865669704837,"y":-138.52585331853697,"z":107.98226091246477}},{"id":"2986","data":{"label":"Sunday Mail (South Australia)","x":748.4850636787824,"y":-149.7083320519705,"z":181.56030674247293}},{"id":"2987","data":{"label":"Messenger Press Group (South Australia)","x":766.0702451119305,"y":-203.73975727415745,"z":173.71095421240378}},{"id":"2988","data":{"label":"Sunday Times (Western Australia)","x":733.4639433234088,"y":-52.64965127271171,"z":79.55635635722591}},{"id":"2989","data":{"label":"Independent Newspaper Limited (New Zealand)","x":980.3771906444922,"y":154.3859023870882,"z":878.8962181912987}},{"id":"2990","data":{"label":"The Fiji Times (Fiji)","x":776.9671826128533,"y":23.149896970357986,"z":589.7866945572416}},{"id":"2991","data":{"label":"Nai Lalakei (Fijian language) (Fiji)","x":757.2045411233989,"y":-107.34805170787786,"z":72.11713700492761}},{"id":"2992","data":{"label":"Shanti Dut (Hindi language) (Fiji)","x":799.6868207702901,"y":111.62046264657329,"z":529.0157813138896}},{"id":"2993","data":{"label":"Post Courier (Papua New Guinea)","x":935.7443581823959,"y":160.48910394081304,"z":919.6173541560071}},{"id":"2994","data":{"label":"Los Angeles Dodgers","x":860.0786369227417,"y":116.10366378352956,"z":923.2345225040159}},{"id":"2995","data":{"label":"","x":-1626.2959769461315,"y":757.7781869678629,"z":683.5025147576418}},{"id":"2996","data":{"label":"","x":-2209.765307601606,"y":250.6937486634606,"z":769.8757088322603}},{"id":"2997","data":{"label":"Los Angeles Kings (NHL)","x":904.6589107394543,"y":155.50881975494303,"z":495.4288104651119}},{"id":"2998","data":{"label":"Los Angeles Lakers (NBA)","x":789.940782464369,"y":60.27879394068077,"z":627.7804502544407}},{"id":"2999","data":{"label":"Staples Center","x":4422.5110870880835,"y":-1165.151746638142,"z":767.8170329555995}},{"id":"3000","data":{"label":"News America New Media","x":822.4753323586938,"y":122.80686656540638,"z":776.055650120209}},{"id":"3001","data":{"label":"Fox Sports Radio Network","x":877.0389351867993,"y":146.41001330750896,"z":232.06701562686848}},{"id":"3002","data":{"label":"Broadsystem Ltd. (Europe)","x":744.4865340064225,"y":12.569965505534128,"z":289.58138445401494}},{"id":"3003","data":{"label":"Convoys Group (Europe)","x":738.4110919934783,"y":-19.216032874513076,"z":670.1543157791725}},{"id":"3004","data":{"label":"PLD Telekon (Europe)","x":756.9586243779804,"y":40.46140529059994,"z":859.7648431109969}},{"id":"3005","data":{"label":"Sky Radio (Europe)","x":957.0283195459806,"y":179.33377325629408,"z":859.8334395947473}},{"id":"3006","data":{"label":"Sky Radio Sweden (Europe)","x":1013.0965037120486,"y":167.2494403472574,"z":698.54363185782}},{"id":"3007","data":{"label":"TALKCO (Europe)","x":735.6649098049538,"y":-89.11443782744573,"z":338.9374278656805}},{"id":"3008","data":{"label":"Radio 538 (Europe)","x":985.5443104493993,"y":180.8662805398253,"z":62.00181496467994}},{"id":"3009","data":{"label":"Ansett Australia (Australia - Asia)","x":764.6762617540276,"y":72.11443334616615,"z":541.4024384275999}},{"id":"3010","data":{"label":"Ansett New Zealand (Australia - Asia)","x":843.3075915845616,"y":142.09365860387516,"z":424.5464698930244}},{"id":"3011","data":{"label":"Ansett Worldwide Aviation Services (Australia - Asia)","x":713.4220225630752,"y":-88.18476707838818,"z":169.17238266768854}},{"id":"3012","data":{"label":"Australian International (Australia - Asia)","x":776.9367130302362,"y":98.42073741033164,"z":10.317357849950914}},{"id":"3013","data":{"label":"Broadsystem Australia (Australia - Asia)","x":739.1947421890536,"y":71.16409506022319,"z":62.171953730950634}},{"id":"3014","data":{"label":"Festival Records (Australia - Asia)","x":712.7840553315168,"y":-13.866971207334245,"z":204.36873711727844}},{"id":"3015","data":{"label":"F.S. Falkiner & Sons (Australia - Asia)","x":708.6325924067032,"y":-49.20966060137016,"z":889.4980959834863}},{"id":"3016","data":{"label":"Mushroom Records (Australia - Asia)","x":905.527523854329,"y":185.29380444036087,"z":542.3334078833526}},{"id":"3017","data":{"label":"National Rugby League Championship Company (Australia - Asia)","x":932.4256921028386,"y":192.997105834761,"z":19.70355790950329}},{"id":"3018","data":{"label":"Newspoll (Australia - Asia)","x":723.1487105917427,"y":-135.26416068927938,"z":713.3872776719128}},{"id":"3019","data":{"label":"Kesmai Corporation (United States)","x":879.8447833569471,"y":183.97069628770623,"z":793.6173046493851}},{"id":"3020","data":{"label":"NDS Americas (United States)","x":700.809092727739,"y":301.43383354651814,"z":889.5681641016557}},{"id":"3021","data":{"label":"News Advanced Technologies (United States)","x":833.3866106084274,"y":172.99046248377635,"z":887.4665254864465}},{"id":"3022","data":{"label":"News America Digital Publishing (United States)","x":723.0054573407915,"y":50.52309304431219,"z":21.538617569965226}},{"id":"3023","data":{"label":"News Internet Services (United States)","x":716.0725482572798,"y":20.359116675623227,"z":712.3741288321125}},{"id":"3024","data":{"label":"Healtheon/WebMD Corp (United States)","x":677.2729199616851,"y":504.7679558272539,"z":144.84448301930007}},{"id":"3025","data":{"label":"Rivals.com (United States)","x":814.1515915988894,"y":158.38855134539335,"z":930.4712402985505}},{"id":"3026","data":{"label":"News Digital Systems Ltd. (United Kingdom)","x":758.7748215073134,"y":120.01552132398501,"z":572.3042905541915}},{"id":"3027","data":{"label":"Line One (United Kingdom)","x":738.4589205067423,"y":100.80003870466044,"z":357.8522387795038}},{"id":"3028","data":{"label":"Sportal (United Kingdom)","x":854.4752461892958,"y":183.77689182583345,"z":465.03350048936267}},{"id":"3029","data":{"label":"News Interactive (Australia - Asia)","x":769.2859585541755,"y":141.5376889793888,"z":165.84301315922835}},{"id":"3030","data":{"label":"PDN Xinren Information Technology Co. Ltd. (Australia - Asia)","x":790.6949139513163,"y":155.17182602040884,"z":843.7823092951134}},{"id":"3031","data":{"label":"The Boston Globe","x":3213.7683532034416,"y":-309.47644576806033,"z":648.0295174995541}},{"id":" LA)","data":{"label":"The Courier (Houma","x":3079.2792178908157,"y":2152.457280100718,"z":314.21353555776733}},{"id":"3037","data":{"label":"The Gadsden Times (AL)","x":3228.6637667077794,"y":-415.63844593407157,"z":739.3734794220643}},{"id":"3038","data":{"label":"The Gainesville Sun (FL)","x":3175.7343483021295,"y":-531.5425763308813,"z":92.90396934218515}},{"id":"3039","data":{"label":"International Herald Tribune (Paris)","x":2873.470389998369,"y":-686.6259267959222,"z":939.6757306564791}},{"id":"3040","data":{"label":"Lake City Reporter (FL)","x":3194.705316712265,"y":-273.4100979061632,"z":698.4246175518111}},{"id":"3042","data":{"label":"Marco Island Eagle (FL)","x":3228.025774157657,"y":-336.98600388092564,"z":823.9860016437617}},{"id":"3045","data":{"label":"The New York Times","x":2586.5662098169214,"y":-181.57373061437102,"z":60.457519840152464}},{"id":"3047","data":{"label":"Sarasota Herald-Tribune (FL)","x":3061.3313752913155,"y":-576.0635000633747,"z":514.2801246495985}},{"id":"3048","data":{"label":"Spartanburg Herald-Journal (SC)","x":2902.1005046350083,"y":-331.3992209250455,"z":690.8717434876502}},{"id":"3052","data":{"label":"The Tuscaloosa News (AL)","x":2988.561632936282,"y":-247.0702198914605,"z":284.53212774938396}},{"id":"3053","data":{"label":"Wilmington Morning Star (NC)","x":3011.841229607733,"y":-224.23716319286905,"z":828.7044969300066}},{"id":"3054","data":{"label":"The Worcester Telegram & Gazette","x":3033.3616965466954,"y":-558.8730246726791,"z":572.2947187955823}},{"id":"3055","data":{"label":"The New York Times Electronic Media","x":2980.5502395973863,"y":-549.3165377163714,"z":6.342086583712492}},{"id":"3056","data":{"label":"The New York Times Business Information Services","x":3355.618062614295,"y":-239.23056221825482,"z":164.54931768001592}},{"id":"3057","data":{"label":"The New York Times Index","x":3556.465988281593,"y":-135.12514206112883,"z":458.68818411831944}},{"id":"3058","data":{"label":"The New York Times News Service","x":3318.295046620383,"y":-317.8803958886065,"z":88.01582920462869}},{"id":"3059","data":{"label":"TimesFax","x":3430.6693212436758,"y":-448.31734015683924,"z":778.3746293991709}},{"id":"3060","data":{"label":"Golf Digest","x":3103.0171635231145,"y":-232.60578113266456,"z":273.557137603377}},{"id":"3061","data":{"label":"Golf Shop Operations","x":3089.1114384895263,"y":-579.5354986304737,"z":416.68795603634834}},{"id":"3062","data":{"label":"Golf World","x":3170.741903516817,"y":-278.63035263162783,"z":980.7463696815765}},{"id":"3063","data":{"label":"KFOR TV (Oklahoma City)","x":3075.2266168918577,"y":-220.22683476720613,"z":879.3257999441868}},{"id":" AR)","data":{"label":"KFSM TV (Fort Smith","x":726.9882083534226,"y":-4289.459906588592,"z":150.43678718623732}},{"id":" IA)","data":{"label":"WHO TV (Des Moines","x":-1368.749660494962,"y":2183.803418433922,"z":536.6230378717471}},{"id":" IL)","data":{"label":"WQAD TV (Moline","x":3204.2257301961235,"y":-4356.563405176022,"z":222.03488238339796}},{"id":"3069","data":{"label":"WREG TV (Memphis)","x":3113.5657332752407,"y":-570.6391296765942,"z":354.2520902255766}},{"id":" VA)","data":{"label":"WTKR TV (Norfolk","x":-1282.8331441052396,"y":2240.1598531149084,"z":308.75780313719406}},{"id":"3071","data":{"label":"Ovation","x":-1985.2592651758675,"y":533.9596071541691,"z":377.0337650780793}},{"id":"3072","data":{"label":"WQEW - AM (New York City)","x":3149.8533152917826,"y":-549.2074359146354,"z":906.4804052477973}},{"id":"3073","data":{"label":"WQXR - FM (New York City)","x":3194.6635612359587,"y":-317.4622708622537,"z":466.96424437848003}},{"id":"3074","data":{"label":"Donohue Malbaie Inc. (Canada)","x":3162.3680653715764,"y":-512.7263563644046,"z":950.0494509480961}},{"id":"3075","data":{"label":"Madison Paper Industries (Maine)","x":3159.568285131807,"y":-244.16239885973118,"z":357.2488873186115}},{"id":"8194","data":{"label":"BT-Sports.com","x":-844.4826082709706,"y":1339.6623904951375,"z":437.81576693843414}},{"id":"8242","data":{"label":"Cablevision of Boston","x":1620.4443561433354,"y":-252.9278474234652,"z":546.1790117886869}},{"id":"8241","data":{"label":"SportsChannel Associates","x":1657.5503957464516,"y":-169.32869293851036,"z":356.8762096594074}},{"id":"8192","data":{"label":"VersaTel Telecom International N.V.","x":-1527.55123362762,"y":794.6127993284781,"z":337.5678690589392}},{"id":"3121","data":{"label":"Reed Exhibition (trade shows)","x":1397.8822750777263,"y":591.8292956590176,"z":158.22150079445785}},{"id":"3122","data":{"label":"Reed Travel Group (travel service)","x":1261.9053712189434,"y":581.9491754949604,"z":881.2334087912247}},{"id":"8191","data":{"label":"Sacramento Valley Ltd. Partnership","x":3876.988828877009,"y":-1895.520733842417,"z":991.5421254925694}},{"id":"3127","data":{"label":"Absolut","x":3422.6284092942524,"y":-3048.967210663168,"z":472.1743337237534}},{"id":"3128","data":{"label":"Captain Morgan","x":-371.2530815455275,"y":-3641.8477039031973,"z":666.4989216554919}},{"id":"3129","data":{"label":"Chivas Regal","x":-1478.6262124159089,"y":1414.4019202719473,"z":280.252049562866}},{"id":"3130","data":{"label":"Crown Royal","x":3233.2546269535596,"y":-3217.3080216630105,"z":373.3088610177373}},{"id":"3131","data":{"label":"Four Roses","x":1611.2957192670383,"y":2380.1879712608225,"z":305.3793115594265}},{"id":"3132","data":{"label":"Glenlivet","x":-2304.5110784215603,"y":64.81140985448837,"z":353.98665589067633}},{"id":"3133","data":{"label":"Tropicana Beverage Group","x":2490.8550814064038,"y":2089.280753670453,"z":857.9602013647183}},{"id":"3134","data":{"label":"Dole Juices","x":1913.6194221189417,"y":-4182.885936747143,"z":94.7145936132654}},{"id":"3135","data":{"label":"Tropicana","x":3703.107346760439,"y":1165.2471061898377,"z":228.41679765693758}},{"id":"3136","data":{"label":"Universal Studios","x":2148.2956783161844,"y":330.888584246919,"z":37.358423620288185}},{"id":"3137","data":{"label":"Universal Pictures","x":1848.986753471414,"y":419.4021582220548,"z":958.9456052430864}},{"id":"3138","data":{"label":"Universal Studios Home Video","x":1910.778318595284,"y":148.83825162400717,"z":438.78704901908725}},{"id":"3139","data":{"label":"United International Pictures (UPI)","x":1866.51189980257,"y":114.35893745082376,"z":179.86830097418704}},{"id":"3140","data":{"label":"Cinema International BV","x":1800.6302365202882,"y":116.35570724467289,"z":951.4766548751808}},{"id":"3141","data":{"label":"Universal Television Group","x":1954.5000660798614,"y":141.4857069015543,"z":157.31715684092552}},{"id":"3142","data":{"label":"Brillstein-Grey Entertainment","x":1898.9588417174946,"y":408.2646498945978,"z":246.61480121061595}},{"id":"3143","data":{"label":"Multimedia Entertainment","x":1882.6118680297814,"y":154.58449883167305,"z":549.1159688483311}},{"id":"3144","data":{"label":"","x":-2137.593925714881,"y":-1903.5142955962383,"z":328.498471369761}},{"id":"3145","data":{"label":"Universal Pay Television","x":1778.1694215024609,"y":469.82875500921546,"z":230.22709902376027}},{"id":"3146","data":{"label":"Seagram - Interactive","x":1808.7156788622779,"y":473.3427924740299,"z":735.5847147539465}},{"id":"3147","data":{"label":"Universal Studios New Media Group","x":1983.671337052885,"y":312.8747248996133,"z":560.7147259655462}},{"id":"3148","data":{"label":"Universal Studios Online","x":1749.4279642438287,"y":451.44517085531425,"z":247.84362908201564}},{"id":"3149","data":{"label":"Universal.com","x":1693.3837609150369,"y":398.1831540665735,"z":872.373632930409}},{"id":"3150","data":{"label":"Universal Interactive Studios","x":1886.3893742672426,"y":460.64559831006954,"z":841.2759562431982}},{"id":"3151","data":{"label":"Universal Digital Arts","x":1937.175733391814,"y":419.90786913351803,"z":156.40254327708703}},{"id":"3152","data":{"label":"Interplay","x":3618.290854694198,"y":837.1772261521273,"z":107.8527541950709}},{"id":"3153","data":{"label":"GetMusic","x":1886.823129885378,"y":132.66543348671712,"z":986.6239796514966}},{"id":"3154","data":{"label":"Universal Music Group","x":1906.5046439999896,"y":883.4760080318802,"z":492.0978075628275}},{"id":"3155","data":{"label":"MCA Records","x":1991.623821302529,"y":755.5222967248028,"z":446.7500388692107}},{"id":"3156","data":{"label":"MCA Records Nashville","x":1767.93294576044,"y":960.0372316736102,"z":497.8956509480381}},{"id":"3157","data":{"label":"Decca Records","x":1986.3543872868568,"y":994.9444423771638,"z":159.91916034604793}},{"id":"3158","data":{"label":"GRP Recording","x":1799.0181972142582,"y":1003.7247096051524,"z":994.6015668547133}},{"id":"3159","data":{"label":"Geffen/DGC Records","x":1891.9393658485533,"y":1023.1031781056072,"z":339.5237329044609}},{"id":"3160","data":{"label":"Universal Records","x":1837.2330059761325,"y":1013.4590943314142,"z":939.7855218861564}},{"id":"3161","data":{"label":"Rising Tide","x":2066.8096460040497,"y":848.8232155825472,"z":930.9430458467043}},{"id":"3162","data":{"label":"Interscope Records","x":1907.2333845516223,"y":1048.6935300814603,"z":395.8951810471769}},{"id":"3163","data":{"label":"Hip-O Records","x":1860.3081539453524,"y":1041.0749204504727,"z":998.157793910956}},{"id":"3164","data":{"label":"Universal Music and Video Distribution","x":2009.1178409057457,"y":1007.6692658182837,"z":887.6585335892579}},{"id":"3165","data":{"label":"Universal Music International","x":1939.582560675296,"y":1024.851114223915,"z":953.9017568026485}},{"id":"3166","data":{"label":"MCA Music Publishing","x":2063.231604239668,"y":902.9576576376385,"z":137.90931750825263}},{"id":"3167","data":{"label":"Interscope Music Publishing","x":2058.205296673721,"y":935.0094049087675,"z":975.3808001078448}},{"id":"3168","data":{"label":"All Nations Catalog","x":1970.8388861031617,"y":1034.0208538918932,"z":455.17071265740697}},{"id":"3169","data":{"label":"Universal Concerts","x":2073.4279397390837,"y":876.5478275037804,"z":635.918281971185}},{"id":"3170","data":{"label":"Universal Studios Hollywood","x":2041.6069082800168,"y":978.2626287268686,"z":145.2659310267983}},{"id":"3171","data":{"label":"Universal's Islands of Adventure (Orlando)","x":1841.0461981677627,"y":119.57624311253221,"z":318.84370296815143}},{"id":"3172","data":{"label":"Universal Studios Japan","x":1720.0885778554957,"y":433.9317210481704,"z":622.9755784533057}},{"id":"3173","data":{"label":"Spencer Gifts","x":2806.268073607387,"y":-3789.243396109551,"z":641.327430862489}},{"id":"3174","data":{"label":"A&M","x":-2002.7177612326295,"y":-1718.078295540945,"z":839.4064818095426}},{"id":"3175","data":{"label":"Decca","x":-24.325459724358552,"y":-4368.295592020453,"z":808.8767220614068}},{"id":"3176","data":{"label":"Def Jam","x":-476.89184088499997,"y":-4100.575868860461,"z":851.606817892786}},{"id":"3177","data":{"label":"Deutsche Grammophon","x":4388.785341570949,"y":-939.8494609483232,"z":454.90555530129836}},{"id":"3178","data":{"label":"Island","x":-2225.539417796641,"y":-1342.4378411550992,"z":263.7548362607711}},{"id":"3179","data":{"label":"London","x":1832.7940730355149,"y":-4098.525111657562,"z":43.585567199731166}},{"id":"3180","data":{"label":"Mercury","x":2976.367273611251,"y":1720.6782538058724,"z":178.1054014381256}},{"id":"3181","data":{"label":"Motown","x":1887.7228154303511,"y":718.844745271479,"z":82.84010902057659}},{"id":"3182","data":{"label":"Phillips Classics","x":-851.9616992212614,"y":1703.829190079785,"z":926.4457028016673}},{"id":"3183","data":{"label":"Polydor","x":-1025.0100655301144,"y":1801.8832612907518,"z":817.8492976592769}},{"id":"3184","data":{"label":"Verve","x":-187.8680444028505,"y":-3850.9318046311455,"z":462.0787251038605}},{"id":"3185","data":{"label":"PolyGram Music Publishing","x":1870.6315054370425,"y":1952.5787851106124,"z":934.1876843007508}},{"id":"3186","data":{"label":"Island Music","x":667.9816454611819,"y":-4459.49650948511,"z":474.02571151512007}},{"id":"3187","data":{"label":"Leonard Bernstein Music Publishing Co.","x":2009.6022280973903,"y":1597.6011426303066,"z":173.17971315532787}},{"id":"3188","data":{"label":"Amersfoot (Netherlands)","x":3567.354140211415,"y":1297.8748383085758,"z":362.8410147197354}},{"id":"3189","data":{"label":"Blackburn (UK)","x":-1235.073064898728,"y":1628.1519704417506,"z":423.0247870978379}},{"id":"3190","data":{"label":"Hanover (Germany)","x":3684.7695395140236,"y":-3141.16568957214,"z":614.8701523202733}},{"id":"3191","data":{"label":"Kings Moutain (USA)","x":-1525.3063626546884,"y":-3375.699350206389,"z":549.166857128861}},{"id":"3192","data":{"label":"Louviers (France)","x":-93.7587097340529,"y":-4175.3935731247075,"z":65.75334126533127}},{"id":"3193","data":{"label":"Interscope","x":-399.2185084253174,"y":2100.4695319155944,"z":184.02525194515619}},{"id":"3194","data":{"label":"Propaganda","x":2375.703341368526,"y":1937.8383450053434,"z":114.00438980134298}},{"id":"3195","data":{"label":"Working Title","x":4256.969738032822,"y":-1185.1150291704716,"z":398.55376826861686}},{"id":"3196","data":{"label":"PolyGram Films","x":-134.8917069237641,"y":2147.7792855525677,"z":18.070399543870465}},{"id":"3197","data":{"label":"Gramercy","x":-936.1254249686749,"y":-3746.2804077038836,"z":992.4662842925629}},{"id":"3198","data":{"label":"PolyGram Filmed Entertainment UK","x":-1701.5549040196356,"y":-3160.0877142896925,"z":191.34089829786083}},{"id":"3199","data":{"label":"PolyGram Filmed Entertainment Canada","x":196.0133381102928,"y":-4368.434912527192,"z":472.4380625851177}},{"id":"3200","data":{"label":"Cinea (France)","x":1526.6652287661454,"y":2240.1898434247487,"z":719.7536156961987}},{"id":"3201","data":{"label":"PolyGram DA (France)","x":2322.2796839330385,"y":-4262.169611214131,"z":411.68328087227945}},{"id":"3202","data":{"label":"Pan Europeenee Production","x":3783.506230324456,"y":-2535.4484703589055,"z":859.3531897552975}},{"id":"3203","data":{"label":"Noe","x":4108.519491292614,"y":-2359.6814008032343,"z":996.9470862655827}},{"id":"3204","data":{"label":"PolyGram Film Distribution (France)","x":1253.0383711799423,"y":-3653.4167106914774,"z":442.1270293647728}},{"id":"3205","data":{"label":"TedPoly (Hong Kong)","x":-1133.231322258025,"y":-2902.0651414192953,"z":665.9486463232398}},{"id":"3206","data":{"label":"Meteor Films (Netherlands)","x":-549.4863978298145,"y":1916.3807921099624,"z":357.3034406525748}},{"id":"3207","data":{"label":"PolyGram Filmed Entertainment Australia","x":1271.321420854455,"y":2021.5880142405404,"z":744.3820608533205}},{"id":"3208","data":{"label":"PolyGram Filmed Entertainment Benelux","x":-1431.4416846676806,"y":-3224.6494311948372,"z":615.4107416442948}},{"id":"3209","data":{"label":"Sogepaq - Spain","x":3552.0937496148463,"y":1363.73373142146,"z":1.7064974738014715}},{"id":"3210","data":{"label":"PolyGram Film International","x":3310.9850305612517,"y":-3066.300464414275,"z":280.2384916460876}},{"id":"3211","data":{"label":"PolyGram Video","x":1835.4120961014478,"y":-3411.8588214016845,"z":448.4870680649662}},{"id":"3212","data":{"label":"Vision Video","x":2402.3161717380626,"y":-4221.778712027928,"z":109.27679323540329}},{"id":"3213","data":{"label":"Abbey Home Entertainment","x":1882.5290017314455,"y":-3152.006174046037,"z":226.73873004194434}},{"id":"3214","data":{"label":"PolyGram Video US/International","x":-1346.967063573369,"y":-3285.86468980757,"z":897.0819433837214}},{"id":"3215","data":{"label":"PolyGram Television","x":677.9880506853042,"y":2432.6230924327274,"z":994.0817045790744}},{"id":"3216","data":{"label":"Working Title Television","x":3582.9955474471353,"y":-3252.2441201041092,"z":656.1566549553306}},{"id":"3217","data":{"label":"Propaganda Television","x":464.6156976814891,"y":-4137.640581445552,"z":913.8255941026549}},{"id":"3218","data":{"label":"PolyGram Television USA","x":-1689.284193821726,"y":1117.645840981164,"z":930.411651801101}},{"id":"3219","data":{"label":"PolyGram Television International","x":-1780.82039324015,"y":-2781.6810350627566,"z":794.7159766582558}},{"id":"3220","data":{"label":"Viva","x":951.055497722512,"y":-1366.7279006170902,"z":966.8752936864129}},{"id":"3221","data":{"label":"MTV Asia","x":-2486.312866201795,"y":-1068.5535248036076,"z":655.3734071516237}},{"id":"3222","data":{"label":"Atomic TV - Poland","x":-1322.198696433065,"y":-3566.829774851941,"z":894.1996938843029}},{"id":"3223","data":{"label":"Sundance Channel USA","x":-1818.4047344132784,"y":-1276.27905462115,"z":740.0693885752363}},{"id":"3224","data":{"label":"Sundance Channel International","x":775.9951429917965,"y":1583.421864552006,"z":750.6634712703803}},{"id":"3225","data":{"label":"Really Useful Holdings","x":-2098.8611624423775,"y":181.27056302141773,"z":374.14421262201404}},{"id":"3226","data":{"label":"PolyGram Merchandising","x":3418.2222339547025,"y":-3502.0926702400584,"z":129.7146970612595}},{"id":"3227","data":{"label":"Britannia (UK)","x":-2061.336001739994,"y":266.47770543457045,"z":224.60595124886675}},{"id":"3228","data":{"label":"DIAL (France)","x":1559.1512996609144,"y":-3831.2064580003735,"z":155.39088824246238}},{"id":"3229","data":{"label":"Cineplex Odeon Corporation (theaters)","x":1913.854985643813,"y":445.493675709351,"z":883.4390624278138}},{"id":"3230","data":{"label":"Cinema International Corporation (international theaters)","x":1980.5590428956957,"y":190.17320477698922,"z":344.2093869394145}},{"id":"3231","data":{"label":"United Cinemas International (UCI)","x":1774.4619177131326,"y":439.1643958847899,"z":83.27539982338239}},{"id":"3238","data":{"label":"WTTA TV - Tampa","x":-1279.2809003620846,"y":-3352.739822980874,"z":246.0089268675185}},{"id":"3239","data":{"label":"WTTV - Tampa","x":2026.6550505278983,"y":2107.266004768833,"z":192.5772553792222}},{"id":"3240","data":{"label":"WTTK TV - Indianapolis","x":-959.9569058976385,"y":-3414.1278043505827,"z":902.4587761109673}},{"id":"3241","data":{"label":"WZTV - Indianapolis","x":-125.30245677196717,"y":1937.2375524449626,"z":430.23308758095544}},{"id":"3242","data":{"label":"WUXP TV - Nashville","x":1855.5200958065598,"y":1804.1601729930717,"z":140.33718909410786}},{"id":"3243","data":{"label":"WTTE TV - Nashville","x":3757.4217929103634,"y":1149.292647509621,"z":236.0401682742872}},{"id":" OH","data":{"label":"WFBC TV - Columbus","x":1282.6148962712077,"y":2856.7108092067438,"z":743.4881487082607}},{"id":" NY","data":{"label":"WUTV - Buffalo","x":4981.406329718076,"y":-825.2425802817415,"z":986.3821858231631}},{"id":" NC","data":{"label":"WUPN TV - Greensboro","x":708.2487317427335,"y":-4839.081411399339,"z":393.3140218262894}},{"id":" VA","data":{"label":"WRLH TV - Richmond","x":2275.533705182541,"y":-4721.038048221882,"z":177.52345896191346}},{"id":" WI","data":{"label":"WMSN TV - Madison","x":1141.258446708649,"y":2005.882708918275,"z":276.69096695725995}},{"id":"3254","data":{"label":"WCWB TV - Pittsburgh","x":140.33030735224884,"y":2298.0022453156,"z":394.3319392088871}},{"id":"3255","data":{"label":"WNUV TV - Baltimore","x":-1774.9853283382595,"y":133.59247538420095,"z":317.705088969489}},{"id":"3256","data":{"label":"WNYS TV - Syracuse","x":1870.5158820230317,"y":2201.8245104843627,"z":603.0015572791525}},{"id":" SC","data":{"label":"WTAT TV - Charleston","x":4299.553069044259,"y":-2149.1953919528414,"z":213.93251317104412}},{"id":"3259","data":{"label":"WVTV - Milwaukee","x":-1942.5388322335243,"y":-1516.2551006925205,"z":499.7544081229055}},{"id":" AL","data":{"label":"WFGX TV - Mobile","x":4912.156369210824,"y":-368.8784869117071,"z":877.644021774838}},{"id":" WV","data":{"label":"WVAH TV - Charleston","x":3078.3313788123824,"y":-4170.571237196498,"z":657.2555559742525}},{"id":"3262","data":{"label":"KFBT TV - Las Vegas","x":1122.9258703371725,"y":1298.999169456033,"z":964.6784952377494}},{"id":"3263","data":{"label":"KOKH TV - Oklahoma City","x":-82.50931887365914,"y":2266.3720640171705,"z":887.8134181493282}},{"id":"3264","data":{"label":"KRRT TV - San Antonio","x":4303.475969738624,"y":-1514.8246547044973,"z":944.776760615235}},{"id":"3265","data":{"label":"WABM TV - San Antonio","x":-1631.8800093769823,"y":1275.2347389580427,"z":515.4168090831269}},{"id":"3269","data":{"label":"KVWB TV - Oklahoma City","x":-1868.6698368561747,"y":-1093.4348627463778,"z":499.3904894046164}},{"id":"3270","data":{"label":"WCHS TV - Las Vegas","x":3405.4548741095077,"y":1053.1062087747086,"z":425.24177625919936}},{"id":" KY","data":{"label":"WDKY TV - Lexington","x":-2805.2354915914225,"y":-511.8825714702325,"z":587.1753121423187}},{"id":"3274","data":{"label":"KDSM TV - Des Moines","x":-2363.1336151274936,"y":-1083.2752760169415,"z":460.7127380959519}},{"id":"3275","data":{"label":"WSYT TV - Des Moines","x":673.716879723584,"y":-4347.556249009198,"z":524.0599389815163}},{"id":"3276","data":{"label":"WLFL TV - Baltimore","x":2311.8489173925063,"y":-4098.627267404608,"z":884.4343506275168}},{"id":"3278","data":{"label":"WSTR TV - Cincinnati","x":-247.45924316953824,"y":1393.466015924614,"z":113.00819771105353}},{"id":"3281","data":{"label":"WTTO TV - San Antonio","x":-733.7312915976422,"y":-3658.6819517499735,"z":397.9089983503359}},{"id":"3282","data":{"label":"KBSI TV - Syracuse","x":73.53259349813698,"y":2167.1904958364485,"z":739.3586358337017}},{"id":" ME","data":{"label":"WGME TV - Portland","x":4434.636297637772,"y":-149.6931539518664,"z":636.5259263711079}},{"id":" MA","data":{"label":"WGGB TV - Springfield","x":3774.4307072431266,"y":-3124.242068925323,"z":158.16250060856075}},{"id":" IL","data":{"label":"WYZZ TV - Peoria","x":3933.444772702498,"y":1650.6071007409255,"z":674.705046329504}},{"id":"3290","data":{"label":"KMWB TV - Minneapolis","x":3971.3830384288167,"y":545.7087170014165,"z":829.6652215660514}},{"id":"3291","data":{"label":"WPGH TV - Minneapolis","x":-2046.3881854860347,"y":-1745.4460082012347,"z":362.818496411087}},{"id":"3292","data":{"label":"KOVR TV - Sacramento","x":3471.894795717627,"y":1329.0326611511264,"z":599.525817669236}},{"id":"3293","data":{"label":"KDNL TV - St. Louis","x":4220.120058437351,"y":-1935.5018662186867,"z":847.0000165101987}},{"id":"3294","data":{"label":"WBFF TV - St. Louis","x":4138.140302672026,"y":371.70102652420064,"z":764.9088513558835}},{"id":"3296","data":{"label":"WICS TV","x":-500.9585481592985,"y":1197.6322944852063,"z":386.0681624223508}},{"id":"3298","data":{"label":"","x":-1862.85625462869,"y":-2555.1665804029935,"z":648.1453203173784}},{"id":"3299","data":{"label":"Columbia Tri-Star","x":2352.175063857003,"y":625.2606881308766,"z":697.4499773749701}},{"id":"3300","data":{"label":"Columbia Pictures","x":2382.0584077735393,"y":614.9088865456542,"z":288.1306850507297}},{"id":"3301","data":{"label":"Tri-Star Pictures","x":2295.78131193848,"y":634.2570067491351,"z":692.8401338291184}},{"id":"3302","data":{"label":"Sony Pictures Classics","x":2263.3702706382055,"y":614.3222533233311,"z":369.1684781201232}},{"id":"3303","data":{"label":"Sony Pictures Entertainment","x":2527.1468061610167,"y":831.7828825252845,"z":756.5255381486257}},{"id":"3304","data":{"label":"Columbia-Tri Star Home Video","x":2414.4741564433934,"y":264.64039494989356,"z":287.4051140267191}},{"id":"3305","data":{"label":"Sony/Lowes Theaters","x":2426.0294766178176,"y":313.4766752677133,"z":560.8700392453107}},{"id":"3306","data":{"label":"Sony - IMAX Theater","x":2475.3996922149345,"y":524.7411695908013,"z":645.6779659053472}},{"id":"3307","data":{"label":"Magic Johnson Theaters","x":2174.54263246304,"y":584.364785979028,"z":960.1145829438984}},{"id":"3308","data":{"label":"Loews - Star Theaters","x":-628.145331876628,"y":1739.6495920018406,"z":954.667644990012}},{"id":"3309","data":{"label":"Metreon","x":2487.9983518153476,"y":101.76687890412359,"z":910.105098656784}},{"id":"3310","data":{"label":"Sony Signatures","x":2444.9649404667525,"y":285.0644923379987,"z":488.5591722768663}},{"id":"3311","data":{"label":"Sony Life Insurance","x":2157.754352206559,"y":424.90342338850496,"z":776.2113005648057}},{"id":"3312","data":{"label":"Sony Finance International","x":2322.3299228925007,"y":236.3299626942171,"z":692.5267032034808}},{"id":"3313","data":{"label":"Sony Play Station","x":2275.852550252077,"y":278.6004691279095,"z":431.26989603326615}},{"id":"3314","data":{"label":"Psygnosis","x":2320.0428913943224,"y":268.4940979392213,"z":422.71503205433294}},{"id":"3315","data":{"label":"Sony Online","x":2184.8359994432285,"y":309.9803318364857,"z":885.4800318338905}},{"id":"3316","data":{"label":"TheStation@sony.com","x":2160.9980077586515,"y":301.40865834979286,"z":733.2251319553486}},{"id":"3317","data":{"label":"Jeopardy Online","x":2347.2684003872164,"y":290.10581554485634,"z":594.7509712345928}},{"id":"3318","data":{"label":"Columbia - Tri-Star Interactive","x":2359.4426552434916,"y":268.4378823052348,"z":707.1903455057586}},{"id":"3319","data":{"label":"550 Digital Media Incubator","x":2123.964294656196,"y":381.58259420861395,"z":853.9261779824711}},{"id":"3320","data":{"label":"Unsurface","x":2227.9304534844887,"y":281.0676633638268,"z":450.37712010405784}},{"id":"3321","data":{"label":"Sony Music","x":2293.059642914208,"y":224.44804234962703,"z":689.5140527388368}},{"id":"3322","data":{"label":"Legacy","x":2136.5436399340215,"y":461.62263939354125,"z":666.8669476634865}},{"id":"3323","data":{"label":"Sony Music Nashville","x":2253.669514198087,"y":252.91438528863637,"z":260.1268704230888}},{"id":"3324","data":{"label":"Sony Wonder","x":2190.961830795988,"y":332.36722829069004,"z":281.2894136341635}},{"id":"3325","data":{"label":"Sony Music Products","x":2407.0801935202435,"y":332.5944933756555,"z":96.60852802047182}},{"id":"3326","data":{"label":"Sony Music Soundtrak","x":2395.9638326075574,"y":279.22686675944533,"z":634.8822052792176}},{"id":"3327","data":{"label":"Tri-Star Music","x":2286.2851445789747,"y":247.9751333557624,"z":54.99669358127046}},{"id":"3328","data":{"label":"WORK","x":2449.9884406137753,"y":442.83423377971485,"z":583.3232671850133}},{"id":"3329","data":{"label":"Crave","x":2115.3886907496744,"y":428.1291669019738,"z":366.60585114670897}},{"id":"3330","data":{"label":"57 Records","x":2387.3272892757886,"y":245.58620776252792,"z":246.9582519071185}},{"id":"3331","data":{"label":"550 Music","x":2450.3971678107937,"y":370.8248433535209,"z":620.7338553087914}},{"id":"3332","data":{"label":"Columbia Records","x":2445.295483710044,"y":329.93079499343185,"z":66.78708679177502}},{"id":"3333","data":{"label":"Epic Records","x":2444.3778569011783,"y":305.6004291137888,"z":437.5101327613222}},{"id":"3334","data":{"label":"Epic Soundtrak","x":2183.9950012965664,"y":536.0055072160194,"z":627.626628477284}},{"id":"3335","data":{"label":"Shotput Records","x":2228.255536956771,"y":550.8406749785772,"z":218.97291049113088}},{"id":"3336","data":{"label":"Relatively Entertainment","x":2162.6930816449067,"y":506.0010730317463,"z":652.2494844887663}},{"id":"3337","data":{"label":"RED Distribution","x":2429.430288259986,"y":507.3629362403499,"z":930.0478030356352}},{"id":"3338","data":{"label":"Relatively Records","x":2458.6432266664096,"y":492.3678838535616,"z":879.300196640056}},{"id":"3339","data":{"label":"Harmony Records","x":2149.988057835085,"y":334.12124526946627,"z":481.0039345999888}},{"id":"3340","data":{"label":"Sony Music International","x":2476.219078819132,"y":377.30467932884494,"z":361.181351496151}},{"id":"3341","data":{"label":"Soho Square","x":2501.956113473334,"y":439.4594763751429,"z":586.4704481638065}},{"id":"3342","data":{"label":"Dance Pool","x":2472.5524837858866,"y":461.0325264694984,"z":603.5107747507542}},{"id":"3343","data":{"label":"Mambo","x":2131.446271688792,"y":515.6341712237736,"z":182.24765499062934}},{"id":"3344","data":{"label":"Rubenstein","x":2496.195334980168,"y":400.4447791374678,"z":329.58124602614623}},{"id":"3345","data":{"label":"Squatt","x":2310.3587109419777,"y":573.0646034474448,"z":133.53459203750862}},{"id":"3346","data":{"label":"Sony Classical","x":2363.861350355047,"y":565.3033773792413,"z":967.9626830554841}},{"id":"3347","data":{"label":"Arc of Light","x":2403.195732892864,"y":542.0355892246498,"z":266.60759078227403}},{"id":"3348","data":{"label":"Masterworks","x":2478.3658194129557,"y":423.38064241516986,"z":457.4805230680175}},{"id":"3349","data":{"label":"Sony Broadway","x":2122.1722284622447,"y":348.8461742896334,"z":500.08710536480885}},{"id":"3350","data":{"label":"SEON","x":2484.7696496318767,"y":352.34340726606297,"z":476.116842114531}},{"id":"3351","data":{"label":"Vivarte","x":2281.6477336454172,"y":593.4713984212176,"z":774.3636667067968}},{"id":"3352","data":{"label":"Columbia House","x":1991.7667016082805,"y":-327.5676019302273,"z":24.118152422927473}},{"id":"3353","data":{"label":"Music Choice","x":1988.5561859306054,"y":-4389.082289575804,"z":857.4193843808131}},{"id":"3354","data":{"label":"Music Choice Europe","x":-1303.905954196241,"y":1603.4263165731818,"z":380.90976924364827}},{"id":"3355","data":{"label":"Columbia -Tri Star Television","x":2196.91461825214,"y":560.6795908597351,"z":617.7876167268037}},{"id":"3356","data":{"label":"Columbia -Tri Star Television Distribution","x":2423.060123405917,"y":558.8981139949028,"z":53.94756161677439}},{"id":"3357","data":{"label":"Columbia -Tri Star Television International Television","x":2248.9846146829714,"y":581.9000894146893,"z":296.7424207014624}},{"id":"3358","data":{"label":"The Game Show Network","x":2317.777431423615,"y":598.7322840426623,"z":226.14139312017033}},{"id":"3359","data":{"label":"International Television Ventures","x":2491.880774995533,"y":501.2219489514464,"z":66.38471918545386}},{"id":"3360","data":{"label":"Cinemax Latin America","x":2352.7027314236066,"y":241.55253753481338,"z":926.1336047456099}},{"id":"3361","data":{"label":"E! - Latin America","x":2392.2854598990107,"y":580.279427101641,"z":813.5457251582341}},{"id":"3362","data":{"label":"HBO Ole","x":4139.45865884056,"y":-1932.6482525162778,"z":737.1487030291511}},{"id":"3363","data":{"label":"HBO Brasil","x":4098.813767812535,"y":437.1328175383678,"z":693.4044200234744}},{"id":"3364","data":{"label":"Mundo Ole","x":2154.142346478682,"y":530.836995459038,"z":593.420220010225}},{"id":"3365","data":{"label":"Warner Channel","x":1547.8256989693627,"y":-910.4392910910419,"z":757.2090512566115}},{"id":"3366","data":{"label":"Showtime - Australia","x":1283.885798178645,"y":-4374.403532015276,"z":251.9130810676129}},{"id":"3367","data":{"label":"Encore - Australia","x":2354.9686297519393,"y":595.1213524213508,"z":928.4532573261683}},{"id":"3368","data":{"label":"TVI - Australia","x":2324.0658052465315,"y":630.9423731134084,"z":681.8707004954243}},{"id":"3369","data":{"label":"","x":-1899.3350400538452,"y":168.01402630606208,"z":730.3786164673415}},{"id":"3370","data":{"label":"Cinemax Asia","x":2217.006061006122,"y":583.0714534384078,"z":165.1622327668323}},{"id":"3371","data":{"label":"HBO Asia","x":2448.168315671168,"y":540.1651072407503,"z":862.8441450729798}},{"id":"3372","data":{"label":"Beijing Television Arts Center","x":2467.995470506072,"y":555.9401035697811,"z":931.5170165443029}},{"id":"3373","data":{"label":"Viva 1 - Germany","x":2261.5798559531504,"y":636.4475963103805,"z":752.306812449264}},{"id":"3374","data":{"label":"Viva 2 - Germany","x":2228.896851375961,"y":619.8394333041433,"z":771.1716795081234}},{"id":"3375","data":{"label":"Carlton Productions (U.K.)","x":2439.1744149631495,"y":584.4536745715877,"z":352.0119636702521}},{"id":"3376","data":{"label":"Golden Square Productions (U.K.)","x":2200.3936898840366,"y":603.0086833561336,"z":591.631058610068}},{"id":"3377","data":{"label":"Frensch Productions (Germany)","x":2146.433309591719,"y":556.4302027735703,"z":469.6212659203618}},{"id":"3378","data":{"label":"HBO Poland","x":-2336.0011850224137,"y":-1025.0809711561947,"z":538.5388613538142}},{"id":"3380","data":{"label":"The Baltimore Sun","x":2155.5442223739865,"y":-2254.310929560156,"z":973.8795797836941}},{"id":"3381","data":{"label":"Greenwich Time (CT)","x":1846.2561256056288,"y":-2254.0031970263008,"z":809.4916044345683}},{"id":"3382","data":{"label":"The Hartford Courant","x":1947.9520058404732,"y":-1970.423390369664,"z":235.74722288150318}},{"id":"3383","data":{"label":"La Opinion","x":2174.549914558319,"y":-2228.64540285747,"z":111.71983926563934}},{"id":"3384","data":{"label":"Los Angeles Times","x":2169.331721012175,"y":-2114.429162712875,"z":389.9563863314708}},{"id":"3385","data":{"label":"Los Angeles Times Syndicate","x":2036.987343672885,"y":-2012.1005827525137,"z":39.07531001718234}},{"id":"3386","data":{"label":"Los Angeles Times - Washington Post News Service","x":2333.6037697294023,"y":-1486.9723181651398,"z":360.1131690169048}},{"id":"3389","data":{"label":"Field & Stream","x":1902.1326544497824,"y":-853.9942750959945,"z":143.89341459661443}},{"id":"3390","data":{"label":"Freeze","x":2984.8231874069825,"y":-3734.8653917838237,"z":430.77601056069767}},{"id":"3391","data":{"label":"Golf Magazine","x":1909.0096729079514,"y":-1027.9610047592614,"z":293.2258851389775}},{"id":"3392","data":{"label":"Outdoor Life","x":1828.2725734359956,"y":-791.6277625853281,"z":529.1902582077754}},{"id":"3393","data":{"label":"Popular Science","x":1937.6280049634906,"y":-965.9643226651533,"z":246.73544767519707}},{"id":"3394","data":{"label":"Salt Water Sportsman","x":1651.4325682166836,"y":-1186.9112225942317,"z":2.7445223541913144}},{"id":"3395","data":{"label":"Ski","x":1581.0981117943584,"y":-995.8680551375974,"z":578.9699161806541}},{"id":"3396","data":{"label":"Skiing Magazine","x":1875.5324154659038,"y":-1096.100573841793,"z":513.285409605291}},{"id":"3397","data":{"label":"Skiing Trade News","x":1710.4515174546405,"y":-810.5003801761859,"z":543.0358184196235}},{"id":"3398","data":{"label":"SNAP","x":2193.0262156228673,"y":-1074.4883011079346,"z":576.4537583758354}},{"id":"3399","data":{"label":"Snowboard Life","x":1750.776544170727,"y":-1188.8237925139438,"z":324.1566766191606}},{"id":"3400","data":{"label":"Ride BMX","x":1832.4625482784877,"y":-1152.5073258724747,"z":647.6479045335834}},{"id":"3401","data":{"label":"The Sporting News","x":-1884.9901788665443,"y":-1996.0848403667196,"z":446.0095786971214}},{"id":"3402","data":{"label":"Today�s Homeowner","x":1630.7945318167822,"y":-1161.3085981504564,"z":255.88936655631045}},{"id":"3403","data":{"label":"TransWorld Skateboarding","x":1750.2458336758655,"y":-806.2411645496486,"z":331.2386755720749}},{"id":"3404","data":{"label":"TransWorld Snowboarding","x":1596.4329410900655,"y":-902.5530988004675,"z":495.60325386512363}},{"id":"3405","data":{"label":"Verge","x":1933.583056048079,"y":-1010.1931220017013,"z":634.8056237063566}},{"id":"3406","data":{"label":"Yachting Magazine","x":1603.9690564349266,"y":-870.9915687918092,"z":27.774793679927523}},{"id":"3407","data":{"label":"Warp","x":1920.8226580836063,"y":-1055.3821483152997,"z":491.15214875717925}},{"id":"3408","data":{"label":"Professional Information","x":-1697.3895107076794,"y":-2113.317870030929,"z":398.10098674540086}},{"id":"3409","data":{"label":"Jeppesen Sanderson","x":-2352.9705051465658,"y":-8.348902633084435,"z":101.8223773077389}},{"id":"3410","data":{"label":"AchieveGlobal","x":932.8668619036107,"y":-3748.4999488872586,"z":403.0085917681272}},{"id":"3411","data":{"label":"Allen Communication","x":-1537.6994530384059,"y":-2969.9563634929013,"z":79.17397166257257}},{"id":"3412","data":{"label":"Apartment Search","x":609.6895487111497,"y":-4272.286362375853,"z":779.466355634314}},{"id":"3413","data":{"label":"ListingLink","x":2219.2868887506265,"y":-4058.0564401441097,"z":845.4799706790685}},{"id":"3414","data":{"label":"Mosby - Year Book","x":-1748.7801387769446,"y":-1964.3281090990167,"z":840.066407321296}},{"id":"3415","data":{"label":"MD Consult","x":4390.0250845289975,"y":-1701.366024271792,"z":292.15899375616414}},{"id":"3416","data":{"label":"StayWell","x":-1664.968742766897,"y":225.01632248639544,"z":81.7669076688714}},{"id":"3417","data":{"label":"WPIX TV - New York","x":1893.0409236555615,"y":-2245.679494066881,"z":193.75031429435063}},{"id":"3418","data":{"label":"KTLA TV - Los Angeles","x":1944.7596036359055,"y":-2317.3563308739667,"z":478.3728565117098}},{"id":"3419","data":{"label":"WGN TV - Chicago","x":1922.0090576202883,"y":-2327.305605836249,"z":14.207754422394414}},{"id":"3420","data":{"label":"WPHL TV - Philadelphia","x":1871.5470855739168,"y":-2287.3471852863977,"z":41.0929263172628}},{"id":"3421","data":{"label":"WLVI TV - Boston","x":2062.915720898408,"y":-2325.379069602209,"z":102.78356981516446}},{"id":"3422","data":{"label":"KDAF TV - Dallas","x":2040.406665992754,"y":-2340.781032797532,"z":874.7091066214891}},{"id":"3423","data":{"label":"WGNX TV - Atlanta","x":2007.2611205285184,"y":-2339.9328992673913,"z":286.3234937848651}},{"id":"3424","data":{"label":"KHTV - Houston","x":1966.1001741389828,"y":-2341.1674787888514,"z":550.8556494682746}},{"id":"3425","data":{"label":"KTZZ TV - Seattle","x":1978.6458039833815,"y":-2025.1952484079743,"z":734.9112594599336}},{"id":"3426","data":{"label":"WBZL TV - Miami - Ft. Lauderdale","x":2096.202430480861,"y":-2324.319515601269,"z":224.1594829926641}},{"id":"3427","data":{"label":"KWGN TV - Denver","x":2144.9200429868433,"y":-2328.731540580421,"z":894.4492795185577}},{"id":"3428","data":{"label":"KTXL TV - Sacramento","x":2070.6936745887924,"y":-2365.681438025412,"z":426.11392613167175}},{"id":"3429","data":{"label":"WXIN TV - Indianapolis","x":2043.739256464014,"y":-2369.9919363242975,"z":789.3680650653307}},{"id":"3430","data":{"label":"KSWB TV - San Diego","x":2178.08772083188,"y":-2189.6839635400956,"z":214.7353375212151}},{"id":"3431","data":{"label":"WTIC TV - Hartford/New Haven","x":2015.276444012503,"y":-2371.654833531401,"z":877.5885236777432}},{"id":"3432","data":{"label":"WTXX TV - Hartford","x":2148.716826069727,"y":-2303.8034026385208,"z":628.2134607967214}},{"id":"3433","data":{"label":"WXMI TV - Grand Rapids","x":2098.114945151936,"y":-2360.604209625874,"z":158.53815196697997}},{"id":"3434","data":{"label":"WGNO TV - New Orleans","x":2213.2788331908787,"y":-2269.032724116591,"z":97.68731206191595}},{"id":"3435","data":{"label":"WPMT TV - Harrisburg","x":2127.2072835550853,"y":-2350.4849383957117,"z":451.07475059609015}},{"id":"3436","data":{"label":"WNOL TV - New Orleans","x":1982.897033721527,"y":-2367.14378647226,"z":827.7442184530481}},{"id":"3437","data":{"label":"WBDC TV - Washington","x":-2276.8846231406033,"y":120.32731588159459,"z":431.7279167855794}},{"id":"3438","data":{"label":"Tribune Entertainment","x":2196.286604625311,"y":-2297.6451578920105,"z":100.08140140418864}},{"id":"3439","data":{"label":"Qwest Broadcasting","x":2176.588427612768,"y":-2320.743832571231,"z":732.5212716203839}},{"id":"3440","data":{"label":"WB Network","x":1843.8101303910744,"y":-1585.3725354564335,"z":737.3349810254821}},{"id":"3441","data":{"label":"CLTV","x":1916.8488330739347,"y":-2040.5367092958522,"z":858.3016232566619}},{"id":"3442","data":{"label":"","x":4347.306560202449,"y":-1295.2544239026001,"z":898.8726741607495}},{"id":"3443","data":{"label":"Central Florida News 13 (CFN 13)","x":-199.5528263472661,"y":2066.1256374959657,"z":58.11395648506013}},{"id":"3444","data":{"label":"WGN - AM (Chicago)","x":1982.819624119069,"y":-2318.6020839180355,"z":154.93342994483683}},{"id":"3445","data":{"label":"KKHK - FM (Denver)","x":1888.3475834740775,"y":-2280.916599417473,"z":36.86071939336743}},{"id":"3446","data":{"label":"KOSI - FM (Denver)","x":1890.945105172972,"y":-2039.6484939358088,"z":42.062537749252286}},{"id":"3447","data":{"label":"KEZW - AM (Denver)","x":1865.762790630275,"y":-2234.4048910508527,"z":204.85475280012855}},{"id":"3448","data":{"label":"Chicago Tribune","x":2076.446684076802,"y":-2035.429150334132,"z":920.2970066931673}},{"id":"3449","data":{"label":"Fort Lauderdale Sun-Sentinel","x":1914.4640537097057,"y":-1974.699690633016,"z":307.2896680154085}},{"id":"3450","data":{"label":"Orlando Sentinel","x":2120.354837434734,"y":-2287.6752646933855,"z":522.4224480611231}},{"id":"3451","data":{"label":"South Florida Newspaper Network","x":1895.970133496301,"y":-2000.4366609000458,"z":597.912826588572}},{"id":" VA. and area)","data":{"label":"Daily Press (Hampton Roads","x":1494.1498935716409,"y":-4186.228367188986,"z":983.4543352154508}},{"id":"3453","data":{"label":"Tribune Media Services","x":2564.7998278317036,"y":-2278.46142867437,"z":793.0599049844986}},{"id":"3454","data":{"label":"JDTV","x":2777.9519220001803,"y":-2356.6754495830337,"z":294.95960253587026}},{"id":"3455","data":{"label":"Ultimate TV","x":2799.1517070335485,"y":-2324.856733173702,"z":856.6085527662839}},{"id":"3456","data":{"label":"Black Voices","x":-2143.242972017325,"y":-2156.496566747655,"z":494.2028440065214}},{"id":"3457","data":{"label":"Exito","x":1843.5263356875466,"y":-2138.2660416771196,"z":425.17421072764705}},{"id":"3458","data":{"label":"Relcon","x":2017.7330843862628,"y":-1993.49180532007,"z":262.70870171138824}},{"id":"3459","data":{"label":"US/Express","x":1820.6763479854244,"y":-2184.3539178924393,"z":169.18075310183323}},{"id":"3460","data":{"label":"Digital City Atlanta","x":2186.1470289184745,"y":-2269.6453816450785,"z":587.9496329223979}},{"id":"3461","data":{"label":"Digital City Boston","x":2198.829622473495,"y":-2216.7204186101308,"z":792.351897390289}},{"id":"3462","data":{"label":"Digital City Chicago","x":2097.43315342633,"y":-2024.394199478169,"z":763.233735792086}},{"id":"3463","data":{"label":"Digital City Denver","x":1839.9070332959818,"y":-2187.5596664719797,"z":674.0865284303967}},{"id":"3464","data":{"label":"Digital City Hampton Roads","x":2143.276520808753,"y":-2071.5975888631538,"z":702.5183272411091}},{"id":"3465","data":{"label":"Digital City Los Angeles","x":2213.5058183295305,"y":-2192.9356428591136,"z":118.68429238306155}},{"id":"3466","data":{"label":"Digital City Orlando","x":2191.833341140311,"y":-2156.9119231014256,"z":228.84375936691214}},{"id":"3467","data":{"label":"Digital City South Florida","x":2221.065450561149,"y":-2234.0214933098464,"z":175.3593720856179}},{"id":"3468","data":{"label":"cars.com","x":1613.957267863335,"y":-2581.0026384568228,"z":528.6480864245615}},{"id":"3469","data":{"label":"apartments.com","x":1749.8069903084725,"y":-2538.752574067367,"z":185.4602716833238}},{"id":"3470","data":{"label":"CareerPath.com","x":1982.951340101573,"y":-1980.614485590249,"z":8.315523183308748}},{"id":"3471","data":{"label":"Everyday Learning/ Creative Publications","x":-734.382318032166,"y":1927.7784718611929,"z":483.1464695558789}},{"id":"3472","data":{"label":"Ideal/Instructional Fair Publishing Group","x":1561.7425461612538,"y":-4232.62981478777,"z":643.1020336128952}},{"id":"3473","data":{"label":"Landoll","x":881.7041644817705,"y":2439.512279124442,"z":735.6156573442296}},{"id":"3474","data":{"label":"NTC/Contemporary Publishing Group","x":3138.2920473096056,"y":-3513.113788520527,"z":360.0253187351656}},{"id":"3475","data":{"label":"The Wright Group","x":-211.08500907850566,"y":-4168.809169572087,"z":432.08188512525305}},{"id":"3476","data":{"label":"Chicago Cubs","x":1843.523053979262,"y":-2219.903876299053,"z":99.33890953864832}},{"id":"3477","data":{"label":"Tribune Ventures","x":1444.7379088623202,"y":-1979.8686954294749,"z":95.1892657554112}},{"id":"3478","data":{"label":"","x":3429.832364769665,"y":387.51687522158136,"z":552.7718722339687}},{"id":"3479","data":{"label":"CheckFree","x":1162.5597131424456,"y":-2150.931433006144,"z":618.2596737529102}},{"id":"3480","data":{"label":"","x":223.9004447235102,"y":1831.5339268674006,"z":269.8141740815059}},{"id":"3481","data":{"label":"Excite","x":402.523162267255,"y":-708.4544059712352,"z":491.65971881628167}},{"id":"3482","data":{"label":"ImageBuilder Software","x":1326.1383392792904,"y":-2108.5948110335444,"z":452.13011439991413}},{"id":"3483","data":{"label":"Discourse Technologies","x":1496.5803982165708,"y":-2145.3034322537687,"z":768.1998958780509}},{"id":"3484","data":{"label":"Infobeat","x":1521.0604000957428,"y":-2127.585488377347,"z":52.38720518371864}},{"id":"3485","data":{"label":"","x":3871.8395224038795,"y":-2086.8629847270595,"z":189.75507902028664}},{"id":"3486","data":{"label":"Lightspan Partnership","x":1374.8197782517018,"y":-1772.4572847272875,"z":402.0151323941175}},{"id":"3487","data":{"label":"Open Market","x":872.0722997756911,"y":-462.1103433404742,"z":671.8741643824558}},{"id":"3488","data":{"label":"Peapod","x":1712.6008507378574,"y":-2329.8200361067393,"z":177.77441469569166}},{"id":"3489","data":{"label":"Picture Network International (NA)","x":-434.2874552862795,"y":1802.0798137663724,"z":861.2922849143538}},{"id":"3490","data":{"label":"The Learning","x":1399.895339739619,"y":-2134.7587571996423,"z":240.48516733306346}},{"id":"3491","data":{"label":"SoftKey International","x":2724.133724260544,"y":-3719.8378865647055,"z":568.0144357117824}},{"id":"8243","data":{"label":"Fox Sports Net New York","x":1649.139248214121,"y":-25.084557955557102,"z":869.347267996714}},{"id":"3494","data":{"label":"","x":-1022.0392410684337,"y":1691.0337346320148,"z":490.6159874477369}},{"id":"3495","data":{"label":"Baring Communications Equity (Asia-Pacific) Ltd. Fund (NA)","x":-2245.7205169429085,"y":-78.00197103562732,"z":610.3840169216242}},{"id":"3496","data":{"label":"","x":1008.9294309709044,"y":-4268.213338766435,"z":953.1602961233359}},{"id":"3497","data":{"label":"Cybermeals","x":918.6995812903438,"y":2293.8021549725445,"z":504.78218936976015}},{"id":"3498","data":{"label":"","x":61.61755459986489,"y":-4113.090423977518,"z":545.1365703285995}},{"id":"3499","data":{"label":"","x":4567.618417447502,"y":-583.1447869286549,"z":968.2023513221953}},{"id":"3500","data":{"label":"Sci-Fi Europe","x":2487.688841181348,"y":-1994.812004667082,"z":666.2640379553559}},{"id":"3501","data":{"label":"Home Shopping Network (HSN)","x":2511.8748930912634,"y":-1732.5265116390165,"z":23.88689932222188}},{"id":"3502","data":{"label":"","x":4159.382067182098,"y":297.4023418937104,"z":901.69887717997}},{"id":"3503","data":{"label":"Silver King Broadcasting","x":1913.2302251045885,"y":-1318.5657018143752,"z":849.5463401548116}},{"id":"3504","data":{"label":"SF Broadcasting","x":1652.46330226793,"y":-2107.543282610667,"z":170.58266141466595}},{"id":"3505","data":{"label":"October Films","x":1835.1983791415141,"y":-1597.8405357753272,"z":675.8745162932591}},{"id":"3506","data":{"label":"Ticketmaster","x":1799.3814948935906,"y":-1605.6185365662786,"z":506.8272385151422}},{"id":"3507","data":{"label":"Ticketmaster Online-CitySearch","x":1465.76792485833,"y":-1501.9668950789992,"z":193.0990358079394}},{"id":"3508","data":{"label":"Internet Shopping Network","x":2411.369593172829,"y":-1645.6099127121524,"z":206.08753155807835}},{"id":"3509","data":{"label":"Styleclick.com","x":1675.849445299301,"y":-1842.4192483221495,"z":300.3329379976909}},{"id":"3510","data":{"label":"Paramount Stations Group","x":-734.039431720827,"y":-1078.175418235619,"z":454.6409902466131}},{"id":"3511","data":{"label":"WUPA TV - Atlanta","x":-717.7000892304836,"y":-897.9325686576449,"z":447.39643206647094}},{"id":"3512","data":{"label":"WSBK TV - Boston","x":-688.1860158492627,"y":-1269.6533957991282,"z":524.4439247367075}},{"id":"3513","data":{"label":"WWHO TV - Chillicothe","x":-894.0994991502084,"y":-1101.74343045333,"z":79.13421119745622}},{"id":"3514","data":{"label":"WWHO TV - Columbus","x":-760.5854114705103,"y":-898.9908268711333,"z":644.8580283157928}},{"id":" Ft. Worth","data":{"label":"KTXA TV - Dallas","x":3132.29530357548,"y":1724.5740074369132,"z":884.6891313695376}},{"id":"3516","data":{"label":"WKBD TV - Detroit","x":-785.2737155393143,"y":-1245.1742304745171,"z":845.0948741366806}},{"id":"3517","data":{"label":"KTXH TV - Houston","x":-778.1145305851514,"y":-1269.2563340478882,"z":278.954683474355}},{"id":"3518","data":{"label":"WNDY TV - Indianapolis","x":-868.7086697639579,"y":-980.0771543287692,"z":201.8295138166697}},{"id":"3519","data":{"label":"WBFS TV - Miami","x":-841.0455176364494,"y":-937.8494039032744,"z":425.5155437497817}},{"id":"3520","data":{"label":"WLWC TV - New Bedford","x":-894.594746756793,"y":-1009.2996713402017,"z":193.76414216667138}},{"id":"3521","data":{"label":"WUPL TV - New Orleans","x":-799.402858424598,"y":-895.7435687799498,"z":590.4766071421916}},{"id":"3522","data":{"label":"WGNT TV - Norfolk","x":-881.461238087129,"y":-950.8029320013788,"z":403.9640137225695}},{"id":"3523","data":{"label":"WPSG TV - Philadelphia","x":-865.3083621885153,"y":-1187.899322163435,"z":795.4085151955776}},{"id":"3524","data":{"label":"KSTW TV - Seattle","x":-905.7733923932142,"y":-1134.6607858665352,"z":276.4019864695968}},{"id":"3525","data":{"label":"KMOV TV - St. Louis","x":-1879.9376195508796,"y":-1642.346496212027,"z":955.2952618466854}},{"id":"3526","data":{"label":"WTOG TV - Tampa","x":-900.6554106606836,"y":-1177.9055337690525,"z":373.14092264942553}},{"id":" D.C.","data":{"label":"WDCA TV - Washington","x":-2314.977874783706,"y":-1889.1127923066597,"z":67.52010912300777}},{"id":"3528","data":{"label":"KMAX TV - Sacramento","x":-934.7189196391059,"y":-1115.394048011999,"z":798.368991671117}},{"id":"3529","data":{"label":"The Paramount Channel","x":74.68365549610098,"y":-1185.4209740590022,"z":414.6052259219013}},{"id":"3530","data":{"label":"MTV: Music Television","x":-406.579602508848,"y":-802.8524679174234,"z":728.919757923616}},{"id":"3531","data":{"label":"M2","x":-589.2642018163078,"y":-770.0747095102215,"z":318.00061549069005}},{"id":"3532","data":{"label":"MTV","x":-483.7223387712361,"y":-655.4112960851662,"z":99.9585326727952}},{"id":"3533","data":{"label":"MTV Europe","x":-51.048056863756756,"y":-900.0652393544924,"z":347.93747306109935}},{"id":"3534","data":{"label":"MTV Indie","x":-539.6662922185769,"y":-696.8229704381438,"z":798.2485950318116}},{"id":"3535","data":{"label":"MTV Latin America","x":-446.22700436439527,"y":-631.6837241368203,"z":647.17807662481}},{"id":"3536","data":{"label":"MTV Productions","x":-1034.5371225454653,"y":1164.963223839568,"z":180.93100546361373}},{"id":"3537","data":{"label":"MTV Ritmo","x":-586.3822420793199,"y":-818.9485389334795,"z":987.286265594832}},{"id":"3538","data":{"label":"MTV Rocks","x":-573.8884224954149,"y":-726.6620816467166,"z":631.4993441450112}},{"id":"3539","data":{"label":"Nickelodeon","x":164.93596352996974,"y":-575.9607194163273,"z":401.3430157965476}},{"id":"3540","data":{"label":"Nickelodeon Hungary","x":8.58919628019703,"y":-510.3211024149268,"z":99.79866380239399}},{"id":"3541","data":{"label":"Nickelodeon Iceland","x":241.7590231302438,"y":-437.71007657780683,"z":736.5767674682062}},{"id":"3542","data":{"label":"Nickelodeon Latin America","x":-18.389289926401034,"y":-593.8692382251375,"z":545.878789683746}},{"id":"3543","data":{"label":"Nickelodeon Nordic","x":9.629946742994434,"y":-651.2436449412771,"z":112.06593160520283}},{"id":"3544","data":{"label":"Nick at Nite","x":-6.9951798140300525,"y":-621.8536311702319,"z":784.6600263471628}},{"id":"3545","data":{"label":"Nick at Nite's TV Land","x":178.55509606085434,"y":-406.8877305025999,"z":180.11855820706367}},{"id":"3546","data":{"label":"Nick Jr.","x":276.09944700670985,"y":-457.2686976824589,"z":203.8432149786864}},{"id":"3547","data":{"label":"Nickelodeon Books","x":216.35322719986652,"y":-398.4367200547749,"z":345.9664893496335}},{"id":"3548","data":{"label":"Nickelodeon Magazine","x":47.925047885840286,"y":-458.8780879033038,"z":887.978620792555}},{"id":"3549","data":{"label":"Nickelodeon Movies","x":-28.226090550743265,"y":-550.6480470355282,"z":130.69684557347782}},{"id":"3550","data":{"label":"VH1","x":-94.33830551696883,"y":-682.9960916214277,"z":429.7931995847961}},{"id":"3551","data":{"label":"VH1 Country","x":-241.87651909883198,"y":-531.3661950359538,"z":118.73523196662039}},{"id":"3552","data":{"label":"VH1 Soul","x":-257.81662887176253,"y":-556.636664719641,"z":481.3172869983748}},{"id":"3553","data":{"label":"VH1 United Kingdom","x":-254.2523520884697,"y":-588.5944984799808,"z":606.485961966271}},{"id":"3554","data":{"label":"Showtime Networks","x":-197.6689740747097,"y":-509.60200534365777,"z":286.47061117844873}},{"id":"3555","data":{"label":"SET Pay-Per-View","x":-310.5818829007594,"y":-358.01684209896484,"z":349.644010694921}},{"id":"3556","data":{"label":"Showtime","x":-308.203703675048,"y":-388.4380912379029,"z":469.98076537561604}},{"id":"3557","data":{"label":"Showtime en Espanol","x":-334.34353210411473,"y":-409.55864892875525,"z":222.75186741303088}},{"id":"3558","data":{"label":"Showtime Extreme","x":-304.84200952055335,"y":-321.55534670838097,"z":390.85640262401023}},{"id":"3559","data":{"label":"The Movie Channel","x":-338.3304347949761,"y":-372.9608561482828,"z":852.4133596775123}},{"id":"3560","data":{"label":"FLIX","x":-288.07331164179595,"y":-338.26058495756024,"z":535.8076352022607}},{"id":"3561","data":{"label":"All News Channel","x":296.34884639622214,"y":-860.9481053548134,"z":312.56830836560414}},{"id":"3562","data":{"label":"Viacom Interactive Services","x":444.4707934526173,"y":-1076.3745508383913,"z":4.687648320351512}},{"id":"3563","data":{"label":"Paramount Pictures","x":305.5788089181283,"y":-1248.10585719882,"z":917.7509228591016}},{"id":"3564","data":{"label":"Paramount Television","x":229.01616806559468,"y":-1248.1944834797732,"z":987.4880421248035}},{"id":"3565","data":{"label":"Paramount Home Video","x":333.11007102010717,"y":-1190.9545131536506,"z":34.1009263001697}},{"id":"3566","data":{"label":"Viacom Productions","x":188.16034484163038,"y":-1246.27249508576,"z":948.3479195022302}},{"id":"3567","data":{"label":"MTV Films","x":205.39475184252797,"y":-1223.9951566134364,"z":73.34958423473137}},{"id":"3568","data":{"label":"","x":209.2518435847137,"y":2248.142191027793,"z":170.05584181120258}},{"id":"3569","data":{"label":"Nickelodeon Studios","x":127.11219261635506,"y":-1252.1273947593245,"z":363.39454552352015}},{"id":"3571","data":{"label":"Wilshire Court Productions","x":175.73165577373948,"y":-1273.1145174179933,"z":615.4377362741161}},{"id":"3572","data":{"label":"Spelling Entertainment Group","x":187.06723865699587,"y":-1202.4920667805027,"z":148.3893270897787}},{"id":"3573","data":{"label":"Spelling Films","x":255.3646482347458,"y":-1228.516353135602,"z":791.1531268489027}},{"id":"3574","data":{"label":"Spelling Television","x":371.72961177213847,"y":-1210.3259983212374,"z":250.79687650142523}},{"id":"3575","data":{"label":"Republic Entertainment","x":434.68696432850174,"y":-1171.290444954932,"z":269.90542544441644}},{"id":"3576","data":{"label":"Big Ticket Television","x":94.46193805851726,"y":-1078.641574529393,"z":922.7809799338158}},{"id":"3577","data":{"label":"Worldvision Enterprises","x":158.0909405781258,"y":-1235.2399506280813,"z":677.2311946779788}},{"id":"3578","data":{"label":"Hamilton Projects","x":267.9587908259077,"y":-1255.91214461736,"z":290.37666842186604}},{"id":"3579","data":{"label":"Blockbuster Video","x":101.6699920906126,"y":-1217.7381014440948,"z":918.5391721188663}},{"id":"3580","data":{"label":"Blockbuster Music","x":141.5979292983584,"y":-1195.3230506060004,"z":43.96744547263043}},{"id":"3581","data":{"label":"Viacom Entertainment Stores","x":166.5539750500111,"y":-944.6006860164703,"z":828.9264684151977}},{"id":"3582","data":{"label":"Paramount Parks","x":435.2986955004103,"y":-766.6204985086051,"z":899.9233511658158}},{"id":"3583","data":{"label":"Paramount�s Carowinds","x":589.9752791218416,"y":-870.890318716376,"z":401.68456197934876}},{"id":"3584","data":{"label":"Paramount�s Great America","x":615.1941691124975,"y":-734.8449336047142,"z":734.0790309707963}},{"id":"3585","data":{"label":"Paramount�s Kings Dominion","x":288.7059900781733,"y":-700.1859691873042,"z":254.15737748026368}},{"id":"3586","data":{"label":"Paramount�s Kings Island","x":306.42027080346907,"y":-658.2727925590661,"z":472.8993791859262}},{"id":"3587","data":{"label":"Paramount Canada�s Wonderland","x":388.29741145321805,"y":-598.2429468160872,"z":127.62833791889317}},{"id":"3588","data":{"label":"Raging Waters","x":427.7789154629886,"y":-602.0593718335622,"z":860.8137993101712}},{"id":"3589","data":{"label":"Star Trek: The Experience","x":620.4621356676666,"y":-802.022785095819,"z":116.50751583711872}},{"id":"3590","data":{"label":"Viacom Consumer Products","x":122.25115465435192,"y":-1157.0974843888093,"z":114.26125317937652}},{"id":"3591","data":{"label":"Famous Music","x":298.15594368755,"y":-1227.6868686259827,"z":649.9516549236935}},{"id":"3592","data":{"label":"","x":3381.7544822519303,"y":-675.9028823685485,"z":269.1915034281798}},{"id":"3593","data":{"label":"Star Trek Franchise","x":99.57117729428592,"y":-1243.6778958178238,"z":551.0935111060975}},{"id":"3594","data":{"label":"Anne Schwartz Books","x":130.74366606979856,"y":-1217.6982824694796,"z":222.16009401530877}},{"id":"3595","data":{"label":"Archway Paperbacks and Minstrel Books","x":390.09460026018496,"y":-1026.4517721579195,"z":684.4115382970122}},{"id":"3596","data":{"label":"Lisa Drew Books","x":412.9158788972027,"y":-1165.1748311004012,"z":789.9783094593196}},{"id":"3597","data":{"label":"Fireside","x":372.61687480621094,"y":-1248.0348437213197,"z":607.036828266116}},{"id":"3598","data":{"label":"The Free Press","x":415.0693064151983,"y":-1201.994695491031,"z":657.9326359581772}},{"id":"3599","data":{"label":"MTV Books","x":344.93718721864207,"y":-1253.8398752106614,"z":363.63940598658553}},{"id":"3600","data":{"label":"","x":4044.282146140069,"y":-2409.4190168887935,"z":676.853459443032}},{"id":"3601","data":{"label":"Simon & Schuster Consumer Group","x":102.72348386650992,"y":-1183.2456055789335,"z":368.33497048513084}},{"id":"3602","data":{"label":"Simon & Schuster","x":-114.57843808569032,"y":-1186.9820009721166,"z":315.0407838030362}},{"id":"3603","data":{"label":"Simon & Schuster Audio Books","x":180.99430192669206,"y":-920.2051125718081,"z":690.0980166537067}},{"id":"3604","data":{"label":"Simon & Schuster Children's Publishing","x":57.68114661884056,"y":-1158.9485051866318,"z":460.3121978501947}},{"id":"3605","data":{"label":"Simon & Schuster Editions","x":343.0562961652822,"y":-1225.8663378171555,"z":913.3219927068457}},{"id":"3606","data":{"label":"Simon & Schuster Interactive","x":70.28937342555037,"y":-1132.9589918317565,"z":903.139410155004}},{"id":"3607","data":{"label":"Simon & Schuster Interactive Distribution","x":399.1152300529843,"y":-1067.3289969379261,"z":312.7545560345575}},{"id":"3608","data":{"label":"Simon & Schuster Libros en Espanol","x":272.9297597407026,"y":-919.6296716323022,"z":454.5300917102699}},{"id":"3609","data":{"label":"Pocket Books","x":336.1688483905382,"y":-944.8039182320013,"z":493.6691942524738}},{"id":"3610","data":{"label":"Scribner","x":388.2932529849804,"y":-1185.0364651066302,"z":194.38662938472538}},{"id":"3611","data":{"label":"Star Trek","x":132.1720261659625,"y":-939.4756621563051,"z":763.773506574168}},{"id":"3612","data":{"label":"Touchstone","x":-99.35857210680524,"y":-3491.455003864463,"z":807.8588529212141}},{"id":"3613","data":{"label":"Washington Square Press","x":72.15242687578575,"y":-1087.7115094008032,"z":354.0103844881439}},{"id":"3614","data":{"label":"Paramount Theaters","x":72.50503987961201,"y":-1213.1875794920707,"z":472.7364691983749}},{"id":"3615","data":{"label":"Paramount (Europe)","x":364.56961954445615,"y":-969.8846717034121,"z":388.87205727248084}},{"id":"3616","data":{"label":"Famous Players","x":69.36779760185618,"y":-971.0302113493999,"z":695.8524774148693}},{"id":"3617","data":{"label":"CBS Television","x":-713.2843795048707,"y":-3469.9090977182345,"z":586.8625974157285}},{"id":"3618","data":{"label":"WCBS TV - New York","x":228.83666722998805,"y":-895.2471815786266,"z":176.2807412295464}},{"id":"3619","data":{"label":"KCBS TV - Los Angeles","x":72.53926589710227,"y":-1038.7451513077258,"z":818.935920821856}},{"id":"3620","data":{"label":"WBBM TV - Chicago","x":120.16133595466272,"y":-971.0676109153387,"z":2.132175516985635}},{"id":"3621","data":{"label":"WCCO TV - Minneapolis","x":51.53366083141918,"y":-1059.8835761637674,"z":726.4630090637738}},{"id":"3622","data":{"label":"WFRV TV - Green Bay","x":60.27457408005421,"y":-1009.490514111681,"z":40.10471106233271}},{"id":"3623","data":{"label":"WWJ TV - Detroit","x":110.22051629039379,"y":-920.3312531599031,"z":957.0472569837625}},{"id":"3624","data":{"label":"WJZ TV - Baltimore","x":355.35815064740746,"y":-1187.6392350717078,"z":545.1307840568134}},{"id":"3625","data":{"label":"WBZ TV - Boston","x":427.03901782675484,"y":-1112.8860331759706,"z":768.3998021409084}},{"id":"3626","data":{"label":"KCNC TV - Denver","x":405.0988691897005,"y":-1115.8322836891439,"z":662.1426226236335}},{"id":"3627","data":{"label":"WFOR TV - Miami","x":374.70396242516927,"y":-1152.625477137749,"z":381.084209645437}},{"id":"3628","data":{"label":"KYW TV - Philadelphia","x":134.83491758405353,"y":-904.1924741303474,"z":348.8510331421317}},{"id":"3629","data":{"label":"KDKA TV - Pittsburgh","x":91.07526334496924,"y":-980.5606040886769,"z":542.5024862081227}},{"id":"3630","data":{"label":"KUTV TV - Salt Lake City","x":197.9694882714257,"y":-885.3634220602253,"z":948.4082291959218}},{"id":"3631","data":{"label":"KPIX TV - San Francisco","x":90.63855395746259,"y":-941.6001132472688,"z":71.35280356299623}},{"id":"3632","data":{"label":"KEYE TV (Austin)","x":52.376848861406415,"y":-1108.4518064422746,"z":963.5851486295388}},{"id":"3633","data":{"label":"TNN: The National Network","x":396.898334643663,"y":-1141.0554601672256,"z":976.5112535487732}},{"id":"3634","data":{"label":"CMT: Country Music Television","x":423.6855412156192,"y":-1074.0208710754223,"z":372.0295803731455}},{"id":"3635","data":{"label":"Group W Network Services","x":685.8345815822677,"y":-1273.2773526640967,"z":667.8427514673184}},{"id":"3636","data":{"label":"CBS.com","x":443.013203462242,"y":-1138.8498662702577,"z":676.2974676298992}},{"id":"3637","data":{"label":"CBSNews.com","x":166.52778516732496,"y":-892.6167969139824,"z":349.3318998875581}},{"id":"3638","data":{"label":"Office.com","x":-124.46815165047428,"y":-693.2230459311613,"z":938.8536233832965}},{"id":"3639","data":{"label":"","x":-1620.1985022524389,"y":1114.442531996121,"z":290.1774512068003}},{"id":"3640","data":{"label":"Big Entertainment - Hollywood.com","x":382.8386282189367,"y":-989.7453071679438,"z":668.4078057537373}},{"id":"3641","data":{"label":"Contentville.com","x":527.4590890352097,"y":-1287.95608972242,"z":242.65252020972272}},{"id":"3642","data":{"label":"CBS RADIO - Infinity Broadcasting","x":112.65935097826787,"y":-1883.5615024642243,"z":873.7085213245557}},{"id":"3643","data":{"label":"WAOK-AM (Atlanta)","x":146.2973250816508,"y":-1704.71869163184,"z":709.3539629957875}},{"id":"3644","data":{"label":"WVEE-FM (Atlanta)","x":297.57438490123604,"y":-1758.1393342509095,"z":157.40683789864485}},{"id":"3645","data":{"label":"WZGC-FM (Atlanta)","x":-161.73118058836462,"y":-1674.1891696248058,"z":431.9574773678963}},{"id":"3646","data":{"label":"KJCE-AM (Austin)","x":261.6103201943415,"y":-1778.4963090756287,"z":912.6211029919864}},{"id":"3647","data":{"label":"KAMX-FM (Austin)","x":342.86960653906544,"y":-1774.2582539959744,"z":741.487649689897}},{"id":"3648","data":{"label":"KKMJ-FM (Austin)","x":263.54163052413014,"y":-1753.2167879690942,"z":312.46711106786785}},{"id":"3649","data":{"label":"KQBT-FM (Austin)","x":237.98113291852223,"y":-1739.8127065073586,"z":235.5210550096618}},{"id":"3650","data":{"label":"WJFK-AM (Baltimore)","x":319.5039557209766,"y":-1742.011824888957,"z":916.8591019729126}},{"id":"3651","data":{"label":"WLIF-FM (Baltimore)","x":213.68574859795172,"y":-1989.4003377059057,"z":830.5931102331094}},{"id":"3652","data":{"label":"WXYV-FM (Baltimore)","x":219.10819976361472,"y":-1755.5709780568268,"z":437.7465611445399}},{"id":"3653","data":{"label":"WQSR-FM (Baltimore)","x":174.53350250040558,"y":-1677.2925173283256,"z":451.91667555165395}},{"id":"3654","data":{"label":"WWMX-FM (Baltimore)","x":143.08073624307735,"y":-1727.1633129459474,"z":653.5342507684425}},{"id":"3655","data":{"label":"WBZ-AM (Boston)","x":252.85753604034426,"y":-1701.1385366360246,"z":569.3909252244838}},{"id":"3656","data":{"label":"WODS-FM (Boston)","x":-9.695307736424184,"y":-1810.7272658455422,"z":164.8830309136613}},{"id":"3657","data":{"label":"WBCN-FM (Boston)","x":269.0200699922116,"y":-1728.5635552365384,"z":470.3227000155774}},{"id":"3658","data":{"label":"WBMX-FM (Boston)","x":209.34734109205328,"y":-1698.5816093615158,"z":26.827613147944795}},{"id":"3659","data":{"label":"WZLZ-FM (Boston)","x":175.25681158196312,"y":-1698.5850809832646,"z":620.3094573968121}},{"id":"3660","data":{"label":"WECK-AM (Buffalo)","x":291.02122245910823,"y":-1723.511595489274,"z":538.1766640767536}},{"id":"3661","data":{"label":"WBLK-FM (Buffalo)","x":266.5960660669507,"y":-1818.6701475555574,"z":799.8790572414687}},{"id":"3662","data":{"label":"WJYE-FM (Buffalo)","x":230.76642704189817,"y":-1710.4134039377618,"z":587.9961045136959}},{"id":"3663","data":{"label":"WLCE-FM (Buffalo)","x":270.24974681546973,"y":-1860.7039509836318,"z":454.9461818337568}},{"id":"3664","data":{"label":"WYRK-FM (Buffalo)","x":191.6386821300148,"y":-1734.0249481974688,"z":246.80195649792668}},{"id":"3665","data":{"label":"WFNZ-AM (Charlotte)","x":73.69776808011511,"y":-1727.5289755812664,"z":338.861479377943}},{"id":"3666","data":{"label":"WGIV-AM (Charlotte)","x":355.1069061400076,"y":-1804.4038398095254,"z":804.3863347224805}},{"id":"3667","data":{"label":"WBAV-FM (Charlotte)","x":-2.784483183791508,"y":-1944.3480498940903,"z":863.7631266833123}},{"id":"3668","data":{"label":"WNKS-FM (Charlotte)","x":98.60100930181989,"y":-1710.0221829283873,"z":985.7146649812046}},{"id":"3669","data":{"label":"WPEG-FM (Charlotte)","x":336.20012999741857,"y":-1886.1891961523538,"z":736.8838330369623}},{"id":"3670","data":{"label":"WSOC-FM (Charlotte)","x":290.45292706501095,"y":-1788.748389439268,"z":457.18481669894715}},{"id":"3671","data":{"label":"WSSS-FM (Charlotte)","x":339.48110801256826,"y":-1860.2237427367186,"z":358.36882240267244}},{"id":"3672","data":{"label":"WBBM-AM/FM (Chicago)","x":137.92409997421646,"y":-1667.425387198898,"z":541.443424372128}},{"id":"3673","data":{"label":"WMAQ-AM (Chicago)","x":31.51128193502427,"y":-1729.9540169339216,"z":174.95405577147326}},{"id":"3674","data":{"label":"WSCR-AM (Chicago)","x":15.59082628327451,"y":-1714.6227958327722,"z":534.7848155983838}},{"id":"3675","data":{"label":"WXRT-FM (Chicago)","x":30.49049554155863,"y":-1685.6178875272935,"z":936.6072769831603}},{"id":"3676","data":{"label":"WCKG-FM (Chicago)","x":295.0266900629849,"y":-1848.2627597690216,"z":366.361883896396}},{"id":"3677","data":{"label":"WJMK-FM (Chicago)","x":61.72397067959082,"y":-1697.9588275702436,"z":400.0596797096445}},{"id":"3678","data":{"label":"WUSN-FM (Chicago)","x":-131.15238252993095,"y":-1643.352761792311,"z":780.5018408348723}},{"id":"3679","data":{"label":"WGRR-FM (Cincinnati)","x":38.72077565955442,"y":-1752.5391378044246,"z":182.64145375996787}},{"id":"3680","data":{"label":"WKRQ-FM (Cincinnati)","x":254.62631146079275,"y":-1942.135173852509,"z":784.6414008260336}},{"id":"3681","data":{"label":"WYLX-FM (Cincinnati)","x":-14.734325360424918,"y":-1781.5554497904022,"z":131.17406123497167}},{"id":"3682","data":{"label":"WLVQ-FM (Columbus)","x":311.81041139911576,"y":-1832.2493705845613,"z":448.62825962607866}},{"id":"3683","data":{"label":"WAZU-FM (Columbus)","x":83.94180433986958,"y":-1679.0554562576244,"z":573.5406585126021}},{"id":"3684","data":{"label":"WHOK-FM (Columbus)","x":126.90018805788031,"y":-2017.8324982561094,"z":530.7802445813958}},{"id":"3685","data":{"label":"KHVN-AM (Dallas)","x":-22.702603850777905,"y":-1857.7799670062273,"z":402.64278004391275}},{"id":"3686","data":{"label":"KLUV-FM (Dallas)","x":321.96188745785093,"y":-1809.3823473638158,"z":538.8002885084588}},{"id":"3687","data":{"label":"KOAI-FM (Dallas)","x":117.86937535543302,"y":-1686.1084253694535,"z":757.3181610253328}},{"id":"3688","data":{"label":"KOOO-AM (Dallas)","x":3.278352868715956,"y":-1693.334898510709,"z":995.5043452358849}},{"id":"3689","data":{"label":"KRBV-FM (Dallas)","x":320.1639111862696,"y":-1774.7168723358259,"z":99.12909865372477}},{"id":"3690","data":{"label":"KRLD-AM (Dallas)","x":46.67529280901272,"y":-1666.0562323749673,"z":38.98488649294851}},{"id":"3691","data":{"label":"KVIL-FM (Dallas)","x":-5.350147098189154,"y":-1749.7140851868203,"z":439.30165512657805}},{"id":"3692","data":{"label":"KYNG-FM (Dallas)","x":-33.13761873129897,"y":-1747.0725479418488,"z":308.17046361430056}},{"id":"3693","data":{"label":"WWJ-AM (Detroit)","x":90.8204970634547,"y":-1657.7869176244385,"z":45.94102004288625}},{"id":"3694","data":{"label":"WVMV-FM (Detroit)","x":153.12813046986048,"y":-2031.8138768211425,"z":721.2837218568847}},{"id":"3695","data":{"label":"WKRK-FM (Detroit)","x":-38.281267214356376,"y":-1829.2836954156774,"z":790.3915363633482}},{"id":"3696","data":{"label":"WOMC-FM (Detroit)","x":-68.06818235313585,"y":-1759.3058101302972,"z":945.1184882825955}},{"id":"3697","data":{"label":"WXYT-AM (Detroit)","x":296.6337810591217,"y":-1879.9170357432058,"z":145.74076184914952}},{"id":"3698","data":{"label":"WYCD-FM (Detroit)","x":-61.89510443681729,"y":-1731.614228485715,"z":616.8513639524915}},{"id":"3699","data":{"label":"KMJ-AM (Fresno)","x":369.16798133666543,"y":-1831.7544382898932,"z":393.6042619859519}},{"id":"3700","data":{"label":"KOOR-AM (Fresno)","x":271.39152266529936,"y":-1905.7789305333945,"z":370.14706801584583}},{"id":"3701","data":{"label":"KNAX-FM (Fresno)","x":341.72385506013234,"y":-1832.583522448016,"z":390.54493325255146}},{"id":"3702","data":{"label":"KOQO-FM (Fresno)","x":-27.91980665211122,"y":-1926.7463292114207,"z":495.66582024431204}},{"id":"3703","data":{"label":"KRNC-FM (Fresno)","x":290.8091616362062,"y":-1924.2277833013704,"z":735.1477896656879}},{"id":"3704","data":{"label":"KSKS-FM (Fresno)","x":-50.606614922794506,"y":-1773.3565375409312,"z":579.7083781634751}},{"id":"3705","data":{"label":"KVSR-FM (Fresno)","x":-25.1389994049714,"y":-1696.5075775349578,"z":394.1020130708599}},{"id":"3706","data":{"label":"WTIC-AM/FM (Hartford)","x":-26.44308642233591,"y":-1720.6265845198832,"z":393.7433456453565}},{"id":"3707","data":{"label":"WZMK-FM (Hartford)","x":-52.89529474124629,"y":-1797.7727402969208,"z":952.8152885690157}},{"id":"3708","data":{"label":"WRCH-FM (Hartford)","x":196.71433080022098,"y":-2017.5949511600675,"z":565.4299295995415}},{"id":"3709","data":{"label":"KILT-AM/FM (Houston)","x":314.44904165142,"y":-1898.4702968258543,"z":633.5564558890485}},{"id":"3710","data":{"label":"KIKK-AM/FM (Houston)","x":-39.15265375948593,"y":-1889.5616059431195,"z":738.5686113885423}},{"id":"3711","data":{"label":"KBEQ-FM (Kansas City)","x":-8.266062722580045,"y":-1974.5064806265304,"z":643.951861173465}},{"id":"3712","data":{"label":"KFKF-FM (Kansas City)","x":56.83387067202102,"y":-2019.5392987920236,"z":355.28770239940945}},{"id":"3713","data":{"label":"KXMV-FM (Kansas City)","x":354.3117864631354,"y":-1909.3729635051031,"z":589.3060457648867}},{"id":"3714","data":{"label":"KOZN-FM (Kansas City)","x":-91.51495045227011,"y":-1760.6468866267742,"z":118.89097945667793}},{"id":"3715","data":{"label":"KSFN-AM (Las Vegas)","x":-60.423373612627074,"y":-1869.8837340449682,"z":728.6247248776141}},{"id":"3716","data":{"label":"KXNT-AM (Las Vegas)","x":-81.07216234969428,"y":-1816.1185127131425,"z":49.914557573890626}},{"id":"3717","data":{"label":"KLUC-FM (Las Vegas)","x":364.5793527313731,"y":-1874.5501434239595,"z":680.7981841421063}},{"id":"3718","data":{"label":"KMXB-FM (Las Vegas)","x":-52.91218980554822,"y":-1926.486136221889,"z":938.3174566214241}},{"id":"3719","data":{"label":"KMZQ-FM (Las Vegas)","x":-99.75232890969892,"y":-1805.9964422393705,"z":10.251922945209602}},{"id":"3720","data":{"label":"KXTE-FM (Las Vegas)","x":256.3783282280797,"y":-1986.1576198567677,"z":373.2270808577174}},{"id":"3721","data":{"label":"KNX-AM (Los Angeles)","x":-109.35921043223516,"y":-1785.6691369949272,"z":274.8419173443983}},{"id":"3722","data":{"label":"KFWB-AM (Los Angeles)","x":234.60342683008503,"y":-1998.4392080663492,"z":32.07600949448653}},{"id":"3723","data":{"label":"KCBS-FM (Los Angeles)","x":281.5566808749054,"y":-1999.6718619893313,"z":783.3612593245942}},{"id":"3724","data":{"label":"KTWV-FM (Los Angeles)","x":85.21719952674266,"y":-2034.6248403255013,"z":225.63159162907232}},{"id":"3725","data":{"label":"KLSX-FM (Los Angeles)","x":296.497652934554,"y":-1951.2403011434099,"z":935.2437398137738}},{"id":"3726","data":{"label":"KRLA-AM (Los Angeles)","x":-94.48262567486881,"y":-1845.020131433921,"z":554.6913559936972}},{"id":"3727","data":{"label":"KROQ-FM (Los Angeles)","x":319.2397234242053,"y":-1952.292691320818,"z":298.9398454865313}},{"id":"3728","data":{"label":"KRTH-FM (Los Angeles)","x":278.8948900355813,"y":-1970.648250717385,"z":313.6903731091294}},{"id":"3729","data":{"label":"WCCO-AM (Minneapolis)","x":177.62800932407572,"y":-2049.222263018412,"z":95.79348764363971}},{"id":"3730","data":{"label":"KSGS-AM (Minneapolis)","x":31.729365252312164,"y":-1992.195908412209,"z":227.5223075215369}},{"id":"3731","data":{"label":"KMJZ-FM (Minneapolis)","x":206.16214215720902,"y":-2045.243872868823,"z":44.2537264592453}},{"id":"3732","data":{"label":"WLTE-FM (Minneapolis)","x":-62.53695591628684,"y":-1831.7500634445641,"z":279.06888262764727}},{"id":"3733","data":{"label":"KLUE-FM (Monterey-Salinas)","x":-21.118260883217772,"y":-1998.921449675142,"z":921.5809888149091}},{"id":"3734","data":{"label":"WCBS-AM/FM (New York)","x":-79.94289903228491,"y":-1903.59899566999,"z":536.1043390071359}},{"id":"3735","data":{"label":"WINS-AM (New York)","x":230.72954548706548,"y":-2036.2828032660227,"z":685.7545140068439}},{"id":"3736","data":{"label":"WNEW-FM (New York)","x":-122.92252338721755,"y":-1823.6702112082157,"z":577.2935997122898}},{"id":"3737","data":{"label":"WFAN-AM (New York)","x":-86.87577850876369,"y":-1873.7890683411438,"z":660.0084997232318}},{"id":"3738","data":{"label":"WXRK-FM (New York)","x":344.5151409433561,"y":-1949.223230316868,"z":65.13251903249983}},{"id":"3739","data":{"label":"KEZN-FM (Palm Springs)","x":330.5051516307858,"y":-1923.099098716791,"z":673.6078356245476}},{"id":"3740","data":{"label":"KYW-AM (Philadelphia)","x":31.071032837820894,"y":-2041.355498889643,"z":582.7125506219659}},{"id":"3741","data":{"label":"WPHT-AM (Philadelphia)","x":97.99508451881684,"y":-2057.3718233863724,"z":632.9569347806067}},{"id":"3742","data":{"label":"WOGL-FM (Philadelphia)","x":308.9767171551521,"y":-1996.824002299386,"z":100.217840871057}},{"id":"3743","data":{"label":"WIP-AM (Philadelphia)","x":292.84592801925646,"y":-2023.50388288357,"z":83.28910869867823}},{"id":"3744","data":{"label":"WYSP-FM (Philadelphia)","x":12.024640363475555,"y":-2012.5513617272663,"z":99.66016815244893}},{"id":"3745","data":{"label":"KDKA-AM (Pittsburgh)","x":136.50394113857237,"y":-2052.7522373405645,"z":651.1751014665228}},{"id":"3746","data":{"label":"WBZZ-FM (Pittsburgh)","x":245.76397008352387,"y":-2057.664146999401,"z":216.3842359233843}},{"id":"3747","data":{"label":"WDSY-FM (Pittsburgh)","x":-102.4237826220633,"y":-1908.7788988833859,"z":75.0523222986148}},{"id":"3748","data":{"label":"WZPT-FM (Pittsburgh)","x":-73.32467471735572,"y":-1941.3653222428402,"z":18.10063465467571}},{"id":"3749","data":{"label":"KUPL-AM (Portland)","x":-115.5827348980024,"y":-1854.883723950738,"z":700.3858857077158}},{"id":"3750","data":{"label":"KBBT-FM (Portland)","x":56.28487188672716,"y":-2059.992557056492,"z":643.3554977937415}},{"id":"3751","data":{"label":"KINK-FM (Portland)","x":-42.97444244643202,"y":-1966.0682225732362,"z":859.7712274194233}},{"id":"3752","data":{"label":"KKJZ-FM (Portland)","x":327.9339294311376,"y":-1979.9548060123134,"z":470.1257948492228}},{"id":"3753","data":{"label":"KUFO-FM (Portland)","x":-127.31946853139061,"y":-1875.1888175856957,"z":567.4324282459775}},{"id":"3754","data":{"label":"KUPL-FM (Portland)","x":135.21276761022182,"y":-2075.714791508718,"z":880.3688326275166}},{"id":"3755","data":{"label":"KFRG-FM (Riverside)","x":257.0241850964212,"y":-2029.9041904334467,"z":930.4047367543507}},{"id":"3756","data":{"label":"KXFG-FM (Riverside)","x":161.25145229614236,"y":-2084.163463346362,"z":482.24168457986315}},{"id":"3757","data":{"label":"WCMF-FM (Rochester)","x":-58.18844002934111,"y":-1987.4961175859116,"z":321.9821188651004}},{"id":"3758","data":{"label":"WPXY-FM (Rochester)","x":-83.45278312411301,"y":-1970.061599948092,"z":831.6567724191939}},{"id":"3759","data":{"label":"WRMM-FM (Rochester)","x":-125.59912784040534,"y":-1904.4010916585748,"z":527.5402427934104}},{"id":"3760","data":{"label":"WZNE-FM (Rochester)","x":-4.9752940688258604,"y":-2035.6947591081507,"z":779.6892618972262}},{"id":"3761","data":{"label":"KHTK-AM (Sacramento)","x":-40.55504559608289,"y":-2015.7007829933,"z":217.0510846296958}},{"id":"3762","data":{"label":"KQPT-AM (Sacramento)","x":91.4131604927502,"y":-2080.7639385844004,"z":410.5237243083122}},{"id":"3763","data":{"label":"KZZO-FM (Sacramento)","x":191.17386485589805,"y":-2075.9427378929877,"z":896.020738366246}},{"id":"3764","data":{"label":"KNCI-FM (Sacramento)","x":-117.0240446230855,"y":-1959.6513805105683,"z":964.4136999743203}},{"id":"3765","data":{"label":"KRAK-FM (Sacramento)","x":-103.15743774281827,"y":-1939.5962845284885,"z":297.6942508102294}},{"id":"3766","data":{"label":"KSFM-FM (Sacramento)","x":-76.8164070646717,"y":-2008.1027335376039,"z":356.27256421606245}},{"id":"3767","data":{"label":"KYMX-FM (Sacramento)","x":61.808177650186735,"y":-2088.306567022368,"z":982.7707915534005}},{"id":"3768","data":{"label":"KEZR-FM (San Jose)","x":-108.24227018628153,"y":-1986.3629097325465,"z":21.4727697259407}},{"id":"3769","data":{"label":"KBAY-FM (San Jose)","x":-52.865637710423925,"y":-2036.4124722397487,"z":249.29568228305055}},{"id":"3770","data":{"label":"KCBS-AM (San Francisco)","x":-22.79898843353203,"y":-2054.2440615010787,"z":60.0850832693991}},{"id":"3771","data":{"label":"KFRC-AM/FM (San Francisco)","x":154.79379283140224,"y":-2109.899898372883,"z":629.6259842917533}},{"id":"3772","data":{"label":"KITS-FM (San Francisco)","x":30.199005703371313,"y":-2085.491361473343,"z":481.268386113981}},{"id":"3773","data":{"label":"KYCY-FM/AM (San Francisco)","x":108.01671034760602,"y":-2098.4658923240995,"z":504.36334080374337}},{"id":"3774","data":{"label":"KLLC-FM (San Francisco)","x":-134.9015481756478,"y":-1937.8879472269841,"z":799.0479723803663}},{"id":"3775","data":{"label":"KRPM-AM (Seattle)","x":124.2323354360501,"y":-2116.0416286491554,"z":346.96842229702463}},{"id":"3776","data":{"label":"KBKS-FM (Seattle)","x":200.59341303848396,"y":-2094.3184364294716,"z":741.7581275787069}},{"id":"3777","data":{"label":"KMPS-FM (Seattle)","x":-51.05084987987584,"y":-2065.4784329156646,"z":563.8474772732432}},{"id":"3778","data":{"label":"KYCW-FM (Seattle)","x":7.514494833201297,"y":-2069.4206069834695,"z":906.7499365688134}},{"id":"3779","data":{"label":"KZOK-FM (Seattle)","x":0.0720546152560928,"y":-2098.3623902669474,"z":946.5290951612419}},{"id":"3780","data":{"label":"KEZK-FM (St. Louis)","x":31.347604635441257,"y":-2112.6340292436494,"z":200.8806658043323}},{"id":"3781","data":{"label":"KYKY-FM (St. Louis)","x":-26.0155987543194,"y":-2083.22653891214,"z":211.42291614704467}},{"id":"3782","data":{"label":"KMOX-AM (St. Louis)","x":62.270795798410745,"y":-2116.7052122380064,"z":544.5211595335455}},{"id":"3783","data":{"label":"WQYK-AM/FM (Tampa)","x":-102.67973893461749,"y":-2015.3708399504826,"z":974.8137318370658}},{"id":" D.C.)","data":{"label":"WHFS-FM (Washington","x":-2606.9206898620378,"y":118.03231378255623,"z":842.1235855158327}},{"id":"3788","data":{"label":"WEAT-FM (West Palm Beach)","x":90.0688638536567,"y":-2122.8405956822944,"z":128.21245882255195}},{"id":"3789","data":{"label":"WIRK-FM (West Palm Beach)","x":-80.01250869183605,"y":-2043.3366022333275,"z":136.87036386992668}},{"id":"3790","data":{"label":"Metro Networks","x":523.4270012329944,"y":-1059.3849274763534,"z":30.466558455020333}},{"id":"3791","data":{"label":"TDI Worldwide","x":-62.66469252465413,"y":-1362.8503091977495,"z":745.2895166609248}},{"id":"3792","data":{"label":"Outdoor Systems","x":226.7512299934524,"y":-917.911553888262,"z":618.8756411013247}},{"id":"3793","data":{"label":"CBS Production","x":207.73449764792167,"y":-1271.5092745300053,"z":882.8800630900881}},{"id":"3794","data":{"label":"EYEMARK","x":393.0597437183037,"y":-1225.2335105693805,"z":125.55722720291462}},{"id":"3795","data":{"label":"King World Productions","x":94.7538466876922,"y":-1140.4547507029206,"z":824.9692996354838}},{"id":"3796","data":{"label":"Charter Communications","x":1937.4286609920982,"y":-342.12615938257113,"z":302.599876367611}},{"id":"3797","data":{"label":"Seattle Seahawks","x":2376.055561172806,"y":-393.1596387052705,"z":638.0951689141345}},{"id":"3798","data":{"label":"Portland Trailblazers","x":2486.5608692709175,"y":-666.4398986576116,"z":500.215700891764}},{"id":"3799","data":{"label":"","x":-1745.3845566347957,"y":828.2225989175622,"z":435.03395283623325}},{"id":"3800","data":{"label":"The Washington Post","x":2647.1582447656856,"y":-780.4305079564747,"z":400.3933117785072}},{"id":"3801","data":{"label":"The Washington Post National Weekly Edition","x":2580.3316848028044,"y":-794.1140738284703,"z":408.2020975795737}},{"id":"3802","data":{"label":"The Washington Post Writers Group (syndication)","x":2602.0740112286676,"y":-803.8531840581909,"z":713.7667798791636}},{"id":"3804","data":{"label":"Gazette Newspapers","x":-2417.078525821611,"y":-1362.51084658143,"z":531.5314935662082}},{"id":"3805","data":{"label":"","x":1595.141350883845,"y":2238.8488586646254,"z":874.0743256209058}},{"id":"3806","data":{"label":"","x":3326.9412588644527,"y":-3157.8996623453277,"z":806.6292524714349}},{"id":"3807","data":{"label":"Enterprise Newspapers","x":2537.3057017661986,"y":-831.4824452451085,"z":979.1744850066506}},{"id":"3808","data":{"label":"Newsweek","x":2691.5134368123345,"y":-1080.1395816644686,"z":662.5101106732639}},{"id":"3809","data":{"label":"Newsweek International","x":2664.0831972527576,"y":-1094.1276993848478,"z":132.3793469107082}},{"id":"3810","data":{"label":"Newsweek Japan (Newsweek Nihon Ban)","x":2765.45204301802,"y":-1080.7295121903549,"z":852.2146131493236}},{"id":"3811","data":{"label":"Newsweek Korea (Newsweek Hankuk Pan)","x":2605.8223015303656,"y":-1065.6420734897201,"z":900.8647340057199}},{"id":"3812","data":{"label":"Newsweek En Espanol","x":2831.957349213144,"y":-914.9806618588791,"z":735.7218865908377}},{"id":"3813","data":{"label":"Itogi","x":2821.693326510409,"y":-1004.1737263032301,"z":875.6993687323913}},{"id":"3814","data":{"label":"Post-Newsweek Business Information","x":2751.77185679357,"y":-800.338190891026,"z":579.239104053598}},{"id":"3815","data":{"label":"Post-Newsweek Stations","x":2829.757386246065,"y":-969.888733562414,"z":122.3394177892354}},{"id":"3816","data":{"label":"WDIV TV (Detroit) (NBC)","x":2799.320505568863,"y":-1064.444855755989,"z":590.2261864429544}},{"id":"3817","data":{"label":"KPRC TV (Houston) (NBC)","x":2853.3123778721847,"y":-960.7181107221086,"z":430.1808953325912}},{"id":"3818","data":{"label":"WPLG TV (Miami) (ABC)","x":2713.538538710589,"y":-774.771002220421,"z":560.7753352810619}},{"id":"3819","data":{"label":"WKMG TV (Orlando) (CBS)","x":2792.260613953008,"y":-812.9304649245032,"z":489.3430010038806}},{"id":"3820","data":{"label":"KSAT TV (San Antonio) (ABC)","x":2848.224246822356,"y":-1008.5156974558504,"z":511.79533535844456}},{"id":"3821","data":{"label":"WJXT TV (Jacksonville) (CBS)","x":2778.901169943827,"y":-784.3135981707528,"z":820.6997124244601}},{"id":"3822","data":{"label":"","x":3536.794038383342,"y":1109.2946177166668,"z":9.349742658646853}},{"id":"3823","data":{"label":"Newsweek Productions","x":2851.106537955874,"y":-1034.5845271985681,"z":283.64069428263815}},{"id":"3824","data":{"label":"Cable One","x":2855.3106021829435,"y":-925.5529806730378,"z":436.72873322295436}},{"id":"3825","data":{"label":"Kaplan Educational Centers","x":2823.035033307542,"y":-1043.9418534743672,"z":692.0556530736084}},{"id":"3826","data":{"label":"Digital Ink Co.","x":2743.8704553046027,"y":-764.7926568392413,"z":938.8396632809739}},{"id":"3827","data":{"label":"","x":1255.5824874579912,"y":2230.0860479069815,"z":941.4881229623231}},{"id":"3828","data":{"label":"LEGI-SLATE","x":2825.6096726418036,"y":-826.8660366629774,"z":776.8496012086765}},{"id":"3829","data":{"label":"Robinson Terminal Warehouse","x":2874.701810750992,"y":-993.7648606492585,"z":147.14957142362485}},{"id":"3830","data":{"label":"Capitol Fiber","x":2882.8577985607317,"y":-928.4557968440522,"z":148.5143627241823}},{"id":"3831","data":{"label":"Bowater Mersey Paper","x":2873.974015608468,"y":-895.7367627423037,"z":516.2631904372821}},{"id":"3832","data":{"label":"Dearborn Publishing Group","x":2884.3863049703677,"y":-960.2688539006976,"z":410.9060518051715}},{"id":"3833","data":{"label":"Yahoo! Portal","x":2116.314922675563,"y":-1229.5477124351241,"z":598.0650726747632}},{"id":"3834","data":{"label":"Yahoo! Autos","x":2326.8593635358084,"y":-1161.6058519756843,"z":185.9741060478579}},{"id":"3835","data":{"label":"Yahoo! Auctions","x":2343.3730617079527,"y":-1106.4243795672678,"z":809.275922216066}},{"id":"3836","data":{"label":"Yahoo! Shopping","x":2370.127107481003,"y":-1069.0037037541897,"z":745.3775845463866}},{"id":"3837","data":{"label":"Yahoo! Pets","x":2296.229864566617,"y":-971.213961040678,"z":324.6674700075462}},{"id":"3838","data":{"label":"Yahoo! E-Bills","x":2302.2546606476417,"y":-1179.797510028724,"z":703.3118427501728}},{"id":"3839","data":{"label":"Yahoo! Health","x":2100.6085586149984,"y":-1202.1823650894112,"z":931.4605041383235}},{"id":"3840","data":{"label":"Yahoo! Music","x":2364.6615979197177,"y":-1151.1155081803317,"z":548.5635800696971}},{"id":"3841","data":{"label":"Yahoo! Maps","x":2050.862152827439,"y":-1176.5151102160185,"z":1.2095432428957942}},{"id":"3842","data":{"label":"Yahooligans!","x":2071.876720213828,"y":-1208.9299376184717,"z":356.1284351354801}},{"id":"3843","data":{"label":"Yahoo! World Properties","x":2379.1121540221448,"y":-1125.9047309661892,"z":47.53069174815305}},{"id":"3844","data":{"label":"GeoCities","x":2346.569122158927,"y":-1167.034998929792,"z":663.2221931522897}},{"id":"3845","data":{"label":"Broadcast.com","x":2270.8983329842013,"y":-1207.0493613171648,"z":229.77204583015043}},{"id":"3846","data":{"label":"egroups.com","x":2326.4872288684955,"y":-1130.2130323435908,"z":638.393186249794}},{"id":"3847","data":{"label":"Softbank","x":2247.730910407183,"y":-225.31151179357767,"z":440.5120506321685}},{"id":"3848","data":{"label":"AOL Time Warner","x":1475.2681072355444,"y":-495.8354247946718,"z":312.98917696539854}},{"id":"3849","data":{"label":"Concierge.com","x":-273.45207899098205,"y":-2787.8315122715117,"z":375.0139777067729}},{"id":"3850","data":{"label":"Advance Internet","x":-403.6364717838578,"y":-2475.2441652616444,"z":171.97681784149444}},{"id":"3851","data":{"label":"Alabama Live","x":-453.8806272683578,"y":-2303.7981373425214,"z":139.3867058954499}},{"id":"3852","data":{"label":"Cleveland Live","x":-493.59119478567027,"y":-2604.8489020344696,"z":540.070476902629}},{"id":"3853","data":{"label":"MassLive","x":-538.6359109628397,"y":-2548.347207734725,"z":986.6451423008987}},{"id":"3854","data":{"label":"Michigan Live","x":-426.4421689867322,"y":-2624.2607619054884,"z":18.027239616657642}},{"id":"3855","data":{"label":"New Jersey Online","x":-553.2395711489526,"y":-2410.829637433939,"z":607.0853934509623}},{"id":"3856","data":{"label":"NOLA Live (New Orleans)","x":-458.2512700891534,"y":-2632.8658670495615,"z":868.0215188114422}},{"id":"3857","data":{"label":"PennLive","x":-523.5633496904138,"y":-2584.930115819302,"z":958.8474855563597}},{"id":"3858","data":{"label":"Staten Island Live","x":-520.8898256193961,"y":-2363.2718902291617,"z":784.4658957683046}},{"id":"3859","data":{"label":"Syracuse Live","x":-567.4035151338612,"y":-2520.3668312575514,"z":960.8205297800922}},{"id":"3860","data":{"label":"Cond�Net","x":-310.63774484437545,"y":-2639.7331177869414,"z":844.0137976936284}},{"id":"3861","data":{"label":"PHYS","x":631.0911965390569,"y":2065.9113376571886,"z":522.3776885895985}},{"id":"3862","data":{"label":"Swoon","x":-303.0136649622282,"y":-2825.8215557794647,"z":406.65271398307823}},{"id":"3863","data":{"label":"Vogue.com","x":-418.1111334830666,"y":-2518.609593735335,"z":519.5179476281248}},{"id":"3864","data":{"label":"Ideas Publishing Group","x":-590.7430103545239,"y":-2505.2315662461433,"z":283.7732603082914}},{"id":"3865","data":{"label":"Cartoonbank.com","x":-15.093692464438845,"y":-2519.038609134054,"z":163.55990130446975}},{"id":"3866","data":{"label":"Newhouse Broadcasting","x":1923.8087853101824,"y":1743.2638653338636,"z":970.1646087466358}},{"id":"3867","data":{"label":"Newhouse News Service","x":-235.7915006648359,"y":-2321.211965296535,"z":884.865188515195}},{"id":"3868","data":{"label":"Real Media","x":-287.20522351729187,"y":-2501.043313842261,"z":939.1468664140618}},{"id":"3869","data":{"label":"Religion News Service","x":-256.28072917805684,"y":-2352.0899100406486,"z":316.8891984728679}},{"id":"3870","data":{"label":"WWD/DNR The Business Newsletter for Specialty Stores","x":-238.1969100578326,"y":-3188.545374318788,"z":483.2424944067688}},{"id":"3871","data":{"label":"Newhouse Newspapers","x":-199.03136432312203,"y":-2313.781983182398,"z":252.70145112061937}},{"id":"3872","data":{"label":"Belo","x":-766.1922018350306,"y":-719.5250964760289,"z":890.4561814565515}},{"id":"3873","data":{"label":"DigitalConvergence.com","x":-968.3096148666948,"y":1578.2061915015092,"z":180.92102421613188}},{"id":"3875","data":{"label":"KTVK-TV (Independent; Phoenix)","x":-688.5314366666739,"y":-553.4532956284374,"z":597.3742405364735}},{"id":"3876","data":{"label":"KASW-TV (WB; Phoenix)","x":-663.5971590217664,"y":-582.8280139642038,"z":24.49723378319146}},{"id":"3877","data":{"label":"Arlington Morning News (TX)","x":-614.8943418364452,"y":-597.2138421694208,"z":541.5163133446348}},{"id":"3878","data":{"label":"The Providence Journal (Rhode Island)","x":-911.932388136307,"y":-697.9723632211962,"z":727.7590290969971}},{"id":"3879","data":{"label":"AT&T WorldNet","x":1180.1323778430951,"y":-935.0447329084582,"z":913.9947710012682}},{"id":"3880","data":{"label":"ACC","x":1126.8608652921812,"y":-836.6061155694551,"z":152.15783811820538}},{"id":"3881","data":{"label":"AT&T Canada","x":1326.9943127864226,"y":-1345.27573939868,"z":711.4147511738205}},{"id":"3882","data":{"label":"AT&T Communications","x":1023.496386551923,"y":-950.1687855341552,"z":804.889961556192}},{"id":"3883","data":{"label":"AT&T Communications Services","x":3229.185476003545,"y":675.7586454829761,"z":795.1993586031069}},{"id":"3884","data":{"label":"AT&T Global Communications Services","x":1151.1892478886502,"y":-935.7101820093085,"z":391.53187053312786}},{"id":"3885","data":{"label":"AT&T Global Network Services","x":1090.0582192246816,"y":-924.0072881776669,"z":209.32717353458474}},{"id":"3886","data":{"label":"AT&T Istel","x":999.7159076125486,"y":-1146.7823324203719,"z":442.44112117828683}},{"id":"3887","data":{"label":"AT&T Latin America","x":986.6303546807831,"y":-1179.453903665922,"z":621.2920974239231}},{"id":"3888","data":{"label":"AT&T Solutions","x":974.4357786526348,"y":-1008.9274428158847,"z":260.99987915899914}},{"id":"3889","data":{"label":"AT&T Wireless Services","x":698.6805377739838,"y":-1891.9294796953955,"z":427.8552161333198}},{"id":"3890","data":{"label":"Concert","x":1101.6466358780453,"y":-1227.3586289153109,"z":120.67224909605945}},{"id":"3891","data":{"label":"LIN Broadcasting","x":1184.0733051490097,"y":-1222.6074373305864,"z":559.6955675377773}},{"id":"3892","data":{"label":"GRC International","x":1247.4120003526677,"y":-1146.3418213781424,"z":831.8138055592331}},{"id":"3893","data":{"label":"BET Gospel","x":47.60403290052818,"y":-334.90666499738836,"z":30.87286482138896}},{"id":"3894","data":{"label":"BET International","x":124.72043202297709,"y":-532.723430433547,"z":170.58288713052949}},{"id":"3895","data":{"label":"Black Entertainment Television (BET)","x":98.39085932244916,"y":-1014.8438883612239,"z":353.9827423275279}},{"id":"3896","data":{"label":"Corus Entertainment","x":1113.7215315137737,"y":-1583.9433037675599,"z":201.99003932142335}},{"id":"3897","data":{"label":"Emmis Communications","x":1567.7326616107785,"y":-2631.62892631697,"z":552.3911585382224}},{"id":"3898","data":{"label":"BET Weekend","x":-212.7954809288358,"y":-439.3870159567732,"z":670.8095173351876}},{"id":"3899","data":{"label":"Emerge","x":1.1871734192709482,"y":-320.55757286764856,"z":72.20509121491703}},{"id":"3900","data":{"label":"Heart & Soul","x":-197.42612329007352,"y":-357.00676446786747,"z":602.9859947069758}},{"id":"3901","data":{"label":"Honey","x":79.24009133732852,"y":-389.0488353878882,"z":227.88890566138397}},{"id":"3902","data":{"label":"IMPACT","x":-55.36014004046592,"y":-325.1132430363914,"z":231.07106758935524}},{"id":"3903","data":{"label":"Gemstar-TV Guide International","x":801.9045412924479,"y":-1317.830167406457,"z":780.7068557848667}},{"id":"3904","data":{"label":"IDT","x":1510.9090969652134,"y":-1738.10131365995,"z":674.7920886924442}},{"id":"3905","data":{"label":"Liberty Cablevision of Puerto Rico","x":1254.323390955843,"y":-1425.7359438953044,"z":553.3147932828191}},{"id":"3906","data":{"label":"Teligent","x":889.6957853999447,"y":-1838.687509854064,"z":578.517878894748}},{"id":"3907","data":{"label":"USA Electronic Retailing","x":2349.946824486944,"y":-1670.2953131564855,"z":510.6834895043264}},{"id":"3908","data":{"label":"USA Entertainment","x":2301.2871311982008,"y":-2020.184908929898,"z":871.8306764892014}},{"id":"3909","data":{"label":"USA Information and Services","x":1642.442143688053,"y":-1692.2831115112822,"z":741.7924257067168}},{"id":"3910","data":{"label":"HSN International","x":2924.6672957242317,"y":-2035.0495853305251,"z":216.53596578204116}},{"id":"3911","data":{"label":"Home Order Television","x":3086.1275933900424,"y":-1979.7667283249125,"z":628.9855444584477}},{"id":"3912","data":{"label":"Home Shopping in Espanol","x":2951.997957509895,"y":-2213.415489239694,"z":607.4760024932002}},{"id":"3913","data":{"label":"Jupiter Shop Channel","x":3071.3678416203056,"y":-1923.3280156858377,"z":528.4539152896906}},{"id":"3914","data":{"label":"FirstAuction.com","x":2544.356856310358,"y":-1808.1036232526194,"z":792.6657004998143}},{"id":"3915","data":{"label":"FirstJewelry.com","x":2550.9720170866494,"y":-1773.5263664480294,"z":878.1251522742324}},{"id":"3916","data":{"label":"HSN.com","x":2648.354540410214,"y":-1566.9237125856848,"z":94.01681376315962}},{"id":"3917","data":{"label":"SciFi.com","x":2727.3203711607775,"y":-2220.9275087476685,"z":203.52528094364274}},{"id":"3918","data":{"label":"Mothership.com","x":2655.20020007496,"y":-2351.710379525658,"z":491.55584809667596}},{"id":"3919","data":{"label":"Centropolis.com","x":2865.5221021200086,"y":-2104.4122468543305,"z":681.6803101939686}},{"id":"3920","data":{"label":"Precision Response","x":1722.6254086262143,"y":-1749.1789827137131,"z":8.183815189563015}},{"id":"3921","data":{"label":"USA eSolutions and USA Fulfillment Services","x":1634.7934832610954,"y":-1855.9957658289663,"z":493.75126649989556}},{"id":" Los Angeles","data":{"label":"KHSC-TV","x":2635.0635856521512,"y":-3992.0642563243237,"z":307.8885314459416}},{"id":" Houston","data":{"label":"KHSH-TV","x":-270.6303208669178,"y":-4095.487630502671,"z":535.9731584360572}},{"id":" Dallas","data":{"label":"KSTR-TV","x":3442.302667845748,"y":-15.983760381596767,"z":686.0213766253343}},{"id":" Miami","data":{"label":"WAMI-TV","x":-378.1201923662602,"y":-4215.868064302514,"z":97.74103745994455}},{"id":" Tampa/St. Petersburg","data":{"label":"WBHS-TV","x":2730.358254915519,"y":1716.58589902707,"z":408.8585219292209}},{"id":" Orlando","data":{"label":"WBSF-TV","x":3872.6533407821453,"y":-2230.933087864234,"z":400.5609858512509}},{"id":" Chicago","data":{"label":"WEHS-TV","x":-1596.4141922269937,"y":-2966.8136021998002,"z":194.76011394376425}},{"id":" Atlanta","data":{"label":"WHOT-TV","x":-565.3647656398934,"y":-3633.102831077559,"z":241.46204185803643}},{"id":" New York City","data":{"label":"WHSE-TV","x":-1553.3955587693242,"y":-3816.8414934778702,"z":971.3394588944573}},{"id":" Boston","data":{"label":"WHSH-TV","x":-1911.9604624164174,"y":929.1936407988587,"z":780.5714619647525}},{"id":" Philadelphia","data":{"label":"WHSP-TV","x":4253.745248085452,"y":-1636.752255822999,"z":910.1513435699202}},{"id":" Cleveland","data":{"label":"WQHS-TV","x":4464.858247486082,"y":-808.560427442063,"z":15.112063356925942}},{"id":"3935","data":{"label":"Animal Planet Brasil","x":313.0167855137529,"y":-2872.094973360072,"z":926.974657194566}},{"id":"3936","data":{"label":"Discovery Australia/New Zealand","x":284.5034039443003,"y":-2901.9515230339634,"z":783.5455117862253}},{"id":"3937","data":{"label":"Discovery Brasil","x":98.82187256877478,"y":-2887.2611733231943,"z":210.15370640991705}},{"id":"3938","data":{"label":"Discovery Canada","x":249.82559155162107,"y":-2904.338140291924,"z":824.599168383902}},{"id":"3939","data":{"label":"Discovery Channel Middle East","x":19.481927199037273,"y":-2727.2907296056374,"z":795.0266810710323}},{"id":"3940","data":{"label":"Discovery Espana (Spain)","x":71.44368828496636,"y":-2894.140128104734,"z":309.2095068248484}},{"id":"3941","data":{"label":"Discovery Networks US","x":419.1859981823209,"y":-2977.6356951831576,"z":550.0739852420837}},{"id":"3942","data":{"label":"Discovery Networks International","x":190.22072440070133,"y":-2748.951993405288,"z":145.73620572521872}},{"id":"3943","data":{"label":"Discovery Home & Leisure UK","x":99.24491789517151,"y":-2606.62007743544,"z":212.91489858153145}},{"id":"3944","data":{"label":"Discovery Enterprises Worldwide","x":-586.3664530731239,"y":1113.6770648487545,"z":501.2381764214255}},{"id":"3945","data":{"label":"Discovery Channel Education","x":-595.9271995761906,"y":949.6173806797397,"z":428.64654744913986}},{"id":"3946","data":{"label":"Discovery Channel Interactive Media","x":-522.0628595706121,"y":962.2960943964936,"z":235.47086942794127}},{"id":"3947","data":{"label":"Discovery Channel Publishing","x":-706.6417574859943,"y":1218.1280728656575,"z":204.39665284249142}},{"id":"3948","data":{"label":"Discovery Channel Retail","x":-600.8711720746865,"y":1280.482903137713,"z":752.1190385420836}},{"id":"3949","data":{"label":"Discovery Channel Video","x":-736.7643506959203,"y":1077.3658430454552,"z":192.95677809792645}},{"id":"3950","data":{"label":"Discovery.com","x":-443.1194059620375,"y":1178.422298129588,"z":313.4882010926505}},{"id":"3951","data":{"label":"Starz Encore Group","x":752.9721200140716,"y":-2244.7670998266067,"z":210.3377976415919}},{"id":"3952","data":{"label":"Time Life Books","x":2172.8050898296633,"y":-978.1972170161653,"z":24.696038938102348}},{"id":"3953","data":{"label":"Time - Life International","x":2328.9935862911216,"y":-928.1402377561299,"z":614.323697428524}},{"id":"3954","data":{"label":"Time - Life Education","x":2347.0925350851403,"y":-1057.6127919402115,"z":832.5362569730619}},{"id":"3955","data":{"label":"Time - Life Music","x":2355.824291948218,"y":-989.0243052435476,"z":802.9099134417719}},{"id":"3956","data":{"label":"Time - Life AudioBooks","x":2356.2573422476917,"y":-940.9054923097488,"z":466.80335801489446}},{"id":"3957","data":{"label":"Book-of-the-Month Club","x":1605.807184943833,"y":-827.7772545757971,"z":288.63360278485305}},{"id":"3958","data":{"label":"Paperback Book Club","x":1753.338282790166,"y":-781.266701100174,"z":567.1468597486107}},{"id":"3959","data":{"label":"Children's Book-of-the-Month Club","x":1848.3106827886113,"y":-852.1165140066578,"z":656.4817954134818}},{"id":"3960","data":{"label":"History Book Club","x":1814.1050231985982,"y":-813.764050737238,"z":306.30009962996405}},{"id":"3961","data":{"label":"Money Book Club","x":1782.139512862951,"y":-781.6469779513418,"z":300.90196960557927}},{"id":"3962","data":{"label":"HomeStyle Books","x":1630.9960185652344,"y":-1089.6528194069915,"z":840.6631743345491}},{"id":"3963","data":{"label":"Crafter's Choice","x":1532.4113509194895,"y":-1008.9731507660799,"z":973.8295541591459}},{"id":"3964","data":{"label":"One Spirit","x":1558.1592125964025,"y":-881.1420837818232,"z":574.4706082218802}},{"id":"3965","data":{"label":"International","x":1680.2909839847016,"y":-1135.5384593650106,"z":999.0481834935252}},{"id":" Brown and","data":{"label":"Little","x":-2286.1082840051517,"y":-279.7399574313422,"z":36.652850778841504}},{"id":"3967","data":{"label":"Bulfinch Press","x":1842.3386061852434,"y":-875.6942341045196,"z":204.1881992015333}},{"id":"3968","data":{"label":"Back Bay Books","x":1856.599190684149,"y":-807.0725165949361,"z":990.8833208266992}},{"id":" Brown and Company (U.K.)","data":{"label":"Little","x":-1149.9141859749238,"y":1254.5860227006451,"z":903.1534413122597}},{"id":"3970","data":{"label":"Warner Books","x":1584.0456193510763,"y":-1067.1413424528669,"z":498.54927009339445}},{"id":"3971","data":{"label":"Warner Vision","x":1886.2463724432373,"y":-945.504299987756,"z":73.027913524625}},{"id":"3972","data":{"label":"The Mysterious Press","x":1671.5106663625002,"y":-797.5156139593964,"z":61.83569262311694}},{"id":"3973","data":{"label":"Warner Aspect","x":1697.9316428554039,"y":-785.8783687864789,"z":999.7181755171214}},{"id":"3974","data":{"label":"Warner Treasures","x":1881.1576061427277,"y":-1050.9814528803163,"z":938.0437136172412}},{"id":"3975","data":{"label":"Oxmoor House","x":240.21641609727703,"y":-3761.6932905503054,"z":142.0812809689258}},{"id":"3976","data":{"label":"Leisure Arts","x":1645.4264372898142,"y":-800.275878124381,"z":374.0992004610422}},{"id":"3977","data":{"label":"Sunset Books","x":1901.0215261113208,"y":-878.5761233839266,"z":589.8990540738769}},{"id":"3978","data":{"label":"TW Kids","x":1783.2464332105983,"y":-1130.2214126524123,"z":420.5355213184403}},{"id":"3979","data":{"label":"HBO Home Video","x":3001.612845802202,"y":-3448.261805173754,"z":732.6923940462133}},{"id":"3980","data":{"label":"HBO Pictures/HBO Showcase","x":757.6219906494812,"y":-1151.0890017768957,"z":102.1573292657536}},{"id":"3981","data":{"label":"HBO Independent Productions","x":2010.6592195410258,"y":-439.5099526873719,"z":39.71560840338783}},{"id":"3982","data":{"label":"HBO Downtown Productions","x":-1419.014312731416,"y":809.3619558632199,"z":170.96069258726266}},{"id":"3983","data":{"label":"HBO NYC Productions","x":2212.313526061491,"y":-700.9418015869105,"z":249.75646944724784}},{"id":"3984","data":{"label":"HBO Animation","x":2116.2599539772345,"y":-551.0507302157157,"z":981.0206811239333}},{"id":"3985","data":{"label":"HBO Sports","x":2199.9123742850234,"y":-971.5244557021356,"z":298.1848160299352}},{"id":"3986","data":{"label":"Cinemax","x":-1200.01926178752,"y":1457.7943466207325,"z":482.0508715166125}},{"id":"3987","data":{"label":"Time Warner Sports","x":2218.5041784613577,"y":-850.5238770909737,"z":736.9123155152273}},{"id":"3988","data":{"label":"HBO en Espa�ol","x":2248.0744089311193,"y":-778.9242559456843,"z":600.4828654563139}},{"id":"3989","data":{"label":"HBO Hungary","x":2037.058106904714,"y":-1281.6473785662583,"z":990.5941302585481}},{"id":"3990","data":{"label":"Cinemax Selecciones","x":1883.0826103376585,"y":-1426.2483058223957,"z":824.2555517589827}},{"id":"3991","data":{"label":"HBO Direct (DBS)","x":1414.4761316733056,"y":-1632.7452503620634,"z":231.5297228349602}},{"id":"3992","data":{"label":"Home Box Office (HBO)","x":2923.680972367918,"y":-3582.045732343453,"z":134.5852362932829}},{"id":"3993","data":{"label":"Comedy Central","x":925.7978235896503,"y":-1077.4572290911378,"z":114.65037074244665}},{"id":"3994","data":{"label":"CNN","x":1888.6374332457217,"y":-599.4744826098404,"z":814.3324774384823}},{"id":"3996","data":{"label":"CNN/SI","x":1992.9531131181739,"y":-796.7889981337439,"z":140.49684202168078}},{"id":"3997","data":{"label":"CNN International","x":1944.665862223761,"y":-731.0939558027749,"z":711.7878523282375}},{"id":"3998","data":{"label":"CNN en Espanol","x":2003.3448839994544,"y":-1008.0461961332694,"z":407.36245994149823}},{"id":"3999","data":{"label":"CNN Headline News","x":1554.5628534421849,"y":-995.3413021866527,"z":648.1242755331396}},{"id":"4000","data":{"label":"CNN Airport Network","x":2011.0212759259848,"y":-888.913583839776,"z":305.17858430510313}},{"id":"4001","data":{"label":"CNN fn","x":2021.7874156855269,"y":-843.3535115971554,"z":964.2864601052581}},{"id":"4002","data":{"label":"CNN Radio","x":1946.1878706932139,"y":-1120.5106562079081,"z":377.61638700702906}},{"id":"4003","data":{"label":"CNN Interactive","x":1855.716675645982,"y":-1225.3902518514387,"z":569.6966683751912}},{"id":"4004","data":{"label":"Time Warner Cable","x":1462.9869366080611,"y":-1465.6757258347989,"z":682.5911252578976}},{"id":"4005","data":{"label":"Time Warner Communications","x":1846.0726540122723,"y":-1094.56945526983,"z":434.46639939930895}},{"id":"4006","data":{"label":"New York City Cable Group","x":1872.0104900497463,"y":-911.796738905231,"z":306.2809183892898}},{"id":"4007","data":{"label":"New York 1 News","x":1624.9913786904663,"y":-1129.625356781275,"z":817.1610759458963}},{"id":"4008","data":{"label":"Time Warner Home Theater","x":1552.0023921398733,"y":-1060.26311498838,"z":202.07115117905673}},{"id":"4009","data":{"label":"Time Warner Security","x":1541.1810039609763,"y":-950.2111393639229,"z":507.5536237070621}},{"id":"4010","data":{"label":"Kablevision","x":1726.0304556075607,"y":-782.4987213045451,"z":272.9207237928184}},{"id":"4011","data":{"label":"Warner Bros.","x":1728.6115290382468,"y":-835.2237520636036,"z":427.4631335273571}},{"id":"4012","data":{"label":"Warner Bros. Studios","x":1786.3361009896362,"y":-835.010292031955,"z":595.2621329690089}},{"id":"4013","data":{"label":"Warner Bros. Television","x":1528.8882277255998,"y":-976.6592272925773,"z":662.5019743021323}},{"id":"4014","data":{"label":"Warner Bros. Television Animation","x":1657.059458851194,"y":-1162.047379070872,"z":194.72086436054093}},{"id":"4015","data":{"label":"Hanna - Barbera Cartoons","x":1768.6343996000041,"y":-821.663365872475,"z":310.92737235328525}},{"id":"4016","data":{"label":"Telepictures Production","x":1587.8810474578568,"y":-850.0025609225231,"z":300.05183190559825}},{"id":"4017","data":{"label":"Witt - Thomas Productions","x":1604.2023596586841,"y":-1152.2522188860307,"z":262.72955538822606}},{"id":"4018","data":{"label":"Castle Rock Entertainment","x":1650.7784996526907,"y":-1335.4462912436788,"z":904.3537266874389}},{"id":"4019","data":{"label":"Warner Home Video","x":1538.6794194610766,"y":-1033.6442592174267,"z":571.4559809041857}},{"id":"4020","data":{"label":"Warner Bros. Domestic Pay - TV","x":1809.8128700580437,"y":-849.4578176769164,"z":664.671286908904}},{"id":"4021","data":{"label":"Warner Bros. Domestic Television Distribution","x":1689.6721690771583,"y":-1167.149011889151,"z":906.9809157384161}},{"id":"4022","data":{"label":"Warner Bros. International Television Distribution","x":1888.985410303886,"y":-994.4558007313458,"z":779.5590796853149}},{"id":"4023","data":{"label":"Warner Bros. International Theaters","x":1576.0465912590716,"y":-1130.2347883151265,"z":307.2689031686373}},{"id":"4024","data":{"label":"Time","x":2356.7999925566082,"y":-899.2530182452529,"z":67.00761249372822}},{"id":"4025","data":{"label":"Time Asia","x":2485.021812939558,"y":-955.297617210204,"z":549.1118222071063}},{"id":"4026","data":{"label":"Time Atlantic","x":2471.8448802009425,"y":-843.8419780282411,"z":821.9820632818578}},{"id":"4027","data":{"label":"Time Canada","x":2503.7446504071013,"y":-913.280204752733,"z":135.54793423934464}},{"id":"4028","data":{"label":"Time Latin America","x":2406.883892388314,"y":-1025.8590078745447,"z":593.7148812879853}},{"id":"4029","data":{"label":"Time South Pacific","x":2499.942431198595,"y":-881.1503642169519,"z":434.3036237990603}},{"id":"4030","data":{"label":"Time Money","x":2416.5805463689285,"y":-771.900984645923,"z":867.0017892156867}},{"id":"4031","data":{"label":"Time For Kids","x":2495.736089806316,"y":-984.7786392118924,"z":421.67935947899383}},{"id":"4032","data":{"label":"Fortune","x":2259.455452352012,"y":-1022.4200203793639,"z":381.3823273574661}},{"id":"4033","data":{"label":"Life","x":2515.709563649507,"y":-958.0092298631307,"z":323.71405910727157}},{"id":"4034","data":{"label":"Sports Illustrated","x":2765.884641690889,"y":-1037.075855492828,"z":359.44598143412355}},{"id":"4035","data":{"label":"Sports Illustrated Women/Sport","x":2926.08707071312,"y":-1134.6525021856182,"z":670.1399857775409}},{"id":"4036","data":{"label":"Sports Illustrated International","x":2947.8858926592884,"y":-1105.2155691504177,"z":102.95592891958182}},{"id":"4037","data":{"label":"SI for Kids","x":2968.5803620841316,"y":-1040.651687797645,"z":792.5676681060489}},{"id":"4038","data":{"label":"Inside Stuff","x":2532.717001954663,"y":-897.8340454263971,"z":554.0291505937345}},{"id":"4039","data":{"label":"Money","x":2680.670122350124,"y":-915.4932383593318,"z":261.7917080452228}},{"id":"4040","data":{"label":"Your","x":2732.958903413535,"y":-1079.898804917248,"z":879.0405019403349}},{"id":"4041","data":{"label":"Your Future","x":2831.722783973163,"y":-846.3800750302944,"z":812.708430927142}},{"id":"4042","data":{"label":"People","x":2047.377360098827,"y":-1063.2402403145834,"z":78.55309783453102}},{"id":"4043","data":{"label":"Who Weekly","x":2196.8850801385233,"y":-1124.0498844560634,"z":931.9974382063303}},{"id":"4044","data":{"label":"People en Espa�ol","x":2212.912799302565,"y":-1078.2236219499218,"z":85.82603160835389}},{"id":"4045","data":{"label":"Teen People","x":2131.982703386783,"y":-1213.6014697683977,"z":964.1370837309618}},{"id":"4046","data":{"label":"Entertainment Weekly","x":2018.7975802023047,"y":-947.6843712708451,"z":34.494629125814804}},{"id":"4047","data":{"label":"EW Metro","x":2201.58725396554,"y":-902.1241939392885,"z":911.312471752658}},{"id":"4048","data":{"label":"The Ticket","x":1665.278140715799,"y":-828.9379622733686,"z":242.24232119106182}},{"id":"4049","data":{"label":"In Style","x":1878.1780475427422,"y":-887.215815056783,"z":867.6365657399015}},{"id":"4050","data":{"label":"Southern Living","x":1914.5253924022072,"y":-982.1287227210264,"z":172.14724983090002}},{"id":"4051","data":{"label":"Progressive Farmer","x":1567.3804420813958,"y":-919.1575859864765,"z":127.19068793251952}},{"id":"4052","data":{"label":"Southern Accents","x":1559.0926739277147,"y":-1100.0870821984922,"z":997.9116860365849}},{"id":"4053","data":{"label":"Cooking Light","x":1909.7550754816712,"y":-939.0897773023171,"z":321.5968076491904}},{"id":"4054","data":{"label":"The Parent Group","x":2055.112327129249,"y":-613.8545013452031,"z":584.321048440515}},{"id":"4055","data":{"label":"Parenting","x":2227.691117031238,"y":-547.2053877052595,"z":69.56921054564447}},{"id":"4056","data":{"label":"Baby Talk","x":2202.9630911870936,"y":-491.6420088596815,"z":815.6824505595874}},{"id":"4057","data":{"label":"Baby on the Way","x":2143.9924333160343,"y":-417.1475608693172,"z":905.1684321141802}},{"id":"4058","data":{"label":"This Old House","x":1638.7734739267335,"y":-842.1793625312121,"z":124.23326477498064}},{"id":"4059","data":{"label":"Sunset","x":1575.2854180941094,"y":-964.6004351404758,"z":736.5131699343881}},{"id":"4060","data":{"label":"Sunset Garden Guide","x":1852.9509489939737,"y":-830.3784046483679,"z":125.19019995993341}},{"id":"4061","data":{"label":"The Health Publishing Group","x":2288.414197478288,"y":-815.0522799507698,"z":621.8625324299562}},{"id":"4062","data":{"label":"Health","x":2473.3158677401434,"y":-835.4844793722477,"z":163.94932138586827}},{"id":"4063","data":{"label":"Hippocrates","x":2468.8063285838853,"y":-741.6304376650587,"z":330.41833451153127}},{"id":"4064","data":{"label":"Coastal Living","x":2442.3167189642563,"y":-685.5362844586325,"z":509.22417603285686}},{"id":"4065","data":{"label":"Weight Watchers","x":2493.1957370276978,"y":-755.878036469855,"z":687.2125236105513}},{"id":"4066","data":{"label":"Real Simple","x":1587.5785738274508,"y":-1104.710850423794,"z":628.7545623630626}},{"id":"4067","data":{"label":"Asiaweek","x":1833.502030272949,"y":-1126.4108371419507,"z":757.1570644180085}},{"id":"4068","data":{"label":"President","x":1778.2821433291774,"y":-1184.4478924069203,"z":557.3848409475344}},{"id":"4069","data":{"label":"Dancyu","x":1720.406013458738,"y":-1178.4688534751758,"z":576.6391591086403}},{"id":"4070","data":{"label":"Wallpaper","x":1901.3104271760822,"y":-1085.1621450453608,"z":899.4172790232903}},{"id":"4071","data":{"label":"eCompany Now","x":1591.0957145635994,"y":-939.9773613171847,"z":987.9974765717033}},{"id":"4072","data":{"label":"American Express Publishing","x":1664.2738942769238,"y":-4422.526573020305,"z":362.30889261987187}},{"id":"4073","data":{"label":"Travel & Leisure","x":1049.346178858746,"y":-3907.5895722081314,"z":644.1984198886641}},{"id":"7747","data":{"label":"TALX","x":3758.873473577969,"y":-2109.6012256094286,"z":760.9325921629362}},{"id":"4076","data":{"label":"Departures","x":-2045.5133182958195,"y":466.82527372006007,"z":227.17384810387298}},{"id":"4077","data":{"label":"SkyGuide","x":2823.5531259431336,"y":844.1374766241679,"z":79.5270114903659}},{"id":"4078","data":{"label":"DC Comics","x":1582.875675043486,"y":-1027.514567590637,"z":914.1514024053507}},{"id":"4079","data":{"label":"Vertigo","x":1933.0363204552268,"y":-927.4312091177508,"z":737.8371072639549}},{"id":"4080","data":{"label":"Paradox","x":1693.5570341879366,"y":-835.0612971874398,"z":94.84151686880283}},{"id":"4081","data":{"label":"Milestone","x":1884.6997979428725,"y":-830.7280070291845,"z":107.09199300503647}},{"id":"4082","data":{"label":"Mad Magazine","x":1796.7664275703328,"y":-1159.8731355340278,"z":547.5952099129373}},{"id":"4083","data":{"label":"Warner Music Group","x":2450.265608471971,"y":-2514.918664341344,"z":479.54582307757374}},{"id":"4084","data":{"label":"The Atlantic Group","x":2284.6730163014845,"y":-2490.838631727593,"z":54.54361210714143}},{"id":"4085","data":{"label":"Atlantic Classics","x":2542.227122282743,"y":-2394.977302824278,"z":95.18187465618699}},{"id":"4086","data":{"label":"Atlantic Jazz","x":2617.8379396017663,"y":-2412.1610495640007,"z":461.0609130072578}},{"id":"4087","data":{"label":"Atlantic Nashville","x":2335.5491369701867,"y":-2602.987637660886,"z":740.6559803423729}},{"id":"4088","data":{"label":"Atlantic Theater","x":2570.1859765146983,"y":-2407.215730191607,"z":876.532813518952}},{"id":"4089","data":{"label":"Big Beat","x":2323.578912128769,"y":-2441.5298819281725,"z":49.293675171564686}},{"id":"4090","data":{"label":"Blackground","x":2629.2650373826928,"y":-2505.053547714022,"z":408.29736203282255}},{"id":"4091","data":{"label":"Breaking","x":2283.6901195871815,"y":-2581.188548540348,"z":586.1189300548967}},{"id":"4092","data":{"label":"Curb","x":2596.2180176016827,"y":-2424.76927832024,"z":103.00813839976009}},{"id":"4093","data":{"label":"Igloo","x":2305.9665377824595,"y":-2600.3425499868754,"z":422.90483419200876}},{"id":"4094","data":{"label":"Lava","x":2557.0192442274874,"y":-2863.3160912061708,"z":418.3155433479522}},{"id":"4095","data":{"label":"Mesa/Bluemoon","x":2285.0783218324295,"y":-2642.259461611028,"z":693.8689606988726}},{"id":"4096","data":{"label":"Modern","x":2261.1970615137807,"y":-2595.5300078366645,"z":583.4612026410804}},{"id":"4097","data":{"label":"1 43","x":2377.704981027601,"y":-2655.292836234508,"z":456.75233754713696}},{"id":"4098","data":{"label":"Rhino Records","x":2311.6270587013505,"y":-2628.557274448351,"z":577.3817833964195}},{"id":"4099","data":{"label":"Elektra Entertainment Group","x":2499.9028391344855,"y":-2659.0550083129933,"z":92.7559065682435}},{"id":"4100","data":{"label":"Elektra","x":4148.4683803778125,"y":-1856.596109579229,"z":597.918047280423}},{"id":"4101","data":{"label":"EastWest","x":2267.952181831488,"y":-2622.1347881438546,"z":616.4641471099126}},{"id":"4102","data":{"label":"Asylum","x":2378.306119780198,"y":-2688.186607513911,"z":119.1349154070338}},{"id":"4103","data":{"label":"Elektra/Sire","x":2843.66984564575,"y":1285.289964978906,"z":391.5597086638061}},{"id":"4104","data":{"label":"Warner Brothers Records","x":2603.3010984817447,"y":-2579.4621179204078,"z":444.1746529040729}},{"id":"4105","data":{"label":"Warner Brothers","x":2527.9759192271595,"y":-2665.92668914763,"z":57.07944700571366}},{"id":"4106","data":{"label":"Warner Nashville","x":2567.601754180132,"y":-2626.7329635649976,"z":639.4455268075492}},{"id":"4107","data":{"label":"Warner Alliance","x":2612.783061769549,"y":-2605.402807913579,"z":556.0909674784216}},{"id":"4108","data":{"label":"Warner Resound","x":2637.4191730115326,"y":-2601.1184824818843,"z":740.922398989426}},{"id":"4109","data":{"label":"Warner Sunset","x":2298.108134818691,"y":-2668.2380385771694,"z":912.8751579061927}},{"id":"4110","data":{"label":"Reprise","x":2353.1657210004087,"y":-2691.3689967497507,"z":267.35950281498685}},{"id":"4111","data":{"label":"Reprise Nashville","x":2573.8345356493846,"y":-2656.1970240586083,"z":539.9835295966764}},{"id":"4112","data":{"label":"American Recordings","x":2551.3796717397036,"y":-2681.1389546478854,"z":27.022455192131424}},{"id":"4113","data":{"label":"Giant","x":2418.680220331611,"y":-2709.03386394904,"z":158.46200486360095}},{"id":"4114","data":{"label":"Maverick","x":2599.9992150323596,"y":-2646.712232304488,"z":449.94060571002103}},{"id":"4115","data":{"label":"Revolution","x":2644.1198830250223,"y":-2571.909249326173,"z":344.54643891449297}},{"id":"4116","data":{"label":"Qwest","x":2536.210652464165,"y":-1728.3057913175671,"z":913.5722828881869}},{"id":"4117","data":{"label":"Warner Music International","x":2492.3628140307255,"y":-2375.8695686716806,"z":14.069401865925757}},{"id":"4118","data":{"label":"WEA Telegram","x":2622.1512536177115,"y":-2462.4175498492077,"z":950.7651446056111}},{"id":"4119","data":{"label":"East West ZTT","x":2259.3926449578657,"y":-2560.5606572935326,"z":659.6758775988976}},{"id":"4120","data":{"label":"Coalition","x":2635.61595874629,"y":-2441.7298335175515,"z":845.58755345208}},{"id":"4121","data":{"label":"CGD East West","x":2594.1264828112417,"y":-2503.266860955413,"z":78.72550410601065}},{"id":"4122","data":{"label":"China","x":2306.814308426232,"y":-2501.445580666122,"z":635.72817243452}},{"id":"4123","data":{"label":"Continential","x":2652.8217277776002,"y":-2540.8137411431703,"z":369.16195233323367}},{"id":"4124","data":{"label":"DRO East West","x":2625.509236025032,"y":-2534.623711173044,"z":272.56914692606273}},{"id":"4125","data":{"label":"Erato","x":2604.8520448692325,"y":-2552.165335946404,"z":742.835121891505}},{"id":"4126","data":{"label":"Fazer","x":2655.798613251971,"y":-2503.085583775556,"z":46.977754645240786}},{"id":"4127","data":{"label":"Finlandia","x":2296.8099083455327,"y":-2554.3197371880287,"z":961.9335254789492}},{"id":"4128","data":{"label":"Magneoton","x":2273.215411000764,"y":-2529.5176817766633,"z":118.28254349577838}},{"id":"4129","data":{"label":"MCM","x":2481.795751521693,"y":-2833.0607427300242,"z":703.8621139777204}},{"id":"4130","data":{"label":"Nonesuch","x":2349.246919789407,"y":-2647.993978055076,"z":521.689675738658}},{"id":"4131","data":{"label":"Teldec","x":2325.9788958534464,"y":-2657.1911446450677,"z":592.4430666918519}},{"id":"4132","data":{"label":"Warner/Chappell Music","x":2650.875416730445,"y":-2469.4860036667205,"z":589.0989922483325}},{"id":"4133","data":{"label":"WEA","x":2437.629288022453,"y":-2691.8081021540575,"z":108.15550146342102}},{"id":"4134","data":{"label":"Ivy Hill","x":2326.8246445877157,"y":-2684.8473849908314,"z":303.78207598512574}},{"id":"4135","data":{"label":"Warner Special Products","x":2470.4692945963043,"y":-2710.620287977684,"z":304.455889163852}},{"id":"4136","data":{"label":"Heartland Music","x":1683.3958491629246,"y":-1197.357781329225,"z":298.25977069909817}},{"id":"4137","data":{"label":"Channel V","x":-2135.2248658341,"y":-2022.9587845425267,"z":761.8970585203748}},{"id":"4138","data":{"label":"Warner Bros. Consumer Products","x":1920.8575498722794,"y":-898.9778884271382,"z":911.1439464933418}},{"id":"4139","data":{"label":"Warner Bros. Studio Stores","x":1872.295194588738,"y":-1127.5822374504314,"z":661.7916240942159}},{"id":"4140","data":{"label":"Warner Brothers Recreation Enterprises","x":1717.419012993454,"y":-1204.0404728275307,"z":353.4326675892867}},{"id":"4141","data":{"label":"Turner Entertainment","x":1672.904285074128,"y":-1829.9598035228119,"z":488.53249010008204}},{"id":"4142","data":{"label":"TBS Superstation","x":1819.0550352470036,"y":-1753.0819993411305,"z":487.87013979740965}},{"id":"4143","data":{"label":"Turner Network Television (TNT)","x":1763.2592177613978,"y":-1939.5109932957794,"z":360.9658915615621}},{"id":"4144","data":{"label":"Turner South","x":1554.587032126382,"y":-1918.820333758098,"z":468.021552713473}},{"id":"4145","data":{"label":"Cartoon Network","x":1523.0440333263823,"y":-1809.0146755383976,"z":906.2279221954575}},{"id":"4146","data":{"label":"Turner Classic Movies","x":1829.3796407211394,"y":-1878.841714678102,"z":544.6103938248907}},{"id":"4147","data":{"label":"Cartoon Network in Europe","x":1622.4747909419339,"y":-1983.2094484920776,"z":581.1142885773548}},{"id":"4148","data":{"label":"Cartoon Network in Latin America","x":1528.0174520867176,"y":-1895.0162652741956,"z":71.5305869956222}},{"id":"4149","data":{"label":"TNT & Cartoon Network in Asia/Pacific","x":1503.833971240767,"y":-1814.7513833955782,"z":656.1393893583792}},{"id":"4150","data":{"label":"New Line Cinema","x":1480.1217427900829,"y":-1907.3244294455035,"z":572.3704965058582}},{"id":"4151","data":{"label":"Fine Line Features","x":1747.1443859849242,"y":-1960.8752658434378,"z":520.6548269997157}},{"id":"4152","data":{"label":"Turner Original Productions","x":1756.1400462668435,"y":-1686.1211756306411,"z":619.9159070342392}},{"id":"4153","data":{"label":"Atlanta Braves","x":1586.422213519464,"y":-1972.0078994124688,"z":404.2261226572654}},{"id":"4154","data":{"label":"Atlanta Hawks","x":1556.0163534720978,"y":-1952.7093720514822,"z":673.2294957931495}},{"id":"4155","data":{"label":"Atlanta Thrashers","x":1739.799493377178,"y":-1983.0178278713502,"z":584.3778097663894}},{"id":"4156","data":{"label":"Turner Sports","x":1798.8938851262656,"y":-1962.6445100147394,"z":847.3169660006978}},{"id":"4157","data":{"label":"World Championship Wrestling","x":1768.4972002334225,"y":-1980.9519953168297,"z":542.2754025251099}},{"id":"4158","data":{"label":"Good Will Games","x":1835.2302978586658,"y":-1924.087530328351,"z":899.5910531102431}},{"id":"4159","data":{"label":"Philips Arena","x":1718.692956572544,"y":-2007.7716661757408,"z":835.3563217693383}},{"id":"4160","data":{"label":"Turner Learning","x":1628.2935290316354,"y":-2009.249308800635,"z":432.084603728877}},{"id":"4161","data":{"label":"CNN Newsroom","x":1793.6818054365276,"y":-1989.8141540976212,"z":482.8860465691487}},{"id":"4162","data":{"label":"Turner Adventure Learning","x":1576.4975552462793,"y":-1994.5458749966087,"z":715.2010957144262}},{"id":"4163","data":{"label":"Turner Home Satellite","x":1791.3389924291832,"y":-2013.8465393456204,"z":233.8174541111133}},{"id":"4164","data":{"label":"Turner Network Sales","x":1759.1751046463314,"y":-2018.3929651610447,"z":158.46295858022708}},{"id":"4165","data":{"label":"","x":3918.114636148777,"y":424.66657953319555,"z":656.1330206208024}},{"id":"4166","data":{"label":"barnesandnoble.com","x":-1985.184871991479,"y":138.38769523633255,"z":404.91877904028973}},{"id":"4167","data":{"label":"Family Circle","x":-1403.446528650885,"y":683.353410321426,"z":693.9461761912781}},{"id":"4168","data":{"label":"McCall's","x":-1037.466434281916,"y":1510.153992032342,"z":727.943590064319}},{"id":"4169","data":{"label":"Parents","x":-1646.8499307406034,"y":-1735.6157914523792,"z":950.4932131084594}},{"id":"4170","data":{"label":"YM Magazines","x":1948.0352620984631,"y":2090.195395458849,"z":520.2730652995202}},{"id":"4171","data":{"label":"Inc.","x":897.213712350288,"y":597.6096373131331,"z":142.691054796656}},{"id":"4172","data":{"label":"Vivendi Universal","x":1830.2728874799577,"y":297.502121956064,"z":247.24622023527454}},{"id":"4173","data":{"label":"Clear Channel Communications","x":-604.1882147316437,"y":-2119.6062940733655,"z":895.0144047035276}},{"id":"4174","data":{"label":"Cox Communications","x":904.1404501044244,"y":-947.0541601886443,"z":391.7681864089151}},{"id":"4175","data":{"label":"ESPN2","x":3082.251080729149,"y":-3461.4775236719584,"z":996.1928717448017}},{"id":"4176","data":{"label":"ESPN News","x":3940.5018608649552,"y":718.9051823716072,"z":429.9205491617921}},{"id":"4177","data":{"label":"ESPN Now","x":-386.0459150650536,"y":-576.8341309347752,"z":714.2615503701943}},{"id":"4178","data":{"label":"ESPN Extreme","x":-409.07710663198577,"y":-459.2873822528363,"z":790.0393095750768}},{"id":"4179","data":{"label":"Tele-Munchen","x":-843.8604227154501,"y":-3399.8376757253673,"z":660.9645884838906}},{"id":"4180","data":{"label":"Hamster Productions","x":826.2972850346114,"y":1949.1509239013321,"z":7.018731323504168}},{"id":"4181","data":{"label":"TV Sport of France","x":1901.9686011735766,"y":2310.1739483089023,"z":6.729204801262156}},{"id":"4182","data":{"label":"Tesauro of Spain","x":-1719.7765049934526,"y":-2921.9112959821123,"z":320.95054646773514}},{"id":"4183","data":{"label":"Scandinavian Broadcasting System","x":3783.132420784448,"y":-2724.584357508118,"z":694.304809987542}},{"id":"4184","data":{"label":"Eurosport of London","x":-318.8848553922139,"y":-3804.320366261427,"z":358.5804367316565}},{"id":"4185","data":{"label":"Japan Sports Channel","x":4382.511754421976,"y":22.119662321782016,"z":849.708700525184}},{"id":"4186","data":{"label":"Toysmart","x":3859.161947877791,"y":174.83952270859936,"z":338.09910190853753}},{"id":"4187","data":{"label":"OptiMark Trading System","x":3682.6979855777154,"y":239.56619675052207,"z":861.0824734870091}},{"id":"4188","data":{"label":"Q101-FM (Chicago)","x":3384.1009438482906,"y":1200.2098697749843,"z":272.3375332241447}},{"id":"4189","data":{"label":"WENS-FM (Indianapolis)","x":52.68947207601741,"y":2237.66015035113,"z":815.8592325715213}},{"id":"4190","data":{"label":"WIBC-FM (Indianapolis)","x":2620.775106303331,"y":1753.3956271387633,"z":813.8068044756963}},{"id":"4191","data":{"label":"WNOU-FM (Indianapolis)","x":-578.6102740099441,"y":2019.1647201926344,"z":251.50921983625742}},{"id":"4192","data":{"label":"WTLC-AM/FM (Indianapolis)","x":1406.4451649165958,"y":-2670.370928815252,"z":910.5464784344615}},{"id":"4193","data":{"label":"Network Indiana (Indianapolis)","x":1561.0872665902152,"y":-2797.930824496398,"z":479.04763550095674}},{"id":"4194","data":{"label":"AgriAmerica (Indianapolis)","x":1497.2335347448934,"y":-2796.8084099007615,"z":42.089295335896004}},{"id":"4195","data":{"label":"KPWR-FM (Los Angeles)","x":3248.4001261006915,"y":-3689.6923539917234,"z":245.61611493852965}},{"id":"4196","data":{"label":"KZLA-FM (Los Angeles)","x":1415.4091368732306,"y":-2708.785455519762,"z":422.5634746470277}},{"id":"4197","data":{"label":"WRKS-FM (New York)","x":2338.7290259168367,"y":2155.9053411244786,"z":588.4983262118826}},{"id":"4198","data":{"label":"WQHT-FM (New York)","x":-293.62582222344645,"y":2027.4516693777077,"z":22.832989377673307}},{"id":"4199","data":{"label":"WQCD-FM (New York)","x":1741.921323733135,"y":-2724.827221514241,"z":785.0991913650878}},{"id":"4200","data":{"label":"KKLT-FM (Phoenix)","x":116.68806626988953,"y":-3966.3263565617754,"z":288.4578131999751}},{"id":"4201","data":{"label":"KMVP-AM (Phoenix)","x":3361.6415626853504,"y":-3230.882550822318,"z":960.1551838730402}},{"id":"4202","data":{"label":"KTAR-AM (Phoenix)","x":494.1080772766559,"y":-3936.104748635478,"z":509.603767833821}},{"id":"4203","data":{"label":"KKFR-FM (Phoenix)","x":1810.920159128138,"y":-3644.7850863623876,"z":582.5488430419814}},{"id":"4204","data":{"label":"KSHE-FM (St. Louis)","x":2463.855792315381,"y":-4072.868167076656,"z":923.9448289502103}},{"id":"4205","data":{"label":"KIHT-FM (St. Louis)","x":1487.9542595810099,"y":-2469.643571419515,"z":674.9439041294454}},{"id":"4206","data":{"label":"KFTK-FM (St. Louis)","x":1443.0020639640761,"y":-2484.440247468148,"z":914.4535857908168}},{"id":"4207","data":{"label":"KPNT-FM (St. Louis)","x":1389.7050031251938,"y":-2538.229965123366,"z":157.11718001746132}},{"id":"4208","data":{"label":"WMLL-FM (St. Louis)","x":1603.1189708705297,"y":-2465.2068090892744,"z":512.4945943603909}},{"id":" IN)","data":{"label":"WTHI-FM (Terre Haute","x":-2788.872419652291,"y":-688.6559932911096,"z":174.09474011788672}},{"id":"4211","data":{"label":"Radio 10 (Argentina)","x":1517.872922297318,"y":-2467.1900754567173,"z":621.5267408398844}},{"id":"4212","data":{"label":"Mega 98.3 (Argentina)","x":1649.0171789090773,"y":-2481.7999730804654,"z":460.99242826830533}},{"id":"4213","data":{"label":"Slager Radio (Hungary)","x":1549.3358239048503,"y":-2448.5541030018603,"z":314.0515952730001}},{"id":"4214","data":{"label":"WALA-TV (Alabama)","x":1408.6790107345578,"y":-2549.769827505575,"z":394.64739122508763}},{"id":"4215","data":{"label":"KGUN-TV (Arizona)","x":1386.4286042868862,"y":-2579.7472636744124,"z":394.22739271881426}},{"id":"4216","data":{"label":"WFTX-TV (Florida)","x":1706.4179817801842,"y":-2868.5713569437066,"z":504.2964314526688}},{"id":"4217","data":{"label":"WKCF-TV (Florida)","x":1411.4325087752432,"y":-2507.9582066432604,"z":162.9638430932334}},{"id":"4218","data":{"label":"KHON-TV (Hawaii)","x":1445.326376747822,"y":-2505.521805764933,"z":36.684469221872405}},{"id":"4219","data":{"label":"KGMB-TV (Hawaii)","x":1686.6880852341965,"y":-2508.9007502246604,"z":954.2689121321863}},{"id":"4220","data":{"label":"WTHI-TV (Indiana)","x":1752.4048804898312,"y":-2855.2298711741832,"z":375.0382201618512}},{"id":"4221","data":{"label":"KSNT-TV (Kansas)","x":1412.9874357759263,"y":-2622.924735143645,"z":60.048533180488974}},{"id":"4222","data":{"label":"KSNW-TV (Kansas)","x":1668.8830471627089,"y":-2750.2068789405807,"z":591.1660157349155}},{"id":"4223","data":{"label":"WVUE-TV (Louisiana)","x":1394.3652716291626,"y":-2611.0720087558857,"z":589.5955631967878}},{"id":"4224","data":{"label":"KMTV-TV (Nebraska)","x":1734.6849815649884,"y":-2561.4009795538245,"z":509.07796803940687}},{"id":"4225","data":{"label":"KRQE-TV (New Mexico)","x":1702.9513748516092,"y":-2713.564849363451,"z":649.6530412458696}},{"id":"4226","data":{"label":"KOIN-TV (Oregon)","x":1727.3202532216592,"y":-2588.0435132256302,"z":221.68661507953735}},{"id":"4227","data":{"label":"WSAZ-TV (West Virginia)","x":1729.8097657584394,"y":-2630.173965795709,"z":365.87962654786253}},{"id":"4228","data":{"label":"WLUK-TV (Wisconsin)","x":1437.3364844361913,"y":-2727.2983388771545,"z":218.56657536765823}},{"id":"4229","data":{"label":"Atlanta","x":1529.3095979162345,"y":-2802.309847325412,"z":611.268515766951}},{"id":"4230","data":{"label":"Country Sampler","x":1615.0392895234054,"y":-2791.9952023548653,"z":616.0309567268083}},{"id":"4231","data":{"label":"Indianapolis Monthly","x":1463.016566001228,"y":-2776.4193833230247,"z":106.9016580400688}},{"id":"4232","data":{"label":"Los Angeles Magazine","x":1716.411895230185,"y":-2730.6428067042425,"z":129.98862922438815}},{"id":"4233","data":{"label":"Cincinnati Texas Monthly","x":1671.106489974769,"y":-2791.1437880268286,"z":551.7065185844747}},{"id":"4234","data":{"label":"Big Hit Marketing","x":1690.543447940262,"y":-2767.266537295113,"z":834.9233240725396}},{"id":"4235","data":{"label":"jobcityusa.com","x":1634.4904110918824,"y":-2816.4009552603256,"z":783.8539556462421}},{"id":"4236","data":{"label":"United Media","x":3229.6681325337613,"y":-2474.7837942628107,"z":579.0994806029379}},{"id":"4237","data":{"label":"Scripps Productions and Cinetel Studios","x":3343.6884015857513,"y":-2779.6580214750684,"z":309.23295940135966}},{"id":"4238","data":{"label":"SunShine Pages","x":3269.9274021850024,"y":-2459.4286886691953,"z":468.3770746666762}},{"id":"4239","data":{"label":"Scripps Ventures","x":3434.0609303567926,"y":-2488.6644379925815,"z":11.999873379149317}},{"id":"4240","data":{"label":"Chum","x":1163.5869687864952,"y":355.9872143953826,"z":828.6782059905709}},{"id":"4241","data":{"label":"TV Azteca","x":-101.0853811365655,"y":663.5041807478283,"z":226.67955476559064}},{"id":"4242","data":{"label":"24/7 Media","x":-663.5442912652679,"y":1383.8694267971132,"z":671.8023148580487}},{"id":"4243","data":{"label":"Hoovers","x":1590.8101046094735,"y":-2617.3024822025313,"z":82.55893218718691}},{"id":"4244","data":{"label":"Ralph Lauren Media","x":4106.927502663186,"y":-2587.9157054495768,"z":178.6683292098401}},{"id":"4245","data":{"label":"Marie Claire","x":-251.03255082910073,"y":-1193.1686530591442,"z":528.6870895792295}},{"id":"4246","data":{"label":"COMAG","x":3539.033066989051,"y":1013.7334874684511,"z":562.9365718813622}},{"id":"4247","data":{"label":"TVA","x":-1911.0082715612418,"y":-1420.8249021304237,"z":145.80812402562705}},{"id":"4248","data":{"label":"Locomotion","x":-1261.699865514684,"y":-2676.6922781386265,"z":128.21144872054592}},{"id":"4249","data":{"label":"Fort Wayne Newspapers","x":3573.777095997043,"y":251.06043283341023,"z":951.0819869969993}},{"id":"4250","data":{"label":"Knight Ridder/Tribune Information Services","x":1417.3101653001104,"y":-2576.4739972510743,"z":778.6342003320713}},{"id":"4251","data":{"label":"Landmark Communications (LCNI)","x":-167.15972749068897,"y":1024.3019335642857,"z":13.159658499699356}},{"id":"4252","data":{"label":"The Virginian-Pilot (Norfolk)","x":-101.72843036249833,"y":1151.7541722930127,"z":87.47730517364883}},{"id":"4253","data":{"label":"The Roanoke Times (Virginia)","x":5.342638597625864,"y":1070.441384094739,"z":309.5902625859983}},{"id":" N.C)","data":{"label":"News & Record (Greensboro","x":4481.892079218419,"y":-646.5468652423178,"z":363.5131140085377}},{"id":" Md.)","data":{"label":"The Carroll County Times (Westminster","x":-1717.5272246893212,"y":1568.0307644265195,"z":314.0608380349408}},{"id":" Ky.)","data":{"label":"News-Enterprise (Elizabethtown","x":3230.9638228811764,"y":-3997.464760518969,"z":437.4500972149129}},{"id":"4258","data":{"label":"Los Alamos Monitor (New Mexico)","x":-4.95800052732875,"y":1010.5271669692002,"z":339.1479744032697}},{"id":" Va.)","data":{"label":"Bedford Bulletin (Bedford","x":-799.4277559815487,"y":2291.6762952087774,"z":394.7279882306998}},{"id":" Colo.)","data":{"label":"Evergreen Newspapers (Evergreen","x":-2066.419102193858,"y":-3369.6267988912887,"z":599.2210706319183}},{"id":" Ark.)","data":{"label":"The Trucker (Little Rock","x":-996.2631190153165,"y":1251.1541024316211,"z":408.35256357215724}},{"id":"4276","data":{"label":"Gator Bait","x":-23.306239947930862,"y":1081.178913697966,"z":147.07813611647126}},{"id":"4277","data":{"label":"Gator Talk","x":-281.06353002894866,"y":930.0653833451524,"z":845.975230329381}},{"id":"4278","data":{"label":"Osceola","x":-185.95365169905335,"y":859.9831065258795,"z":451.01100870345465}},{"id":"4279","data":{"label":"Inside Indiana","x":-232.0060180811929,"y":864.2482748837892,"z":243.56908618664573}},{"id":"4280","data":{"label":"The Voice of the Hawkeyes","x":-316.61136138242455,"y":928.0195054600463,"z":720.5073783933589}},{"id":"4281","data":{"label":"Huskers Illustrated","x":-310.7316597994886,"y":956.3463683798682,"z":482.901929744159}},{"id":"4282","data":{"label":"Carolina Blue","x":-24.99655167117453,"y":1125.6671837581052,"z":905.9835840065892}},{"id":"4283","data":{"label":"Cats' Pause magazine","x":-41.92517090524143,"y":1150.5602993891853,"z":437.58677526078606}},{"id":"4284","data":{"label":"Travel","x":-336.6521559550506,"y":1054.6797521354456,"z":564.1659533253036}},{"id":"4285","data":{"label":"Weather Channel","x":-155.6708765197568,"y":1178.8834518291924,"z":116.26410375818507}},{"id":"4286","data":{"label":"KLAS-TV (Las Vegas)","x":-82.70467541526841,"y":1177.5151665139356,"z":4.196113319126615}},{"id":"4287","data":{"label":"WTVF-TV (Nashville)","x":-249.25683335351277,"y":1155.4743649414977,"z":989.0566924065871}},{"id":"4288","data":{"label":"NewsChannel 5+ (Nashville)","x":-333.2548601746289,"y":978.8782036407156,"z":607.8567987948434}},{"id":"4289","data":{"label":"NewsChannel 5 Radio (Nashville)","x":-221.54789636931673,"y":1182.9664462472547,"z":250.6355226646817}},{"id":"4290","data":{"label":"American Outdoor Advertising","x":-308.48323579137013,"y":1116.7194098702603,"z":20.869835692699734}},{"id":"4291","data":{"label":"Church Impressions","x":-108.34209306542652,"y":1194.7511198061693,"z":794.8483890014751}},{"id":"4292","data":{"label":"Landmark Education Services","x":-282.99028126934263,"y":1151.529229515727,"z":14.31403193944969}},{"id":"4293","data":{"label":"Trader Publishing","x":-47.496077689062076,"y":672.8420625751278,"z":159.98564667381143}},{"id":"4294","data":{"label":"Capital-Gazette Communications","x":-330.1698176011314,"y":1300.6996814896938,"z":404.53614380812496}},{"id":"4295","data":{"label":"Washingtonian magazine","x":-235.94411825698035,"y":1310.137396025093,"z":757.5606103760433}},{"id":" Md)","data":{"label":"The Capital (Annapolis","x":3753.2414536095084,"y":-2372.9165666247363,"z":941.0264894970344}},{"id":"4298","data":{"label":"Lee Enterprises","x":2086.3096359146275,"y":-3817.067970098385,"z":653.0185444939942}},{"id":"4299","data":{"label":"MediaNews Group","x":-723.2213798012258,"y":-260.92206531158627,"z":160.53813640980286}},{"id":"4300","data":{"label":"Fairbanks Daily News-Miner (Alaska)","x":-586.5288258985911,"y":-290.6407805466879,"z":595.24727908019}},{"id":"4301","data":{"label":"Kodiak Daily Mirror (Alaska)","x":-600.215365075389,"y":-363.53469083881555,"z":928.9164974871294}},{"id":"4304","data":{"label":"Chico Enterprise-Record (California)","x":-726.1994937644977,"y":-438.000914951871,"z":928.2005541934899}},{"id":"4307","data":{"label":"Eureka Times-Standard (California)","x":-667.0929853959574,"y":-119.47191971642405,"z":693.7586896999546}},{"id":"4309","data":{"label":"L.A. Daily News (California)","x":-583.5420438828569,"y":-161.58366776056846,"z":711.9009393421412}},{"id":"4311","data":{"label":"Long Beach Press-Telegram (California)","x":-604.0526664911426,"y":-338.30388765645057,"z":170.28095396110433}},{"id":"8189","data":{"label":"Frederick A. Moran","x":643.8694428114741,"y":-4131.265715678455,"z":739.6302376592776}},{"id":"4313","data":{"label":"Oakland Tribune (California)","x":-680.4368643284074,"y":-135.18582175481697,"z":606.6968504452979}},{"id":"4314","data":{"label":"Oroville Mercury-Register (California)","x":-620.1468093155481,"y":-109.30486371538427,"z":461.72408025367304}},{"id":"4315","data":{"label":"Pasadena Star-News (California)","x":-696.5161512980549,"y":-447.3758588266919,"z":520.2397593782902}},{"id":"4316","data":{"label":"Red Bluff Daily News (California)","x":-610.8474211392322,"y":-147.58469044804406,"z":574.314281395069}},{"id":"4317","data":{"label":"Redlands Daily Facts (California)","x":-612.5093176444234,"y":-390.2981364825937,"z":287.9766670829553}},{"id":"4318","data":{"label":"San Bernardino County Sun (California)","x":-650.9027278159924,"y":-104.30298090419365,"z":159.42811334161044}},{"id":"4319","data":{"label":"San Gabriel Valley Tribune(California)","x":-734.6023884770448,"y":-417.84869479118606,"z":977.1403797449154}},{"id":"4320","data":{"label":"San Mateo County Times (California)","x":-770.0982339318953,"y":-398.315646117524,"z":182.33394452657882}},{"id":"4324","data":{"label":"Whittier Daily News(California)","x":-865.0144865823631,"y":-256.56491521435873,"z":33.397180967634334}},{"id":"4325","data":{"label":"The Denver Post (Colorado)","x":-784.1898676649821,"y":-430.14788796143057,"z":65.4865758887213}},{"id":"4326","data":{"label":"Fort Morgan Times (Colorado)","x":-732.2939974211004,"y":-116.7752711881194,"z":535.2720698730793}},{"id":"4328","data":{"label":"Lamar Daily News (Colorado)","x":-699.0244806031137,"y":-68.84369426802732,"z":239.4079736217716}},{"id":"4330","data":{"label":"Darien News-Review (Connecticut)","x":-585.6008094559493,"y":-229.65989822072697,"z":574.2006482046949}},{"id":"4331","data":{"label":"Fairfield Citizen-News (Connecticut)","x":-811.7914657060765,"y":-387.83832973509925,"z":871.8915509581968}},{"id":"4332","data":{"label":"Norwalk Citizen-News (Connecticut)","x":-674.4658372954214,"y":-85.15897391678664,"z":158.18755594276502}},{"id":"4333","data":{"label":"Westport-News (Connecticut)","x":-720.7785393487616,"y":-91.37150515872781,"z":422.68629162551497}},{"id":"4334","data":{"label":"Berkshire Eagle (Pittsfield. MA)","x":-829.6354955274282,"y":-354.13079942902095,"z":475.8682537821224}},{"id":"4335","data":{"label":"Devens Commerce Journal (Massachusetts)","x":-812.314495131407,"y":-425.0037958491421,"z":291.37854251968844}},{"id":"4336","data":{"label":"The Groton Landmark (Massachusetts)","x":-798.0110621232666,"y":-134.49991143653824,"z":917.1018421229658}},{"id":"4337","data":{"label":"The Harvard Hillside(Massachusetts)","x":-834.3271225484386,"y":-396.38953045499056,"z":847.7098314673832}},{"id":"4338","data":{"label":"Lowell Sun (Massachusetts)","x":-732.3757645134838,"y":-64.39822112881757,"z":455.2713964514943}},{"id":"4339","data":{"label":"North Adams Transcript (Massachusetts)","x":-753.8493224443419,"y":-98.69576186068025,"z":469.5840877135924}},{"id":"4340","data":{"label":"Pepperell Free Press (Massachusetts)","x":-804.1769304742365,"y":-112.53145897241575,"z":451.4580365080689}},{"id":"4342","data":{"label":"Carlsbad Current-Argus (New Mexico)","x":-856.346027702667,"y":-348.2112454113658,"z":488.5292605980314}},{"id":"4343","data":{"label":"Deming Headlight (New Mexico)","x":-845.3775572955001,"y":-417.3106492851657,"z":961.2649644694977}},{"id":"4344","data":{"label":"Farmington Daily Times (New Mexico)","x":-885.4914386785977,"y":-249.44656538054096,"z":561.407568277166}},{"id":"4345","data":{"label":"Las Cruces Sun-News (New Mexico)","x":-777.1284055923247,"y":-89.49687920530323,"z":819.5575067723292}},{"id":"4346","data":{"label":"Silver City Sun-News (New Mexico)","x":-763.709849343722,"y":-61.6379280007086,"z":555.2594439718201}},{"id":"4349","data":{"label":"Lebanon Daily News (Pennsylvania)","x":-867.8915291326666,"y":-372.84054813744297,"z":387.41937129494875}},{"id":"4350","data":{"label":"York Daily Record (Pennsylvania)","x":-874.1391434567226,"y":-396.7878451804436,"z":58.11749580640324}},{"id":"4351","data":{"label":"York Dispatch (Pennsylvania)","x":-872.6946093109282,"y":-313.5603085599014,"z":871.9300865120248}},{"id":"4352","data":{"label":"York Sunday News (Pennsylvania)","x":-865.4954895590231,"y":-185.93481857723236,"z":613.8666034388712}},{"id":"4353","data":{"label":"The Park Record (Utah)","x":-848.8999223935984,"y":-147.86612352724296,"z":930.5861797953947}},{"id":"4354","data":{"label":"Salt Lake Tribune (Utah)","x":3445.8804671719963,"y":-2267.4017241124566,"z":147.86748158466057}},{"id":"4355","data":{"label":"Bennington Banner (Vermont)","x":-816.6993080429643,"y":-88.0537435352262,"z":725.5402143876275}},{"id":"4356","data":{"label":"Brattleboro Reformer (Vermont)","x":-796.9664940021771,"y":-67.30074891584718,"z":207.26199886295404}},{"id":"4357","data":{"label":"Charleston Daily Mail","x":-892.7785016321268,"y":-209.70295619956596,"z":246.86166062027226}},{"id":"4358","data":{"label":"Affiliated Newspapers Investments","x":-898.1676541807651,"y":-311.526920302741,"z":970.9809956538944}},{"id":"4359","data":{"label":"Denver Newspapers","x":-852.379200201598,"y":-116.84016746373891,"z":510.29482717180395}},{"id":"4360","data":{"label":"Fairbanks Publishing","x":-887.0403002212342,"y":-166.51325518472822,"z":869.2694477373883}},{"id":"4361","data":{"label":"Garden State Newspapers","x":-875.8510971603846,"y":-135.14615616810988,"z":945.2893351345517}},{"id":"4362","data":{"label":"News Technologies","x":-845.920744735221,"y":-92.46337260246946,"z":216.04789431324622}},{"id":"4363","data":{"label":"StreamSearch.com","x":-1569.6299076224966,"y":676.8296848500813,"z":231.11903555843406}},{"id":"4364","data":{"label":"Fox Television Stations","x":354.8761420896608,"y":859.5479699111638,"z":932.3468072292811}},{"id":"4365","data":{"label":"MCI Worldcom","x":893.9615975900274,"y":-637.0776449539862,"z":858.1323689616116}},{"id":"4366","data":{"label":"iSyndicate","x":-1621.173657200785,"y":-3091.9192749729636,"z":118.51229301486809}},{"id":"4367","data":{"label":"Media Central","x":-901.5891222041073,"y":-1553.741453477071,"z":402.0601078323831}},{"id":"4368","data":{"label":"Brill Media Holdings","x":389.40257399426446,"y":-1119.8114014791217,"z":743.0215806474425}},{"id":"4369","data":{"label":"Brill's Content","x":348.9252437873947,"y":-981.53169870176,"z":744.1747665171779}},{"id":"4370","data":{"label":"Kagan World Media","x":-1185.6930330170553,"y":-1229.8384994563844,"z":563.1886201912555}},{"id":"4371","data":{"label":"Broadband Technology","x":-1300.8021994768774,"y":-1366.792218754018,"z":602.1564847504233}},{"id":"4372","data":{"label":"Broadcast Banker/Broker","x":-1370.715241965603,"y":-1307.1373452021198,"z":944.3339089413356}},{"id":"4373","data":{"label":"Broadcast Investor","x":-1295.1148672737845,"y":-1407.6510114055827,"z":71.6740772631057}},{"id":"4374","data":{"label":"B-Stats","x":-1203.3591890879939,"y":-1410.1811313905137,"z":47.26770729953844}},{"id":"4375","data":{"label":"Cable Program Investor","x":-1275.602573555202,"y":-1375.9877879004712,"z":743.6968833833615}},{"id":"4376","data":{"label":"Cable TV Advertising","x":-1261.3994406153324,"y":-1423.3895823029475,"z":147.07691588748116}},{"id":"4377","data":{"label":"Cable TV Finance","x":-1104.8748288901725,"y":-1405.9620236532528,"z":676.0854976446631}},{"id":"4378","data":{"label":"Cable TV Investor","x":-1322.4558697202538,"y":-1387.96724592993,"z":396.3019762912474}},{"id":"4379","data":{"label":"Cable TV Law Reporter","x":-1382.5489508900177,"y":-1281.4025536427384,"z":675.0917903651676}},{"id":"4380","data":{"label":"The DBS Report","x":-1045.3527104603354,"y":-1379.332309663912,"z":745.2885468619925}},{"id":"4381","data":{"label":"Digital Television","x":-1363.1587101499777,"y":-1336.6262748055333,"z":531.5064909103469}},{"id":"4382","data":{"label":"Interactive TV Investor","x":-985.3548175716105,"y":-1327.7738797402276,"z":695.7852266588532}},{"id":"4383","data":{"label":"Internet Advertising","x":-952.1773294575394,"y":-1246.999296524894,"z":89.16535082541999}},{"id":"4384","data":{"label":"Internet Media Investor","x":-970.6053770818448,"y":-1180.5020167316775,"z":577.6124257013986}},{"id":"4385","data":{"label":"The Kagan Media","x":-1230.6296388020803,"y":-1423.9564441561647,"z":965.6315381835187}},{"id":"4386","data":{"label":"Index Kagan Media Investor","x":-1330.4229893868383,"y":-1308.8193967369948,"z":691.5010017906937}},{"id":"4387","data":{"label":"Media Mergers & Acquisitions","x":-1000.3478901328958,"y":-1273.0228232764384,"z":545.057392557907}},{"id":"4388","data":{"label":"Media Sports Business","x":-1066.838217953827,"y":-1391.3095414727532,"z":408.74246609304475}},{"id":"4389","data":{"label":"Motion Picture Investor","x":-956.8043287152427,"y":-1275.191592972687,"z":145.09639426024435}},{"id":"4390","data":{"label":"Newspaper Investor","x":-1342.4249908652803,"y":-1363.7947627731974,"z":16.113196313266354}},{"id":"4391","data":{"label":"The Pay TV Newsletter","x":-1007.3045228277833,"y":-1201.5745568734492,"z":265.78812542782714}},{"id":"4392","data":{"label":"Streaming Media Investor","x":-1001.6123320129855,"y":-1349.6747553918058,"z":176.16217446192616}},{"id":"4393","data":{"label":"Tower Investor","x":-1332.4237535811449,"y":-1333.8968167868684,"z":897.694057256029}},{"id":"4394","data":{"label":"TV Program Investor","x":-1002.6295949206155,"y":-1129.1762136994903,"z":872.954618036841}},{"id":"4395","data":{"label":"Video Investor","x":-977.9257391551114,"y":-1267.0444470715674,"z":9.621765814217698}},{"id":"4396","data":{"label":"VOD Investor","x":-976.7430069449722,"y":-1153.6249674351343,"z":392.7946954522217}},{"id":"4397","data":{"label":"Wireless Data & Messaging","x":-1258.694119102263,"y":-1396.1615084154596,"z":498.51287594011006}},{"id":"4398","data":{"label":"Wireless Market Stats","x":-948.4073837122232,"y":-1213.6122267439387,"z":885.3446215894616}},{"id":"4399","data":{"label":"Wireless/Private Cable Investor","x":-1181.9315816239287,"y":-1424.4124897324955,"z":105.33613329694735}},{"id":"4400","data":{"label":"Wireless Telecom Investor","x":-1023.133197957826,"y":-1195.7031883183122,"z":640.3638551639714}},{"id":"4401","data":{"label":"Advertising Forecast Beyond 2000","x":-1057.4509625727019,"y":-1099.8803170312317,"z":530.3106600686176}},{"id":"4402","data":{"label":"The Broadband Internet 2000","x":-1013.7926314098831,"y":-1102.606565846199,"z":438.43177895462526}},{"id":"4403","data":{"label":"The Business of Auto Racing 2000","x":-1302.6305698119522,"y":-1341.1077961726915,"z":244.84095411570638}},{"id":"4404","data":{"label":"The Business of Baseball 2001","x":-997.7754675970364,"y":-1246.584518824207,"z":974.5540283266582}},{"id":"4405","data":{"label":"The Business of Basketball 1999","x":-979.2168884744331,"y":-1213.5636913780363,"z":24.172515553705807}},{"id":"4406","data":{"label":"The Business of Football","x":-959.5137335733925,"y":-1299.8907382221773,"z":303.1484721416871}},{"id":"4407","data":{"label":"The Business of Golf","x":-1038.5917204251195,"y":-1087.4664615545048,"z":738.6834578091366}},{"id":"4408","data":{"label":"The Business of Hockey","x":-1078.571250667419,"y":-1101.210921253195,"z":677.6149710516132}},{"id":"4409","data":{"label":"The Business of Newspaper Publishing 2001","x":-1226.862395418517,"y":-1390.1940774435852,"z":668.0519261409204}},{"id":"4410","data":{"label":"The Business of Outdoor & Out-of-Home Advertising 2000","x":-1011.2647427369961,"y":-1143.6095062468921,"z":268.3966470812631}},{"id":"4411","data":{"label":"The Business of Soccer","x":-1120.4695853795704,"y":-1086.2262388265617,"z":804.0417592948079}},{"id":"4412","data":{"label":"The Business of Video Store Retailing 2000","x":-1080.5455941471764,"y":-1064.2771881804165,"z":109.52551169898616}},{"id":"4413","data":{"label":"Cable Network Start-Up Strategies and Business Models","x":-1128.809546335632,"y":-1058.4498593286216,"z":660.9285440909463}},{"id":"4414","data":{"label":"Cable TV Advertising Report 2000","x":712.9949429541971,"y":-4425.084267854385,"z":354.2294425821857}},{"id":"4415","data":{"label":"Cable TV Financial Databook 2000","x":-1041.6722261816142,"y":-1142.8533804839672,"z":868.4175227767714}},{"id":"4416","data":{"label":"Cellular Telephone Atlas 1998","x":-1216.4910028779245,"y":-1086.367194588804,"z":175.94691084515966}},{"id":"4417","data":{"label":"1999 Cellular/PCS Pop Book","x":-1160.9025252967313,"y":-1055.0398304087366,"z":804.1144900495057}},{"id":"4418","data":{"label":"Kagan's Communications Tower Databook 2001","x":-1112.3883014616085,"y":-1040.6687636628703,"z":898.0867887037041}},{"id":"4419","data":{"label":"Competitive Rates in Wireless Telecom '99","x":-1222.113767124447,"y":-1061.4822450472475,"z":383.17528839369254}},{"id":"4420","data":{"label":"The Connected Household - 2000 Edition","x":-1256.4950864004304,"y":-1073.2468946244553,"z":701.3377195478303}},{"id":"4421","data":{"label":"The Connected Household","x":1010.3596857506873,"y":-4530.841330746958,"z":56.466564495903704}},{"id":"4422","data":{"label":"The PPV Household","x":-1259.3857642009511,"y":-1099.721679012564,"z":493.93031166278445}},{"id":"4423","data":{"label":"Digital Tier Strategies 2000","x":-1193.9500460768443,"y":-1050.334919826159,"z":124.36013660141731}},{"id":"4424","data":{"label":"Economics of Basic Cable Networks 2001","x":-1148.0507446602269,"y":-1021.6553464752019,"z":162.47740771365991}},{"id":"4425","data":{"label":"The Economics of TV Programming & Syndication 2000","x":-1018.3488891285333,"y":-1353.4139705792081,"z":796.4982975560886}},{"id":"4426","data":{"label":"Future of Web Retailing & Home Shopping 2001","x":-1314.089888302321,"y":-1114.913804236658,"z":144.27587695607193}},{"id":"4427","data":{"label":"International TV Markets","x":-1337.0062041037704,"y":-1226.209595444609,"z":990.8726302122648}},{"id":"4428","data":{"label":"International Video Markets:","x":-1315.2948818146665,"y":-1150.9169400090832,"z":582.2182056922121}},{"id":"4429","data":{"label":"Trends in Global Demand for VHS and DVD","x":-1328.2894879733117,"y":-1191.311657739985,"z":460.1868528032962}},{"id":"4430","data":{"label":"The Future of Digital Entertainment","x":-1329.9911128812464,"y":-1282.2476906652755,"z":45.40287487449057}},{"id":"4431","data":{"label":"Kagan's MediaCast 2008","x":-1340.906735726768,"y":-1257.7926073512704,"z":477.11372583095215}},{"id":"4432","data":{"label":"Media Mergers & Acquisitions: Beyond 2000","x":-1353.133391866534,"y":-1179.0658447631868,"z":743.4493079366326}},{"id":"4433","data":{"label":"Media Sports Business 1998","x":-1175.9643883181059,"y":-1027.0467912918602,"z":253.38727453173627}},{"id":"4434","data":{"label":"Media Trends 2001","x":-1340.7868398356106,"y":-1143.0041149056178,"z":937.3682818703477}},{"id":"4435","data":{"label":"Online Music: A Strategic and Economic Analysis","x":-1363.9235049388083,"y":-1215.3298760184366,"z":121.3968620744046}},{"id":"4436","data":{"label":"1998 PCS Atlas & Databook","x":-1273.8122999543448,"y":-1053.0340262611098,"z":348.7249210646892}},{"id":"4437","data":{"label":"Kagan's Radio Financial Databook 2001","x":-1209.287751281408,"y":-1025.3139607714825,"z":401.8671969589516}},{"id":"4438","data":{"label":"The State of Home Video: Beyond 2000","x":-1293.3554199871594,"y":-1089.552975298203,"z":554.4371631672451}},{"id":"4439","data":{"label":"The State of DBS 2001","x":-1367.7030510248312,"y":-1254.9723647061046,"z":396.0769839657448}},{"id":"4440","data":{"label":"The State of Digital TV","x":-1307.7082717506864,"y":-1069.652919532401,"z":449.3215808399531}},{"id":"4441","data":{"label":"Trends in Consumer Media Technology 2001","x":-1372.2213087522478,"y":-1149.9965469990207,"z":615.9337217944629}},{"id":"4442","data":{"label":"Kagan's TV Financial Databook 2001","x":-1392.0976461640794,"y":-1243.1523554819123,"z":422.3558319292544}},{"id":"4443","data":{"label":"Video E-tailing & Retailing","x":-1243.660467329197,"y":-1036.0532947517695,"z":586.3242632103016}},{"id":"4444","data":{"label":"Video-On-Demand: A Strategic & Economic Analysis","x":-1356.49526166834,"y":-1119.4539916305716,"z":724.6911840120049}},{"id":"4445","data":{"label":"The 1999 Wireless Cable Databook","x":-1336.4943248373102,"y":-1094.0518932095574,"z":58.30182202190248}},{"id":"4446","data":{"label":"Wireless Telecom Atlas & Databook 2001","x":-1390.7841187066629,"y":-1207.1378809379125,"z":487.2079844652779}},{"id":"4447","data":{"label":"Wireless Telecom Financial Databook 2000","x":-1384.5587700404712,"y":-1176.7654611686662,"z":22.033628059375808}},{"id":"4448","data":{"label":"Kagan Moviedata","x":-1332.7612159287078,"y":-360.8727342251368,"z":605.0783265309448}},{"id":"4449","data":{"label":"Bottom Line Blockbusters","x":-1210.2843168100962,"y":-163.3164556625161,"z":763.3331251201132}},{"id":"4450","data":{"label":"Box Office Champions 2000","x":-1478.11089975051,"y":-283.066461495182,"z":322.2353514021108}},{"id":"4451","data":{"label":"The Kagan Box Office Report 2000","x":-1513.283983247278,"y":-366.5964144158852,"z":67.0788885246707}},{"id":"4452","data":{"label":"Business of Movie Exhibition: Beyond 2000","x":-1247.078025170627,"y":-133.82903143597287,"z":254.83346098727623}},{"id":"4453","data":{"label":"Business of Movie Production and Distribution: Beyond 2000","x":-1504.1410546742497,"y":-321.84093770672825,"z":790.9321311935724}},{"id":"4454","data":{"label":"Trends in Independent Film Profitability","x":-1178.4990778666963,"y":-188.45578964873403,"z":818.2099285480864}},{"id":"4455","data":{"label":"Trends in Movie Profitability 2000","x":-1329.005451489324,"y":-108.3495406381735,"z":4.100334830624774}},{"id":"4456","data":{"label":"Asia Cable & Satellite World Magazine","x":-920.1041697971186,"y":-1397.6494619172663,"z":679.9340836783774}},{"id":"4457","data":{"label":"Asia Pacific Wireless","x":-1041.1278426461593,"y":-1451.460570657453,"z":76.48965554849995}},{"id":"4458","data":{"label":"Asia Pacific Media Investor","x":-1037.5916734906502,"y":-1589.4436147749311,"z":434.50115004056664}},{"id":"4459","data":{"label":"Euromedia Acquisitions & Finance","x":-751.2718890162869,"y":-1643.4961827494158,"z":227.94476475436974}},{"id":"4460","data":{"label":"Euromedia� Magazine","x":-694.7500156176943,"y":-1530.6785726063108,"z":343.07301170049385}},{"id":"4461","data":{"label":"European Cable/Pay TV","x":-689.4090320849973,"y":-1562.2255602323894,"z":598.6484236928482}},{"id":"4462","data":{"label":"European Cellular","x":-721.5526186245843,"y":-1631.4569595069515,"z":720.805103927762}},{"id":"4463","data":{"label":"European Television","x":-930.4242286584404,"y":-1686.5953477471653,"z":798.6978207205628}},{"id":"4464","data":{"label":"Kagan European Sports","x":-1017.2566152335685,"y":-1465.6576991086263,"z":242.02254834530314}},{"id":"4465","data":{"label":"The Kagan/Solomon TV Program Report","x":-1042.8408673628182,"y":-1509.0145806815513,"z":142.900804565387}},{"id":"4466","data":{"label":"The Kagan Interactive Summit","x":-1030.167678124681,"y":-1625.0430002472003,"z":262.7346935379164}},{"id":"4467","data":{"label":"Broadband Technology & Finance","x":-777.9386642841605,"y":-1424.7936186251418,"z":489.35676858308466}},{"id":"4468","data":{"label":"Kagan World Media's European Sports Business","x":-1816.0083665643413,"y":-1346.925058557541,"z":282.9502180313415}},{"id":"4469","data":{"label":"Kagan's Sports Values","x":-972.8455714271433,"y":-1417.6687870442947,"z":911.9847847011888}},{"id":"4470","data":{"label":"Sizing Up Streaming Media Values & Finance","x":-700.2557773473113,"y":-1584.8963761958862,"z":32.79777313132604}},{"id":"4471","data":{"label":"Cable in the Broadband Millennium '99","x":-1058.0095349673002,"y":-1544.5204004251163,"z":657.4195965048158}},{"id":"4472","data":{"label":"Digital Household Summit II","x":-1064.3471352839997,"y":-1496.2202054875156,"z":768.8193791414135}},{"id":"4473","data":{"label":"The Cable Broadband Future 1999","x":-1013.9776350231041,"y":-1653.9026962926282,"z":514.0423695657998}},{"id":"4474","data":{"label":"Broadband Access '99","x":-1068.1037088729881,"y":-1586.5840642652488,"z":397.69925294719724}},{"id":"4475","data":{"label":"Digital Entertainment Summit East","x":-1005.5325079317963,"y":-1419.2983272450188,"z":956.1594811119998}},{"id":"4476","data":{"label":"Digital Entertainment Summit West","x":-962.9928406669183,"y":-1703.940962046761,"z":7.296748850847967}},{"id":"4477","data":{"label":"Radio Acquisitions & Finance","x":-720.8540200539628,"y":-1596.0710128231676,"z":684.0207995909055}},{"id":"4478","data":{"label":"TV Acquisitions & Finance","x":-1057.0606800015184,"y":-1619.4220961103265,"z":991.5123372745176}},{"id":"4479","data":{"label":"The State of the Tower Industry","x":-915.962071441199,"y":-1705.6936784443214,"z":459.3932811746484}},{"id":"4480","data":{"label":"Simba","x":-931.8636072581603,"y":-1893.61501934835,"z":702.1849432697751}},{"id":"4481","data":{"label":"Business/Professional Online Information Markets 2001-2005","x":-1079.823736774386,"y":-1872.198426069307,"z":912.8606542544118}},{"id":"4482","data":{"label":"College Publishing Market","x":-1077.823479395587,"y":-1837.2371669763447,"z":532.1962620609393}},{"id":"4483","data":{"label":"Computer Publishing Market Forecast 2001","x":-1099.4314548566508,"y":-1791.0326845993322,"z":969.6317434841586}},{"id":"4484","data":{"label":"Corporate Training Markets - 2001","x":-749.6017590817582,"y":-1815.3252619746136,"z":653.0047464996401}},{"id":"4485","data":{"label":"Electronic Commerce Report/Web Advertising","x":-756.2404621684482,"y":-1837.8794212648172,"z":982.1657708334927}},{"id":"4486","data":{"label":"Electronic Media for the School Market 2001","x":-749.575329367558,"y":-1874.5785601847524,"z":651.7364953696971}},{"id":"4487","data":{"label":"Independent Yellow Pages Markets 2000","x":-721.2249723814675,"y":-1871.6483295232138,"z":15.907567761466401}},{"id":"4488","data":{"label":"International Online Markets 2000","x":-1029.2342700468384,"y":-1764.4880542420533,"z":256.2320098851236}},{"id":"4489","data":{"label":"Internet Yellow Pages 2001","x":-750.5943502454752,"y":-1945.6455087879967,"z":719.7730530929671}},{"id":"4490","data":{"label":"Intranet Publishing","x":-727.370133064564,"y":-1818.4575111738186,"z":202.59532799233716}},{"id":"4491","data":{"label":"Online Markets Overview","x":-777.117765909054,"y":-1943.825159041458,"z":818.1699937805511}},{"id":"4492","data":{"label":"Print Publishing for the School Market 2001","x":-1089.765868153106,"y":-1814.1591004408792,"z":791.4815136175979}},{"id":"4493","data":{"label":"Publishing for Library Markets 2001","x":-1059.144200663423,"y":-1761.8960715413073,"z":722.8468222918875}},{"id":"4494","data":{"label":"Publishing for the Professional Markets 2001","x":-1057.8939213079298,"y":-1797.1652957518663,"z":707.126113857125}},{"id":"4495","data":{"label":"Specialty Directory Publishing","x":-776.886342652263,"y":-1975.8256319958546,"z":597.544143418274}},{"id":"4496","data":{"label":"Technology for the Corporate Training Market","x":-757.4284007295505,"y":-1911.023608261553,"z":550.7372175408933}},{"id":"4497","data":{"label":"Trade Book Publishing 2001","x":-1120.3353899454196,"y":-1826.8270119771014,"z":870.9860793264983}},{"id":"4498","data":{"label":"Web Advertising 2000","x":-731.8436496609406,"y":-1917.5224670536254,"z":617.2100063499532}},{"id":" 2001","data":{"label":"Worldwide Yellow Pages Markets","x":2779.5874467991725,"y":-3843.534505945753,"z":954.8444396514755}},{"id":"4500","data":{"label":"Yellow Pages Market Forecast 2001","x":-866.8908446307978,"y":-2014.5569813222432,"z":354.5179593790206}},{"id":"4501","data":{"label":"E-Books White Paper","x":-1078.7240846676327,"y":-1931.7692640637779,"z":978.6892912625933}},{"id":"4502","data":{"label":"EER White Paper","x":-1028.6453091312649,"y":-1995.767789740601,"z":558.7905199851261}},{"id":"4503","data":{"label":"Online Testing (k-12) White Paper","x":-747.5415658518659,"y":-1983.263098148152,"z":889.5183308937302}},{"id":"4504","data":{"label":"Printer/Supplier White Paper","x":-799.1786498292872,"y":-1999.1423964436144,"z":381.5470994863408}},{"id":"4505","data":{"label":"Simba Online Publishing","x":-1094.8398994246975,"y":-1901.2378796679423,"z":291.1033372503602}},{"id":"4506","data":{"label":"Inside the Yellow Pages","x":-1105.4837657614678,"y":-1866.0732955717012,"z":725.664207212682}},{"id":"4507","data":{"label":"National Directory Conference","x":-1060.5445005004158,"y":-1971.8916938186921,"z":428.39439163007853}},{"id":"4508","data":{"label":"Inside the Yellow Pages Europe","x":-969.3954528770985,"y":-2034.1181683167351,"z":775.2504433025966}},{"id":"4509","data":{"label":"Book Publishing Report","x":-863.7656550176548,"y":-2033.5518189253708,"z":71.3855892456059}},{"id":"4510","data":{"label":"Computer Publishing and Advertising Report","x":-1080.5918135457284,"y":-1985.147855643787,"z":908.0999178292273}},{"id":"4511","data":{"label":"Educational Marketer","x":-1098.82967143796,"y":-1957.9187595558165,"z":686.4545743527408}},{"id":"4512","data":{"label":"Electronic Advertising and Marketplace Report","x":-851.08210544331,"y":-2048.0126838906444,"z":947.0511328901412}},{"id":"4513","data":{"label":"Electronic Education Report","x":-1006.1764087397341,"y":-2034.6216110140972,"z":532.7286523138688}},{"id":"4514","data":{"label":"Electronic Information Report","x":-1127.1087894966604,"y":-1857.2491731921455,"z":759.2408323192827}},{"id":"4515","data":{"label":"Lifelong Learning Market Report","x":-779.4319849265594,"y":-2016.5097809391536,"z":677.3931865263465}},{"id":"4516","data":{"label":"Professional Publishing Report","x":-1115.780895102646,"y":-1931.4751824787563,"z":412.0360642250276}},{"id":"4517","data":{"label":"Report on Directory Publishing","x":-926.4472219357131,"y":-2043.802301760807,"z":695.5627752514972}},{"id":"4518","data":{"label":"School Technology Market Report","x":-813.4966418237218,"y":-2028.9994239889556,"z":150.01320701499665}},{"id":"4519","data":{"label":"Yellow Pages and Directory Report","x":-1046.5451721112436,"y":-2018.0431800791598,"z":378.84342137214435}},{"id":"4520","data":{"label":"American Demographics","x":-1309.306362094104,"y":-1595.0643231807503,"z":445.74501575125083}},{"id":"4521","data":{"label":"American Demographics Magazine","x":-1516.1725327544445,"y":-1540.4156457810504,"z":982.5415505918558}},{"id":"4522","data":{"label":"Forecast Newsletter","x":-1442.5322982423158,"y":-1725.1301546770455,"z":252.14180773689665}},{"id":"4523","data":{"label":"Folio","x":-792.170970098874,"y":-1185.4909030953836,"z":874.7535221701745}},{"id":"4524","data":{"label":"Folio: Magazine","x":-1021.4394101431867,"y":-1175.9621193055978,"z":129.7053985028187}},{"id":"4525","data":{"label":"Folio: Mag.com","x":-883.4494701124577,"y":-1374.2271900386922,"z":146.2343762184828}},{"id":"4526","data":{"label":"Folio: First Day","x":-1025.3014360420752,"y":-1237.606733931068,"z":142.23434040235827}},{"id":"4527","data":{"label":"Folio: Financial Report - Quarterly Supplement","x":-1014.4233307880545,"y":-1118.6319858136258,"z":450.3560598467231}},{"id":"4528","data":{"label":"Folio: Fall Show","x":-1027.583045802221,"y":-1262.6047379753682,"z":932.294216721959}},{"id":"4529","data":{"label":"Folio: Midwest Show","x":-1043.0428952815168,"y":-1191.9125194724638,"z":1.6020077908818209}},{"id":"4530","data":{"label":"Folio: West Show","x":-1019.5660629736881,"y":-1286.1593450042865,"z":569.6017141803353}},{"id":"4531","data":{"label":"Circulation Management","x":-1182.4845733756877,"y":-1836.4850121653812,"z":801.145954374487}},{"id":"4532","data":{"label":"Circulation Management Magazine","x":-1343.3207755923502,"y":-1914.678410543775,"z":971.8222189984924}},{"id":"4533","data":{"label":"Circulation Management Show","x":-1191.8290955623688,"y":-2026.5041356235852,"z":718.8456719030556}},{"id":"4534","data":{"label":"Cable World","x":-1257.4739850035849,"y":-1678.4854568695655,"z":909.3079157307022}},{"id":"4535","data":{"label":"Cable World Magazine","x":-1455.6476522766206,"y":-1650.6019745034246,"z":278.5754313785149}},{"id":"4536","data":{"label":"Cableworld.com","x":-1304.0539747939492,"y":-1852.3253462762732,"z":568.5129454697691}},{"id":"4537","data":{"label":"MediaCentral.com","x":-777.4794564189306,"y":-1674.709901313267,"z":425.4063043002703}},{"id":"4538","data":{"label":"American Baby","x":2318.942275198051,"y":-1661.4026553182212,"z":110.93817699920106}},{"id":"4539","data":{"label":"Chicago","x":2393.2031677320547,"y":-1520.3172192005386,"z":173.10397178822456}},{"id":"4540","data":{"label":"Healthy Kids","x":2350.9196030863422,"y":-1619.8059462301148,"z":264.0984597039131}},{"id":"4541","data":{"label":"Modern Bride","x":2341.4300132881235,"y":-1602.2154843314274,"z":380.6097575669418}},{"id":"4542","data":{"label":"New York","x":2403.5158833662717,"y":-1584.4217405547438,"z":746.870591200893}},{"id":"4543","data":{"label":"Seventeen","x":2366.5843154002796,"y":-1633.9094981143649,"z":154.3991537102003}},{"id":"4544","data":{"label":"Soap Opera Digest","x":2304.718817033452,"y":-1684.9904752128587,"z":170.17551657870888}},{"id":"4545","data":{"label":"Soap Opera Weekly","x":2373.7674688221214,"y":-1584.6782376901187,"z":145.58817880503307}},{"id":"4546","data":{"label":"The Youth Entertainment Group","x":3068.6025508407065,"y":-2326.7517762952057,"z":93.15909121615374}},{"id":"4547","data":{"label":"BB","x":3046.1993419122427,"y":-2478.47747824874,"z":989.8994937358814}},{"id":"4548","data":{"label":"Bop","x":3229.3640140532343,"y":-2284.650130541586,"z":344.64272229842874}},{"id":"4549","data":{"label":"entertainmenteen","x":3165.6978661003723,"y":-2465.759167536063,"z":561.7898900557639}},{"id":"4550","data":{"label":"16 Magazine","x":3226.5959846352316,"y":-2389.5790851932543,"z":856.2257349731295}},{"id":"4551","data":{"label":"16 Superstars","x":3198.493356832915,"y":-2462.7167335496288,"z":640.8935715177926}},{"id":"4552","data":{"label":"SuperTeen","x":3071.248469303913,"y":-2502.859243012251,"z":384.1018813922863}},{"id":"4553","data":{"label":"Teen Beat","x":3253.9009150789825,"y":-2315.442128254236,"z":348.2580927121421}},{"id":"4554","data":{"label":"Teen Beat All-Stars","x":3240.280478179364,"y":-2415.9658076313663,"z":863.9389157050728}},{"id":"4555","data":{"label":"Teen Machine","x":3176.8132854683827,"y":-2498.7833412750642,"z":251.87728016894994}},{"id":"4556","data":{"label":"Tiger Beat","x":3229.815347310774,"y":-2444.8576863897224,"z":2.8128167178333996}},{"id":"4557","data":{"label":"Bodyboarding","x":2479.2739011540334,"y":-1536.498298533409,"z":285.4292438470676}},{"id":"4558","data":{"label":"Canoe & Kayak","x":2394.04103224328,"y":-1621.124123536314,"z":640.1598352387355}},{"id":"4559","data":{"label":"Climbing","x":2548.768575049052,"y":-1539.3796872959324,"z":99.32755847254838}},{"id":"4560","data":{"label":"KITPLANES","x":2310.2718438583825,"y":-1715.998855763571,"z":639.65154872208}},{"id":"4561","data":{"label":"Splash","x":2333.4204547342197,"y":-1699.7850393751519,"z":750.4689072726786}},{"id":"4562","data":{"label":"Surfing","x":2519.064221326942,"y":-1582.391090993202,"z":858.6859368013535}},{"id":"4563","data":{"label":"Volleyball","x":2546.1800582699398,"y":-1564.428986708544,"z":915.8031874075311}},{"id":"4564","data":{"label":"4 Wheel Drive & Sport Utility","x":2417.3450376856526,"y":-1543.9697052591164,"z":932.4014033500684}},{"id":"4565","data":{"label":"Audio Video Interiors","x":2331.813939182757,"y":-1741.0969445351088,"z":527.2668895637229}},{"id":"4566","data":{"label":"Auto Sound & Security","x":2353.6674225782135,"y":-1719.8153633503262,"z":34.215101826965636}},{"id":"4567","data":{"label":"Automobile Magazine","x":2493.177837887968,"y":-1502.0259826556085,"z":691.659003104087}},{"id":"4568","data":{"label":"Car Audio and Electronics","x":2375.9561361038486,"y":-1845.9415429035425,"z":565.4409122983195}},{"id":"4569","data":{"label":"Classic Trucks","x":2440.8089296702974,"y":-1602.6479991881756,"z":391.84204005867974}},{"id":"4570","data":{"label":"Custom Rodder","x":2344.369113690216,"y":-1806.1140697482783,"z":234.4628314217876}},{"id":"4571","data":{"label":"Drag Racing USA","x":2349.7960527374844,"y":-1659.6801225096478,"z":375.66569092734346}},{"id":"4572","data":{"label":"European Car","x":2327.5334724028307,"y":-1783.0116245296022,"z":344.2198057610275}},{"id":"4573","data":{"label":"High Performance Mopar","x":2358.938118754836,"y":-1568.6068475382358,"z":446.7349398915905}},{"id":"4574","data":{"label":"High Performance Pontiac","x":2415.2385789188174,"y":-1934.587402824489,"z":790.758356533419}},{"id":"4575","data":{"label":"High-Tech Performance","x":2518.7881871279515,"y":-1549.050526372343,"z":613.8070994351294}},{"id":"4576","data":{"label":"Hot Bike","x":2438.417735608383,"y":-1557.7530606545233,"z":928.3566153130314}},{"id":"4577","data":{"label":"Import Tuner","x":2428.8876358787047,"y":-1512.2426588244034,"z":727.2764195881849}},{"id":"4578","data":{"label":"Kit Car Illustrated","x":2484.087590323752,"y":-1573.353636846287,"z":243.69852705629458}},{"id":"4579","data":{"label":"Lowrider","x":2396.998984007305,"y":-1840.2047662870673,"z":125.60399082229966}},{"id":"4580","data":{"label":"Lowrider Euro","x":2466.6008712881367,"y":-1555.2268913300372,"z":772.2240518576555}},{"id":"4581","data":{"label":"Mini Truckin'","x":2287.0815869843045,"y":-1741.4578090369505,"z":371.6877376163228}},{"id":"4582","data":{"label":"Muscle Mustangs & Fast Fords","x":2301.1669040665174,"y":-1760.680676765549,"z":485.2746607142273}},{"id":"4583","data":{"label":"Mustang Illustrated","x":2387.6311888539694,"y":-1541.7308400767683,"z":361.41985636285636}},{"id":"4584","data":{"label":"Off-Road","x":2304.9590994480704,"y":-1789.697954680567,"z":92.40141096865572}},{"id":"4585","data":{"label":"Popular Hot Rodding","x":2287.6013797155956,"y":-1660.7617881070291,"z":783.9236872068795}},{"id":"4586","data":{"label":"Sport Compact Car","x":2562.8576663895165,"y":-1583.2844970057527,"z":278.5702461126924}},{"id":"4587","data":{"label":"Street Rodder","x":2278.140171183276,"y":-1694.07953365323,"z":720.7763453403948}},{"id":"4588","data":{"label":"Super Chevy","x":2658.6447080234775,"y":-1711.8642818899548,"z":99.71760508009675}},{"id":"4589","data":{"label":"Today's SUV","x":2422.0273842578426,"y":-1592.5265828330548,"z":505.49639781045653}},{"id":"4590","data":{"label":"Truckin'","x":2334.0239079143175,"y":-1832.307415148458,"z":482.1036921426305}},{"id":"4591","data":{"label":"Turbo & High Tech Performance","x":2603.859523651525,"y":-1570.0810953919154,"z":252.88161390875464}},{"id":"4592","data":{"label":"Vette Magazine","x":2650.5907642672946,"y":-1671.4268075319787,"z":773.2748976608739}},{"id":"4593","data":{"label":"VW Trends","x":2447.260228909703,"y":-1526.583240455454,"z":800.3864631462856}},{"id":"4594","data":{"label":"Doll Reader","x":2653.0377561834175,"y":-1770.0104781444993,"z":268.4455279589548}},{"id":"4595","data":{"label":"Teddy Bear and Friends","x":2579.508183979141,"y":-1548.3230817751028,"z":208.41106633600702}},{"id":"4596","data":{"label":"Crafts & Jewelry","x":2339.134992288541,"y":-1565.8511508135816,"z":501.5753440196773}},{"id":"4597","data":{"label":"Colored Stone","x":2495.095000861883,"y":-1522.0489047256788,"z":320.7248333602586}},{"id":"4598","data":{"label":"Crafts Magazine","x":2518.810898960419,"y":-1891.1492011584437,"z":482.42660331765074}},{"id":"4599","data":{"label":"CrafTrends","x":2620.035737278363,"y":-1853.1064333993636,"z":977.9370817146564}},{"id":"4600","data":{"label":"Lapidary Journal","x":2371.979959827522,"y":-1871.6546088669652,"z":917.0115492804523}},{"id":"4601","data":{"label":"Arabian Horse World","x":2638.8777485749424,"y":-1806.8783322827471,"z":530.828784917021}},{"id":"4602","data":{"label":"Dressage Today","x":2575.4136690426385,"y":-1896.4144812879413,"z":506.23201427058405}},{"id":"4603","data":{"label":"EQUUS","x":2609.5447852932602,"y":-1538.8580523392034,"z":183.09750065139752}},{"id":"4604","data":{"label":"Horse & Rider","x":2315.1254133525936,"y":-1565.7015491276074,"z":540.7320434063394}},{"id":"4605","data":{"label":"Practical Horseman","x":2635.929612426912,"y":-1586.8894858419817,"z":797.7283487665452}},{"id":"4606","data":{"label":"Country Journal","x":2663.7085702303157,"y":-1649.7964105308629,"z":516.1473464552131}},{"id":"4607","data":{"label":"Horticulture","x":2494.2605885110024,"y":-1909.6891513605124,"z":836.3663694070187}},{"id":"4608","data":{"label":"American History","x":2415.080600508437,"y":-1884.2097170331826,"z":270.0057137427743}},{"id":"4609","data":{"label":"America's Civil War","x":2676.37405465125,"y":-1580.2437102479043,"z":975.7948419118799}},{"id":"4610","data":{"label":"Aviation History","x":2592.2680897533955,"y":-1592.9065160109058,"z":533.6227660472357}},{"id":"4611","data":{"label":"British Heritage","x":2583.564242653615,"y":-1520.3500192778083,"z":631.8431871885762}},{"id":"4612","data":{"label":"Civil War Times","x":2314.394393544909,"y":-1836.1942832196842,"z":230.0065847709576}},{"id":"4613","data":{"label":"Columbiad","x":2464.752503117662,"y":-1892.6261109788652,"z":555.7608704109085}},{"id":"4614","data":{"label":"MHQ: The Quarterly Journal of Military History","x":2432.580574399358,"y":-1908.3698138359273,"z":102.40372203512837}},{"id":"4615","data":{"label":"Military History","x":2452.6797754759264,"y":-1925.8710003982214,"z":574.7000013629506}},{"id":"4616","data":{"label":"Vietnam","x":2342.9280486397856,"y":-1865.9708829776218,"z":508.0763153849115}},{"id":"4617","data":{"label":"Wild West","x":2582.3453636705244,"y":-1915.807157425927,"z":371.15589438117615}},{"id":"4618","data":{"label":"World War II","x":2672.4790573063865,"y":-1752.072857590931,"z":952.7329425099558}},{"id":"4619","data":{"label":"Bowhunter","x":2634.0906419635103,"y":-1612.6691575894629,"z":726.7037736806445}},{"id":"4620","data":{"label":"Catfish Insider","x":2641.627970210925,"y":-1879.8958483296728,"z":433.2939568038432}},{"id":"4621","data":{"label":"Florida Sportsman","x":2645.206746480336,"y":-1857.051415962881,"z":48.27890951392333}},{"id":"4622","data":{"label":"Fly Fisherman","x":2479.047671731688,"y":-1943.768435670504,"z":58.68928772935411}},{"id":"4623","data":{"label":"Game & Fish","x":2571.088910909377,"y":-1942.300764511604,"z":191.74768882682702}},{"id":"4624","data":{"label":"In Fisherman","x":2637.1779109672516,"y":-1554.6530352317504,"z":999.1773077529745}},{"id":"4625","data":{"label":"In Fisherman Bass Guide","x":2695.047019639558,"y":-1744.709939947269,"z":356.62026218669206}},{"id":"4626","data":{"label":"In Fisherman Catfish Guide","x":2536.3979681915907,"y":-1941.9661291719945,"z":631.5600896138914}},{"id":"4627","data":{"label":"In Fisherman Ice Fishing Guide","x":2439.5739749290715,"y":-1950.1803818435155,"z":992.8319476545826}},{"id":"4628","data":{"label":"In Fisherman Walleye Guide","x":2686.9883200562635,"y":-1640.062698649303,"z":835.2776217857277}},{"id":"4629","data":{"label":"North American Whitetail","x":2657.2845254609783,"y":-1828.5197355613864,"z":666.3184577274492}},{"id":"4630","data":{"label":"Walleye In-Sider","x":2463.896567380618,"y":-1966.9782927151573,"z":198.8279112912883}},{"id":"4631","data":{"label":"Power & Motoryacht","x":2700.885873134501,"y":-1708.407811816479,"z":134.77644089518836}},{"id":"4632","data":{"label":"Sail","x":2302.1464855800587,"y":-1621.3373023628633,"z":235.18337883096586}},{"id":"4633","data":{"label":"Cats","x":2682.814901901257,"y":-1823.7314086651263,"z":975.4357221580085}},{"id":"4634","data":{"label":"Dog World","x":2675.7710593902257,"y":-1792.466692625364,"z":30.45866000795816}},{"id":"4635","data":{"label":"Shutterbug","x":2705.6530078087826,"y":-1772.4979043303806,"z":102.61307854422851}},{"id":"4636","data":{"label":"McCall's Quilting","x":2314.723803248079,"y":-1591.244556564512,"z":183.50138675491868}},{"id":"4637","data":{"label":"Quick Quilts","x":2553.6378123910927,"y":-1513.0936010609616,"z":700.5513347292332}},{"id":"4638","data":{"label":"Quilter's Newsletter Magazine","x":2495.7564148996516,"y":-1970.7193620007115,"z":346.2108099186885}},{"id":"4639","data":{"label":"Quiltmaker","x":2669.7891821650865,"y":-1875.848229021794,"z":419.4850328298856}},{"id":"4640","data":{"label":"Sew News","x":2704.2292524154964,"y":-1809.1985520123421,"z":369.4936546182934}},{"id":"4641","data":{"label":"Shooting Times","x":2647.3597336769026,"y":-1908.552282600307,"z":626.0960799185262}},{"id":"4642","data":{"label":"Shotgun News","x":2606.1231270228036,"y":-1926.622782830571,"z":109.8679168804142}},{"id":"4643","data":{"label":"Basketball News","x":2389.9297974216443,"y":-1920.6321102525862,"z":953.9956191416102}},{"id":"4644","data":{"label":"Pro Football Weekly","x":2722.5827252402923,"y":-1717.9335040431952,"z":707.5158790811844}},{"id":"4645","data":{"label":"Intertec Publishing","x":2732.4206670204803,"y":-1812.4502184358516,"z":480.2978317350215}},{"id":"4646","data":{"label":"Workplace Learning","x":2725.63421606441,"y":-1750.0021360116452,"z":817.1489382434991}},{"id":"4647","data":{"label":"IndustryClick","x":2817.824608758774,"y":-2148.201184473055,"z":822.2829668176772}},{"id":"4648","data":{"label":"HPC Publications","x":2705.444588362723,"y":-1871.4790511542724,"z":924.1934936262551}},{"id":"4649","data":{"label":"Channel One Network","x":2694.5963059391343,"y":-1891.0804317840812,"z":456.914698207701}},{"id":"4650","data":{"label":"Films for the Humanities","x":2740.695346151899,"y":-1777.7141497744478,"z":938.8063439300657}},{"id":"4651","data":{"label":"Primedia Digital Video","x":2361.8043093955303,"y":-1895.5638997663568,"z":178.10960542753284}},{"id":"4652","data":{"label":"PRIMEDIA Ventures","x":2647.15140385254,"y":-1936.006431847347,"z":501.350684829744}},{"id":"4653","data":{"label":"CarsDirect","x":3102.2998858508054,"y":-2300.680446621499,"z":33.583360419799924}},{"id":"4654","data":{"label":"fourthchannel","x":2743.6019583390407,"y":-1720.000438545866,"z":355.4819616273774}},{"id":"4655","data":{"label":"Metapa","x":2740.8472678648523,"y":-1835.5103456064994,"z":773.5949259118662}},{"id":"4656","data":{"label":"Military.com","x":2718.3486802000534,"y":-1660.4984484516494,"z":559.5320548013383}},{"id":"4657","data":{"label":"MobileSpring","x":2525.0010827982987,"y":-1515.0858130995393,"z":565.0098144895992}},{"id":"4658","data":{"label":"MyPoints","x":2862.6754061616994,"y":-2099.973210321437,"z":421.5330427698274}},{"id":"4659","data":{"label":"NextVenue","x":2427.270641553737,"y":-1818.8871208421779,"z":316.66894739583773}},{"id":"4660","data":{"label":"perfect.com","x":2537.8640622764124,"y":-1966.493470186655,"z":249.9401592734276}},{"id":"4661","data":{"label":"Sandlot","x":2726.0514710289854,"y":-1859.0513892714334,"z":451.38265070411944}},{"id":"4662","data":{"label":"Scan.com","x":2627.4806070152554,"y":-1951.6361798014282,"z":747.1266925319067}},{"id":"4663","data":{"label":"SocialNet","x":2681.323848413417,"y":-1911.7922231527082,"z":381.08845672289806}},{"id":"4664","data":{"label":"StickyNetworks","x":2673.9982677636835,"y":-1938.0050008900498,"z":786.2221112173409}},{"id":"4665","data":{"label":"Utility.com","x":2604.613175888049,"y":-1965.0104762419996,"z":351.6043363055186}},{"id":"4666","data":{"label":"PRIMEDIA Productions","x":2576.921754288909,"y":-1970.528435752628,"z":82.4595123326577}},{"id":"4667","data":{"label":"About","x":2944.7821549088403,"y":-2043.7971975462797,"z":315.5650048690102}},{"id":"4668","data":{"label":"About.com","x":3835.4328271067607,"y":338.881305014761,"z":986.6399435568576}},{"id":"4669","data":{"label":"Lexis-Nexis","x":1569.6340300733355,"y":588.5813096982884,"z":544.9472851420087}},{"id":"4670","data":{"label":"Cahners Publishing","x":1320.4373347690544,"y":574.1365692794279,"z":921.4573637316311}},{"id":"4671","data":{"label":"Asia Image","x":1468.464494669567,"y":508.5417261073526,"z":331.80060451167793}},{"id":"4672","data":{"label":"Book Wire","x":1489.7975339250288,"y":385.88318939106466,"z":363.1890881477562}},{"id":"4673","data":{"label":"Broadcasting & Cable","x":1464.1693571603919,"y":293.22716339996987,"z":178.54227393014764}},{"id":"4674","data":{"label":"Cablevision Magazine","x":1483.1406134921071,"y":468.912228523518,"z":562.6546001424151}},{"id":"4675","data":{"label":"CED","x":1509.0310856136948,"y":364.31710261643093,"z":765.7343716012371}},{"id":"4676","data":{"label":"Creative Handbook","x":1387.068631308547,"y":567.4313663409985,"z":17.646588634971927}},{"id":"4677","data":{"label":"Daily Variety","x":1655.7553659963878,"y":665.0515799784043,"z":296.348994304374}},{"id":"4678","data":{"label":"Variety","x":1741.2655984318117,"y":841.127249399784,"z":366.0088865637914}},{"id":"4679","data":{"label":"Variety Junior","x":1839.2525335780338,"y":761.5983229173144,"z":867.1530241025742}},{"id":"4681","data":{"label":"Entertainment Marketplace","x":1518.7604979850748,"y":435.7567373434995,"z":117.83678755036387}},{"id":"4682","data":{"label":"Frequent Flyer","x":1496.8060681123952,"y":316.49890258882806,"z":778.3708593706342}},{"id":"4683","data":{"label":"Hotel & Travel Index","x":1514.4428762535954,"y":468.99426995817066,"z":956.9933626702742}},{"id":"4684","data":{"label":"Hotel & Travel Index International","x":1366.7715312306536,"y":1909.5853752720068,"z":966.9402559368921}},{"id":"4685","data":{"label":"Hotels","x":1523.5696194779694,"y":391.3474040565461,"z":10.914088109788}},{"id":"4686","data":{"label":"Kemps Film & Video Handbook","x":1503.4608954891264,"y":502.35927267327315,"z":273.80307919098556}},{"id":"4687","data":{"label":"Library Journal","x":1430.2390943810187,"y":577.2326752964182,"z":818.1400996058002}},{"id":"4688","data":{"label":"Moving Pictures International","x":1483.9298257985765,"y":534.6357144303383,"z":40.63828150056948}},{"id":"8238","data":{"label":"Clearview Cinemas","x":-2136.878755721763,"y":-2257.8890845356136,"z":206.00794985220892}},{"id":"4690","data":{"label":"Multichannel News International","x":3466.831958726024,"y":1109.9265730170573,"z":930.5375595213272}},{"id":"4691","data":{"label":"Official Cruise Guide","x":1182.6478504176657,"y":413.3717231195433,"z":134.19580125185558}},{"id":"4692","data":{"label":"Official Hotel Guide","x":1263.8987206619895,"y":551.2378781314146,"z":140.78401420397114}},{"id":"4693","data":{"label":"Official Meeting Facilities Guide","x":1177.989042916678,"y":462.82822012764154,"z":615.3648625336401}},{"id":"4694","data":{"label":"On Production","x":1430.3688986106881,"y":540.8404944070553,"z":754.7171553421701}},{"id":"4695","data":{"label":"Publishers Weekly","x":1181.2877880288524,"y":521.6538437346298,"z":706.9200561973668}},{"id":"4696","data":{"label":"Restaurants & Institutions","x":1385.7830259030688,"y":273.1006709234043,"z":473.0325997025067}},{"id":"4697","data":{"label":"School Library Journal","x":1426.6134829222083,"y":311.31417692456125,"z":808.3499684298412}},{"id":"4698","data":{"label":"STAR Service","x":1154.6769726052207,"y":434.41222102587744,"z":492.6910147915484}},{"id":"4699","data":{"label":"Television Asia","x":1159.1952417635448,"y":483.9014567904924,"z":585.6887275569112}},{"id":"4700","data":{"label":"Television Europe","x":1465.6231588557184,"y":368.84967443840196,"z":321.09567242954574}},{"id":"4701","data":{"label":"Television International","x":1358.6039157310806,"y":283.3523250958342,"z":595.1786485986934}},{"id":"4702","data":{"label":"TWICE","x":1199.3524635460117,"y":515.836520491077,"z":569.3872401858073}},{"id":"4703","data":{"label":"Weissmann Travel Reports","x":1424.7479082925547,"y":278.3699370291006,"z":823.0745620894262}},{"id":"4704","data":{"label":"Wireless Week","x":1202.1142471948424,"y":483.06162249117733,"z":450.91702793651865}},{"id":"4705","data":{"label":"Reed Consumer Books","x":1780.6661110627847,"y":873.8884505733131,"z":874.7095457345739}},{"id":"4706","data":{"label":"Philip's","x":1953.1291933483672,"y":879.5748940276808,"z":400.5672680368624}},{"id":"4707","data":{"label":"Mitchell Beazley","x":1686.012680755406,"y":993.5156664205488,"z":483.11886321349283}},{"id":"4708","data":{"label":"Conran Octopus","x":1749.8551281671007,"y":1041.1165122962848,"z":598.8813063422183}},{"id":"4709","data":{"label":"Osprey","x":1775.544862990304,"y":1060.3918935242582,"z":803.7493448920368}},{"id":"4710","data":{"label":"Pitkin","x":1824.2312637987434,"y":1058.5353947022122,"z":103.52448284257099}},{"id":"4711","data":{"label":"Hamlyn","x":1950.7216539910696,"y":925.489821495129,"z":535.6418333788741}},{"id":"4712","data":{"label":"Reed Business Publishing","x":1348.5343580929366,"y":590.4335686828563,"z":757.4937727551074}},{"id":"4713","data":{"label":"Reed Exhibition","x":-1578.5252481592647,"y":821.335636205311,"z":720.255367731267}},{"id":"4714","data":{"label":"Reed Travel Group","x":382.28682111254693,"y":-4281.319882804663,"z":369.3717899852933}},{"id":"4715","data":{"label":"Congressional Information Service","x":1494.0116855474316,"y":425.6665666725303,"z":13.413059297782581}},{"id":"4716","data":{"label":"Reed Reference Publishing","x":1292.1161611377702,"y":588.3228525877003,"z":702.9747879535553}},{"id":"4717","data":{"label":"Elsevier Science","x":1456.8541697197297,"y":557.8066668697547,"z":801.9668449792656}},{"id":"4718","data":{"label":"Excerpta Medica Communications","x":1466.6409187294303,"y":321.21433795679786,"z":279.0210516364355}},{"id":"4719","data":{"label":"Jim Henson Productions","x":4431.067148510363,"y":-46.86026624480837,"z":908.9435797952581}},{"id":"4720","data":{"label":"Mandalay Entertainment","x":-398.65669847904064,"y":-3695.576768280896,"z":556.0711778372473}},{"id":"4721","data":{"label":"Phoenix Pictures","x":2855.708918848385,"y":-3937.460570038028,"z":292.15933947295645}},{"id":"4722","data":{"label":"Wheel of Fortune Online","x":2500.9643334992197,"y":474.07455903342907,"z":785.3208843643126}},{"id":"4723","data":{"label":"Sony Music Publishing","x":904.0841271364488,"y":-3923.8307377567535,"z":135.97293247472075}},{"id":"4724","data":{"label":"Warner Channel - Latin America","x":2410.1683929377305,"y":599.8263904407777,"z":420.7533004007309}},{"id":"4725","data":{"label":"UPN","x":146.81727708217522,"y":-1271.0624957706564,"z":802.7694844550688}},{"id":"4726","data":{"label":"Noggin","x":3690.3641697452213,"y":765.1639039189877,"z":757.4761397510763}},{"id":"4727","data":{"label":"VH1 Germany","x":-2456.983133189211,"y":-1016.6763989398005,"z":863.9820596551031}},{"id":"4728","data":{"label":"Hubbard Broadcasting","x":181.086239107633,"y":-718.3705118482394,"z":576.0060025808551}},{"id":"4729","data":{"label":"CIC Video","x":948.8526353931811,"y":2461.3163986610616,"z":58.5636201557036}},{"id":"4730","data":{"label":"CBSSportsLine.Com","x":3028.3284636649805,"y":-3301.088794137845,"z":830.3511483146464}},{"id":"4731","data":{"label":"CBSMarketWatch.com","x":-2058.149919630405,"y":-2281.329360241556,"z":343.4194985417778}},{"id":"4732","data":{"label":"CBSHealthWatch.com","x":-523.2613270628599,"y":2089.080705563516,"z":147.22664970639278}},{"id":"4733","data":{"label":"Winstar","x":-412.99006849393436,"y":-414.2406881481902,"z":493.24870674041256}},{"id":"4734","data":{"label":"StoreRunner.com","x":12.133870982275766,"y":2139.909487939247,"z":837.0481197449469}},{"id":"4735","data":{"label":"Westwood One","x":736.4363699126893,"y":-1078.4428439669146,"z":792.3554642381982}},{"id":"4736","data":{"label":"Canal+","x":1938.167652123756,"y":157.93941191880094,"z":444.55402219548625}},{"id":"4737","data":{"label":"Star Channel (Japan)","x":-1797.6149011020095,"y":410.6948466738195,"z":398.95151426110107}},{"id":"4738","data":{"label":"Havas Press","x":1538.7285217372855,"y":727.9055181143376,"z":847.229815575496}},{"id":"4739","data":{"label":"L'Express","x":1381.560906961262,"y":719.137226038747,"z":350.70740012822}},{"id":"4740","data":{"label":"L'Expansion","x":1407.1832925302006,"y":785.8768568236974,"z":589.292060569967}},{"id":"4741","data":{"label":"Courrier International","x":1440.7926175648117,"y":830.4964348766534,"z":28.404925181816367}},{"id":"4742","data":{"label":"L'Etudiant","x":1666.177403916975,"y":619.4265265844351,"z":198.80433542638931}},{"id":"4743","data":{"label":"Bonjour","x":1689.4441730374774,"y":1021.7793486085957,"z":975.4955526938543}},{"id":"4744","data":{"label":"Le Moniteur","x":1665.808158714235,"y":802.1007450160814,"z":468.7677265019954}},{"id":"4745","data":{"label":"Building","x":1382.3772635643181,"y":772.872097678247,"z":446.3394824273894}},{"id":"4746","data":{"label":"L'Usine Nouvelle","x":1546.660252686317,"y":867.0419173334585,"z":431.27207651145795}},{"id":"4747","data":{"label":"Automatica e Instrumentacion","x":1387.2271614592464,"y":682.4752877561832,"z":598.7686540110826}},{"id":"4748","data":{"label":"LSA","x":1539.338536883848,"y":998.8808134820756,"z":493.3396025531165}},{"id":"4749","data":{"label":"La France Agricole","x":1693.889618826921,"y":724.6364734829021,"z":322.5096117474273}},{"id":"4750","data":{"label":"01 Informatique","x":1695.461605617349,"y":772.458279035086,"z":825.679540451929}},{"id":"4751","data":{"label":"Linea EDP","x":1407.1305113222425,"y":826.7850213546208,"z":545.8046246382959}},{"id":"4752","data":{"label":"Le Quotidien du Medecin","x":1607.1266582953513,"y":861.7224397551781,"z":714.9518653192812}},{"id":"4753","data":{"label":"Jano","x":1464.4195031134323,"y":871.7100382907483,"z":587.8806909341343}},{"id":"4754","data":{"label":"Medical Progress","x":1435.2200530497958,"y":867.0470933254674,"z":528.2766401169237}},{"id":"4755","data":{"label":"Tempo Medico","x":1513.3276039770044,"y":884.2838728584356,"z":559.2121623539415}},{"id":"4756","data":{"label":"Havas Book","x":1865.0195840537635,"y":1164.290171464494,"z":11.492495840771833}},{"id":"4757","data":{"label":"Havas Business Information","x":1773.0130074012513,"y":1304.4793911039278,"z":938.3240332534599}},{"id":"4758","data":{"label":"Dalloz","x":1646.456826620335,"y":1403.9146858071563,"z":789.8670858705832}},{"id":"4759","data":{"label":"Dunod","x":1828.6638417260283,"y":1465.9822534324958,"z":730.9437483298307}},{"id":"4760","data":{"label":"Havas MediMedia","x":1693.4294787033232,"y":1539.5273837094264,"z":227.1960130931896}},{"id":"4761","data":{"label":"Masson","x":1545.6714051135841,"y":1610.5363777282046,"z":611.5161318934319}},{"id":"4762","data":{"label":"Doyma","x":1583.3188857275363,"y":1675.332606088,"z":166.20499462064765}},{"id":"4763","data":{"label":"Vidal","x":1756.7171952256276,"y":1699.1788876068313,"z":917.6137880001289}},{"id":"4764","data":{"label":"MIMS","x":1852.2704145099833,"y":1548.173602600299,"z":856.5707333265038}},{"id":"4765","data":{"label":"Havas Education et Reference","x":2128.211931704178,"y":1559.4342045918575,"z":138.48210257683235}},{"id":"4766","data":{"label":"Nathan","x":2209.2161771473548,"y":1525.2339994219092,"z":789.02282648541}},{"id":"4767","data":{"label":"Bordas","x":2276.6931903213526,"y":1646.7274177321287,"z":388.42946756379695}},{"id":"4768","data":{"label":"Anaya","x":2242.1278437751243,"y":1678.4568933002674,"z":535.4048179531532}},{"id":"4769","data":{"label":"Atica","x":2296.087184356691,"y":1603.6832324395928,"z":609.233909095356}},{"id":"4770","data":{"label":"Scipione","x":2297.9696250981133,"y":1554.0131988499024,"z":715.6697091716262}},{"id":"4771","data":{"label":"Aique","x":2066.7650001076145,"y":1711.5941181228718,"z":384.31230868944135}},{"id":"4772","data":{"label":"Larousse","x":2228.6789789073046,"y":1466.7036796337707,"z":625.1115153196419}},{"id":"4773","data":{"label":"Le Robert","x":2206.181316054952,"y":1701.7321197987258,"z":293.5469789672458}},{"id":"4774","data":{"label":"Harrap","x":1981.1221003201645,"y":1457.71530956057,"z":60.37830018281687}},{"id":"4775","data":{"label":"Chambers","x":1966.3503272151402,"y":1606.6961735654859,"z":794.2387531548995}},{"id":"4776","data":{"label":"Kingfisher","x":2007.4990363803963,"y":1664.5927396125917,"z":832.2268804394697}},{"id":"4777","data":{"label":"Literature","x":1790.726654714581,"y":1673.0522554913978,"z":430.08821470292526}},{"id":"4778","data":{"label":"Laffont","x":1901.6504099989124,"y":1785.0654374388996,"z":447.2015841984156}},{"id":"4779","data":{"label":"Plon","x":1630.0434764406527,"y":1735.5008489524098,"z":659.8822719234519}},{"id":"4780","data":{"label":"Presses de la Cite","x":1670.2917859235404,"y":1791.4663724554612,"z":746.1132284168834}},{"id":"4781","data":{"label":"Solar","x":1768.3113918695544,"y":1835.6112212149492,"z":747.2242902246162}},{"id":"4782","data":{"label":"Belfond","x":1924.183081211736,"y":1793.8696622973584,"z":515.5493634235495}},{"id":"4783","data":{"label":"Pocket","x":1943.6092700908075,"y":1735.0324229720445,"z":560.1637008801481}},{"id":"4784","data":{"label":"10/18","x":1865.8104447113064,"y":1833.1000925371072,"z":435.28811817467374}},{"id":"4785","data":{"label":"Fleuve Noir","x":1726.618970258577,"y":1838.4407631308914,"z":724.6791541347976}},{"id":"4786","data":{"label":"Havas Multimedia","x":1901.1563724923462,"y":844.4002029752401,"z":397.06071620132576}},{"id":"4787","data":{"label":"Havas Interactive","x":2070.9446091280197,"y":1294.2366185171968,"z":284.4778992925039}},{"id":"4788","data":{"label":"Coktel","x":2163.426590068597,"y":1428.1700801582438,"z":495.5609234371838}},{"id":"4789","data":{"label":"Knowledge Adventure","x":2220.312055074288,"y":1257.699723604138,"z":647.8002759844918}},{"id":"4790","data":{"label":"Larousse Multimedia","x":1896.614045022582,"y":-4235.166852753433,"z":379.0052803473809}},{"id":"4791","data":{"label":"Harrap's Multimedia","x":-488.94756793945726,"y":-3163.4932613025385,"z":38.87019173140316}},{"id":"4792","data":{"label":"Nathan Multimedia","x":-338.09026052124045,"y":-3455.8868027852463,"z":859.5597394618719}},{"id":"4793","data":{"label":"Syracuse Language","x":2221.3598339101554,"y":1220.8139913452897,"z":227.49578196497478}},{"id":"4794","data":{"label":"Blizzard","x":1923.0798500968976,"y":1348.6719028640982,"z":676.4339558349603}},{"id":"4795","data":{"label":"Sierra","x":1909.4060630403637,"y":1263.836453802116,"z":777.2939586631671}},{"id":"4796","data":{"label":"Won.net","x":2229.090942676181,"y":1314.367262048514,"z":27.87380523832317}},{"id":"4797","data":{"label":"Havas eContent Multimedia","x":2074.7101507740435,"y":781.8540510892035,"z":378.7227427485065}},{"id":"4798","data":{"label":"ePocket","x":2198.589802968647,"y":886.3098103724187,"z":815.6085866991064}},{"id":"4799","data":{"label":"Havas Numerique","x":1865.4273677665815,"y":1275.1254542491233,"z":778.1558591179938}},{"id":"4800","data":{"label":"Atmedica","x":1950.1259599566301,"y":1451.9950169440235,"z":613.7591055046083}},{"id":"4801","data":{"label":"Cadres On Line","x":1772.619389198062,"y":1421.1839281937364,"z":752.8023247685096}},{"id":"4802","data":{"label":"Bonjour.fr","x":2810.257541781534,"y":-3989.2720913866387,"z":532.8544181574941}},{"id":"4803","data":{"label":"01Net","x":1994.612495808602,"y":1419.2375769683995,"z":298.391821208148}},{"id":"4804","data":{"label":"Vizzavi","x":1979.020618924389,"y":364.5754745118429,"z":854.776158391726}},{"id":"4805","data":{"label":"Education.com","x":1738.9271174572486,"y":412.85777806162696,"z":22.980162560489738}},{"id":"4806","data":{"label":"Flipside.com","x":1704.8891881185036,"y":375.62102710747604,"z":329.7480993690809}},{"id":"4807","data":{"label":"@viso","x":2057.1886581047975,"y":35.840971473075115,"z":8.557358626832823}},{"id":"4808","data":{"label":"Allocine","x":1857.747781376921,"y":447.2357733680019,"z":469.19359931728445}},{"id":"4809","data":{"label":"Ad2-One","x":1809.6644073540583,"y":444.3219642800268,"z":522.9220390097569}},{"id":"4810","data":{"label":"Scoot","x":1425.0004464987833,"y":337.3337647803228,"z":138.77080300358702}},{"id":"4811","data":{"label":"Polygram","x":2051.5390496366263,"y":825.1510462615888,"z":217.80593022821114}},{"id":"4812","data":{"label":"Sega Game Works","x":-1618.2662708427495,"y":-3036.542471212214,"z":122.5341610155981}},{"id":"4813","data":{"label":"Vivendi Telecom International","x":1675.9415719104309,"y":330.42339290432665,"z":98.45402168885964}},{"id":"4814","data":{"label":"Cegetel","x":1866.8429397988239,"y":482.0709429561721,"z":219.78524241777976}},{"id":"4815","data":{"label":"Vivendi Environnement","x":955.2028802718542,"y":-4410.485067403108,"z":731.780958424676}},{"id":"4816","data":{"label":"Viventures","x":1837.0268073567931,"y":479.6292881674817,"z":917.7995221153752}},{"id":"4817","data":{"label":"Microsoft","x":1341.4426566822767,"y":-882.5057914633635,"z":244.00048695667786}},{"id":"4818","data":{"label":"800.com","x":2565.148800101915,"y":-418.6549415145728,"z":334.9795943421103}},{"id":"4819","data":{"label":"Allegiance Telecom","x":2813.1724007115354,"y":-476.15081272521456,"z":802.8561650719961}},{"id":"4820","data":{"label":"ARI Network Services","x":2458.856378595292,"y":-368.26443429872234,"z":828.8332579702793}},{"id":"4821","data":{"label":"Avio Digital","x":2437.8744195596737,"y":-353.6149894610744,"z":284.8719736880665}},{"id":"4822","data":{"label":"Beyond.com","x":2522.9979001377687,"y":-384.07480215519445,"z":907.6475757958897}},{"id":"4823","data":{"label":"CNET","x":2881.6838500884105,"y":-587.5354379970868,"z":47.05427393578798}},{"id":"4824","data":{"label":"Click2learn.com","x":2665.3187169938883,"y":-275.5639138300321,"z":822.525526748582}},{"id":"4825","data":{"label":"Command Audio","x":2401.1093528960428,"y":-356.6454664525918,"z":37.49809740771348}},{"id":"4826","data":{"label":"Cybersource","x":2724.837094475565,"y":-332.76604019985007,"z":93.60609063615644}},{"id":"4827","data":{"label":"Darwin Networks","x":2499.34505158458,"y":-339.9356962527836,"z":325.974977162329}},{"id":"4828","data":{"label":"Egghead Software","x":2547.2601935651355,"y":-363.70929622099356,"z":998.5265410992108}},{"id":"4829","data":{"label":"EStyle.com","x":2507.2065554086676,"y":-1158.3698788284464,"z":906.3700758488206}},{"id":"4830","data":{"label":"Fatbrain.com","x":2605.525956755124,"y":-496.62014996201106,"z":296.39391436787355}},{"id":"4831","data":{"label":"Go2net","x":2730.642603598694,"y":-106.89102584053035,"z":40.930826969134415}},{"id":"4832","data":{"label":"High Speed Access","x":2582.9031414138663,"y":-614.0345864704241,"z":342.5585134750906}},{"id":"4833","data":{"label":"Liquid Audio","x":2384.261769206837,"y":-663.6129936462949,"z":87.43182367899105}},{"id":"4834","data":{"label":"Mercata","x":2594.475062868237,"y":-437.6981371816055,"z":354.5086509860793}},{"id":"4835","data":{"label":"MultiEmedia.com","x":2610.8139111277023,"y":-569.149613530767,"z":208.3805175365119}},{"id":"4836","data":{"label":"NetPodium","x":2490.6064511053028,"y":-680.8500209103277,"z":611.774676952428}},{"id":"4837","data":{"label":"North Point Communications","x":2616.1972478382904,"y":-460.3026481827919,"z":34.509376187774606}},{"id":"4838","data":{"label":"Oxygen Media","x":2690.9008629464097,"y":-458.6612103475627,"z":77.33041397932206}},{"id":"4839","data":{"label":"RCN","x":2630.7772210040075,"y":-526.1654185736561,"z":476.9044374262634}},{"id":"4840","data":{"label":"Rocket Network","x":2612.4305870436383,"y":-608.7656123424285,"z":589.7121425567686}},{"id":"4841","data":{"label":"ScienceMedia","x":2572.2811736558333,"y":-386.96173175791137,"z":434.69697407462894}},{"id":"4842","data":{"label":"Stamps.com","x":2316.764370570909,"y":-532.1941032689565,"z":803.3491615626951}},{"id":"4843","data":{"label":"USSB","x":2634.6944594961697,"y":-553.7180932449028,"z":533.0465038239997}},{"id":"4844","data":{"label":"Vulcan Northwest","x":2635.065478923656,"y":-496.2185140334641,"z":812.6574260377726}},{"id":"4845","data":{"label":"Vulcan Ventures","x":2550.346326466274,"y":-107.5325498505099,"z":550.9944956033397}},{"id":"4846","data":{"label":"ZDTV","x":2433.3436062919063,"y":-680.6999891626137,"z":424.82449942106547}},{"id":"4847","data":{"label":"Ziff Davis","x":3020.4399607458718,"y":-716.715001289589,"z":454.8046093602103}},{"id":"4848","data":{"label":"Bluelight.com","x":-2385.3628195023475,"y":-1427.1401671967587,"z":792.9314162226904}},{"id":"4855","data":{"label":"KMWB TV (Minneapolis)","x":-423.7919275230274,"y":1112.8824258538953,"z":334.5912598088328}},{"id":"4856","data":{"label":"WPGH TV (Minneapolis)","x":-349.1349832412252,"y":1099.7429531886046,"z":193.83760484436553}},{"id":"4857","data":{"label":"KOVR TV (Sacramento)","x":-352.0773321176098,"y":1443.4499393876458,"z":485.6257552334615}},{"id":"4858","data":{"label":"KDNL TV (St. Louis)","x":-223.77650906055806,"y":1361.7980492362967,"z":731.5385297562391}},{"id":"4859","data":{"label":"WBFF TV (St. Louis)","x":-238.05123367313854,"y":1150.3401277150906,"z":212.4838761280301}},{"id":"4860","data":{"label":"WLFL TV (Indianapolis)","x":-452.69563591673796,"y":1133.9169724195144,"z":214.79424642129086}},{"id":"4861","data":{"label":"WCGV TV (Nashville)","x":-276.49495327851037,"y":1416.199386958071,"z":777.4872517055751}},{"id":"4862","data":{"label":"WSTR TV (Cincinnati)","x":-967.2715465138879,"y":-3801.2285263790704,"z":722.9693275318896}},{"id":"4867","data":{"label":"WTTO TV (San Antonio)","x":-202.24093492160682,"y":1332.9002600157446,"z":115.59920177788973}},{"id":"4871","data":{"label":"WCHS TV (Las Vegas)","x":-504.9993265780772,"y":1350.2663671346309,"z":35.0252000868585}},{"id":"4875","data":{"label":"KDSM TV (Des Moines)","x":-482.6695259641183,"y":1160.5565209826254,"z":493.9164421844422}},{"id":"4876","data":{"label":"WSYT TV (Des Moines)","x":-260.20274803061284,"y":1123.3743263017186,"z":876.3820635441559}},{"id":"4877","data":{"label":"KBSI TV (Syracuse)","x":-452.8470618264246,"y":1414.6394911923635,"z":52.16211986031239}},{"id":" ME)","data":{"label":"WGME TV (Portland","x":-1150.556169001447,"y":-3597.2542316998306,"z":331.2772185564652}},{"id":"4884","data":{"label":"WTTA TV (Tampa)","x":782.7446806655166,"y":-3742.9153620738316,"z":46.44516970269419}},{"id":"4885","data":{"label":"WCWB TV (Pittsburgh)","x":2829.7260727636312,"y":-3644.55055245969,"z":725.8087279696464}},{"id":"4886","data":{"label":"WNUV TV (Baltimore)","x":2851.221457986727,"y":1909.0967409873347,"z":922.065182649724}},{"id":"4887","data":{"label":"WTTV TV (Baltimore)","x":4397.029477111657,"y":-1891.3669413283583,"z":151.8052160362322}},{"id":"4888","data":{"label":"WTTK TV (Indianapolis)","x":-1112.2054560617808,"y":1740.7477866427735,"z":726.7101336493329}},{"id":"4891","data":{"label":"WUXP TV (Nashville)","x":3514.3233952127457,"y":296.2506307972144,"z":297.15023226049107}},{"id":"4892","data":{"label":"WVTV TV (Milwaukee)","x":4467.720498110537,"y":-1086.4538301282946,"z":521.6196121528094}},{"id":"4895","data":{"label":"KRRT TV (San Antonio)","x":-1903.6030111342984,"y":842.5653280038732,"z":175.8860222115315}},{"id":"4896","data":{"label":"WABM TV (San Antonio)","x":-515.7694063693416,"y":-4146.718917013323,"z":901.1493093565688}},{"id":"4899","data":{"label":"KOKH TV (Oklahoma City)","x":1265.4766901457951,"y":-4079.5989232317447,"z":228.330367137199}},{"id":"4900","data":{"label":"WXLV TV (Oklahoma City)","x":-1020.7032259145767,"y":-3710.9385908963677,"z":696.2054292535653}},{"id":"4904","data":{"label":"KFBT TV (Las Vegas)","x":-1240.0906862740267,"y":-3636.6864115531926,"z":864.8655811244879}},{"id":" WV)","data":{"label":"WVAH TV (Charleston","x":-2513.75436736518,"y":-2749.1903757205887,"z":198.60271995053802}},{"id":"4908","data":{"label":"WNYS TV (Syracuse)","x":3146.3864332066305,"y":-2802.9820802065774,"z":866.3109775926446}},{"id":"4913","data":{"label":"WICS","x":-1568.6982479361473,"y":-995.4912186268566,"z":780.7098817097766}},{"id":"4916","data":{"label":"Paramount Communications","x":305.7020517109104,"y":-933.1289353974166,"z":258.6254292098127}},{"id":"4917","data":{"label":"Jacor Communications","x":-467.36422955803437,"y":-2188.175259595021,"z":97.47953578691137}},{"id":"8226","data":{"label":"Galaxy Engineering Services","x":-1037.5577005748942,"y":-2183.850354493653,"z":278.2914778201531}},{"id":"4919","data":{"label":"Warner Communications","x":-1667.2348585225814,"y":548.868825752178,"z":712.6169100599151}},{"id":"4920","data":{"label":"Turner Broadcasting","x":1560.2026991871826,"y":-1681.9817040429089,"z":880.2601173680478}},{"id":"4921","data":{"label":"DirecTV","x":-492.6431410731925,"y":-3988.3342336033875,"z":877.5193354004302}},{"id":"4922","data":{"label":"CBS","x":775.7566990676719,"y":-1216.1919584929883,"z":450.1069126555806}},{"id":"4923","data":{"label":"Evite","x":1953.2175844901103,"y":-1662.030260979569,"z":883.0398849995669}},{"id":"4924","data":{"label":"Nynex","x":266.0683526063931,"y":-1279.703336451421,"z":614.9542152955438}},{"id":"4925","data":{"label":"Bell Atlantic","x":3597.5182278492593,"y":-2993.5814337153392,"z":797.4002762451078}},{"id":"4926","data":{"label":"BellSouth","x":2466.705607405843,"y":-2197.1077137263705,"z":543.3696333013971}},{"id":"4927","data":{"label":"Ameritech","x":2075.330798862209,"y":-2131.1533313300383,"z":48.1822841932611}},{"id":"4928","data":{"label":"Southwestern Bell","x":3540.5505587301577,"y":175.7814186964979,"z":861.6100977484407}},{"id":"4929","data":{"label":"USWest","x":2369.317311492491,"y":2027.773752211142,"z":948.7472931625987}},{"id":"4930","data":{"label":"Pacific Telesis","x":1836.9990536905862,"y":-2171.2637194434633,"z":685.6897482542404}},{"id":"4931","data":{"label":"AT&T Business","x":4427.375794855983,"y":-1413.4605752764119,"z":58.58961660092255}},{"id":"4932","data":{"label":"AT&T Consumer","x":3845.725229154312,"y":-2317.7894347655,"z":780.4183246331164}},{"id":"4933","data":{"label":"NTT DoCoMo","x":83.11124152551656,"y":-2734.310125867423,"z":50.1883951647335}},{"id":"4934","data":{"label":"FirstCom","x":1113.6297558802717,"y":-1265.7736214592442,"z":36.764473875076085}},{"id":"4935","data":{"label":"Keytech","x":1079.3978987779933,"y":-1280.188582293129,"z":612.041783108963}},{"id":"4936","data":{"label":"Promon Tecnologia S.A.","x":-896.4501300628949,"y":-3845.56592914697,"z":917.0371885504134}},{"id":"4937","data":{"label":"Lenfest Communications","x":1016.1527478377025,"y":-1020.3168549617494,"z":610.4811328194803}},{"id":"4938","data":{"label":"ACC TelEnterprises","x":1207.3149048850191,"y":-1205.5320110161256,"z":261.70733033714646}},{"id":"4940","data":{"label":"Fox/Liberty Sports Networks","x":1009.5286265379359,"y":-731.1602220284949,"z":809.6162164371266}},{"id":"4941","data":{"label":"British Telecommunications plc (BT)","x":578.1547247641602,"y":-429.95298349157747,"z":361.55948843802577}},{"id":"4942","data":{"label":"UnitedGlobalCom","x":1139.3217263048664,"y":-1856.2161690734129,"z":790.2893245264178}},{"id":"4943","data":{"label":"TCI Cablevision","x":317.8003390946974,"y":-739.4594280189976,"z":692.5803607227152}},{"id":"4944","data":{"label":"TCG","x":1890.8595093250233,"y":-4398.634780980186,"z":326.32173997532044}},{"id":"2282","data":{"label":"DAP","x":4167.507174765401,"y":-494.3662334994624,"z":988.7998252610068}},{"id":"8188","data":{"label":"Issanni Communications","x":3808.1798654423073,"y":800.1297434856315,"z":442.06725038231355}},{"id":"8307","data":{"label":"Web 21","x":2712.622076614507,"y":88.44566935776129,"z":576.402798072718}},{"id":"8183","data":{"label":"Telstra Corp.","x":10.811807181255517,"y":1411.2130724877798,"z":913.9477067446427}},{"id":"8251","data":{"label":"Scripps Cable","x":707.044570506589,"y":-940.576365579489,"z":888.7949706976606}},{"id":"8308","data":{"label":"HealthAnswers","x":2767.378499863995,"y":73.98868764335839,"z":765.8182152022712}},{"id":"8184","data":{"label":"Trimble Navigation","x":4255.369257840863,"y":67.77767451780892,"z":293.61503416829396}},{"id":"8252","data":{"label":"Prime Communications","x":598.5992432123949,"y":-841.8530636025853,"z":843.8945222584124}},{"id":"8181","data":{"label":"Clayton Dubilier & Rice","x":3406.4518706777926,"y":755.2865042789144,"z":64.79340964351942}},{"id":"8179","data":{"label":"Boise Cascade","x":3577.7652605832045,"y":511.5201615805845,"z":876.8469285684807}},{"id":"8180","data":{"label":"ICO-Teledesic Global","x":3546.199955988517,"y":671.9982560362514,"z":311.81558931003207}},{"id":"8224","data":{"label":"RTS Wireless","x":-2243.916472820146,"y":-2162.8513409186653,"z":286.64635438303156}},{"id":"8175","data":{"label":"Pegaso PCS","x":-736.6608155245667,"y":-2443.8189988286667,"z":223.29416852755557}},{"id":"8177","data":{"label":"Investor group","x":2141.429618933491,"y":1267.9471104272816,"z":71.22986132946596}},{"id":"8225","data":{"label":"Cerulean","x":136.34413933689575,"y":-2437.241650828447,"z":523.5030264913007}},{"id":"8305","data":{"label":"Telenetworks","x":1656.9201091463956,"y":-1071.5991623978134,"z":5.088756540093664}},{"id":"8233","data":{"label":"Yago","x":3302.3816320481274,"y":-1778.1211930481177,"z":409.2676562953843}},{"id":"8232","data":{"label":"NetVantage","x":3181.132483161754,"y":-1901.1151439260452,"z":438.11310530991034}},{"id":"8171","data":{"label":"Sierra Atlantic","x":-2225.850933373117,"y":-493.38536555933024,"z":895.1849927092785}},{"id":"8172","data":{"label":"New Enterprise Associates","x":-2202.9858979044493,"y":-323.1828884521301,"z":482.9772630015914}},{"id":"8169","data":{"label":"Datum Telegraphic","x":1872.6153341906029,"y":-2716.4526814663536,"z":992.7109930080442}},{"id":"8170","data":{"label":"General Electric Equity","x":-2227.1015455079314,"y":-657.5849573450887,"z":19.973576350060362}},{"id":"8166","data":{"label":"Enliven","x":3434.826117720133,"y":37.31173785154624,"z":383.9131116236516}},{"id":"8167","data":{"label":"Brown Simpson Strategic Growth Funds","x":-1181.8611647391833,"y":973.1112110882423,"z":335.4101416364292}},{"id":"8265","data":{"label":"TEA Group","x":1759.9947683965538,"y":-2508.707044991078,"z":203.29225232078252}},{"id":"8266","data":{"label":"Millennium Communications","x":2189.8220640693216,"y":-4127.867877043396,"z":410.0252432415101}},{"id":"8160","data":{"label":"Rackspace Managed Hosting","x":-1826.4152758749867,"y":-1788.7036592354534,"z":978.563505455108}},{"id":"8165","data":{"label":"Sage Hill Partners","x":3445.4127080638264,"y":191.9419515327172,"z":116.51224626938905}},{"id":"8164","data":{"label":"GATX Capital","x":2564.8232592330032,"y":4.119208248059294,"z":260.97162329806656}},{"id":"8317","data":{"label":"Hypermart","x":2714.636890656315,"y":63.49185985116037,"z":525.2201377448562}},{"id":"8229","data":{"label":"APM","x":-1219.7511766840205,"y":-2252.499123213793,"z":435.252150446273}},{"id":"8162","data":{"label":"Sequioa Capital","x":-1942.421190287655,"y":-1678.5120106704944,"z":641.2446858313737}},{"id":"8158","data":{"label":"Oak Investment Partners","x":3047.6551201080383,"y":-2151.835723194119,"z":379.7201711877354}},{"id":"8159","data":{"label":"Norwest Venture Partners","x":-1827.9208669687557,"y":-1629.1169659524467,"z":884.3193238124702}},{"id":"8228","data":{"label":"Executive Branch Webcasting","x":-1394.3040594914255,"y":-2606.26428570556,"z":924.3014379332118}},{"id":"8155","data":{"label":"PSINet Ventures","x":1424.593668306621,"y":1523.303661300556,"z":611.1858573484521}},{"id":"8156","data":{"label":"WorldByNET.com","x":476.9643210593795,"y":-2564.2343434989234,"z":62.279879624862474}},{"id":"8154","data":{"label":"Streampipe.com","x":1571.079229137802,"y":1431.6149505606936,"z":56.82654541187393}},{"id":"8325","data":{"label":"Harcourt Brace","x":3492.3376764715986,"y":-1751.4050342741293,"z":367.61073740127694}},{"id":"8152","data":{"label":"Bekkoame Internet","x":-63.34975533403485,"y":2139.350237215187,"z":80.0458513737774}},{"id":"8326","data":{"label":"GartnerLearning","x":3641.430285370584,"y":-1819.9216228202413,"z":555.8795650293044}},{"id":"8250","data":{"label":"Maclean Hunter","x":662.827768688463,"y":-674.1673348256782,"z":916.7862462367171}},{"id":"8295","data":{"label":"WALC-AM","x":1591.8894847511965,"y":-4159.968889042922,"z":378.7938375099822}},{"id":"8149","data":{"label":"PNV.net","x":813.3027221163402,"y":2284.0200334880274,"z":248.1723678108574}},{"id":"8333","data":{"label":"Union-Street.com","x":3041.7614142314324,"y":131.3177644772495,"z":234.03356088223637}},{"id":"8267","data":{"label":"Crown Communication","x":1989.2056083092284,"y":-2614.835218806238,"z":654.7627622032787}},{"id":"8263","data":{"label":"Ascent","x":938.9196985947269,"y":-1681.095131472869,"z":282.5172935342011}},{"id":"8264","data":{"label":"Crown Castle UK Holdings","x":1801.7164638656604,"y":-2682.631568765444,"z":969.0377823411483}},{"id":"8144","data":{"label":"Jenzabar.com","x":-1476.9540758515927,"y":-2101.455001733509,"z":693.104625298983}},{"id":"8145","data":{"label":"Pegasus Capital Advisors L.P.","x":-1460.9695609554205,"y":-2262.2088901178017,"z":795.3582419453348}},{"id":"8143","data":{"label":"Omnicom Group","x":-1522.5539219040593,"y":-1946.0867074673006,"z":303.558494557195}},{"id":"8321","data":{"label":"First American Media","x":24.564366977409918,"y":-3744.314878387213,"z":949.9934264897298}},{"id":"8320","data":{"label":"TeleRoss","x":1635.0048360194078,"y":-3935.435413501804,"z":97.43948581549012}},{"id":"8140","data":{"label":"Orckit Communications","x":-1776.9820362263044,"y":-2582.7822898550244,"z":297.078926025556}},{"id":"8141","data":{"label":"United States Israel Science and Technology Foundation","x":-1696.259321189574,"y":-2479.4781174046775,"z":681.3160155834737}},{"id":"8319","data":{"label":"USAOnline","x":2840.6414077472546,"y":-198.5716751074151,"z":729.0349420029333}},{"id":"8138","data":{"label":"United States-Israel Science and Technology Foundation","x":-1884.0442172168423,"y":-2474.623209626956,"z":588.0413661968336}},{"id":"8268","data":{"label":"CCUK","x":1733.0073483687565,"y":-2390.311990937449,"z":845.9876723233776}},{"id":"8136","data":{"label":"individual investors","x":-728.2625530968962,"y":-2275.486128603174,"z":17.29599128680981}},{"id":"8135","data":{"label":"News Corp.","x":429.80812746490346,"y":-2833.9985851647234,"z":528.8697907731978}},{"id":"8272","data":{"label":"FMAS","x":-1181.101747824116,"y":768.4231558029433,"z":797.215140947707}},{"id":"8271","data":{"label":"Concept Development","x":881.0269972412752,"y":-3999.0870474569397,"z":8.564744732447505}},{"id":"8132","data":{"label":"Blue Pumpkin Software","x":3901.0245889669113,"y":486.4028383695677,"z":424.99382929784946}},{"id":"8239","data":{"label":"MSG Network","x":2747.0300096158016,"y":-4019.698337931138,"z":545.4194421718446}},{"id":"8227","data":{"label":"AMFM","x":-825.9363409349767,"y":-2125.215122960545,"z":247.33887251401154}},{"id":"8276","data":{"label":"Slager Radio","x":-2303.41041659894,"y":-1356.4803743548696,"z":468.58939668915076}},{"id":"8128","data":{"label":"Netia Holdings SA","x":2919.819139907524,"y":-3724.427601049615,"z":256.21796082717486}},{"id":"8273","data":{"label":"Transition Systems","x":886.6609660491763,"y":-303.1605074925319,"z":197.91949018003208}},{"id":"8274","data":{"label":"SDK Medical Computer Services","x":950.4996376454733,"y":-655.7373804633762,"z":255.1750179523389}},{"id":"8302","data":{"label":"Customer Analytics","x":1035.7989453108776,"y":-3845.889088452427,"z":261.6384257625688}},{"id":"8303","data":{"label":"FirstMark","x":860.2474966627778,"y":-1997.577532963197,"z":463.33318446087304}},{"id":"8126","data":{"label":"AcNet SA de CV of Mexico","x":3342.0904372625146,"y":-741.7284019460576,"z":809.2049338441378}},{"id":"8125","data":{"label":"Murdock Communications","x":-383.06411626708723,"y":2157.2521698880146,"z":72.87009576029834}},{"id":"8124","data":{"label":"Openia","x":1038.4193737659543,"y":-4213.686800934522,"z":738.3186074685897}},{"id":"8122","data":{"label":"Return.com","x":873.3763484742117,"y":2212.3389331112758,"z":882.8609351304873}},{"id":"8123","data":{"label":"Marconi plc","x":685.6327274868322,"y":-4242.349457492047,"z":14.891906085760409}},{"id":"8285","data":{"label":"Network Indiana","x":-2354.4950098911468,"y":-1232.4000031887808,"z":576.5260990512937}},{"id":"8121","data":{"label":"Mail Boxes Etc.","x":718.6056049560939,"y":2188.6746604608607,"z":844.0763094948292}},{"id":"8118","data":{"label":"OutlookSoft","x":1362.206828757051,"y":-3768.3334039026286,"z":702.2254431057777}},{"id":"8119","data":{"label":"Kensington International Holding","x":-275.6732309071458,"y":-3572.1592902388056,"z":268.49784675160726}},{"id":"8117","data":{"label":"GE Equity","x":1502.713274349394,"y":-3680.478195698845,"z":671.7700196898642}},{"id":"8116","data":{"label":"eritmo.com","x":295.12324515116006,"y":-4206.907483860586,"z":395.61683405561945}},{"id":"8115","data":{"label":"Merrill Lynch Global Emerging Markets Partners LP","x":1616.3980606707864,"y":1248.57431962207,"z":896.8410692927813}},{"id":"8278","data":{"label":"Votionis","x":1694.2214278351257,"y":-2546.484477368734,"z":36.195461442034116}},{"id":"8282","data":{"label":"AgriAmerica","x":52.79901383320521,"y":-4401.920292287816,"z":256.1897846292882}},{"id":"8279","data":{"label":"Wabash","x":1696.4129841387776,"y":-2985.087907363426,"z":243.66122050751105}},{"id":"8283","data":{"label":"WKCF-TV","x":2242.8206515172624,"y":1901.9622511165453,"z":102.87337267235253}},{"id":"8255","data":{"label":"Jones Interacble","x":1078.629922805143,"y":-4377.623664873682,"z":872.4397399589334}},{"id":"8111","data":{"label":"Telespree Communications","x":2044.3082666039654,"y":-2882.2561179536206,"z":424.95950021767356}},{"id":"8110","data":{"label":"Lucent Venture Partners","x":2112.6460996167507,"y":-3020.6962173940474,"z":236.78690895821154}},{"id":"8109","data":{"label":"Consystant","x":1983.4140871531454,"y":-3026.6910961294457,"z":222.88935322167958}},{"id":"8108","data":{"label":"Intel Communications Fund","x":2055.8769345072433,"y":-3181.597879794542,"z":800.2089007262085}},{"id":"8286","data":{"label":"SF Multistations","x":1719.2388492994223,"y":-2761.6631528282273,"z":779.7447677150726}},{"id":"8107","data":{"label":"Siros Technology","x":-540.324686840946,"y":-3356.0369224228716,"z":639.8565361933008}},{"id":"8106","data":{"label":"EMC Corp-Lucent","x":3674.501219854319,"y":-1499.4323084723756,"z":53.000022543783665}},{"id":"8105","data":{"label":"Virtual Media Technologies","x":-1345.7861005393465,"y":-3038.5769476332093,"z":917.1367010965535}},{"id":"8103","data":{"label":"I/O Magic","x":-63.22930665972535,"y":-4034.277047613075,"z":924.7164781597507}},{"id":"8323","data":{"label":"GulfLink Communications","x":-187.1360224517548,"y":-3504.4813370076668,"z":232.49605203386548}},{"id":"8245","data":{"label":"Central NY News","x":1785.0847214255045,"y":-4102.224458027996,"z":257.3041426369458}},{"id":"8099","data":{"label":"Novo Media Group","x":-2113.723122853553,"y":-228.4058652280164,"z":285.7169152683812}},{"id":" Kansas","data":{"label":"KSNW-TV (NBC) in Wichita","x":-507.34068456213845,"y":-3577.860722827679,"z":615.4610614554346}},{"id":"8098","data":{"label":"Freei.Net","x":-1472.3793446284321,"y":369.0236211373658,"z":213.81984748389704}},{"id":"8281","data":{"label":"WQCD-FM","x":3940.6587235562383,"y":-2780.1241101232513,"z":483.93712230818295}},{"id":"8097","data":{"label":"American Express AXP Strategy Aggressive Fund","x":-1360.5223743568513,"y":479.3763279130035,"z":483.537580160492}},{"id":"8096","data":{"label":"Spaceway","x":2750.546165805459,"y":-2353.1509281723347,"z":871.0207784631938}},{"id":"8094","data":{"label":"StockPower","x":-1657.0341013194661,"y":-2419.108693860728,"z":756.9727175769975}},{"id":"8092","data":{"label":"Harris Venture Partners","x":1061.8550662255138,"y":1553.7305008328603,"z":264.0694811302664}},{"id":"8091","data":{"label":"ResQNet.com","x":1209.6840894372754,"y":1594.9285258649725,"z":28.963508653065517}},{"id":"8090","data":{"label":"Capital Consultants","x":1215.5730377712198,"y":1428.0427059838348,"z":522.5307712138898}},{"id":"8089","data":{"label":"Harris Black International","x":-1887.9794608608267,"y":-1737.333473618778,"z":149.17855338324105}},{"id":"8284","data":{"label":"Mediatex Communications","x":1709.5005769710315,"y":-2945.692256133786,"z":806.897095121914}},{"id":"8087","data":{"label":"DirecTV Latin America","x":-1833.0574837074084,"y":-978.4517326614359,"z":391.7524278691178}},{"id":"8086","data":{"label":"Grupo Clarin","x":-1806.692967591448,"y":-1117.257111897491,"z":612.0450750304716}},{"id":"8085","data":{"label":"GoAmerica Communiactions","x":3333.467701260557,"y":-3296.954045411554,"z":309.8407647173238}},{"id":"8084","data":{"label":"CIBC Capital Partners","x":-1576.3727369752564,"y":193.95615344118778,"z":502.7693897906309}},{"id":"8080","data":{"label":"GigaMedia","x":-1395.4705203000765,"y":-3043.447625019122,"z":355.5908896607973}},{"id":"8083","data":{"label":"Telecom Italia Mobile SpA","x":3200.0316838954386,"y":-3659.7963235904663,"z":718.749096738766}},{"id":"8081","data":{"label":"Gamania Digital Entertainment","x":-1282.3780219973041,"y":-3156.9507181070207,"z":32.06752462225215}},{"id":"8082","data":{"label":"Knowledge Net Holdings","x":3064.416252918886,"y":500.036322670986,"z":260.59758546166046}},{"id":"8079","data":{"label":"Rhythms Net Connections","x":4567.609628850505,"y":-827.1790091002995,"z":359.96759992466764}},{"id":"8290","data":{"label":"Country Marketplace","x":1765.2554169708374,"y":-2622.1486182705735,"z":44.250021578851495}},{"id":"8291","data":{"label":"KZLA","x":2864.3914839157414,"y":-3772.4431251603414,"z":186.95193187353198}},{"id":"8076","data":{"label":"CGMI","x":3520.8934712973714,"y":-1165.9148968749537,"z":51.722307548194735}},{"id":"8075","data":{"label":"iParty","x":1664.7884167503407,"y":2059.6668641284214,"z":998.4347659497132}},{"id":" NM)","data":{"label":"KRQE-TV (Albuquerque","x":-1714.8261403524964,"y":676.3958796452571,"z":851.1983357832152}},{"id":"8070","data":{"label":"Freeserve plc","x":-1901.2402566971548,"y":-2702.8062427764617,"z":473.80785608062826}},{"id":"8071","data":{"label":"TelePost","x":1960.0762497938085,"y":-2845.0009870219737,"z":846.5644680463265}},{"id":"8072","data":{"label":"Freeserve","x":-375.2678908196667,"y":2022.0039076430076,"z":952.3648406565437}},{"id":"8262","data":{"label":"InaCom","x":2421.729044116424,"y":942.1172912824386,"z":385.87502098924097}},{"id":"8067","data":{"label":"Franklin Covey Co.","x":-852.8902217112777,"y":-3627.689250792597,"z":654.2495742800494}},{"id":"8299","data":{"label":"WTLC-FM and AM","x":-2148.2730444346553,"y":-1268.4520891967177,"z":925.5203201225181}},{"id":"8066","data":{"label":"Capital Investment Group","x":-749.7007263106011,"y":-3749.2645213595915,"z":42.845279629185605}},{"id":" AZ)","data":{"label":"KGUN-TV (Tucson","x":341.2035892897188,"y":-4473.165960075704,"z":775.439039153423}},{"id":"8065","data":{"label":"Global Network Services","x":-1687.8220034637877,"y":-1158.5852405849355,"z":20.617101900905823}},{"id":"8301","data":{"label":"Knowledge Stream Partners","x":1315.9012872041658,"y":-3956.1520870449,"z":150.00675881074676}},{"id":"8063","data":{"label":"Popwire","x":4492.444869329956,"y":-485.87370232128796,"z":901.2678589653141}},{"id":"8061","data":{"label":"Digital Entertainment Network","x":-1566.408763523939,"y":-2699.1212040161045,"z":49.15628409488826}},{"id":"8062","data":{"label":"Enron Broadcasting","x":-1448.0632662133064,"y":-2791.3285912784318,"z":291.60507048465155}},{"id":"8060","data":{"label":"Chase Capital Partners","x":-1419.2624669224585,"y":-2745.0017917626787,"z":42.40421061697419}},{"id":"8059","data":{"label":"Ision Internet","x":-2110.0145181699986,"y":-933.9589689910922,"z":670.432319800868}},{"id":"8058","data":{"label":"Energis plc","x":3659.345480460581,"y":-2979.7417286116383,"z":996.0066524807401}},{"id":"8275","data":{"label":"ALLTEL Healthcare Information Services","x":1671.3231875421498,"y":2175.4243716450083,"z":972.3319624057227}},{"id":"8287","data":{"label":"WXTM-FM","x":1465.7238711156433,"y":-2754.4329410080404,"z":239.26642318911195}},{"id":"8235","data":{"label":"Northcoast Communications","x":1694.6353111966237,"y":-95.66182550736085,"z":800.8484880813702}},{"id":"8055","data":{"label":"Kleiner Perkins","x":541.2510640005639,"y":-572.8741247591524,"z":205.78882327040992}},{"id":"8053","data":{"label":"HotOffice Technologies","x":961.0080491869207,"y":89.81095777868268,"z":444.0109170977018}},{"id":"8306","data":{"label":"DragonSurf.com","x":2443.00150189904,"y":1182.1943621166156,"z":342.8222028436503}},{"id":"8311","data":{"label":"Virtual Avenue","x":2896.751873152718,"y":-59.40243932683188,"z":632.746998020871}},{"id":"8049","data":{"label":"Sandler Capital Management","x":126.6388988785302,"y":571.9429287179319,"z":875.356326897689}},{"id":"8048","data":{"label":"Brightstreet","x":-3.8416131372378004,"y":479.3676340003185,"z":133.58871818867013}},{"id":"8047","data":{"label":"CNI Ventures","x":-181.59009576521566,"y":426.14553081831036,"z":410.59811935895584}},{"id":"8309","data":{"label":"Playsite","x":2899.8415706787955,"y":-92.42583757484681,"z":279.0082750199758}},{"id":"8044","data":{"label":"Internet Communications Technologies","x":-2033.1673830212571,"y":-1502.6600504080875,"z":841.0077063557791}},{"id":"8043","data":{"label":"Cox Technologies","x":-1935.5624460232093,"y":-1612.6833618855499,"z":204.35770062943348}},{"id":"8280","data":{"label":"Wabash Valley Broadcasting","x":-2449.534420445723,"y":-386.0441985687694,"z":361.1113724422541}},{"id":"8041","data":{"label":"ExciteAtHome","x":3835.8790858875955,"y":922.3995712241094,"z":566.2178959802428}},{"id":"8237","data":{"label":"SportsChannel Florida","x":1681.546781497298,"y":-56.90393090465113,"z":304.5750267241083}},{"id":"8039","data":{"label":"iBeam","x":-2020.7174003877822,"y":414.11198262823655,"z":347.4254039969609}},{"id":"8312","data":{"label":"Dogpile","x":2881.560446110024,"y":-170.56652830652274,"z":546.1743617677373}},{"id":"8313","data":{"label":"Haggle Online","x":2783.1159131269997,"y":57.901801592789525,"z":604.3867215552514}},{"id":"8221","data":{"label":"Inciscent","x":250.24411173324006,"y":-2739.783315757014,"z":45.695436583123914}},{"id":"8220","data":{"label":"Advance Telecom Holdings","x":1554.1288959152816,"y":-1160.3502183167825,"z":617.8969215353776}},{"id":"8314","data":{"label":"Free Yellow","x":2812.8126551567784,"y":-235.11058559334833,"z":783.4788994197514}},{"id":"8036","data":{"label":"Morgan Stanley Dean Witter Private Equity","x":-44.82129935869216,"y":-3684.560951029455,"z":690.9896015876456}},{"id":"8034","data":{"label":"Fleet Equity Partners","x":-125.19689999659568,"y":-3707.789580877502,"z":818.3166575830412}},{"id":"8315","data":{"label":"AskMe.com","x":2661.7063705108176,"y":42.25275544744727,"z":719.346505470908}},{"id":"8244","data":{"label":"Capital Ventures International","x":832.9374548774149,"y":-253.4140542637033,"z":614.9389688920588}},{"id":"8324","data":{"label":"WITN-TV","x":49.61661027253831,"y":-3519.002112473536,"z":420.43796876251525}},{"id":"8031","data":{"label":"DishnetDSL","x":1859.5734827596716,"y":297.38805928030615,"z":24.428718050329977}},{"id":"8028","data":{"label":"Rainbow Media","x":-1048.270130781602,"y":1742.1958416505568,"z":600.2068464990086}},{"id":"8222","data":{"label":"Riverbed","x":108.53446718036048,"y":-2621.1100087801783,"z":311.2149016457868}},{"id":"8223","data":{"label":"SunPro","x":305.0936507551969,"y":-2715.5466814508486,"z":723.9041847010661}},{"id":"8231","data":{"label":"Tradex Technologies","x":87.15387658009377,"y":173.01641455377103,"z":790.3676986456569}},{"id":"8230","data":{"label":"Digitivity","x":-1203.503728985649,"y":-2407.9526857851724,"z":839.1582797966095}},{"id":"8025","data":{"label":"Broadview Capital Partners","x":760.355744247674,"y":2082.962660494157,"z":465.81905136098476}},{"id":"8024","data":{"label":"Internet Group do Brasil","x":-1331.3163049461418,"y":-1992.129732822043,"z":855.2432633542926}},{"id":"8253","data":{"label":"Scripps Cable","x":1986.926431183104,"y":2179.264006605852,"z":707.4461098922367}},{"id":"8023","data":{"label":"Brasil Telecom Participacoes S.A.","x":-1460.3528587906249,"y":-1903.4617539491828,"z":766.1206330126638}},{"id":"8236","data":{"label":"News 12 Networks","x":1641.6946302943434,"y":14.756958924392165,"z":204.69656836494642}},{"id":"8020","data":{"label":"U.S. West","x":2697.829502314735,"y":-1873.1007035692928,"z":48.459528074389134}},{"id":"8019","data":{"label":"TDC A/S","x":1892.2518446142049,"y":2015.8497487329641,"z":460.5667953847068}},{"id":"8018","data":{"label":"Netverk","x":1916.262450291999,"y":1864.5634535998997,"z":768.1034492019503}},{"id":"8016","data":{"label":"MPACT Immedia","x":1774.659114961777,"y":-2416.611365735309,"z":19.23962946126845}},{"id":"8017","data":{"label":"Belgacom SA","x":2062.1850790793314,"y":1905.9963003955836,"z":409.4495366430335}},{"id":"8015","data":{"label":"BCE/Bell Canada","x":1896.34148917534,"y":-2279.4325404501287,"z":895.7769318601063}},{"id":"8014","data":{"label":"RedChip.com","x":-1632.85241067661,"y":-2042.5225639308437,"z":586.0905775521312}},{"id":"8277","data":{"label":"Cincinnati Magazine","x":1608.838272772532,"y":-2486.5516758170106,"z":777.0216118978066}},{"id":"8009","data":{"label":"Asia Online","x":3227.7836748452546,"y":-533.7163816261791,"z":971.0871765744876}},{"id":"8008","data":{"label":"Sonicbox","x":725.3858097119751,"y":1976.8474591348677,"z":355.7608599675457}},{"id":"8013","data":{"label":"Celestial Asia Securities Holdings On-Line","x":-1613.539626149751,"y":-2198.426880918159,"z":176.02843726204264}},{"id":"8011","data":{"label":"Citicorp Capital Asia","x":-165.81948943506404,"y":-3394.984680052351,"z":861.5724642644376}},{"id":"8010","data":{"label":"Utisan Melayu","x":3196.8858072341936,"y":-702.8497412485185,"z":91.64654042693199}},{"id":"8007","data":{"label":"Hambrecht & Quist Asia Pacific","x":577.5283994747824,"y":1931.5383818175433,"z":607.5915472708699}},{"id":"8327","data":{"label":"The Neiman Marcus Group","x":3407.8177328474394,"y":-1791.7785288509476,"z":58.76749938419002}},{"id":"8006","data":{"label":"JAFCO Co.","x":1785.1560198382622,"y":-3474.9405661474543,"z":208.15475368288094}},{"id":"8005","data":{"label":"Hypernix Technologies","x":1700.9135313464494,"y":-3599.2855614530718,"z":847.6329905618531}},{"id":"8328","data":{"label":"Risk Data","x":2480.759243603088,"y":1283.8151211880986,"z":129.32655805370484}},{"id":"8003","data":{"label":"Sorento","x":-1738.2997863535286,"y":-2435.8676347721616,"z":408.29593752934204}},{"id":"8330","data":{"label":"Quality Semiconductor","x":1401.8430067680802,"y":-1878.6964670692296,"z":982.0459722448549}},{"id":"8002","data":{"label":"SeatAdvisor.com","x":-1658.8182536457964,"y":-2303.3135170610185,"z":918.1855288028762}},{"id":"8331","data":{"label":"Giraudy SA","x":-482.57231195963595,"y":-1622.1985126063742,"z":876.3058112180208}},{"id":"8269","data":{"label":"Automata International","x":-1677.5857369241567,"y":335.40006101385734,"z":477.8246213847153}},{"id":"8332","data":{"label":"Waterman Broadcasting","x":-761.2071194827518,"y":-1921.3113774067788,"z":112.40190582105258}},{"id":"7998","data":{"label":"VManage","x":299.2782359223629,"y":-3713.5215139564684,"z":144.14754623794667}},{"id":"7997","data":{"label":"ADC Ventures","x":419.741433595073,"y":-3820.279998530202,"z":751.793977027833}},{"id":"7996","data":{"label":"Sonera","x":4026.515254591478,"y":740.583618415958,"z":905.4069534685782}},{"id":"7995","data":{"label":"Jazztel","x":-2015.3955134292414,"y":-2208.7766337577427,"z":700.3583409676623}},{"id":"7994","data":{"label":"EXCEL Communications","x":-2442.17644813903,"y":-786.4884123808915,"z":295.4151775376308}},{"id":"7993","data":{"label":"Teleglobe","x":3987.4785177051017,"y":-2474.405793828886,"z":129.43921693734774}},{"id":"7992","data":{"label":"Viatel","x":-1694.8262387907107,"y":-3093.3835293396583,"z":590.53206336028}},{"id":"7991","data":{"label":"ViaSat","x":-2103.322572175764,"y":-2099.308709167629,"z":96.07943081758341}},{"id":"7990","data":{"label":"United States Cellular","x":4056.766750252391,"y":480.697227723158,"z":463.7974468325334}},{"id":"7988","data":{"label":"SCC Communications","x":3516.3739804805846,"y":-2694.99657954364,"z":326.41854775256604}},{"id":"7989","data":{"label":"Telesoft","x":4134.538055864905,"y":-2297.2240587531865,"z":657.7007237142856}},{"id":"7987","data":{"label":"APT","x":3299.1380859578885,"y":1611.6726850480136,"z":993.2643200915452}},{"id":"7986","data":{"label":"RSL Communications Ltd","x":3548.8157702631097,"y":-2044.9013726398643,"z":417.9554269185981}},{"id":"7985","data":{"label":"P-Com","x":859.989589839256,"y":-3798.2311822032216,"z":394.2116425950375}},{"id":"7984","data":{"label":"Uniden","x":3387.0477627325054,"y":1431.1649411609196,"z":103.39106078752013}},{"id":"7983","data":{"label":"Carso Global Telecom","x":4466.523852721664,"y":-1522.4338706735816,"z":963.8475813595986}},{"id":"7982","data":{"label":"Telstra","x":-2151.5781050998758,"y":-194.1002239404943,"z":503.2114293924346}},{"id":"7981","data":{"label":"PLIANT SYSTEMS","x":1434.4744474762992,"y":2224.8074427500997,"z":653.029539273202}},{"id":"7980","data":{"label":"Nucentrix Broadband Networks","x":-784.5247889050279,"y":-3917.0030137232325,"z":561.2723419055781}},{"id":"7979","data":{"label":"Nextel International","x":387.7669899954826,"y":-4439.085615071412,"z":603.2933830029061}},{"id":"7978","data":{"label":"Metromedia Fiber Network I","x":1306.0066060253685,"y":2285.8970022876656,"z":50.57729462769189}},{"id":"7977","data":{"label":"OneTel","x":2051.366222885955,"y":2226.3621989636868,"z":542.3447025616224}},{"id":"7975","data":{"label":"Leap Wireless International","x":1613.8074655720393,"y":-4322.7562417458485,"z":618.2102078582618}},{"id":"7976","data":{"label":"Telex-Chile","x":260.99165166446346,"y":-4459.509887722845,"z":411.35114331399757}},{"id":"7974","data":{"label":"LCC International","x":3593.022168284747,"y":-3325.6949632426545,"z":559.0559803303679}},{"id":"7973","data":{"label":"International FiberCom","x":1363.1355777709487,"y":2233.3336894565837,"z":344.728439144834}},{"id":"7971","data":{"label":"HARRIS","x":-858.3770332923987,"y":-3681.8384796636556,"z":464.1552723712681}},{"id":"7972","data":{"label":"Hector Communications","x":3729.9172471195398,"y":-3092.610403168606,"z":458.4441612504537}},{"id":"7970","data":{"label":"GLOBAL TELESYSTEMS","x":456.3329965398625,"y":-3769.5025178538335,"z":91.66801952589765}},{"id":"7969","data":{"label":"ChoiceTel Communications","x":-2292.743854376594,"y":-2101.0013766123075,"z":430.6327160863188}},{"id":"7968","data":{"label":"D&E Communications","x":1665.8038082944904,"y":-4149.848064382248,"z":225.9406152252128}},{"id":"7967","data":{"label":"D E Communications","x":328.12975979303656,"y":-4354.440462091585,"z":503.77581599892653}},{"id":"7966","data":{"label":"Comtech Telecommunications","x":2534.1185404605058,"y":1180.914580073042,"z":796.66059595527}},{"id":"7965","data":{"label":"Classic Communications","x":866.4451786567925,"y":-4185.133359312711,"z":366.8784564240968}},{"id":"8318","data":{"label":"National Discount Brokers","x":2734.541069164772,"y":24.932876062849573,"z":5.697092885613264}},{"id":"7963","data":{"label":"Liberty Media International","x":3365.0911378727105,"y":-3555.4259106319637,"z":973.2839640781723}},{"id":"7962","data":{"label":"ANTEC","x":-1964.7374603345077,"y":400.8682171906012,"z":380.48799020847343}},{"id":"7960","data":{"label":"AMERICAN TOWER","x":1609.8442716853751,"y":1916.9444742670603,"z":840.9790168600526}},{"id":"7961","data":{"label":"Swisscom","x":-1582.1156857225742,"y":-3146.1565868115995,"z":507.00667123354657}},{"id":"7957","data":{"label":"eFrames.com","x":3949.7510770215304,"y":-2177.625953138413,"z":647.3462522135835}},{"id":"7955","data":{"label":"Roundview","x":557.0650343032585,"y":1976.834073067068,"z":198.98332213742043}},{"id":"7956","data":{"label":"Zing","x":3998.748375762434,"y":-2031.281825701395,"z":88.94950223799026}},{"id":"7954","data":{"label":"Zhone","x":394.0980012774776,"y":1972.6638106326118,"z":676.4531773986571}},{"id":"7953","data":{"label":"Arthas.com","x":2328.3754738703865,"y":-1081.6500769234494,"z":700.0451129262746}},{"id":"7951","data":{"label":"Selfware","x":-1512.907336080657,"y":-2855.73816702883,"z":229.7452859542688}},{"id":"7952","data":{"label":"Kimo","x":2068.6083598198256,"y":-1155.7432129656954,"z":849.7906105714748}},{"id":"7950","data":{"label":"Xybernaut","x":-1607.518690330669,"y":-2734.5124403698587,"z":198.18148850574468}},{"id":"7949","data":{"label":"Kinderhook Systems","x":692.6508954001401,"y":-3197.531887123496,"z":122.82835891208398}},{"id":"7948","data":{"label":"Team Integration","x":-1846.5905744223983,"y":286.6092981596357,"z":220.73925533891625}},{"id":"7947","data":{"label":"WRQ","x":-1748.55594472824,"y":405.9484035387177,"z":600.7954768108112}},{"id":"7946","data":{"label":"Ego Media","x":147.9073301846338,"y":2047.7718681132937,"z":940.4876611888074}},{"id":"7945","data":{"label":"HMG Worldwide","x":23.82129468406265,"y":1963.459340070105,"z":505.172837695246}},{"id":"7944","data":{"label":"Women.com Networks","x":3768.489713570343,"y":923.1380339863717,"z":189.8923223129507}},{"id":"7941","data":{"label":"Wire One","x":2468.6243688207815,"y":1986.419391300542,"z":102.65119910906795}},{"id":"7942","data":{"label":"GeoVideo","x":-1428.4936390373737,"y":248.96655248816842,"z":813.2280087815025}},{"id":"7938","data":{"label":"Bluefly","x":-943.5191667455224,"y":31.150928519701665,"z":751.0365295082102}},{"id":"7943","data":{"label":"ezSharing","x":-322.9501787256668,"y":-1574.395591464653,"z":549.6712461373565}},{"id":"7940","data":{"label":"Liquor.com","x":2468.128715371454,"y":965.4114664321987,"z":751.766747109744}},{"id":"7939","data":{"label":"Liquor by Wire","x":2307.128934192984,"y":998.5996735602403,"z":889.0891891787131}},{"id":"7934","data":{"label":"IAnalyst","x":-1358.8288789889616,"y":1003.0684166950005,"z":693.4012856404383}},{"id":"7937","data":{"label":"Soros Fund Management","x":-844.1463124315369,"y":-130.50387730285365,"z":568.2224945317731}},{"id":"7935","data":{"label":"Price Wireless","x":4012.1667354888186,"y":-1828.0847216252191,"z":559.2499598254337}},{"id":"7936","data":{"label":"Wireless One","x":1932.9290055169722,"y":744.1472692114212,"z":795.5893082393321}},{"id":"7933","data":{"label":"Track Data","x":-1438.6198507686386,"y":872.6369306049501,"z":927.8729749085799}},{"id":"7932","data":{"label":"Wink Communications","x":1452.3916175126333,"y":-739.6365061925544,"z":215.98161077447696}},{"id":"7931","data":{"label":"Equity Investment","x":-1952.7061240752812,"y":-1107.6029121680945,"z":472.57788582867977}},{"id":"7930","data":{"label":"E-Media","x":-2030.455809567486,"y":-979.7446909074738,"z":540.9358468799408}},{"id":"7929","data":{"label":"Funding","x":3511.571209763886,"y":-2849.2630838286327,"z":923.3746672437744}},{"id":"7928","data":{"label":"Andiamo","x":3373.0583764380253,"y":-2918.288714021164,"z":852.730957944331}},{"id":"7926","data":{"label":"Tianrong","x":3899.6808042984585,"y":-2002.962632013524,"z":580.3498787555492}},{"id":"7927","data":{"label":"A-web","x":3741.39371832287,"y":-1981.0763790007377,"z":642.3834463026212}},{"id":"7925","data":{"label":"Auclaud","x":2283.0862396369903,"y":-142.212520833471,"z":256.05338133456826}},{"id":"8257","data":{"label":"CenturyTel Alaska properties","x":247.54524346224116,"y":2370.6789643025804,"z":128.4334385399739}},{"id":"7924","data":{"label":"Artprice.com","x":-691.8390741877406,"y":-3710.0367168374705,"z":304.28638147750695}},{"id":"7923","data":{"label":"Europ@Web","x":-720.48196957457,"y":-3865.3414751574633,"z":21.975327582705706}},{"id":"7922","data":{"label":"Website Results","x":-518.7636642826074,"y":1423.2439403222443,"z":637.7113959837535}},{"id":"7921","data":{"label":"Webridge","x":1739.7848370760157,"y":-192.1189233563391,"z":774.9381514789391}},{"id":"7920","data":{"label":"Intelliframe","x":667.4614398645213,"y":1436.2246793357199,"z":155.43893115272445}},{"id":"7919","data":{"label":"Active Software","x":449.91804965466645,"y":1667.8249296068234,"z":846.8642502064719}},{"id":"7918","data":{"label":"WebMethods","x":3816.539830957231,"y":862.5075869775264,"z":481.9447418667855}},{"id":"7917","data":{"label":"ENVOY","x":1252.3499047987225,"y":-391.11743638127064,"z":306.4216290901485}},{"id":"7916","data":{"label":"Medical Manager","x":1406.422586040684,"y":-399.6812122829797,"z":813.7465590856827}},{"id":"7915","data":{"label":"OnHealth Network","x":1381.134199686031,"y":-378.93146047178925,"z":803.5394342525249}},{"id":"7914","data":{"label":"Direct Medical Knowledge","x":1188.813999120246,"y":-481.6618212578196,"z":401.31586573601896}},{"id":"7912","data":{"label":"WebGain","x":412.5065548625271,"y":-4170.731416408133,"z":515.3401088416672}},{"id":"7913","data":{"label":"Bloomsbury Software","x":272.84509117993593,"y":-4121.790598728914,"z":236.268740696002}},{"id":"7909","data":{"label":"Webb Interactive","x":-1845.7303112434874,"y":610.2650849631891,"z":586.2677290655571}},{"id":"7911","data":{"label":"WebEx Communications","x":3133.0648838643374,"y":453.64301406153754,"z":398.60210399481423}},{"id":"7910","data":{"label":"Update Systems","x":-1762.9327416123692,"y":736.3740561013692,"z":689.1391577455106}},{"id":"7908","data":{"label":"WorldAccess","x":-876.3634109949671,"y":-3573.7483508951664,"z":611.5527501960298}},{"id":"7907","data":{"label":"Indigo","x":1533.7389027380113,"y":70.89265629452439,"z":489.27752005062695}},{"id":"7905","data":{"label":"WatchGuard","x":3287.516187364441,"y":-2019.851299442852,"z":833.8836676973971}},{"id":"7906","data":{"label":"BeadleNet","x":3227.9917303034927,"y":-2164.6872257873542,"z":959.8465401231261}},{"id":"7904","data":{"label":"VSI Holdings","x":-1425.6818188680404,"y":967.8768191786958,"z":922.616577215074}},{"id":"7902","data":{"label":"50 Percent Interest in Internet Publisher Medical Media","x":-79.31875910940653,"y":1407.4288132868078,"z":458.83791753740155}},{"id":"7903","data":{"label":"SPX","x":-1567.9547727383908,"y":912.753804917018,"z":756.3302930656113}},{"id":"7901","data":{"label":"Startpagina","x":-166.5536960296995,"y":1660.1134964157436,"z":779.1278900623182}},{"id":"7900","data":{"label":"PWR","x":1219.9881670380373,"y":2047.6038664960197,"z":917.9850225600295}},{"id":"7899","data":{"label":"Versatile Optical Networks","x":-802.7512297215926,"y":-2701.1322653528637,"z":893.7628349816915}},{"id":"7898","data":{"label":"Orologic for $450 Million","x":-1007.7269650255034,"y":-2777.3339298017863,"z":499.8277948325558}},{"id":"7897","data":{"label":"Sitera","x":-803.2081223812884,"y":-3016.236397222937,"z":45.87800080473681}},{"id":"7896","data":{"label":"Vitesse Semiconductor","x":-870.3364854925844,"y":905.6357248250624,"z":979.8886247806349}},{"id":"7895","data":{"label":"eTesting Labs","x":-2209.3171283919164,"y":-1774.3563113037235,"z":456.2082913130021}},{"id":"7894","data":{"label":"Remaining 49 Percent of EDNet Subsidiary","x":257.15870701959784,"y":-3980.2611536032714,"z":922.5012521395097}},{"id":"7893","data":{"label":"CyberHomes","x":2956.822197860921,"y":937.7979098970372,"z":476.2351368733295}},{"id":"7892","data":{"label":"Agranat Systems","x":-1162.0091403260885,"y":-2469.2513558876517,"z":166.31886331029833}},{"id":"7891","data":{"label":"Virata","x":-1278.5585555797838,"y":-2360.102737976194,"z":80.46797284795204}},{"id":"7888","data":{"label":"MetaCreations","x":-1214.423879235324,"y":308.619665502315,"z":138.25060307528346}},{"id":"7890","data":{"label":"OnDisplay","x":1147.2693634670104,"y":-3626.5797273581575,"z":82.11077888112328}},{"id":"7889","data":{"label":"Canoma","x":-1281.6317000443546,"y":178.78381317943786,"z":284.7376458918922}},{"id":"7887","data":{"label":"NetCreate","x":1697.769057885559,"y":1740.1556833423492,"z":403.61121049971985}},{"id":"7886","data":{"label":"Vicinity","x":1528.1471891581823,"y":1726.3300372382473,"z":61.365500096492774}},{"id":"7885","data":{"label":"Vialog","x":-1461.8458427187045,"y":-2513.7788368929832,"z":20.150116553939725}},{"id":"7884","data":{"label":"Genesys SA","x":-1340.5756152702315,"y":-2599.0071262323263,"z":310.58815360229164}},{"id":"7883","data":{"label":"Two New Vertical Portals","x":337.7343171037933,"y":-60.120570728332495,"z":500.90179339354177}},{"id":"7882","data":{"label":"LabX.com","x":334.9149095377661,"y":-143.71301358995152,"z":717.9459894296376}},{"id":"7881","data":{"label":"CertiSource","x":509.96104318367634,"y":74.548067141719,"z":789.9291505028094}},{"id":"7880","data":{"label":"Cereus Technology Partners","x":-2019.9848772770474,"y":219.70744352156999,"z":542.653198864927}},{"id":"7879","data":{"label":"Eltrax","x":-1911.1233764157282,"y":331.1301881360632,"z":107.38245941832436}},{"id":"7878","data":{"label":"MessageClick","x":3093.9956628378477,"y":928.5034322746724,"z":8.728096106002337}},{"id":"7877","data":{"label":"Verso","x":-2406.604573393516,"y":-483.5081882929144,"z":721.542910655319}},{"id":"7875","data":{"label":"NuView","x":3738.8108642176803,"y":-1182.6089952025095,"z":182.71131268828444}},{"id":"7876","data":{"label":"Versata","x":-340.37543733140956,"y":-3857.4118319131458,"z":674.315122390021}},{"id":"7874","data":{"label":"Veritas Software","x":-948.2839470840445,"y":169.38555517811074,"z":848.9393419833314}},{"id":"7872","data":{"label":"GreatDomains.com","x":3388.798554743111,"y":612.0269250874135,"z":969.1785042374692}},{"id":"7873","data":{"label":"Network Solutions for $21 Billion","x":-1967.039185041458,"y":-2706.309279604156,"z":936.9979866733804}},{"id":"7871","data":{"label":"VeriSIgn","x":2661.56286013471,"y":1503.801827821967,"z":431.48296778723005}},{"id":"7870","data":{"label":"Thawte Consulting","x":3467.4637179584424,"y":720.9978940394549,"z":409.0429437892058}},{"id":"7869","data":{"label":"Signio","x":3467.3097980233633,"y":773.8985735641554,"z":113.7504707373893}},{"id":"7868","data":{"label":"NTT","x":-687.7743264740202,"y":-3536.454698460312,"z":148.08634680423128}},{"id":"7867","data":{"label":"Webcom","x":554.0141235458759,"y":-2770.6381139439964,"z":843.0544059452332}},{"id":"7866","data":{"label":"Digitalnation","x":339.75684601597504,"y":-2603.2897573349933,"z":856.1774683559946}},{"id":"7865","data":{"label":"Unnamed Private Telephony Carrier","x":955.0396444427715,"y":-4112.767940035919,"z":752.601003431496}},{"id":"7863","data":{"label":"IdentiKey","x":711.3743663558103,"y":-3678.5526509267047,"z":402.87762724431354}},{"id":"7862","data":{"label":"Vasco","x":566.2191863971075,"y":-3591.813436027179,"z":938.7543610554166}},{"id":"7860","data":{"label":"ValiCert","x":-1184.6917514135555,"y":-3538.489379071584,"z":33.152177486349686}},{"id":"7861","data":{"label":"Receipt.com","x":-1058.8651873238325,"y":-3613.399926469299,"z":305.66891582328213}},{"id":"7859","data":{"label":"ISOPIA","x":801.1282066107156,"y":-3644.3743880493366,"z":102.19745155569538}},{"id":"7858","data":{"label":"Automotive Information Center","x":-1842.9274624280617,"y":545.455019033714,"z":230.06599328889777}},{"id":"7857","data":{"label":"Corporate Intelligence","x":2788.4782132545606,"y":-2877.3043169309726,"z":334.4324181403726}},{"id":"7856","data":{"label":"Information Holdings","x":2914.1800722568532,"y":-2794.4178027190774,"z":329.6629465698679}},{"id":"7855","data":{"label":"CapRock","x":1614.4994349907402,"y":-3886.375134965516,"z":699.167454159046}},{"id":"7852","data":{"label":"Vicuna Industries","x":883.1135962446524,"y":1590.6948106510026,"z":520.8528506600962}},{"id":"7854","data":{"label":"McLeod USA","x":1520.112370042556,"y":-4003.671851102681,"z":722.7945991966556}},{"id":"7853","data":{"label":"Telesis USA","x":718.6974643964932,"y":1607.7414447912133,"z":335.9330192327479}},{"id":"7850","data":{"label":"Fair Auction","x":339.0570675813865,"y":2052.509072029453,"z":326.33778428871693}},{"id":"7851","data":{"label":"Uproar","x":1993.5052992479896,"y":217.14514627676,"z":151.45827861954865}},{"id":"7849","data":{"label":"IJNT.net","x":490.16483584334037,"y":2092.3151128313566,"z":13.31108350001009}},{"id":"7848","data":{"label":"Vericom","x":552.2313844473529,"y":-3874.66035794845,"z":50.73465840770663}},{"id":"7847","data":{"label":"BroadSoft","x":53.39128378854275,"y":-3587.308888671224,"z":796.3701208541847}},{"id":"7846","data":{"label":"Unisphere Networks","x":158.8153560618921,"y":-3686.336189355543,"z":217.4644398215235}},{"id":"7844","data":{"label":"Mindtronics","x":3642.5201863177062,"y":-3239.7822114185255,"z":257.31715451298334}},{"id":"7842","data":{"label":"VIA Wireless","x":1281.0128107196342,"y":-3727.8264585255033,"z":380.93889874513985}},{"id":"7845","data":{"label":"ClickSmart.com","x":3698.469264795076,"y":-3044.7844938221647,"z":622.5859817266446}},{"id":"7843","data":{"label":"Ubrandit","x":-1298.594224534781,"y":618.1447471478887,"z":41.71215942397954}},{"id":"7841","data":{"label":"Cole-Layer-Trumble","x":-2220.101569529527,"y":-215.32612651343788,"z":251.54588635163466}},{"id":"7839","data":{"label":"Total EMed","x":-1076.155678165204,"y":1462.660801345357,"z":775.8888660035279}},{"id":"7840","data":{"label":"Tyler Technologies","x":-2175.1346546883415,"y":-63.12745097460265,"z":890.5680650967664}},{"id":"7838","data":{"label":"MedicaLogic","x":-1211.9481042865682,"y":1394.4412248062708,"z":802.9699217652148}},{"id":"7837","data":{"label":"SkyMall","x":693.8207844646349,"y":-1463.0087548881584,"z":130.31221143154448}},{"id":"7836","data":{"label":"Vintel Communications","x":-2188.702703699712,"y":-897.375843587527,"z":942.6052708252653}},{"id":"7835","data":{"label":"FreeGate","x":-2253.8517619710174,"y":-1191.1324552191663,"z":95.07486690761735}},{"id":"7833","data":{"label":"Backus Turner","x":-2131.5828075575164,"y":-148.6767921731116,"z":556.4566954838275}},{"id":"7834","data":{"label":"Tut Systems","x":-2257.846149863608,"y":-1034.8685205273023,"z":910.6027480305019}},{"id":"7832","data":{"label":"E Com","x":-1728.0170497353743,"y":-1869.2846595895849,"z":604.8502911470779}},{"id":"7831","data":{"label":"TransWestern Publishing Company","x":4350.436004140018,"y":-1930.448474268374,"z":814.6752879338486}},{"id":"7830","data":{"label":"MessagingDirect","x":-876.2423820352187,"y":-3142.8621902670047,"z":344.1211070195287}},{"id":"7829","data":{"label":"Transaction Systems Architects","x":-720.7877285464856,"y":-3159.0508813203883,"z":865.880052203988}},{"id":"7828","data":{"label":"Transaction Network Services","x":746.4063953231021,"y":-2350.918261824303,"z":636.9335831774674}},{"id":"7826","data":{"label":"LineOne","x":2113.6335236393097,"y":-179.6763808525011,"z":590.2483359658979}},{"id":"7822","data":{"label":"Israel Security","x":2832.5208335678562,"y":-3717.502636843278,"z":815.9311883870292}},{"id":"7827","data":{"label":"Tomax","x":2850.4489481168002,"y":602.4280130377838,"z":108.0853176845793}},{"id":"7825","data":{"label":"Tiscali","x":3800.420635586426,"y":1041.2386748334384,"z":782.9025998499675}},{"id":"7824","data":{"label":"EPlay","x":-1634.3295744382215,"y":165.0399848518391,"z":689.5487770691038}},{"id":"7823","data":{"label":"E-Trade Group","x":-1523.4697295292858,"y":280.44805841951074,"z":970.417797811902}},{"id":"7821","data":{"label":"M-Systems","x":2967.647470327918,"y":-3651.5203322778607,"z":774.421996749258}},{"id":"7820","data":{"label":"Africana.com","x":1605.7606989858268,"y":-1085.3704392820305,"z":74.17835891929326}},{"id":"7819","data":{"label":"ReserveAmerica","x":1811.6774539533335,"y":-1411.352952421138,"z":835.7961183847428}},{"id":"7818","data":{"label":"Ticketweb","x":-1086.851165331755,"y":1597.1559031805173,"z":737.0594123575038}},{"id":"7817","data":{"label":"Ticketmaster-CitySearch","x":600.0163544392581,"y":2449.7920002750916,"z":334.1810986557905}},{"id":"7816","data":{"label":"Match.com","x":1628.1121794873352,"y":-1561.2764903359148,"z":398.1482446223983}},{"id":"7814","data":{"label":"TMCS","x":1703.626149561468,"y":-1534.5114341167027,"z":616.7862031220754}},{"id":"7815","data":{"label":"One & Only Network","x":1555.2766779472058,"y":-1646.131637448379,"z":297.2160224428324}},{"id":" ActiveUSA.com","data":{"label":"RaceGate.com","x":-304.6458739605823,"y":-4251.525763447111,"z":594.347392130006}},{"id":"7812","data":{"label":"TicketMaster Online","x":114.62607937890016,"y":-4257.248973762179,"z":361.7892901805591}},{"id":"7811","data":{"label":"Genetic Anomalies","x":1203.1928485679518,"y":2135.1580207459483,"z":827.5795091853828}},{"id":"7810","data":{"label":"THQ","x":1153.3867703076676,"y":2275.845325306256,"z":58.27027636578674}},{"id":"7807","data":{"label":"The Thomson","x":3914.515053537957,"y":-1152.413262022494,"z":355.2528059940039}},{"id":"7809","data":{"label":"Carlton Communications PLC","x":-1708.9101161652115,"y":-2008.3267001622494,"z":724.5145949472642}},{"id":"7808","data":{"label":"Wave Technologies International","x":3844.813965449379,"y":-1293.7748535887363,"z":745.7825380333496}},{"id":"7806","data":{"label":"BigFish Management","x":2089.3688039776825,"y":75.01016386551873,"z":97.84020419168881}},{"id":"7805","data":{"label":"Haaretz","x":2101.2014227930395,"y":44.45297038894478,"z":161.1442038110369}},{"id":"7804","data":{"label":"Voice FX","x":2523.8890840711156,"y":-3655.7348053148803,"z":637.2544259933346}},{"id":"7803","data":{"label":"Student Advantage","x":2391.612111368584,"y":-3573.2402614703824,"z":870.0676359569679}},{"id":"7802","data":{"label":"The Nets Best","x":-259.8385530156347,"y":1989.87670428598,"z":983.6570649915079}},{"id":"7801","data":{"label":"Valassis Communications","x":-131.37938564604337,"y":2058.8135103101195,"z":763.7560250762112}},{"id":"7799","data":{"label":"Fingerhut Companies","x":3338.4065044489535,"y":911.3862382057596,"z":279.59245432829596}},{"id":"7800","data":{"label":"Hand Technologies","x":3267.4398377311227,"y":-3173.282454983486,"z":513.0757127452705}},{"id":"7797","data":{"label":"1-800Birthday.com","x":3053.595593619162,"y":-3383.318865860647,"z":479.34541035956914}},{"id":"7798","data":{"label":"Federated Department Stores","x":3180.729951094492,"y":-3468.994145723619,"z":136.17871478055687}},{"id":"7796","data":{"label":"Fingerhut","x":3194.025319678093,"y":-3313.379203433012,"z":509.0620341856411}},{"id":"7794","data":{"label":"Interactive Flight Technologies","x":391.09483969446956,"y":1444.3762331048765,"z":612.9808707073046}},{"id":"7795","data":{"label":"TNCi","x":543.9144695898422,"y":1428.932662619567,"z":274.67481462493026}},{"id":"7793","data":{"label":"U.K. ISP","x":1764.904081348428,"y":-472.3871562165923,"z":741.2983660916643}},{"id":"7792","data":{"label":"Concentric","x":2922.3450890568092,"y":-3799.0030380547864,"z":478.1567463590661}},{"id":"7791","data":{"label":"Internet Profiles","x":2458.359079091517,"y":791.1825853255496,"z":210.19124350770736}},{"id":"7790","data":{"label":"Shopping.com","x":2710.212646437947,"y":917.0400031923309,"z":173.6712920591399}},{"id":"7789","data":{"label":"MrJet.com","x":3470.849289408314,"y":1044.951027060084,"z":770.2817751770417}},{"id":"7788","data":{"label":"Ebookers.com","x":3583.7427551037954,"y":941.3056824417945,"z":549.8048539827857}},{"id":"7787","data":{"label":"Global Investors Guide","x":3445.701277461012,"y":-3222.045966146474,"z":193.53574164147847}},{"id":"7786","data":{"label":"Ubrandit.com","x":3555.0540523661293,"y":-3111.737541863154,"z":416.0023737730627}},{"id":"7785","data":{"label":"Compaq Product Line","x":3744.766136958704,"y":228.33033504502055,"z":893.9855988878644}},{"id":"7784","data":{"label":"Smart Modular Technologies","x":3704.8462863603054,"y":383.83171947497794,"z":934.9517086441599}},{"id":"7783","data":{"label":"Vmailer.com","x":2328.4524863970646,"y":-3606.6354115138734,"z":103.33360076916432}},{"id":"7782","data":{"label":"Byron Preiss","x":2465.3297627037828,"y":-3671.947679523504,"z":473.5561069509189}},{"id":"7781","data":{"label":"Chello","x":-715.5225704039444,"y":1732.3335967636285,"z":413.65230580371247}},{"id":"7779","data":{"label":"LSC","x":510.617276588584,"y":-3435.3054696924187,"z":675.5290907760099}},{"id":"7780","data":{"label":"UPC Media","x":-752.1702863364299,"y":1584.4852340562957,"z":599.3390513545867}},{"id":"7778","data":{"label":"BroadBand Office","x":531.8865384472615,"y":-3411.3209054942254,"z":360.8618275618194}},{"id":"7777","data":{"label":"DealerKid","x":1441.247459129826,"y":-3891.85752854939,"z":521.4288534826214}},{"id":"7776","data":{"label":"Reynolds and Reynolds","x":1551.5462555129252,"y":-3775.9745088845216,"z":200.12914117052927}},{"id":"7775","data":{"label":"CarClub.com","x":-2014.0914573537248,"y":-1638.829200102125,"z":787.062346577418}},{"id":"7774","data":{"label":"Ford","x":-2121.7898103267044,"y":-1548.4894520757152,"z":881.2561164909172}},{"id":"7773","data":{"label":"Terremark","x":-1017.1113110508786,"y":-3055.4367410339028,"z":455.3778602082319}},{"id":"7770","data":{"label":"Terra Networks","x":2850.14055241413,"y":-1487.086884608941,"z":119.58283725304142}},{"id":"7772","data":{"label":"KB Technology Partners","x":-940.9564606691156,"y":-3191.9128335663327,"z":853.9863127081013}},{"id":"7771","data":{"label":"Chevere","x":3077.335296301082,"y":-1527.0423766150448,"z":31.6428950034775}},{"id":"7769","data":{"label":"Bumeran.com","x":4510.635683692346,"y":-586.2854452308184,"z":969.7314700012811}},{"id":"7768","data":{"label":"Terra Lycos","x":4397.831032760085,"y":-177.09938887173212,"z":492.0321170580233}},{"id":"7767","data":{"label":"DeRemate","x":-1222.3466175250132,"y":898.2100102936201,"z":464.7828281335962}},{"id":"7766","data":{"label":"Terra","x":-1146.9212967107296,"y":1034.3450345457595,"z":482.5864362121415}},{"id":"7765","data":{"label":"Columbus Group","x":943.453725877252,"y":-2571.1136373048303,"z":891.9317615862811}},{"id":"7764","data":{"label":"Daedalian eSolutions","x":976.5206883538985,"y":-2555.3848597043902,"z":570.3253810643004}},{"id":"7763","data":{"label":"Salix Technologies","x":-886.9752153528293,"y":-2532.2750623486777,"z":157.16139899264525}},{"id":"7762","data":{"label":"Executive Conference","x":776.4329183231143,"y":-1921.7365863299096,"z":583.3493691995806}},{"id":"7761","data":{"label":"InvesTools","x":3100.1606916278206,"y":-1959.2210569053987,"z":347.2243424297952}},{"id":"7760","data":{"label":"Trading Technologies","x":3144.875456642232,"y":-1857.4700995819503,"z":450.54241963050947}},{"id":"7759","data":{"label":"Continuus","x":-1887.3137037293964,"y":446.8209823175148,"z":731.7264754810134}},{"id":"7758","data":{"label":"Telelogic AB","x":-1767.6442747615363,"y":532.485722311978,"z":32.83092397610643}},{"id":"7757","data":{"label":"Telegroup","x":3418.459696762153,"y":-1375.9526222501813,"z":498.1351851900415}},{"id":"7756","data":{"label":"Applied Telecom","x":-1662.0941899126979,"y":-2193.160559847316,"z":327.60085363372383}},{"id":"7755","data":{"label":"Popwire for Entertainment Broadcasting","x":3487.6323542731916,"y":29.63502025973321,"z":37.00818360294722}},{"id":"7749","data":{"label":"EITele Ost","x":4183.862252065475,"y":-1667.7378639089143,"z":345.40569911831165}},{"id":"7754","data":{"label":"Magic Earth","x":2864.242608896516,"y":-2675.9206830076714,"z":18.182794422191286}},{"id":"7753","data":{"label":"Assets of Memory Card Technology","x":3366.8335578822725,"y":437.4577469320511,"z":936.6231798440315}},{"id":"7752","data":{"label":"Dataram","x":3274.1026156440166,"y":560.2972534165192,"z":437.97762482075655}},{"id":"7751","data":{"label":"Oakwood Technical Services for $2 Million","x":3368.8138836797734,"y":1144.015057731358,"z":962.1562257349683}},{"id":"7750","data":{"label":"UBICS","x":3244.0089529808383,"y":1246.142273702958,"z":93.71299374700337}},{"id":"7744","data":{"label":"T-NETIX","x":2723.3153221532575,"y":-3794.272966933996,"z":527.5203467930387}},{"id":"7746","data":{"label":"WorldPages.com","x":3780.840408970821,"y":692.1269184833,"z":902.114565496414}},{"id":"7748","data":{"label":"Tele Danmark","x":4188.440811876699,"y":-1510.9798998020983,"z":300.0661345040123}},{"id":"7745","data":{"label":"Cell Genesys","x":2581.056291857085,"y":-3864.8122062942934,"z":77.35141828880465}},{"id":"7743","data":{"label":"Sameday.com","x":3190.5234884327774,"y":206.90664193282464,"z":558.1700587508394}},{"id":"7742","data":{"label":"Ryder System","x":3261.050992349882,"y":75.08528787668547,"z":87.75884442438154}},{"id":"7741","data":{"label":"Sports Capital Partners","x":444.3308571724956,"y":2309.468131035582,"z":145.62043446548145}},{"id":"7740","data":{"label":"Calpers","x":585.6930633110969,"y":2384.0776733895636,"z":163.57566174745685}},{"id":"7738","data":{"label":"Fi System","x":4182.531355613637,"y":-6.506706716957524,"z":845.6315793376967}},{"id":"7737","data":{"label":"Objective Systems Integrators","x":-1013.9698725851565,"y":-2885.0328801496603,"z":942.0062306971699}},{"id":"7739","data":{"label":"Mediaitaly","x":4033.017782024608,"y":51.783765448909435,"z":163.94615203246033}},{"id":"7732","data":{"label":"Sycamore","x":1151.7596810007599,"y":-3812.8082463136125,"z":470.9071667493925}},{"id":"7736","data":{"label":"IMG","x":824.0999318446889,"y":1280.2542771325825,"z":937.8040588471395}},{"id":"7735","data":{"label":"Metier","x":505.754589785819,"y":1327.041495698175,"z":529.6924184205693}},{"id":"7734","data":{"label":"Syntel","x":667.6822864298215,"y":1351.1827771393546,"z":535.6832736446453}},{"id":"7733","data":{"label":"Sirocco","x":1313.9121272538941,"y":-3827.9669442853683,"z":870.3955190310297}},{"id":"7731","data":{"label":"Marketplace Systems","x":-547.8228969438665,"y":1859.3876053733966,"z":216.2600013767766}},{"id":"7730","data":{"label":"SVI","x":-680.334004188192,"y":1788.9650724737767,"z":396.51448096151887}},{"id":"7729","data":{"label":"Superior Consultant Holdings","x":1198.1326184526206,"y":-427.9465015354672,"z":690.7765725840947}},{"id":"7728","data":{"label":"InfraSearch","x":750.2961083454261,"y":-3449.6631182927604,"z":863.7076654938077}},{"id":"7727","data":{"label":"Ensemble Studios","x":1539.4203313223343,"y":-921.5912241317983,"z":938.6120576048016}},{"id":"7726","data":{"label":"Web Street","x":-1602.6149256096028,"y":-2090.054382999313,"z":105.62052873677752}},{"id":"7725","data":{"label":"E-Trade","x":-1603.4357111236159,"y":-1931.8829272022708,"z":480.2635394515549}},{"id":"7724","data":{"label":"17th Street Productions","x":-2243.3980225317578,"y":-312.9369871695708,"z":986.5709084345337}},{"id":"7721","data":{"label":"eLeaders","x":-1307.6740059751762,"y":-2884.478136251715,"z":235.6768521284949}},{"id":"7723","data":{"label":"ViaGrafix","x":-1354.1191170502116,"y":-3352.845886978429,"z":143.62965715953547}},{"id":"7722","data":{"label":"7th Street.com","x":-1271.111085358683,"y":-3476.949290635216,"z":556.1762558939294}},{"id":"7720","data":{"label":"Eons Ahead","x":-1012.5675684031894,"y":-2989.51198855545,"z":945.5441649370408}},{"id":"7719","data":{"label":"Strategic Innovations","x":2498.5718813590884,"y":906.0243121795629,"z":784.5673210538775}},{"id":"7718","data":{"label":"Meritage","x":2352.6194302582117,"y":973.8564197352625,"z":773.0444665947507}},{"id":"7717","data":{"label":"SigmaNet","x":2315.081563281178,"y":1285.6378897275408,"z":209.1576125022121}},{"id":"7716","data":{"label":"Startec Global","x":3682.508755893342,"y":-2370.1259103766643,"z":540.1758524347517}},{"id":"7715","data":{"label":"Adnet","x":2170.164737538993,"y":-1901.4935403924974,"z":244.6910745491113}},{"id":"7714","data":{"label":"Paisas","x":2151.910589865539,"y":-1806.3518512674918,"z":184.44581136902173}},{"id":"7713","data":{"label":"Ola Turista Guides","x":2158.0471045602144,"y":-1711.994132549371,"z":551.5710844775851}},{"id":"7711","data":{"label":"Premia","x":-993.278398915948,"y":553.0120589764729,"z":305.2111771650412}},{"id":"7710","data":{"label":"London Telecom","x":3493.0627610501906,"y":-1185.4409777702153,"z":691.0932604124554}},{"id":"7712","data":{"label":"Chilean Network","x":2160.320360344599,"y":-1742.845028847436,"z":356.8036135369057}},{"id":"7709","data":{"label":"Telephone Savings","x":3285.927694977936,"y":-1075.0074101408704,"z":724.2147116236364}},{"id":"8249","data":{"label":"CMG plc","x":881.8407933375279,"y":-233.1051728721568,"z":320.95166300277157}},{"id":" Strategy Plus","data":{"label":"Chips & Bits","x":3022.021125446153,"y":1664.8837317338393,"z":501.86627135186245}},{"id":"7706","data":{"label":"Theglobe.com","x":2114.1325150469447,"y":1085.9385827946617,"z":329.2478874791309}},{"id":"7705","data":{"label":"Register.com","x":916.3751410237724,"y":-4.5431759611055895,"z":544.8321667304161}},{"id":"7702","data":{"label":"WBS America Subsidiaries","x":-204.34175924745978,"y":-2599.3494924766314,"z":418.8316706775679}},{"id":"7704","data":{"label":"Media DVX","x":3202.5258254641576,"y":-910.2946025682627,"z":755.7839309919094}},{"id":"7703","data":{"label":"StarNet","x":3282.09211638542,"y":-778.976877355145,"z":744.5372440163856}},{"id":"7701","data":{"label":"Transworld","x":-210.85950809975657,"y":-2564.6787392734454,"z":117.51322539856402}},{"id":"7698","data":{"label":"MVP.com","x":3618.130248651528,"y":-3056.656023014232,"z":748.196139475557}},{"id":"7700","data":{"label":"The Sportsmans Guide","x":-2271.2586218217734,"y":-404.53821265314036,"z":316.5450024350205}},{"id":"7699","data":{"label":"SportsLine.com","x":3724.0064648905736,"y":-2948.6681184339113,"z":29.331315779766555}},{"id":"7697","data":{"label":"Fogdog","x":176.61744939307664,"y":-729.5133509400475,"z":297.4637871046415}},{"id":"7696","data":{"label":"Starport.com","x":1317.7927693808651,"y":-2977.0487994594887,"z":952.097620859329}},{"id":"7695","data":{"label":"Explorezone.com","x":1127.494049836063,"y":-2875.4299680488493,"z":806.5743976654454}},{"id":"7693","data":{"label":"CDnow","x":4531.493714887611,"y":-358.0709344407978,"z":932.9135208762898}},{"id":"7694","data":{"label":"Space.com","x":-514.5841987883441,"y":-3733.130350831356,"z":63.614391201293195}},{"id":"7691","data":{"label":"Phobos","x":3921.1430381023865,"y":-1950.3078094876123,"z":211.08171743150515}},{"id":"7692","data":{"label":"Ignyte Technology","x":3849.812794795821,"y":-1795.0221830798023,"z":943.4016755597941}},{"id":"7689","data":{"label":"Breeze Software","x":2510.2628559381074,"y":-554.7306882617868,"z":677.2231361058733}},{"id":"7690","data":{"label":"SonicWall","x":3770.7272924801036,"y":-1924.8168500004972,"z":970.0367024793652}},{"id":"7686","data":{"label":"Terabeam","x":2328.3386875619253,"y":-346.88929015445683,"z":709.3301865328306}},{"id":"7688","data":{"label":"Noah Software","x":887.4550476438071,"y":2056.78000469815,"z":249.75877357596676}},{"id":"7687","data":{"label":"Workscape","x":778.1404836050169,"y":2171.1113034963255,"z":572.2445361757462}},{"id":"7685","data":{"label":"Xpeed","x":2348.0396471115364,"y":-98.8005934225639,"z":903.6679616405125}},{"id":"7684","data":{"label":"Mentum","x":2416.2714840944664,"y":-189.07086488668756,"z":694.652887520828}},{"id":"7683","data":{"label":"i-Socket","x":-1284.0965881938491,"y":1159.2982493734335,"z":510.30323846701606}},{"id":"7682","data":{"label":"Cyberplex","x":-1422.267775340232,"y":1094.9548557753114,"z":144.3954815640436}},{"id":"7681","data":{"label":"Wireless Location Leader SnapTrack","x":383.0947476807705,"y":-3339.5689669549643,"z":969.4076024450886}},{"id":"7680","data":{"label":"Smart Technologies","x":166.87559460411194,"y":1734.8963075715092,"z":531.973401526588}},{"id":"7679","data":{"label":"I2 Technologies","x":318.47008932417566,"y":1748.837027525853,"z":498.71862663768354}},{"id":"7678","data":{"label":"SkyStream","x":1697.258863347486,"y":-247.62133728985646,"z":97.05387771021412}},{"id":"7677","data":{"label":"Ins-Site Insurance Solutions","x":2092.9361727433125,"y":1379.5489801159056,"z":982.1263086488532}},{"id":"7676","data":{"label":"ebix.com","x":2066.5386956687153,"y":1232.3146978307477,"z":774.2538626804765}},{"id":"7673","data":{"label":"GemLogic","x":2113.034237988406,"y":-3484.883264000782,"z":49.746536600761225}},{"id":"7675","data":{"label":"Wireless Division of Waptop Holding","x":2428.2133120440976,"y":-3525.3575561961975,"z":972.6191994055215}},{"id":"7674","data":{"label":"eObject","x":2330.8807141893667,"y":-3355.0679513876225,"z":639.8833205725842}},{"id":"7672","data":{"label":"SilverStream","x":2269.0346745760344,"y":-3494.8483741277787,"z":246.102498935739}},{"id":"7671","data":{"label":"Magnolia Broadband","x":1971.703154447724,"y":-130.044257210262,"z":848.4475938537663}},{"id":"7670","data":{"label":"BFound.com","x":-1173.2114619892304,"y":606.2942570035739,"z":539.5803954794309}},{"id":"7668","data":{"label":"e-Chem.com","x":3307.0920671852637,"y":-1699.268615010294,"z":188.39530793895577}},{"id":"7669","data":{"label":"SignalSoft","x":-1085.0485662011529,"y":732.183455086204,"z":265.2659388031033}},{"id":"7665","data":{"label":"Siemens AG","x":1327.0195045251148,"y":2184.40374170239,"z":17.196711017974486}},{"id":"7667","data":{"label":"Sierra Imaging","x":-1598.4186573231966,"y":-2499.954958915345,"z":15.9238891733533}},{"id":"7666","data":{"label":"Conexant","x":-1669.747547469575,"y":-2354.8701072444883,"z":113.53017268406806}},{"id":"7662","data":{"label":"Janna Systems","x":1076.594781059901,"y":-3701.637098485496,"z":466.03839765430786}},{"id":"7664","data":{"label":"Omnipoint Technologies","x":1495.068257769799,"y":1315.233205377397,"z":968.9534391863713}},{"id":"7663","data":{"label":"Opensite Technologies for $444 Million","x":1087.7151816218466,"y":-3810.9428410405053,"z":91.53850012132602}},{"id":"7661","data":{"label":"Siebel Systems","x":1213.116476840236,"y":-3722.650850057362,"z":968.9146389300272}},{"id":"7660","data":{"label":"Moffat Communications","x":2909.0996626737724,"y":-3918.0142767558427,"z":138.77687458316524}},{"id":"7659","data":{"label":"Shaw Communications","x":3001.530068283123,"y":-3800.8148790603345,"z":527.2856193777695}},{"id":"7658","data":{"label":"WizShop.com","x":-1343.5411774270165,"y":713.4959435655874,"z":431.5691939588231}},{"id":"7656","data":{"label":"WaresOnTheWeb","x":2007.687471948694,"y":1125.362323254004,"z":625.233087936663}},{"id":"7654","data":{"label":"Joseph E. Seagram & Sons","x":1908.4492579746884,"y":117.4324393091556,"z":933.4161432928761}},{"id":"7657","data":{"label":"Semotus Solutions","x":-1223.1514919099122,"y":813.3192906263221,"z":372.8244386335411}},{"id":"7655","data":{"label":"Mozart Systems","x":667.6766075316691,"y":-4051.384978854153,"z":215.12729236563445}},{"id":"7653","data":{"label":"Transparent Languages E-Translation Division","x":-1131.8408778793628,"y":568.3798313847601,"z":957.6639669443961}},{"id":"7652","data":{"label":"Queensgate Instruments","x":-1180.8329298014992,"y":255.58646494526147,"z":83.23572178310256}},{"id":"7651","data":{"label":"Dazzle Multimedia","x":2977.1409868188994,"y":-3373.7366779754234,"z":344.8226117209559}},{"id":"7650","data":{"label":"SCM","x":2865.8162004221913,"y":-3489.11741313588,"z":964.6773021624228}},{"id":"7649","data":{"label":"SonicBlue","x":-613.2240082730254,"y":-4074.558164978447,"z":425.0988673307807}},{"id":"7648","data":{"label":"Sensory Science","x":3013.5097208906973,"y":-2476.3002906293386,"z":570.1915080973088}},{"id":"7647","data":{"label":"High School Alumni.com","x":1600.68942420645,"y":-2272.137550560062,"z":601.6828302177395}},{"id":"7646","data":{"label":"Rao Consulting","x":2878.8395498691752,"y":1614.5075749056832,"z":705.8419880012996}},{"id":"7645","data":{"label":"Radiofone","x":1754.6696722195884,"y":-2004.8636174141034,"z":569.3469939092474}},{"id":"7644","data":{"label":"Reach Satellite Network","x":-774.7363146438975,"y":-1835.0164562625432,"z":709.6241195018373}},{"id":"7643","data":{"label":"Human Code","x":1677.1852629985588,"y":-3866.739631372642,"z":20.010010088569175}},{"id":"7642","data":{"label":"Adjacency","x":1393.8983392424489,"y":-3978.126797542093,"z":332.1453297259582}},{"id":"7641","data":{"label":"E-Lab","x":1587.2769491395966,"y":-3999.951845517494,"z":834.7557249377733}},{"id":"7640","data":{"label":"Internet Marketing Associates","x":4259.589179669228,"y":-1350.4764031961718,"z":845.7035237037345}},{"id":"7639","data":{"label":"Sapiens","x":4302.278757057829,"y":-1196.9020997143243,"z":893.431414627051}},{"id":"7638","data":{"label":"Saga Systems","x":2956.5104669377715,"y":-3272.498262724461,"z":401.70351922638713}},{"id":"7637","data":{"label":"Atarey Hasharon Chevra Lepituach Vehashkaot Benadlan","x":2391.0486796663845,"y":-171.5641364623625,"z":414.5649560983713}},{"id":"7636","data":{"label":"Centura Banks","x":2461.8554452149856,"y":1035.5207070515416,"z":942.2003020352532}},{"id":"7633","data":{"label":"Rodale","x":323.2351554689717,"y":-3480.011552001546,"z":851.4772965259218}},{"id":"7635","data":{"label":"Royal Bank of Canada","x":2353.3646917655324,"y":1137.7322123476633,"z":28.470657546999956}},{"id":"7634","data":{"label":"MotherNature.com","x":175.04749227880984,"y":-3470.5856494919035,"z":826.9258798149338}},{"id":"7628","data":{"label":"Wind River","x":3170.822224449059,"y":1557.806982392177,"z":713.0840283143043}},{"id":"7632","data":{"label":"Assets of BSDi for $50 Million","x":-1748.0562755843994,"y":-2216.299094570155,"z":507.79305620254166}},{"id":"7631","data":{"label":"AudeSi Technologies","x":-1692.4099174094044,"y":-2051.666617254643,"z":834.4044549913385}},{"id":"7630","data":{"label":"ICEsoft","x":-1869.3412092592462,"y":-1929.4274024167066,"z":125.7764642795598}},{"id":"7629","data":{"label":"RouterWare","x":-1949.0193175617173,"y":-2182.834709404293,"z":770.542167555274}},{"id":"7627","data":{"label":"HighTouch Technologies","x":2590.7252490456376,"y":1231.3177183353955,"z":323.8974472517484}},{"id":"7626","data":{"label":"WebCam Resource","x":1168.7590184326536,"y":2210.6178694347627,"z":364.3136969391445}},{"id":"7625","data":{"label":"Surveyor","x":1010.9380573774342,"y":2213.0909273389643,"z":201.34869037935664}},{"id":"7624","data":{"label":"Structural Dynamics","x":-848.1624260423955,"y":-3250.0007255971595,"z":906.5094622074635}},{"id":"7623","data":{"label":"Logos Research Systems","x":-1619.0216885081952,"y":327.8369530183536,"z":746.482538298553}},{"id":"7620","data":{"label":"Vizacom","x":1291.2299986875878,"y":1904.4138291753734,"z":777.3121082968635}},{"id":"7618","data":{"label":"Renaissance Worldwide","x":-1759.830300833703,"y":-1013.6045313748227,"z":609.7279665765063}},{"id":"7622","data":{"label":"WSRN","x":305.5512938533234,"y":1261.11058956534,"z":13.421815597191022}},{"id":"7621","data":{"label":"Renaissance","x":1309.6983063984344,"y":1741.2363159718407,"z":290.2149954815443}},{"id":"7619","data":{"label":"Arcadus","x":3976.2900337053497,"y":-2112.7502595975097,"z":941.2899882815886}},{"id":"7617","data":{"label":"ZEFER","x":-1741.058504592172,"y":-1157.7120493448842,"z":211.37923592920504}},{"id":"7616","data":{"label":"Deodis","x":2951.3786634291428,"y":-2588.210893399842,"z":973.9377795323023}},{"id":"7615","data":{"label":"Assets of Simmonds Capital","x":4411.088607145466,"y":-1358.2577177215694,"z":417.39924512107285}},{"id":"7614","data":{"label":"RELM Wireless","x":4403.605458337192,"y":-1213.0177095766999,"z":72.93695264325994}},{"id":"7613","data":{"label":"Abatis","x":2082.1792980002183,"y":-3913.5870292936693,"z":199.16430607009428}},{"id":"7612","data":{"label":"Renaissance Interactive","x":3832.2599576762404,"y":-2163.0058273308223,"z":567.3527351637433}},{"id":"7611","data":{"label":"Impressa","x":3785.7341403681785,"y":-2315.571624814204,"z":526.3320382210457}},{"id":"7610","data":{"label":"C2Net","x":-1794.9795812328694,"y":-1868.8941628039515,"z":38.25701693228423}},{"id":"7609","data":{"label":"Red Hat","x":-1700.1278426608883,"y":-1748.316253140576,"z":636.4872667583624}},{"id":"7608","data":{"label":"Aegisoft","x":531.1990588527224,"y":-2321.281349192608,"z":909.977348433936}},{"id":"7607","data":{"label":"Netzip","x":358.7433058149013,"y":-2286.0757151828293,"z":180.2998055583711}},{"id":"7606","data":{"label":"Xing","x":437.29270529386895,"y":-2322.052181912402,"z":165.2859358803833}},{"id":"7605","data":{"label":"RealNetworks","x":499.8342935138153,"y":-2160.5011636335944,"z":373.5540340880132}},{"id":"7604","data":{"label":"Catapulse","x":4157.354962068619,"y":-2166.6749142447325,"z":957.2405223673037}},{"id":"7603","data":{"label":"Rational Software","x":4042.9312665487296,"y":-2275.18000635975,"z":565.6194958731835}},{"id":"7602","data":{"label":"Xpit.com","x":736.4386601926508,"y":-4191.542600038878,"z":564.5354936215223}},{"id":"7601","data":{"label":"RateXchange","x":584.8405541055668,"y":-4221.735132477395,"z":205.1143892085032}},{"id":"7600","data":{"label":"NetAmerica.com","x":457.52248687494784,"y":-4307.652028570575,"z":2.9314331610148514}},{"id":"7599","data":{"label":"Xlibris","x":349.34217271654006,"y":1506.9705566889643,"z":854.0017525042234}},{"id":"7595","data":{"label":"MountainZone.com","x":1334.0457294244898,"y":-1863.80893474994,"z":21.499976455161995}},{"id":"7598","data":{"label":"Internet Ramp","x":-695.6695815721855,"y":-2335.121795045082,"z":507.8959898597284}},{"id":"7597","data":{"label":"OneMain","x":-918.5098957104774,"y":1742.7022904569658,"z":184.70092527549076}},{"id":"7596","data":{"label":"Imagine Radio","x":318.1730240265497,"y":-1268.9054518087005,"z":370.33616915136224}},{"id":"7594","data":{"label":"EquiSearch.com","x":2508.436226547892,"y":-1931.6256571584922,"z":117.40427442574286}},{"id":"7593","data":{"label":"Small Business ISP","x":2928.0406842546154,"y":604.2713600021598,"z":355.289352221827}},{"id":"7592","data":{"label":"Howard Press","x":-1280.83157406037,"y":1493.374268045367,"z":88.36595080548281}},{"id":"7591","data":{"label":"ImageX","x":3468.030534025458,"y":865.3456892375034,"z":760.834641138343}},{"id":"7590","data":{"label":"e-Mobile.com","x":3941.011346804169,"y":-1244.9102510071634,"z":545.4724281977909}},{"id":"7588","data":{"label":"Unibanco - Uniao de Bancos Brasileiros S.A.","x":-2071.9539493282946,"y":-2601.2418407373125,"z":887.2351247189866}},{"id":"7589","data":{"label":"Western Power & Equipment","x":3907.644477539826,"y":-1392.4285225723397,"z":263.2917370117536}},{"id":"7585","data":{"label":"Solution42","x":3141.181164780587,"y":504.1060813474187,"z":588.2562654176648}},{"id":"7587","data":{"label":"Tilden Park Software","x":407.08862044337,"y":2035.9303077513177,"z":491.76474291881567}},{"id":"7586","data":{"label":"Portera Systems","x":559.3556787400894,"y":2081.711629592778,"z":16.964070098831385}},{"id":"7584","data":{"label":"AANet.com for $900 Million","x":1799.8309491474693,"y":-2807.467953626128,"z":888.9438631638695}},{"id":"7583","data":{"label":"SwitchOn Networks","x":1601.9788337293812,"y":-2751.7430758496043,"z":393.34839743260505}},{"id":"7582","data":{"label":"Malleable Technologies","x":1745.5832452764253,"y":-2831.06618100738,"z":55.38875286241773}},{"id":"7581","data":{"label":"Sebring Networks","x":3141.3697906808848,"y":1196.4055027303475,"z":797.254043877587}},{"id":"7580","data":{"label":"PLX Technology","x":3260.1110937045532,"y":1098.6282931512878,"z":523.2042408423891}},{"id":"7579","data":{"label":"Plumtree Software","x":4191.961191121553,"y":-1337.185598167016,"z":655.3773797032447}},{"id":"7578","data":{"label":"The Procter & Gamble","x":4177.321003262934,"y":-1183.807221296081,"z":769.6945503615635}},{"id":"7577","data":{"label":"Circa Communications","x":-1069.1519654810481,"y":571.3312710458576,"z":876.6221191003274}},{"id":"7576","data":{"label":"Pen Interconnect","x":-1148.811792443168,"y":333.2881718196768,"z":918.6911351566212}},{"id":"7575","data":{"label":"Exactium","x":1458.162161550341,"y":1457.1491067280313,"z":591.379119144247}},{"id":"7574","data":{"label":"REpipeline.com","x":3274.9624424756876,"y":-121.94037194166958,"z":541.4805369609985}},{"id":"7572","data":{"label":"Persistence","x":-595.6526988750334,"y":-3949.9356971458883,"z":286.9553959736679}},{"id":"7573","data":{"label":"10BaseJ","x":3308.2615754155486,"y":-1102.804231377213,"z":559.2787623301818}},{"id":"7571","data":{"label":"Persistence Software","x":3435.7303363530536,"y":-1070.9253745662418,"z":630.7969573581995}},{"id":"7570","data":{"label":"Solutions Consulting","x":1359.3813222983945,"y":1612.6785963044877,"z":430.3349556820835}},{"id":"7569","data":{"label":"Perot Systems","x":1505.4579573085275,"y":1555.6964184641174,"z":451.79948069699446}},{"id":"7568","data":{"label":"Human Performance Technologies","x":-1310.9746551074704,"y":-2219.6459705544376,"z":720.2430543886209}},{"id":"7567","data":{"label":"Saba","x":3429.8498855606795,"y":-1233.923183119232,"z":854.9003680570723}},{"id":"7566","data":{"label":"Compete","x":-1458.855961177536,"y":-2434.89585775017,"z":888.652146687697}},{"id":"7565","data":{"label":"Loredata","x":-1360.6580569470782,"y":-2446.899876329242,"z":535.6567727951973}},{"id":"7564","data":{"label":"Perficient","x":-1388.060063052626,"y":-2298.5371888981454,"z":139.23207390141079}},{"id":"7563","data":{"label":"Harbinger","x":2704.95541061538,"y":-2786.6729961601413,"z":206.2001965489877}},{"id":"7561","data":{"label":"Peregrine","x":-1869.401259352145,"y":-2405.476508099142,"z":165.4908942012441}},{"id":"7562","data":{"label":"Prototype","x":2580.183096093874,"y":-2792.8205803367646,"z":886.9996059338374}},{"id":"7560","data":{"label":"Tech Conferences","x":2622.2652091772406,"y":667.7104941724901,"z":238.25084683198082}},{"id":"7559","data":{"label":"Streaming Media","x":2536.9666166777333,"y":971.9934483167181,"z":606.728585783638}},{"id":"7558","data":{"label":"Stardust.com","x":2426.8767429873988,"y":838.4536016935408,"z":474.6811232333894}},{"id":"7557","data":{"label":"Penton Media","x":-2402.491092942274,"y":-347.8429447360486,"z":824.0277991375118}},{"id":"7556","data":{"label":"HDE","x":3463.5681441839597,"y":-3322.3807513065403,"z":682.7086236778849}},{"id":"7555","data":{"label":"Peerless Systems","x":3545.626464792291,"y":-3195.236274907,"z":958.1431790691346}},{"id":"7554","data":{"label":"Family Education Network","x":-579.7535857364924,"y":-327.60812426048415,"z":103.83084467619864}},{"id":"7553","data":{"label":"Pearson","x":3555.2353733652926,"y":-147.91115051147608,"z":758.6715435105314}},{"id":"7552","data":{"label":"NovaNet","x":3900.617956510543,"y":-2332.276863384078,"z":520.8400925499603}},{"id":"7551","data":{"label":"NCS","x":4004.8535608943475,"y":-2224.629732697074,"z":452.2408492260233}},{"id":"7550","data":{"label":"Streamline Operations in Two Cities","x":1859.0063487915495,"y":-2512.7241867760954,"z":685.1460160506319}},{"id":"7548","data":{"label":"eGrocer.com","x":-1222.2061274618654,"y":1026.3304880855521,"z":138.43417159604132}},{"id":"7549","data":{"label":"Royal Ahold N.V.","x":1874.8187020014238,"y":-2475.4696239542745,"z":417.922127485145}},{"id":"7547","data":{"label":"Peachtree Network","x":-1087.4980829846759,"y":1114.7331544075078,"z":120.9228446104067}},{"id":"7546","data":{"label":"Voyager","x":3861.8029620981497,"y":1022.8120930096748,"z":487.4507229571168}},{"id":"7545","data":{"label":"PCtel","x":2217.7142455691064,"y":-14.620608878309213,"z":852.2580527078019}},{"id":"7544","data":{"label":"Baumgartner & Partner Personalberatung GmbH","x":3895.176106181427,"y":-1633.3999499762558,"z":613.1363185465113}},{"id":"7543","data":{"label":"Paragon Software and Asset Growth","x":1385.1992981354315,"y":-4040.459287145478,"z":989.9232069450165}},{"id":"7542","data":{"label":"DTN","x":1242.1644738543255,"y":-3961.386723682524,"z":791.5285431021646}},{"id":"7541","data":{"label":"Control Resources","x":-1880.7153120528164,"y":-2300.18143862469,"z":2.914931372441698}},{"id":"7540","data":{"label":"Paradyne","x":-1801.4817398896457,"y":-2432.7317883436353,"z":194.62585253506683}},{"id":"7539","data":{"label":"Pamet River","x":-765.5528503882097,"y":1374.7081556315352,"z":53.888468374320155}},{"id":"7538","data":{"label":"TeleTech","x":-856.4413422791895,"y":1492.51067526105,"z":713.063542996839}},{"id":"7537","data":{"label":"Actual Software","x":3906.7298824640866,"y":-2709.617741930296,"z":306.3986251082229}},{"id":"7535","data":{"label":"PaeTec","x":1358.9478839644344,"y":1700.8411503305751,"z":416.2934508226477}},{"id":"7536","data":{"label":"Pinnacle Software","x":1475.8773488818788,"y":1792.9343860120098,"z":850.274919200454}},{"id":"7533","data":{"label":"LVMH Mo�t Hennessy Louis Vuitton SA","x":2860.6367355045313,"y":-521.5544815167232,"z":225.08579988567857}},{"id":"7534","data":{"label":"IntelliPay","x":3395.3586218138225,"y":75.75714140521995,"z":913.6903331732989}},{"id":"7532","data":{"label":"Orca Systems","x":2509.4636099017116,"y":-3918.5703752646486,"z":793.9757235457363}},{"id":"7531","data":{"label":"Muscato and Translink","x":2493.1573319591735,"y":1879.2411098340062,"z":43.020625433350276}},{"id":"7530","data":{"label":"Optio Software","x":2634.5495628191584,"y":1815.7658240240207,"z":274.81669471418456}},{"id":"7529","data":{"label":"Avogadro","x":200.36168781527977,"y":-3713.2104529308426,"z":928.8917335561182}},{"id":"7528","data":{"label":"Openwave","x":4351.094469914971,"y":-1624.6917032586794,"z":773.4391007433414}},{"id":"7525","data":{"label":"atMotion","x":8.8010482121299,"y":-3589.2272080252224,"z":560.9937479432504}},{"id":"7527","data":{"label":"Onebox.box","x":-73.60647840136608,"y":-3736.0425714512735,"z":537.1195972508998}},{"id":"7526","data":{"label":"Software.com","x":16.91948746343951,"y":-3874.696360581695,"z":190.46487979300886}},{"id":"7524","data":{"label":"Phone.com","x":79.26336599779961,"y":-3728.502604885998,"z":349.1184562979761}},{"id":"7523","data":{"label":"Merlin Systems","x":1996.6752689252035,"y":-4203.856828918226,"z":794.6822209885496}},{"id":"7522","data":{"label":"Redback Networks","x":1976.8952164951725,"y":-4052.465000393323,"z":705.6498707000422}},{"id":"7519","data":{"label":"Blue Pumpkin","x":-760.6772924541001,"y":198.01612869721794,"z":617.4256661226353}},{"id":"7521","data":{"label":"Lara Networks","x":-878.2820002110357,"y":-2582.1583224720607,"z":74.87895782414378}},{"id":"7520","data":{"label":"Cypress","x":3022.0954033419594,"y":-3632.246561237646,"z":370.27154300907125}},{"id":"7518","data":{"label":"Slam Dunk Networks","x":3274.4114804058245,"y":903.3073852360485,"z":450.1956992925875}},{"id":"7516","data":{"label":"YouthStream","x":3676.1609076933146,"y":865.2652819766281,"z":271.1744796865632}},{"id":"7515","data":{"label":"Market Guide","x":1204.6048673213554,"y":-3834.6972547936775,"z":627.116511868909}},{"id":"7517","data":{"label":"Sixdegrees","x":3604.8261458539164,"y":1003.8701448164611,"z":54.032195454929436}},{"id":"7513","data":{"label":"Open Text","x":2601.610898130157,"y":-3108.664087111361,"z":976.0112831237682}},{"id":"7514","data":{"label":"Lava Systems","x":-1361.755973462586,"y":1389.5693477931472,"z":427.2133259032869}},{"id":"7512","data":{"label":"FutureTense","x":921.2867166715287,"y":-282.83334677537005,"z":234.48200919929118}},{"id":"7510","data":{"label":"Versametrix","x":3643.0354329376223,"y":-2690.652578315282,"z":982.7434619944781}},{"id":"7511","data":{"label":"RevenueLab","x":3453.845005371759,"y":-2879.9952646849697,"z":727.9356111749779}},{"id":"7509","data":{"label":"Onyx Software","x":3607.1766690293543,"y":-2845.3438652345176,"z":166.61482091066438}},{"id":"7508","data":{"label":"Onyx Internet","x":1398.3554011128663,"y":-4384.719784798785,"z":748.4365922418448}},{"id":"7507","data":{"label":"Pacific Gateway Exchange","x":1543.7440606394139,"y":-4423.596376892281,"z":875.1150915505748}},{"id":"7506","data":{"label":"Ya.com","x":2155.292178857,"y":2029.5000296751768,"z":312.27839758382015}},{"id":"7505","data":{"label":"T-Online","x":2311.304959772113,"y":1998.4277522319298,"z":16.725262508291205}},{"id":"7504","data":{"label":"Online Transaction Technologies","x":2916.8204761968364,"y":536.024579333247,"z":385.53263668109827}},{"id":"7503","data":{"label":"Vsource","x":2864.628047717044,"y":678.2897310925982,"z":293.533346556474}},{"id":"7502","data":{"label":"Physicians Online","x":-293.02008736550033,"y":-3621.8910171310426,"z":237.59699858141636}},{"id":"7500","data":{"label":"Etensity","x":-2163.0585745752705,"y":-1415.2877049805188,"z":961.7921718419246}},{"id":"7501","data":{"label":"OneSoft","x":-2172.7546427613015,"y":-1574.8093295414133,"z":826.5913843355315}},{"id":"7496","data":{"label":"On2.com","x":2703.0260733841988,"y":-3639.5647129443014,"z":763.9173149136276}},{"id":"7498","data":{"label":"EuropAtWeb","x":2129.6225616022957,"y":-120.99436537625206,"z":962.9074216545206}},{"id":"7499","data":{"label":"Accord Networks","x":-1057.8688624188396,"y":415.4965751211548,"z":466.9394803209896}},{"id":"7497","data":{"label":"MetaVisual","x":2613.419295921529,"y":-3526.57315868977,"z":760.5845051542368}},{"id":"7495","data":{"label":"Nomad IQ","x":223.40683038888483,"y":-2680.8342404769755,"z":432.2292635228784}},{"id":"7492","data":{"label":"1G Networks","x":168.59010046747198,"y":-3103.4301400150457,"z":417.8412886772851}},{"id":"7494","data":{"label":"SpeechFront for $10.5 Million","x":74.54370967315981,"y":1340.0347889992518,"z":600.3181477995496}},{"id":"7493","data":{"label":"Nuance","x":236.27932862395937,"y":1306.8657248838044,"z":6.330722374150666}},{"id":"7491","data":{"label":"Heart of Virginia","x":412.44533210792633,"y":-3940.572872710067,"z":998.0160478974514}},{"id":"7490","data":{"label":"CFW","x":551.3173618733736,"y":-4013.1607475798264,"z":653.6661804235338}},{"id":"7489","data":{"label":"WebProject","x":3629.261944070571,"y":-2255.592000039347,"z":562.0624831793741}},{"id":"7488","data":{"label":"Novient","x":3614.4224759106655,"y":-2415.0277446757,"z":508.0374082232324}},{"id":"7487","data":{"label":"Novetrix","x":-948.8888666736975,"y":1020.3702145510651,"z":701.6341381015772}},{"id":"7486","data":{"label":"JustOn","x":-728.9665016797703,"y":890.9300346332275,"z":939.5584767153855}},{"id":"7485","data":{"label":"PRSoft","x":-919.3325832895325,"y":956.3875754194114,"z":274.5461488669125}},{"id":"7484","data":{"label":"Food.com","x":-864.7583365795713,"y":1201.9589855509557,"z":556.626465493583}},{"id":"7482","data":{"label":"Clarify","x":-610.3602542038661,"y":445.9047684081288,"z":363.5529974236633}},{"id":"7483","data":{"label":"Photonic Technologies","x":-653.2860656603416,"y":442.01917180034707,"z":785.4330663041138}},{"id":"7481","data":{"label":"Promatory","x":-718.3253347705936,"y":387.7113008037586,"z":214.43076566957876}},{"id":"7480","data":{"label":"Epicon","x":-774.3151560111637,"y":281.0945168464823,"z":880.0634288879985}},{"id":"7479","data":{"label":"Universal Broadband Networks","x":-769.5052819924522,"y":236.96704663759738,"z":496.1415122606052}},{"id":"7478","data":{"label":"Shasta Networks","x":-527.8592841089435,"y":407.9358503050735,"z":910.2607328939081}},{"id":"7477","data":{"label":"Nortel","x":-77.76167372891541,"y":2066.7990377618435,"z":59.6138952667622}},{"id":"7476","data":{"label":"Periphonics","x":-632.1098969512705,"y":140.52883992246825,"z":73.03797684821988}},{"id":"7475","data":{"label":"Telekol","x":-652.4273144347417,"y":-3383.470996575843,"z":488.50004421205193}},{"id":"7474","data":{"label":"TeamWare Security Software Division","x":-437.9117326378537,"y":-3378.9879682249034,"z":670.7420069892818}},{"id":"7473","data":{"label":"NewMedia Spark","x":1532.1326238234988,"y":-2088.834313516958,"z":166.35370076555313}},{"id":"7472","data":{"label":"Mobilee","x":812.2936182498147,"y":1474.4397550021595,"z":722.4693567552023}},{"id":"7471","data":{"label":"Legal Anywhere","x":4460.062884625066,"y":-935.1566185699721,"z":577.4391897550726}},{"id":"7470","data":{"label":"Niku","x":4506.87469191964,"y":-786.2521780558045,"z":647.841639336838}},{"id":"7469","data":{"label":"Centerpoint Solutions","x":714.4735004021777,"y":1848.099731459295,"z":481.24293108658844}},{"id":"7468","data":{"label":"Nice","x":615.120514708402,"y":1729.2787789411113,"z":821.3347255530077}},{"id":"7467","data":{"label":"Music of the World","x":2154.4039290451756,"y":1129.395277159976,"z":588.3454382089357}},{"id":"7466","data":{"label":"EMusic.com","x":2111.421433132108,"y":963.4365663978915,"z":387.8768866797229}},{"id":"7465","data":{"label":"Signal9 Solutions","x":3779.1012202015118,"y":-2195.5960650579595,"z":595.4505716092633}},{"id":"7464","data":{"label":"McAfee.com","x":3822.318606306386,"y":-2052.5908705912016,"z":491.91445428540817}},{"id":"7463","data":{"label":"Williams Communications","x":882.1567947419885,"y":-2558.280211248593,"z":910.2940617741741}},{"id":"7462","data":{"label":"Telus","x":4064.136342095253,"y":-2658.0301092313634,"z":533.0551995741031}},{"id":"7461","data":{"label":"AT&T Canada","x":1489.43607224676,"y":-1486.480330902284,"z":330.50277358531457}},{"id":"7460","data":{"label":"SOFTBANK Marketing Solutions","x":1456.5153418864147,"y":-3962.246920113264,"z":489.01696590067047}},{"id":"7459","data":{"label":"Naviant","x":1572.4280662051433,"y":-4063.4110845947976,"z":149.38212166839526}},{"id":"7458","data":{"label":"AdTrackMedia.com","x":-665.2611812164687,"y":978.5007145294767,"z":533.3275587869753}},{"id":"7456","data":{"label":"GreaterGood.com","x":-2142.889133064469,"y":-1499.6508543044565,"z":910.6430149013128}},{"id":"7457","data":{"label":"Alternate Marketing Networks","x":-809.6152367163518,"y":928.3742737210323,"z":266.1333259723162}},{"id":"7455","data":{"label":"Live On Line","x":3014.197529769497,"y":-2577.207903374603,"z":164.44439029128864}},{"id":"7454","data":{"label":"New Era of Networks ( NEON )","x":-2391.52756396953,"y":-1186.3151007342613,"z":182.79758140069768}},{"id":"7453","data":{"label":"Ofoto","x":588.2714345753193,"y":-3500.6212544608898,"z":748.0394522087053}},{"id":"7452","data":{"label":"Eastman Kodak","x":446.0308452219124,"y":-3428.302609737975,"z":431.8704601520762}},{"id":"7451","data":{"label":"CareerBuilder","x":1786.7564494556045,"y":-2664.5934882996235,"z":466.2874521135985}},{"id":"7450","data":{"label":"Petroleum Place","x":3002.475976954969,"y":-2640.614179138657,"z":705.3844930950879}},{"id":"7449","data":{"label":"Halliburton","x":2974.4163352207433,"y":-2786.201324010945,"z":286.8938672842507}},{"id":"8258","data":{"label":"MACtel","x":2089.4278611557993,"y":-263.7491162136721,"z":792.8574341881281}},{"id":"7448","data":{"label":"ImproveNet","x":3057.2660799832693,"y":1756.9527777676922,"z":254.74307069045543}},{"id":"7447","data":{"label":"Argentina On-Line","x":496.87045613829923,"y":-2445.8814558131457,"z":216.49595938357447}},{"id":"7446","data":{"label":"Organizational Diagnostics Online","x":536.284176465681,"y":2031.1855108113523,"z":958.9876550501007}},{"id":"7445","data":{"label":"Fitability Systems","x":668.4611150968358,"y":1964.786412569585,"z":266.9968040244599}},{"id":"7444","data":{"label":"Carnegie","x":-2342.9420096854174,"y":-132.67004704257488,"z":167.64278486365748}},{"id":"7443","data":{"label":"Alloy","x":-771.8241075149131,"y":1772.5462834759956,"z":81.2168691660673}},{"id":"7442","data":{"label":"InsiderTrader","x":2646.8900650640335,"y":1274.8387070815952,"z":505.218833434083}},{"id":"7441","data":{"label":"Edgar Online","x":2799.357143429019,"y":1231.6362003230297,"z":925.8459175922807}},{"id":"7440","data":{"label":"Online USA","x":-670.6374033366915,"y":1530.1022478450977,"z":752.9700605967573}},{"id":"7439","data":{"label":"Snowball.com","x":1469.5609227708692,"y":-2153.1570628896548,"z":6.847163673591616}},{"id":"7438","data":{"label":"CWtel","x":2996.386018996067,"y":-3508.080926006844,"z":231.95028043743403}},{"id":"7437","data":{"label":"Quest","x":3125.654321744916,"y":-3407.794463636021,"z":806.1479278803964}},{"id":"7436","data":{"label":"New Com","x":493.38407388463656,"y":-2532.54069723651,"z":486.89550608827136}},{"id":"7435","data":{"label":"Simpli.com","x":231.70623422549397,"y":-3420.405817595085,"z":761.7867523780964}},{"id":"7434","data":{"label":"RocketCash","x":282.99000916991145,"y":-3632.63534982938,"z":516.3086930075051}},{"id":"7433","data":{"label":"Freeinternet.com","x":306.4126189938288,"y":-3344.764456002369,"z":542.3081880365766}},{"id":"7432","data":{"label":"AimTV","x":407.2434955144772,"y":-3668.2789999454335,"z":177.75155765659844}},{"id":"7431","data":{"label":"SmartRay Network","x":3791.5980142916123,"y":471.2506943991284,"z":168.6599908726647}},{"id":"7430","data":{"label":"Lifeminders","x":3904.556126929645,"y":368.0576901658351,"z":257.1153973662954}},{"id":"7429","data":{"label":"Sullivan Group","x":-875.5258199434475,"y":-3739.689466927556,"z":841.490356987844}},{"id":"7428","data":{"label":"NetWolves","x":-999.8404785578332,"y":-3638.244283908547,"z":339.27676099691763}},{"id":"7427","data":{"label":"Supernet","x":438.4306517482769,"y":1803.1973685157136,"z":443.2495761606377}},{"id":"7426","data":{"label":"Netsol","x":-2092.9125019837657,"y":-549.3421228102043,"z":796.5000775973609}},{"id":"7424","data":{"label":"Netera","x":717.0955959314178,"y":1914.5440875481154,"z":590.7415364148043}},{"id":"7425","data":{"label":"NetSol","x":592.2244550601818,"y":1833.5937402462332,"z":439.3683879896426}},{"id":"7423","data":{"label":"PSI Softworks Technology","x":1806.173786281328,"y":2283.076210980903,"z":580.4592910429658}},{"id":"7422","data":{"label":"NetSilicon","x":1962.4465427619934,"y":2263.8945779785154,"z":60.387959513599434}},{"id":"7421","data":{"label":"NextPoint Networks","x":2175.9270459339696,"y":-2983.8647771744695,"z":171.93051796949743}},{"id":"7420","data":{"label":"NetScout Systems","x":2049.6819219370864,"y":-3061.0029014820743,"z":774.1622800701347}},{"id":"7419","data":{"label":"Majority Interest in Cellcom","x":3131.088960996114,"y":357.90513723075674,"z":210.52168299518016}},{"id":"7418","data":{"label":"Tricom","x":3243.776630374483,"y":233.27873483409348,"z":37.71638610577388}},{"id":"7417","data":{"label":"Additional Shares of InfoInterActive","x":-2076.0305500646177,"y":-1047.5734501168372,"z":309.49288023392205}},{"id":"7416","data":{"label":"Centigram","x":-885.5744503052838,"y":1548.3769116787234,"z":191.21473582068393}},{"id":"7415","data":{"label":"US West","x":-734.6917906401809,"y":-2587.7190307910864,"z":933.3843669081059}},{"id":"7414","data":{"label":"WebOrder","x":1356.5341390532594,"y":150.67382193587036,"z":313.0790657099418}},{"id":"7413","data":{"label":"MyComputer.com","x":3648.705982663065,"y":-1226.647263262064,"z":512.1122886450935}},{"id":"7410","data":{"label":"Wall Data","x":1433.6050324777852,"y":1956.1386905771742,"z":338.6091615889755}},{"id":"7412","data":{"label":"Sitematic","x":3558.0498893821386,"y":-1351.5812608088381,"z":778.7263481517044}},{"id":"7411","data":{"label":"Simware","x":1657.2207192377673,"y":1746.5364540404717,"z":237.22108328234071}},{"id":"7409","data":{"label":"NetManage","x":1523.4800693267498,"y":1828.7163125921425,"z":465.83897463527245}},{"id":"7407","data":{"label":"NetLibrary","x":665.0847326737266,"y":2361.978199474752,"z":877.8847061450175}},{"id":"7408","data":{"label":"peanutpress","x":508.70288703951064,"y":2332.768492370189,"z":45.70324547110749}},{"id":"7405","data":{"label":"Sirana Software","x":-1023.3746012360457,"y":-3249.0284422705786,"z":79.55646483516476}},{"id":"7406","data":{"label":"WebTrends","x":-1283.7247834319896,"y":-3062.132275393982,"z":635.7122349163283}},{"id":"7404","data":{"label":"NetIQ","x":-1143.0375258757845,"y":-3136.465481593167,"z":307.8283035106904}},{"id":"7402","data":{"label":"NetGenesis","x":473.50521511905526,"y":1996.1842121417521,"z":756.6688273921541}},{"id":"7403","data":{"label":"E-dynamics","x":551.0054794588127,"y":1863.423986556143,"z":798.3184173463558}},{"id":"7401","data":{"label":"Odisei","x":3659.0840801584473,"y":-2159.0618856826723,"z":776.0185949786485}},{"id":"7400","data":{"label":"8x8","x":3558.993983337845,"y":-2274.5619046631423,"z":621.3719350735221}},{"id":"7399","data":{"label":"FreBon","x":2614.812794914389,"y":-3496.512929490792,"z":330.5903734192437}},{"id":"7398","data":{"label":"Vision I.T.","x":2296.337753497577,"y":-3477.372670005184,"z":643.2248871309279}},{"id":"7397","data":{"label":"Net2000","x":2442.8806148640742,"y":-3450.4554713335688,"z":545.1690534168428}},{"id":"7396","data":{"label":"Pacific Bridge Net","x":-1719.0248252055108,"y":500.60594587772266,"z":51.68821010960167}},{"id":"7395","data":{"label":"Worldwide Wireless","x":-1596.4695641622643,"y":597.7292699107347,"z":164.0488725754119}},{"id":"7394","data":{"label":"Worldweb.net","x":-821.7910698467331,"y":569.8467287617204,"z":756.7088480351651}},{"id":"7393","data":{"label":"Telemate.Net Software","x":3325.0029028850304,"y":1044.3320753548833,"z":114.97652025694127}},{"id":"7391","data":{"label":"ClearWorks","x":-2228.7897770396385,"y":-1840.8521058237693,"z":988.4931006622397}},{"id":"7392","data":{"label":"Link2","x":-2178.517474570476,"y":-1983.7157397700148,"z":354.862061668817}},{"id":"7390","data":{"label":"Star Systems","x":-1622.309824211236,"y":280.1481447552633,"z":177.4130513649499}},{"id":"7389","data":{"label":"Concord EFS","x":-1531.5585987799761,"y":402.3309624979629,"z":484.5856482847468}},{"id":"7388","data":{"label":"TelenComm","x":3347.186567137831,"y":596.2257258071304,"z":543.270212810669}},{"id":"7387","data":{"label":"Cray","x":3504.1772751851977,"y":-1762.563953492473,"z":365.285545177356}},{"id":"7385","data":{"label":"NBC","x":3879.67071568103,"y":-1346.5618000280688,"z":247.1412195039484}},{"id":"7386","data":{"label":"Flooz.com","x":3895.4697737933184,"y":-1199.6780539988504,"z":445.1396554711853}},{"id":"7383","data":{"label":"Husdawg Communications","x":2860.214818535992,"y":-1217.0000752718693,"z":308.28166024664205}},{"id":"7381","data":{"label":"Knowledge Universe","x":1456.2405354205212,"y":-2660.5609122984406,"z":342.07348923723237}},{"id":"7384","data":{"label":"Hollywood Stock Exchange","x":1454.9981181809844,"y":-2496.590218745451,"z":937.8361596894227}},{"id":"7382","data":{"label":"Flyswat","x":2705.7685635390044,"y":-1064.5923366839734,"z":483.6609197469048}},{"id":"7380","data":{"label":"Damgaard","x":-984.5788671974237,"y":-3153.761977181575,"z":919.7208139624089}},{"id":"7379","data":{"label":"Navision","x":-894.1003296187009,"y":-3284.6532287793916,"z":396.21471883943804}},{"id":"7378","data":{"label":"Journeylink.com","x":3640.5202577544105,"y":730.0847975521701,"z":753.0266413716378}},{"id":"7377","data":{"label":"Navidec","x":3507.3956828428754,"y":816.007458111455,"z":686.2727450348523}},{"id":"7376","data":{"label":"USA Networks TV Broadcast Division","x":1474.160913443071,"y":-4247.225462611363,"z":513.776651087275}},{"id":"7375","data":{"label":"Univision","x":1320.8675254424197,"y":-4260.488305643365,"z":602.7769699700127}},{"id":"7373","data":{"label":"Romtec","x":971.6875690907991,"y":1465.7588976683583,"z":616.760553874453}},{"id":"8270","data":{"label":"Golden Manufacturing","x":2627.093929019504,"y":-3174.8776384871894,"z":679.4925529259839}},{"id":"7372","data":{"label":"Total Research","x":1069.740101110493,"y":1623.4446201107448,"z":769.7367617407989}},{"id":"7371","data":{"label":"VistaInfo","x":-2240.686282474717,"y":-2070.346335136265,"z":855.6148651840201}},{"id":"7369","data":{"label":"Forit","x":456.4804214576948,"y":1259.2248258468062,"z":850.6935573021095}},{"id":"7370","data":{"label":"Fidelity National Financial","x":-2181.289295852026,"y":-2210.696395716822,"z":986.8526451405178}},{"id":"7367","data":{"label":"Research in Motion","x":-485.17846168792084,"y":357.12891178191876,"z":275.9601342260269}},{"id":"7368","data":{"label":"Forrester Research","x":601.5943351808719,"y":1240.4915915184529,"z":592.3329804289951}},{"id":"7366","data":{"label":"Nielsen Media Research","x":95.0299887635556,"y":1521.4231649256408,"z":537.1905977431945}},{"id":"7365","data":{"label":"VNU","x":3413.468719465238,"y":-3427.0095426647194,"z":774.3241601208723}},{"id":"7363","data":{"label":"TownPagesNet.com","x":2217.222484691143,"y":-2996.7192083803993,"z":77.33110918450103}},{"id":"7364","data":{"label":"Rasmussen Research","x":2158.24915804013,"y":-3133.3364019282653,"z":150.69162258112146}},{"id":"7362","data":{"label":"Saba Press Photos","x":-1169.0810978110142,"y":-2295.8110785543954,"z":2.1279108826743887}},{"id":"7361","data":{"label":"Corbis","x":-1037.032137868648,"y":-2392.779221971422,"z":768.8264710760766}},{"id":"7360","data":{"label":"Girl Press","x":-2190.0023490784233,"y":9.93084469225687,"z":777.1102202430859}},{"id":"7359","data":{"label":"Alloy Online","x":-2201.4069307330783,"y":-152.03539813707903,"z":77.17371819459196}},{"id":"7358","data":{"label":"Algorex","x":-1885.5229058263762,"y":-1808.2840159090665,"z":919.25552412639}},{"id":"7357","data":{"label":"National Semiconductor","x":-1805.169130275823,"y":-1943.558056358096,"z":285.20497008629263}},{"id":"7356","data":{"label":"Textron National Bank","x":-152.15731323996715,"y":-3996.6808977134906,"z":647.8241716994984}},{"id":"7355","data":{"label":"NextCard","x":-293.8075496716897,"y":-3944.3598303774593,"z":791.3198649320732}},{"id":"7354","data":{"label":"Bay Area Print Brokerage","x":-1402.4185793788718,"y":1237.1151982866431,"z":260.4751800727849}},{"id":"7353","data":{"label":"ImageX.com","x":-1304.6943500012417,"y":1344.1881313675276,"z":850.7129335583181}},{"id":"7352","data":{"label":"iseek","x":1197.088418336095,"y":-4055.848960574058,"z":213.54516493097807}},{"id":"7351","data":{"label":"N2H2","x":1046.7864302864682,"y":-4101.30241372188,"z":256.3219885279373}},{"id":"7349","data":{"label":"Murdock","x":3360.5890761372166,"y":-564.6523928005436,"z":699.5666940388361}},{"id":"7348","data":{"label":"Enthusiasm Technologies","x":3161.605047596113,"y":-2884.84824305278,"z":857.2197155920513}},{"id":"7350","data":{"label":"Mexicos AcNet","x":3271.476724601953,"y":-409.6723771479619,"z":599.8068982312946}},{"id":"7347","data":{"label":"Metro One Telecommunications","x":3259.5024442120384,"y":-3009.9349899321023,"z":908.597548681042}},{"id":"7343","data":{"label":"InsWeb","x":1549.87216615942,"y":-641.5698649449705,"z":816.8818503804349}},{"id":"7346","data":{"label":"Mobility Concepts","x":2969.4434294464227,"y":1270.6621962312702,"z":984.5467533699506}},{"id":"7345","data":{"label":"ActiveLink Communications","x":2851.1149556480077,"y":1366.231161376656,"z":857.1605638037707}},{"id":"7344","data":{"label":"MMC Networks","x":-74.95663547640561,"y":-3826.323635305276,"z":168.51628398296702}},{"id":"7342","data":{"label":"Marsh & McLennan Companies","x":1760.9182786498504,"y":-517.0737193438354,"z":44.452903406680065}},{"id":"7341","data":{"label":"Photonics Developer Optenia","x":818.8851989232244,"y":-4038.4026249198587,"z":725.0291825497682}},{"id":"7339","data":{"label":"Calvin Alexander Networking","x":3486.099540152437,"y":-3044.7377257373414,"z":980.4568626088965}},{"id":"7340","data":{"label":"Vertex Networks","x":1113.0895442795863,"y":-4124.7259098675695,"z":783.8233168226851}},{"id":"7338","data":{"label":"Micromuse","x":3618.3175165811663,"y":-3116.832662680476,"z":986.1551291017818}},{"id":"7337","data":{"label":"Micro-Integration","x":-2371.05948049391,"y":-456.3406041895496,"z":515.7379735527578}},{"id":"7336","data":{"label":"BiznessOnline.com","x":-2368.324778800061,"y":-615.5862983895267,"z":505.115267465563}},{"id":"7335","data":{"label":"LPJ","x":285.67798961266,"y":1896.8893439369003,"z":69.44299701599887}},{"id":"7334","data":{"label":"MGI Software and Trans Cosmos","x":132.9467818690855,"y":1919.9593052443306,"z":932.6803080263444}},{"id":"7333","data":{"label":"M.I.B.H.","x":-1006.12533697145,"y":-2361.801023593899,"z":222.64537587046274}},{"id":"7332","data":{"label":"AGENTics","x":1833.9084108010702,"y":1595.8413673822533,"z":651.0804223766264}},{"id":"7331","data":{"label":"Mercado Software","x":1700.9830143078134,"y":1664.9345934263365,"z":107.3901081396782}},{"id":"7330","data":{"label":"NetObjects Division","x":-2035.4572041708366,"y":-2017.1962158361794,"z":753.4533129998093}},{"id":"7329","data":{"label":"NetObjects","x":3719.0875845159717,"y":-1354.9303472099946,"z":387.28472251888115}},{"id":"7328","data":{"label":"MERANT plc","x":886.9045599962783,"y":-4324.648694522903,"z":649.2953328400863}},{"id":"7326","data":{"label":"Penton","x":2591.3115626135386,"y":822.7757486046648,"z":615.4300386872322}},{"id":"7327","data":{"label":"WirelessDeveloper Conference","x":2730.640352109467,"y":749.0762868054317,"z":751.6564111437751}},{"id":"7325","data":{"label":"Westwind Media","x":-1008.528179529289,"y":-2145.947879773683,"z":475.53469443816556}},{"id":"7324","data":{"label":"Getgo","x":3277.815487552398,"y":325.93568012998276,"z":802.0265644916665}},{"id":"7323","data":{"label":"Mediacom Communications","x":113.32608872510036,"y":1839.8203097629867,"z":249.83291536347485}},{"id":"7322","data":{"label":"Mbrane","x":2763.696581080726,"y":1481.9034640175587,"z":145.52235520282574}},{"id":"7321","data":{"label":"Platinum Equity Holdings","x":2789.0681829935947,"y":1329.5986374296544,"z":397.7957364986835}},{"id":"7320","data":{"label":"MarketFirst Software","x":3520.058471634061,"y":-1634.8033674263793,"z":309.1873003645935}},{"id":"7318","data":{"label":"Whittman-Hart","x":-844.5406683345686,"y":295.03282811428653,"z":97.17526383515396}},{"id":"7319","data":{"label":"SBi","x":-606.0776390647807,"y":1069.1629995023704,"z":664.8390283595828}},{"id":"7316","data":{"label":"Volendam","x":-1318.895531527886,"y":331.5227051924867,"z":633.4995110515179}},{"id":"7317","data":{"label":"Madge","x":-1218.1143948043803,"y":452.97174186142456,"z":457.7434645931149}},{"id":"7314","data":{"label":"Time4","x":3016.932942663605,"y":-3200.0942421568975,"z":627.2668203297347}},{"id":"7315","data":{"label":"Allaire","x":3218.7871731528785,"y":-3001.513911377302,"z":83.24644014268313}},{"id":"7312","data":{"label":"Ortel","x":2496.3067658803793,"y":-2726.9046292087664,"z":936.0355560119244}},{"id":"7311","data":{"label":"DeltaKabel","x":2590.7814923506467,"y":-3036.9924998536553,"z":655.0844150411077}},{"id":"7313","data":{"label":"Elemental Software","x":3118.822166331631,"y":-3284.7381481722496,"z":638.8046646517151}},{"id":"7310","data":{"label":"Remaining Stake of Ignitus","x":2787.608770712054,"y":-2889.546332601231,"z":89.87642229665104}},{"id":"7309","data":{"label":"Chromatis Networks","x":2476.1915518274554,"y":-2970.6187330514517,"z":319.1853637052622}},{"id":"7308","data":{"label":"Spring Tide","x":2418.134195365272,"y":-2894.926081271389,"z":777.384699188656}},{"id":"7307","data":{"label":"Ascend","x":2423.0637112583145,"y":-2867.2186731587913,"z":48.07455603867483}},{"id":"7306","data":{"label":"Nexabit Networks","x":2783.938735070853,"y":-2832.473464033035,"z":245.47492973788442}},{"id":"7303","data":{"label":"Rapid Logic","x":-1983.3492732401396,"y":-2049.0122305043565,"z":143.48233776894182}},{"id":"7305","data":{"label":"Soundlogic","x":2549.799725965927,"y":-3026.4543348728685,"z":658.0730313931412}},{"id":"7304","data":{"label":"DiscoverMusic.com","x":57.27150528769698,"y":-2970.7542566297234,"z":17.31318637551782}},{"id":"7302","data":{"label":"Computect","x":680.6975166492225,"y":2267.506936927525,"z":438.459379670034}},{"id":"7301","data":{"label":"Logic Solutions","x":810.8976698371116,"y":2336.5930375522676,"z":559.5965362480329}},{"id":"7300","data":{"label":"Quantum Logic Division","x":3095.165846249447,"y":-2743.511683218017,"z":477.2409821514489}},{"id":"7298","data":{"label":"cyberTours","x":-890.3691837178039,"y":672.637072304914,"z":921.9808696858136}},{"id":"7299","data":{"label":"Paradux Concepts","x":3047.556527362667,"y":-2890.863839855517,"z":14.571974781924402}},{"id":"7297","data":{"label":"LivePerson","x":1456.7565430693248,"y":-2078.770308403474,"z":92.29564299463667}},{"id":"7296","data":{"label":"Biz Interactive","x":-2077.701644722574,"y":-185.47920931847693,"z":985.6547006811879}},{"id":"7295","data":{"label":"Litronic","x":-2085.0365250085724,"y":-358.18006039473585,"z":95.60143367401963}},{"id":"7294","data":{"label":"Linuxcare","x":3142.0694635087193,"y":-939.7428418305508,"z":709.092059023451}},{"id":"7293","data":{"label":"TurboLinux","x":3228.081181896734,"y":-1065.2802405529333,"z":41.44569085135319}},{"id":"7292","data":{"label":"United System Engineers","x":-1818.3777197501695,"y":-912.7344537806653,"z":23.18891648027277}},{"id":"7291","data":{"label":"FirePlug Computers","x":-1958.050953943108,"y":-950.2264758546462,"z":51.75221073340808}},{"id":"7290","data":{"label":"INUP","x":-2030.6372309874496,"y":-925.268449586963,"z":669.0152453166315}},{"id":"7289","data":{"label":"X-Stream Network","x":-1115.462837201535,"y":-2252.495317204394,"z":684.0874000249518}},{"id":"7287","data":{"label":"MoreCom for $561 Million","x":2858.6244813486883,"y":468.7611630935917,"z":534.4570338327253}},{"id":"7288","data":{"label":"Liberty Surf Group S.A.","x":-964.4511934207076,"y":-2311.7485624895676,"z":547.8179062769151}},{"id":"7286","data":{"label":"ICE","x":3166.9239793631896,"y":299.45224602790404,"z":79.6330052202181}},{"id":"7285","data":{"label":"Liberate","x":3969.5571279830856,"y":491.45437940889497,"z":175.7126695680582}},{"id":"7284","data":{"label":"Lernout & Hauspie Speech Products N.V.","x":-2458.8148069375566,"y":-893.8548475700636,"z":343.40434495255903}},{"id":"7283","data":{"label":"Legend Lithograph","x":-1014.2646040665063,"y":319.8320307588456,"z":458.9618511606814}},{"id":"7282","data":{"label":"On-Site Sourcing","x":-1106.099539583999,"y":459.51914239878533,"z":915.5851346222761}},{"id":"7281","data":{"label":"Learning Productions","x":-209.67626036932006,"y":-3363.9849761757705,"z":151.78796359136925}},{"id":"7280","data":{"label":"Virtual Learning Technologies","x":-1554.8249283770986,"y":-1480.0623766767822,"z":992.957496335825}},{"id":"7279","data":{"label":"Houghton Mifflin","x":-1610.9500360758966,"y":-1324.5375084504512,"z":399.87239181846326}},{"id":"7278","data":{"label":"Ed Learning","x":727.1750511352452,"y":-3718.975828549401,"z":77.1859342608403}},{"id":"7277","data":{"label":"BackWire","x":-1978.6751570434524,"y":89.83136804367223,"z":408.60594670471494}},{"id":"7275","data":{"label":"DeCompras.com","x":3750.702802531767,"y":-2028.5135261856271,"z":391.7523767191584}},{"id":"7276","data":{"label":"Chase Telecommunications","x":-1428.8111738177201,"y":-1963.5825656240718,"z":582.2114468761388}},{"id":"7273","data":{"label":"Lawson","x":3455.737450629498,"y":-3378.945133726374,"z":34.745213414413946}},{"id":"7274","data":{"label":"ijob","x":-7.4327841678132245,"y":1704.497583605963,"z":339.4845477432371}},{"id":"7272","data":{"label":"Intellectual Property","x":325.5119589511696,"y":-3592.6863130110623,"z":604.0787420528416}},{"id":"7271","data":{"label":"Kurion","x":-1749.1370958392883,"y":-3005.2562106959253,"z":894.2436169051169}},{"id":"7270","data":{"label":"ISyndicate","x":-1716.9818481447942,"y":937.4821165866633,"z":608.6051340761644}},{"id":"7269","data":{"label":"KPN Mobile","x":-85.63212316046656,"y":-2747.35461585704,"z":921.0023381280976}},{"id":"7268","data":{"label":"AnswerLogic","x":3453.8517275621916,"y":-1119.4688222793116,"z":346.9730805814388}},{"id":"7267","data":{"label":"Parallax Solutions","x":2107.5221616132067,"y":-3258.6225122327737,"z":199.5225548858306}},{"id":"7266","data":{"label":"Jamison/Gold","x":2055.8800888202213,"y":-3317.746838354228,"z":689.0444586275707}},{"id":"7265","data":{"label":"Keane","x":1975.11668331677,"y":-3181.92406068369,"z":114.706351501767}},{"id":"7264","data":{"label":"Broadbase Software","x":3280.811843893356,"y":-2184.189617796841,"z":456.9401562949027}},{"id":"7263","data":{"label":"Kana Communications","x":-450.28435328086925,"y":1932.2651440919853,"z":770.3246681861137}},{"id":"7262","data":{"label":"NetDialog","x":3499.4434582334125,"y":-2265.081355274356,"z":875.5566263241305}},{"id":"7261","data":{"label":"Mustang.com","x":-893.0827356748696,"y":-2995.466609048015,"z":812.4271533100582}},{"id":"7260","data":{"label":"Acuity","x":-698.2786192193371,"y":-2937.5957011374458,"z":677.34032996209}},{"id":"7259","data":{"label":"AVX","x":-144.50563411515986,"y":1165.1415267373059,"z":6.762685270721436}},{"id":"7258","data":{"label":"Quest Net","x":-16.3125631709172,"y":1282.2452042064278,"z":312.9002290453118}},{"id":"7257","data":{"label":"Millennium","x":1919.191314621874,"y":-2799.2452309749565,"z":953.9054211091143}},{"id":"7256","data":{"label":"QuadraMed","x":1895.3876906345859,"y":-2987.396906341738,"z":10.17900123106985}},{"id":"7255","data":{"label":"StreamMagic","x":-932.5789653256779,"y":-2440.2330457302423,"z":153.81059878638536}},{"id":"7254","data":{"label":"Qsound Labs","x":-789.0858172501244,"y":-2363.5814991790394,"z":341.2144717930301}},{"id":"7253","data":{"label":"ProxiNet","x":512.6642418627134,"y":2229.749142355304,"z":384.6433247930563}},{"id":"7252","data":{"label":"Puma Technology","x":-601.6132597929368,"y":-3761.383291869297,"z":818.8953271841051}},{"id":"7251","data":{"label":"Chinas Markets","x":3399.243917064582,"y":541.5841165645288,"z":339.83288946174616}},{"id":"7250","data":{"label":"Readers Digest","x":3348.077400608845,"y":693.4338541436282,"z":905.3161594180883}},{"id":"7249","data":{"label":"InterActive Public Relations","x":-984.9473370387693,"y":-2225.5636411902265,"z":396.5228594594805}},{"id":"7248","data":{"label":"GETGO","x":-822.7604448512366,"y":-2186.7454956199617,"z":417.27529865333327}},{"id":"7247","data":{"label":"Teklogix","x":-660.6992600387375,"y":-2997.873725296723,"z":658.9003391522858}},{"id":"7245","data":{"label":"PSINet Assets","x":1091.5608005584177,"y":-3971.149440521036,"z":979.9567724716096}},{"id":"7246","data":{"label":"Psion","x":-777.9068880177037,"y":-2890.3334633994464,"z":911.7962993196988}},{"id":"7243","data":{"label":"iLatin Holdings","x":587.1040413179007,"y":-2661.51964626748,"z":471.9453358055161}},{"id":"7244","data":{"label":"GTCR Golder Rauner","x":1246.388507130595,"y":-4002.3481562582356,"z":431.3979147887934}},{"id":"7242","data":{"label":"Zebra.Net","x":790.0749587096507,"y":-2435.3862849324687,"z":256.35210750851047}},{"id":"7241","data":{"label":"Telepath","x":644.7342239180466,"y":-2650.7150249348497,"z":760.4920777954578}},{"id":"7240","data":{"label":"Metamor Worldwide","x":864.2199865573843,"y":-2766.9486848300567,"z":949.3787810314141}},{"id":"7236","data":{"label":"Internet Network Technologies","x":531.4900549025579,"y":-2662.0336174340255,"z":143.44740897109864}},{"id":"7238","data":{"label":"Ciberia Internet","x":785.6873792388469,"y":-2551.7789385177534,"z":482.82798200752273}},{"id":"7239","data":{"label":"Circadence","x":833.2447279520943,"y":-2754.660248532833,"z":621.8311488957615}},{"id":"7237","data":{"label":"Infase Comunicaciones","x":558.6831970768499,"y":-2663.981153637849,"z":292.29303378278314}},{"id":"7235","data":{"label":"Brazillian ISP","x":485.71151767506217,"y":-2611.359951337025,"z":56.768757953104874}},{"id":"7234","data":{"label":"Canadian ISP","x":773.670576965409,"y":-2389.569443782077,"z":801.9626778961837}},{"id":"7233","data":{"label":"Netgate","x":752.1769677914335,"y":-2397.835351450251,"z":141.9820671972525}},{"id":"7232","data":{"label":"CPSSource.com","x":597.6562990161792,"y":-2638.233024385896,"z":327.238527505082}},{"id":"7231","data":{"label":"Pro BV","x":-59.51481931192575,"y":1682.4706027894608,"z":400.3372275650694}},{"id":"7230","data":{"label":"ECSoft","x":51.9213344199934,"y":1787.5670983718755,"z":633.8564865238163}},{"id":"7229","data":{"label":"Adhoc Group","x":-2011.1631650626862,"y":-2378.8783739401006,"z":34.8653555054641}},{"id":"7228","data":{"label":"Proxicom","x":3908.2669194806494,"y":304.15253055041467,"z":679.3482337399574}},{"id":"7227","data":{"label":"Proxicom Software","x":-1987.1960993278356,"y":-2525.997897038944,"z":3.814536140484659}},{"id":"7225","data":{"label":"AV Projector Depot","x":-199.99267549592105,"y":2133.2280404036537,"z":986.4951752144677}},{"id":"7226","data":{"label":"Well Engaged","x":-2069.6673534344436,"y":-2394.6060072743444,"z":398.64046615227863}},{"id":"7224","data":{"label":"Global Imaging","x":-71.78014273232702,"y":2210.879625407262,"z":261.8642866409251}},{"id":"7223","data":{"label":"Pro2Net","x":4413.725578195563,"y":-872.9263039938796,"z":811.2777372211024}},{"id":"7222","data":{"label":"KeepSmart","x":4474.5962674519,"y":-727.5003113189523,"z":357.362728497191}},{"id":"7221","data":{"label":"Advis","x":3939.7767108544595,"y":-1908.7500770474367,"z":894.358925592349}},{"id":"7219","data":{"label":"Primis","x":518.2582036190379,"y":-4326.986510506424,"z":348.2360721919482}},{"id":"7220","data":{"label":"The Appraisal","x":2212.494258277434,"y":-3431.3201383772184,"z":121.95308642052227}},{"id":"7218","data":{"label":"Creating Keepsakes","x":2621.922339230313,"y":-1903.7449651215297,"z":337.7823906001085}},{"id":"7217","data":{"label":"gURL.com Assets","x":2325.8326338994702,"y":-1636.9925556567655,"z":631.3108098057114}},{"id":"7215","data":{"label":"eStyle","x":-1537.0452699391217,"y":1286.4301608265623,"z":116.17397253682759}},{"id":"7214","data":{"label":"Juno","x":3160.3264200608755,"y":1360.6771357875841,"z":243.86900770772303}},{"id":"7213","data":{"label":"Netdive","x":2064.85092632172,"y":2151.3497020300492,"z":193.49313637113897}},{"id":"7212","data":{"label":"SDL","x":-1115.3045458450867,"y":405.59980943484334,"z":774.4065270989131}},{"id":"7211","data":{"label":"Jamcracker","x":-392.44144096717673,"y":621.0283555260094,"z":303.52577288592755}},{"id":"7209","data":{"label":"ITXC","x":2774.932610944259,"y":-2750.0163070364324,"z":671.9930356114608}},{"id":"7210","data":{"label":"EFusion","x":2931.520079709533,"y":-2694.9450309676345,"z":659.5279320077008}},{"id":"7208","data":{"label":"ITnet","x":-1095.617548739594,"y":323.8973721520397,"z":605.4148218483678}},{"id":"7207","data":{"label":"Wind","x":-956.985208304767,"y":251.67038858624346,"z":864.7545498282714}},{"id":"7206","data":{"label":"True North Communications","x":-651.1959530923232,"y":611.8644684077672,"z":96.30422258440507}},{"id":"7205","data":{"label":"Netfish Technologies in All-Stock Transaction","x":1730.6328090661955,"y":-3308.136797592678,"z":618.9657876730137}},{"id":"7204","data":{"label":"IONA","x":1606.5722557103436,"y":-3415.7885924449624,"z":182.21767640804433}},{"id":"7203","data":{"label":"TAASC","x":506.2333440928269,"y":-2233.7089777595556,"z":379.53028919928136}},{"id":"7202","data":{"label":"Venture Finance Software","x":493.05196163414985,"y":-2182.689606790889,"z":127.88193635388679}},{"id":"7201","data":{"label":"EmployeeMatters","x":652.2026608702895,"y":-2234.912239607547,"z":435.72642566846207}},{"id":"7200","data":{"label":"SecureTax.Com","x":499.83505443182594,"y":-2206.6347244051167,"z":781.1178605778229}},{"id":"7199","data":{"label":"Quicken Loans","x":586.9284461300731,"y":-2230.5989474589455,"z":766.621163226884}},{"id":"7198","data":{"label":"Janus","x":-797.5555445002124,"y":-3667.195166229517,"z":155.0232340114548}},{"id":"7197","data":{"label":"Internet Image","x":-952.8448241726107,"y":-3632.6582212698145,"z":838.295007801456}},{"id":"7196","data":{"label":"BITSource","x":-1010.8909404802364,"y":-3467.265511413688,"z":746.3144428240018}},{"id":"7195","data":{"label":"Intraware","x":-860.6998553547273,"y":-3520.489481173456,"z":892.6238478565908}},{"id":"7194","data":{"label":"Ajuba Solutions","x":1712.7764420836538,"y":1477.7473296497055,"z":598.6358814915145}},{"id":"7193","data":{"label":"Metacode","x":1531.007955407761,"y":1452.687997682,"z":708.8568138481097}},{"id":"7190","data":{"label":"Star+Globe Technologies","x":2416.342523180694,"y":1853.866864061345,"z":454.09266279770645}},{"id":"7188","data":{"label":"MediCredit","x":-1821.5366280694116,"y":812.647154867409,"z":219.08271003738443}},{"id":"7192","data":{"label":"InterTrust Technologies","x":-574.599378945733,"y":-3424.1087120305656,"z":7.994092130330088}},{"id":"7191","data":{"label":"SiCom","x":2576.2434675965414,"y":1967.674316974968,"z":628.8767582157626}},{"id":"7189","data":{"label":"LanguageWare.net","x":2282.5508746132273,"y":1930.561141174804,"z":911.4891642875335}},{"id":"7186","data":{"label":"HR Sites International","x":2347.2668170491816,"y":331.63666079864197,"z":337.2047096388786}},{"id":"7187","data":{"label":"Medstone","x":-1916.4929382046557,"y":703.188692091835,"z":533.6299201588965}},{"id":"7185","data":{"label":"Copyright Control Services","x":-1848.2709642080283,"y":126.08886314497067,"z":88.49642073466057}},{"id":"7184","data":{"label":"Sunhawk.com","x":-1767.8261139534686,"y":262.92685401647304,"z":716.3249446841085}},{"id":"7183","data":{"label":"Thinking Machines Unit","x":3087.05457474136,"y":362.93341489998784,"z":509.27628744306674}},{"id":"7182","data":{"label":"ValueVision International","x":1525.6044461567262,"y":-2510.2244406659297,"z":216.54462922309858}},{"id":"7180","data":{"label":"Xircom","x":1702.3196509006502,"y":-39.956611280742436,"z":411.725504480468}},{"id":" INC.","data":{"label":"INTERLAND","x":3082.1044747214983,"y":-4386.549939504593,"z":774.2075436908036}},{"id":"7179","data":{"label":"ICP vortex","x":1644.1184443289276,"y":31.342316648768247,"z":306.34413716398126}},{"id":"7178","data":{"label":"Maker Communications","x":-1965.5470192742246,"y":-2444.0478976948766,"z":544.6406617760487}},{"id":"7177","data":{"label":"Conextant","x":-1964.5897529393483,"y":-2285.7391262248143,"z":582.2351351603014}},{"id":"7176","data":{"label":"Zimba","x":872.4504159941484,"y":1984.847602224334,"z":879.3036935290551}},{"id":"7175","data":{"label":"ServNet Servicos de Informatica e Communicacao","x":473.25234209582686,"y":-2516.153244934975,"z":106.12492972800914}},{"id":"7174","data":{"label":"PhyNet","x":-1674.0632155333128,"y":-1569.7636175882622,"z":782.6575275635743}},{"id":"7173","data":{"label":"Infocrossing","x":-850.8235446291428,"y":-3185.5606368319322,"z":233.6383949603862}},{"id":"7172","data":{"label":"Kennedy-Wilson","x":-794.6283255076783,"y":-3324.0129145806372,"z":371.108254685262}},{"id":"7171","data":{"label":"Dexton Information Systems","x":-871.4428694134899,"y":-3051.0661056343906,"z":800.0409193337224}},{"id":"7170","data":{"label":"Infinium","x":-776.3282159054179,"y":-3168.7955393704146,"z":215.90943845892642}},{"id":"7169","data":{"label":"Verix Software","x":977.6748132548655,"y":1908.5405214034909,"z":797.3448296908978}},{"id":"7168","data":{"label":"Ehlis Commercial/Industrial Auctions","x":3036.311230658279,"y":1151.8766831446374,"z":521.985709193773}},{"id":"7167","data":{"label":"AbleAuctions.com","x":2880.2631505501467,"y":1169.6063285952223,"z":720.2619248366882}},{"id":"7166","data":{"label":"CO Space","x":234.47934773254565,"y":-1716.205018337615,"z":350.3473272786344}},{"id":"7165","data":{"label":"InterNap","x":2892.055532376022,"y":1721.6679357713474,"z":100.00109313581706}},{"id":"7164","data":{"label":"VPNX.com","x":191.32167329886124,"y":-1701.1907459317695,"z":668.3077715567903}},{"id":"7163","data":{"label":"InterNAP","x":-1827.4502904501583,"y":-3038.1135701748517,"z":499.68168763171275}},{"id":"7162","data":{"label":"Inow","x":746.5016828572498,"y":1821.868863440648,"z":324.4680799201172}},{"id":"7161","data":{"label":"ImaginOn","x":887.1339690904047,"y":1896.952528884808,"z":341.76403075748874}},{"id":"7160","data":{"label":"Chen & McGinley","x":4072.104868104663,"y":-1151.809308835951,"z":545.1137497459424}},{"id":"7159","data":{"label":"Mastech","x":4220.667588333277,"y":-1096.1112772501106,"z":16.471844527316648}},{"id":"7157","data":{"label":"Icon Medialab","x":-812.7368846314271,"y":1555.9362785141711,"z":986.9783460475757}},{"id":"7158","data":{"label":"Nexus","x":-781.5929736044063,"y":978.4214263967606,"z":653.8835018754384}},{"id":"7156","data":{"label":"Arakno and Intergate","x":-934.7421265923726,"y":702.016737085688,"z":974.7792045918176}},{"id":"7155","data":{"label":"Icon Medialab International","x":-425.52587691153576,"y":-4168.950575491379,"z":921.5260394972222}},{"id":"7154","data":{"label":"Icon Medialab International AB","x":-833.0176052185247,"y":828.892397238883,"z":738.0272962860947}},{"id":"7153","data":{"label":"Digital Fusion","x":-822.695927517685,"y":1099.8345808941685,"z":623.2954005647005}},{"id":"7152","data":{"label":"Jaguar Systems","x":-951.6218753960056,"y":-2603.115863187282,"z":636.784851775405}},{"id":"7151","data":{"label":"PriceInteractive for $50 Million","x":1811.4317923480567,"y":-3556.8363350505697,"z":347.8848215217469}},{"id":"7150","data":{"label":"iBasis","x":1896.6481242639957,"y":-3411.0226981976375,"z":69.24187191730647}},{"id":"7149","data":{"label":"Internet Communications","x":-2139.097163525652,"y":37.99762873317195,"z":346.80736833130777}},{"id":"7148","data":{"label":"RMI.net","x":826.2247274332094,"y":-3940.936238635414,"z":117.30388899388755}},{"id":"7147","data":{"label":"Tiscali S.p.A.","x":2010.745473957555,"y":-304.91613353921,"z":245.13679372936602}},{"id":"7146","data":{"label":"Systeam S.p.A.","x":2960.166826511114,"y":-3042.969773163587,"z":521.7060620352603}},{"id":"7145","data":{"label":"Coyote Network Systems","x":2958.20749393774,"y":-3203.8038854799333,"z":400.37391949128323}},{"id":"7143","data":{"label":"I-many","x":2307.488688521252,"y":-4195.758442975046,"z":262.51240110299756}},{"id":"7144","data":{"label":"Vintage Software","x":2382.0197629810827,"y":-4054.815727698374,"z":88.70329894071571}},{"id":"7142","data":{"label":"I-Link","x":1804.173017631123,"y":-3235.935102192255,"z":824.5180279827118}},{"id":"7141","data":{"label":"Red Cube","x":1859.2614419609727,"y":-3089.915276970176,"z":94.55774611400747}},{"id":"7140","data":{"label":"Hybrid","x":4337.798932602077,"y":-1043.3411483173,"z":741.178925430985}},{"id":"7139","data":{"label":"ConnecTech","x":4218.771227015002,"y":-1137.227966696712,"z":326.7352535289114}},{"id":"7138","data":{"label":"PC DOCS","x":-1807.1546312592477,"y":-2021.6528265406523,"z":705.2364771136201}},{"id":"7137","data":{"label":"Hummingbird","x":-1868.4135941999773,"y":-1871.728579906207,"z":528.5782071261887}},{"id":"7135","data":{"label":"Onyx Technologies","x":2424.9276529784174,"y":1345.6304766136855,"z":924.4638529839193}},{"id":"7136","data":{"label":"Netzee","x":1707.9554177721438,"y":-3982.451065469394,"z":559.5899693293194}},{"id":"7134","data":{"label":"Aptex","x":2322.2287154063797,"y":1363.2721428184132,"z":566.7241751143895}},{"id":"7133","data":{"label":"HNC","x":4200.669417642566,"y":226.11337823524627,"z":43.04445782580779}},{"id":"7132","data":{"label":"Bluestone Software","x":3465.270415537857,"y":-1461.4441480263513,"z":536.252984470699}},{"id":"7131","data":{"label":"Health Management Systems Division","x":-561.5131830275823,"y":1638.6101358924207,"z":50.62121838059896}},{"id":"7130","data":{"label":"Medi.com","x":-429.2153490236319,"y":1720.8682385284328,"z":783.8228721545768}},{"id":"7128","data":{"label":"Cohen Systems","x":1853.194142292733,"y":1426.4260759256467,"z":198.7995704588732}},{"id":"7129","data":{"label":"Sapient Health Network","x":1321.2014715070927,"y":-358.16774427080236,"z":42.52135040367633}},{"id":"7127","data":{"label":"OptiCare Health Systems","x":1697.8010945033984,"y":1460.1314813980525,"z":995.4523773990418}},{"id":"7126","data":{"label":"Wavtrace","x":1021.8834677673199,"y":1673.0024614691456,"z":190.62850111032327}},{"id":"7125","data":{"label":"Indice Multimedia","x":1931.2325145023797,"y":-3048.389723740951,"z":800.7936492072574}},{"id":"7124","data":{"label":"Saatchi & Saatchi","x":-1575.812446917447,"y":-1558.5234867991803,"z":480.8009298729723}},{"id":"7123","data":{"label":"Publicis Groupe S.A.","x":-1582.9246244653928,"y":-1396.404697412986,"z":748.1666847935744}},{"id":"7122","data":{"label":"GTR Group Inventory","x":1378.9057640412566,"y":-3554.226046859757,"z":989.286449657108}},{"id":"7121","data":{"label":"GameStop","x":1526.6556044440485,"y":-3478.994883076285,"z":765.5087119173503}},{"id":"7120","data":{"label":"Green Witch","x":2781.7157994743675,"y":743.9437389701698,"z":29.65464870598855}},{"id":"7119","data":{"label":"FRx","x":1895.7202604020931,"y":-568.3953440316536,"z":654.126690285306}},{"id":"7118","data":{"label":"Great Plains","x":-1608.127259448106,"y":-3199.5591892405264,"z":140.66499698928592}},{"id":"7117","data":{"label":"NetFile","x":2622.6255123636156,"y":1447.5264652314781,"z":754.6466897592906}},{"id":"7116","data":{"label":"Grassroots.com","x":2705.088547378704,"y":1321.4533519830866,"z":93.12581405808906}},{"id":"7115","data":{"label":"GrapeVine for iPlanet","x":783.4518919048064,"y":-3675.700143076674,"z":338.77378719281427}},{"id":"7114","data":{"label":"Deja.com","x":2482.9883863256764,"y":1494.3827719079582,"z":436.6700866508644}},{"id":"7113","data":{"label":"Google","x":2497.5415348287097,"y":1348.331172368752,"z":262.6493546642694}},{"id":"7112","data":{"label":"Golf.com","x":1384.4018857508581,"y":-1851.6315506189667,"z":493.0581239977441}},{"id":"7111","data":{"label":"Quokka","x":-237.43942588090795,"y":-3938.874117248587,"z":531.5606245162004}},{"id":"7107","data":{"label":"Flash Creative","x":-1272.8654207279537,"y":237.128508718979,"z":719.0792924825073}},{"id":"7110","data":{"label":"Greek ISP","x":-2141.071727651374,"y":-971.7138612542426,"z":384.94674234614104}},{"id":"7109","data":{"label":"Israeli ISP","x":-2224.6357935303354,"y":-831.054575963818,"z":813.8687660822617}},{"id":"7108","data":{"label":"Wynd Communications","x":-1420.2682980636405,"y":360.274624628908,"z":705.7592899047327}},{"id":"7106","data":{"label":"GoAmerica","x":-1420.3817567265696,"y":209.0684770574071,"z":590.9329595492896}},{"id":"7105","data":{"label":"Go2Net","x":-668.0706187531887,"y":-3900.855645847424,"z":439.02031496775317}},{"id":"7104","data":{"label":"Infospace","x":227.7412267908294,"y":-4152.460617702291,"z":962.3452506365518}},{"id":"7102","data":{"label":"Hotel Reservation Network","x":-1753.0742401163354,"y":326.6976437800258,"z":730.4958390275675}},{"id":"7103","data":{"label":"TravelNow.com","x":-1838.3978684896204,"y":201.398724548073,"z":803.668678215401}},{"id":"7101","data":{"label":"interLAN","x":3634.9977736888723,"y":376.2550693587682,"z":99.80159215114371}},{"id":"7099","data":{"label":"Home Financial Network","x":-1507.2408999120182,"y":754.6983620832989,"z":83.18981597065722}},{"id":"7100","data":{"label":"Network Systems","x":3501.311123664059,"y":455.9904393285742,"z":264.22468544349175}},{"id":"7098","data":{"label":"NorthPoint Communications Group","x":3775.1295996376393,"y":-1653.3422147426286,"z":334.377767267515}},{"id":"7097","data":{"label":"Network Plus","x":3911.156288185095,"y":-1575.369179514002,"z":770.4368620300115}},{"id":"7096","data":{"label":"Financial Services Provider Network","x":3794.7717484088425,"y":154.58509049485474,"z":839.753541325644}},{"id":"7095","data":{"label":"Pacific Softworks","x":3711.9495900961483,"y":33.972650037488165,"z":297.26533584620717}},{"id":"7094","data":{"label":"iCompression","x":-2106.797854735032,"y":-1436.603451017103,"z":765.2581152583186}},{"id":" Universal Online","data":{"label":"Globalcom","x":-1230.7701544012343,"y":1533.9955073590054,"z":743.9270250254682}},{"id":"7092","data":{"label":"Global Villager","x":2337.0544241642474,"y":1067.9537322019023,"z":804.5327292640061}},{"id":"7091","data":{"label":"Donia Telecom","x":687.7018793155635,"y":1429.934645528524,"z":673.2876151135179}},{"id":"7090","data":{"label":"Gemtron","x":3379.364459583556,"y":-1531.806868279431,"z":365.84105904099107}},{"id":"7089","data":{"label":"EVision USA.com","x":3300.846829685257,"y":-1389.1623593556592,"z":375.4664146794655}},{"id":"8248","data":{"label":"ViewSoft","x":-1430.917974643176,"y":-2367.346605626185,"z":148.39519200262185}},{"id":"7086","data":{"label":"Global Link","x":701.4876833644621,"y":-2335.4077337997974,"z":736.8562190114438}},{"id":"7088","data":{"label":"Global Serve","x":3328.344097446814,"y":-1403.6898222872778,"z":26.47085469134303}},{"id":"7085","data":{"label":"Solista Global","x":768.3737750187775,"y":-4083.2975026917006,"z":16.57673639842372}},{"id":"7084","data":{"label":"Gartner Group","x":617.7201773538645,"y":-4056.4341005427286,"z":802.8052819357798}},{"id":"7083","data":{"label":"NECX","x":4233.375714749623,"y":-2143.889570439273,"z":44.87869272945155}},{"id":"7081","data":{"label":"Peoplesound","x":-1183.3665482421577,"y":-3035.853932724304,"z":950.1202356822846}},{"id":"7082","data":{"label":"Gateway","x":3459.9853993270135,"y":-2051.5955685589074,"z":223.19135134843603}},{"id":"7080","data":{"label":"Vitaminic","x":-1060.6640809727292,"y":-3126.4120428959277,"z":498.6850869348949}},{"id":"7079","data":{"label":"Part of Uralrelcom","x":1622.8451411686756,"y":-3819.414272386508,"z":212.72795693897217}},{"id":"7077","data":{"label":"Interedge","x":184.27451342667064,"y":-3937.895394975293,"z":812.9094363074809}},{"id":"7078","data":{"label":"rStar","x":3278.4709445458575,"y":533.791721111661,"z":407.01848937474796}},{"id":"7076","data":{"label":"Getronics","x":275.29324817743145,"y":-4062.9682420182985,"z":596.0816297158144}},{"id":"7075","data":{"label":"Amazon.com","x":-1490.1014209314405,"y":1027.071470308234,"z":517.1250648721024}},{"id":"7074","data":{"label":"ebi Solutions","x":-2104.397794998573,"y":-57.091039830544105,"z":806.4311531066672}},{"id":"7073","data":{"label":"Gentia Software","x":-2092.6793253216306,"y":100.72191729528276,"z":507.7069755229493}},{"id":"7071","data":{"label":"DRS Technologies","x":1778.7181239660376,"y":-4204.78187820198,"z":269.7687198031513}},{"id":"7072","data":{"label":"General Atronics","x":1910.9823484547524,"y":-4137.06564069117,"z":241.42384213897182}},{"id":"7070","data":{"label":"CyberRamp","x":3136.677144444221,"y":-1184.5965553742167,"z":294.2877055978663}},{"id":"7069","data":{"label":"NeoSoft","x":3258.0616335967516,"y":-1441.6469402936318,"z":646.3699135416008}},{"id":"7068","data":{"label":"Avenel Ventures","x":-121.58435857099539,"y":-3355.4282997318696,"z":982.1682075291336}},{"id":"7067","data":{"label":"EResource Capital","x":2437.4713995626025,"y":-3794.1376916254612,"z":862.1318948637346}},{"id":"7065","data":{"label":"ICG","x":-1188.3274898458444,"y":-3226.639066571737,"z":140.7022491118948}},{"id":"7066","data":{"label":"eMarket Capital","x":963.3046503849782,"y":-1923.4880799956527,"z":739.7110216270635}},{"id":"7064","data":{"label":"SPP Capital","x":3686.363846472859,"y":132.86976614207924,"z":997.138905390911}},{"id":"7063","data":{"label":"OffRoad Capital","x":3745.7351241909255,"y":-6.819234193075317,"z":37.58112132896208}},{"id":"7062","data":{"label":"Lipstream Networks","x":784.4207475309076,"y":1738.2264674973067,"z":819.9601355918807}},{"id":"7061","data":{"label":"Sequoia Capital","x":935.8649217542243,"y":1744.9798294893899,"z":193.12714460586022}},{"id":"7060","data":{"label":"Logisoft","x":-378.8682673782241,"y":-3375.9659101844163,"z":811.7846470727379}},{"id":"7059","data":{"label":"Internet Connection Services","x":2349.8344222839532,"y":-164.41861894921203,"z":847.0739305347523}},{"id":"7058","data":{"label":"Tanknology-NDE Internationals Outbound Services Group","x":-1463.1066441793848,"y":559.4589068759869,"z":209.07403647495838}},{"id":"7057","data":{"label":"Comfort Systems USA","x":-1340.2151953992466,"y":641.8838030603893,"z":289.46717422290556}},{"id":"7056","data":{"label":"Guru.com","x":2892.2343105980126,"y":867.2392696258785,"z":590.5395637724027}},{"id":"7055","data":{"label":"Greylock","x":3015.498977470329,"y":796.2387762848584,"z":71.72486904162922}},{"id":"7054","data":{"label":"ComStar.net","x":3600.285390298709,"y":77.59532247141033,"z":159.99265644509575}},{"id":"7051","data":{"label":"Gauss","x":2436.2102763043004,"y":-3600.647915589251,"z":907.9621820017126}},{"id":"7053","data":{"label":"Globix","x":3628.183387374297,"y":227.16749462535518,"z":839.8746361619136}},{"id":"7052","data":{"label":"2CK","x":2582.1192328994493,"y":-3562.230750502697,"z":844.1101198072103}},{"id":"7049","data":{"label":"US Home & Garden","x":-1340.4184257015572,"y":-1824.5484689211844,"z":672.5824639357049}},{"id":"7050","data":{"label":"E Garden and Gardenside","x":-1269.774143740533,"y":-1976.2953151531042,"z":496.3709168002073}},{"id":"7048","data":{"label":"SPACE.com","x":1266.5570591186852,"y":-2773.4003178183825,"z":995.7121824170409}},{"id":"7047","data":{"label":"Gannett Co.","x":4121.818462095813,"y":7.348399466057344,"z":202.47825334270365}},{"id":"7044","data":{"label":"TRIP.com","x":-606.9487475604324,"y":2064.6324542137654,"z":176.7266840014401}},{"id":"8259","data":{"label":"ATU Communications","x":3896.1524697274763,"y":942.6181148825535,"z":33.00989726848469}},{"id":"7045","data":{"label":"Xcelerate","x":4406.3137599030315,"y":-267.1575362278372,"z":125.24461996276592}},{"id":"7046","data":{"label":"e-game","x":4317.31136997696,"y":-122.0372620101025,"z":222.62216388217993}},{"id":"7043","data":{"label":"Destinations.com","x":163.9827838107758,"y":1394.0608142831616,"z":649.7437649965942}},{"id":"7042","data":{"label":"Galileo","x":-4.68065555576959,"y":-4279.57860256398,"z":543.224225622325}},{"id":"7041","data":{"label":"SmartSAN Systems For $23.5 Million","x":3575.3145317935177,"y":-1063.0585868063035,"z":488.7526409508456}},{"id":"7040","data":{"label":"Future Networks for $181 Million","x":-953.5084541086321,"y":-2837.6015704014762,"z":725.9655370558066}},{"id":"7039","data":{"label":"Brasilnet","x":-173.11778195676652,"y":-2827.730542274546,"z":510.2148383650087}},{"id":"7038","data":{"label":"Panaweb","x":-206.66241806762991,"y":-2599.671330070729,"z":176.23997775738843}},{"id":"7037","data":{"label":"the Cash Management Arm of Sterling Commerce","x":2586.305799670895,"y":-3726.656858712159,"z":883.0588225156641}},{"id":"7036","data":{"label":"Infomentum","x":1606.9695021181824,"y":-3714.920630169103,"z":137.3803523111463}},{"id":"7035","data":{"label":"Frontstep","x":1741.4265304464006,"y":-3782.6821138710943,"z":758.9813486984398}},{"id":"7034","data":{"label":"ThePressRoom","x":969.9612668069608,"y":-3802.462223719208,"z":822.0858811756189}},{"id":"7033","data":{"label":"First Street","x":668.1475064157776,"y":-3898.9815855779407,"z":780.6923202658273}},{"id":"7031","data":{"label":"Interactive Gallery","x":3072.303803242692,"y":1382.4428820734029,"z":126.25434528573898}},{"id":"7032","data":{"label":"WebPrime","x":975.4932781578077,"y":-3936.547854103036,"z":885.9956289409752}},{"id":"7027","data":{"label":"Loudcloud","x":-983.7145500913762,"y":745.8109333618468,"z":243.6677203000448}},{"id":"7030","data":{"label":"New Frontier","x":2948.4021533440155,"y":1475.546267812092,"z":883.3366923857528}},{"id":"7028","data":{"label":"STV","x":2512.9224024602436,"y":1423.4665882543231,"z":590.0454871844902}},{"id":"7026","data":{"label":"TheStreet.com","x":4357.193628189835,"y":-1384.8140661079087,"z":511.83402080066065}},{"id":"7029","data":{"label":"Jedor","x":2749.9235913460643,"y":1390.7567604000706,"z":814.1518553729754}},{"id":"7025","data":{"label":"Formus Communications","x":1567.912355800122,"y":56.09109647618334,"z":651.9584607110149}},{"id":"7024","data":{"label":"Vosaic","x":-1240.9929197230156,"y":344.9419227530543,"z":510.89417387846134}},{"id":"7023","data":{"label":"Forever Enterprises","x":3428.0900006519505,"y":-808.0186363229423,"z":516.6397841782771}},{"id":"7022","data":{"label":"Lincoln Heritage","x":3319.909271872226,"y":-910.367258286697,"z":639.7512728832062}},{"id":"7021","data":{"label":"Wireless Group","x":-1238.5751615520735,"y":-3242.179374489773,"z":932.3055488925748}},{"id":"7020","data":{"label":"Focus Affiliates","x":-1338.8994487072232,"y":-3124.4670231005766,"z":600.3967322732391}},{"id":"7019","data":{"label":"Optomi","x":-761.8821859659429,"y":-3258.6904439907335,"z":815.6935757897006}},{"id":"7018","data":{"label":"Firstwave","x":-709.4907110801246,"y":-3406.9704883830027,"z":191.72554857160097}},{"id":"7017","data":{"label":"Cornerstone First","x":-1249.5866023116355,"y":-3028.3078697063256,"z":605.1864005433574}},{"id":"7013","data":{"label":"Rich Earth","x":3657.1723144509615,"y":-1357.1295282518254,"z":673.1288468798468}},{"id":"7016","data":{"label":"Invest Tracker Technologia","x":75.89792296236328,"y":-3827.085559784099,"z":735.6250933055761}},{"id":"7015","data":{"label":"Thomson Financial","x":233.76719437055363,"y":-3816.8759696047846,"z":444.3392016764842}},{"id":"7014","data":{"label":"GlobalNet","x":3675.4497086252813,"y":-1196.6464688023807,"z":787.5919360924188}},{"id":"7012","data":{"label":"GlobalNetFinancial.com","x":2122.3831936788083,"y":-2219.2103521344598,"z":431.40659769303704}},{"id":"7011","data":{"label":"AISoftware","x":3812.9668467839256,"y":-2789.5625607103293,"z":184.492294134041}},{"id":"7010","data":{"label":"GenRad","x":2981.292852135355,"y":-3142.754847037496,"z":38.46601050920029}},{"id":"7009","data":{"label":"FleetBoston Financial","x":3086.1541353563225,"y":-3038.7995392554444,"z":271.31669390492294}},{"id":"7008","data":{"label":"Millennium Daqcom","x":-1623.156006841897,"y":858.2352484618423,"z":21.250759188635726}},{"id":"7007","data":{"label":"Rushmore","x":-1482.6823175484378,"y":925.7631786368329,"z":851.317835001093}},{"id":"7006","data":{"label":"Synovus Financial","x":-1254.290436542907,"y":-2599.0338130006794,"z":500.63280608140826}},{"id":"7005","data":{"label":"Pioneer Financial Group","x":-1488.181747570843,"y":-2815.326290889957,"z":284.41871005822895}},{"id":"7004","data":{"label":"Zurich Financial","x":350.6512442765743,"y":-2487.421608764782,"z":314.550709155496}},{"id":"7003","data":{"label":"FASRE Field Services","x":3209.3550894440477,"y":737.0089174528503,"z":944.9512383347031}},{"id":"7002","data":{"label":"MortgageRamp.com","x":3083.9081430068563,"y":831.5995432393038,"z":824.6297663988644}},{"id":"7001","data":{"label":"Symbio-Tech","x":2833.7472141475846,"y":952.1948182801234,"z":247.1507926091745}},{"id":"6999","data":{"label":"Fast Company","x":858.7512512458129,"y":1580.3664507132044,"z":937.3792426918731}},{"id":"7000","data":{"label":"Franklin Telecommunications","x":2985.1669195619234,"y":969.3502076211007,"z":520.2454727040542}},{"id":"8256","data":{"label":"Alaska Communications Systems Holdings","x":2749.3289141895657,"y":1131.6636881200566,"z":78.77653789977823}},{"id":"6998","data":{"label":"FASTNET","x":4299.42715339675,"y":-1019.1190222361088,"z":106.12100836905647}},{"id":"6997","data":{"label":"Redstone Telecom plc","x":-841.9718945500281,"y":-3829.0868567526504,"z":295.5524049054423}},{"id":"6996","data":{"label":"Cronus Technology","x":-1484.0256678802336,"y":-2371.2329552076494,"z":805.2186512523672}},{"id":"6995","data":{"label":"FastComm","x":-1438.126328491329,"y":-2214.1633238959357,"z":574.8903856872076}},{"id":"6993","data":{"label":"Ezenia","x":2028.0089741013335,"y":-4274.586157393904,"z":494.9011969133461}},{"id":"6994","data":{"label":"InfoWorkSpace","x":2187.150891094332,"y":-4249.201708139085,"z":65.122245444309}},{"id":"6992","data":{"label":"Optranet","x":-394.47846976955316,"y":-3590.8859532771385,"z":457.95334649728045}},{"id":"6991","data":{"label":"Extreme Networks","x":-518.570615520302,"y":-3509.0533801194692,"z":748.907429253227}},{"id":"6987","data":{"label":"Vivant Technology","x":3280.593692436678,"y":-2211.7311952485406,"z":35.79148821483646}},{"id":"6990","data":{"label":"Extreme Packet Devices for $415 Million","x":1553.63387705049,"y":-2679.4928534868636,"z":754.4609865686139}},{"id":"6986","data":{"label":"InfoWide","x":3106.712786441408,"y":-2128.8525781001404,"z":376.0991880073308}},{"id":"6989","data":{"label":"Flying Fish Express","x":-167.80406466202658,"y":-3012.99176331117,"z":306.93566053985523}},{"id":"6983","data":{"label":"Sitraka Software","x":40.34466363866113,"y":1668.9162772517966,"z":769.8267604138645}},{"id":"6988","data":{"label":"GlobalCenter","x":1329.3378509399527,"y":-2607.555556325804,"z":998.5175673474846}},{"id":"6985","data":{"label":"Evolve","x":3126.3549287011347,"y":-2271.431014866244,"z":861.1727836401537}},{"id":"6984","data":{"label":"Evite.com","x":180.08860765028658,"y":-4197.213384791585,"z":914.7686705789471}},{"id":"6982","data":{"label":"Everypath","x":26.247502597481798,"y":1514.47668936833,"z":698.4177253035302}},{"id":"6981","data":{"label":"Luko Czech.Net","x":2473.181200272118,"y":1787.2867228782297,"z":178.79443854430232}},{"id":"6980","data":{"label":"Euroweb Agrees","x":3676.622769000378,"y":630.9387630154652,"z":969.6062091801041}},{"id":"6979","data":{"label":"Eunet Slovakia","x":2726.4538336222677,"y":1612.6904978160383,"z":719.4335972049133}},{"id":"6976","data":{"label":"Global Network Services","x":2559.7743912464066,"y":1830.95923185424,"z":929.1847561471329}},{"id":"6978","data":{"label":"EuroWeb","x":-1653.0727009171505,"y":-2942.5240775270577,"z":864.3248717845489}},{"id":"6977","data":{"label":"R-net","x":2701.1586823775187,"y":1777.120139130846,"z":903.3205322256464}},{"id":"6975","data":{"label":"Euroweb International","x":3383.67093241556,"y":-740.1117282855867,"z":511.1870434363719}},{"id":"6971","data":{"label":"IntelligentX","x":4095.423840003643,"y":-1216.033228157211,"z":718.9189035380504}},{"id":"6974","data":{"label":"MetroSplash.com","x":2713.8730728120163,"y":-1665.700598932055,"z":657.7139583129867}},{"id":"6973","data":{"label":"Spray","x":1005.176336996547,"y":1471.2707779343982,"z":87.61477760166203}},{"id":"6972","data":{"label":"Lycos","x":2564.8812688013422,"y":-1632.6197588268042,"z":762.5911818093896}},{"id":"6970","data":{"label":"FunBug.com","x":3979.7607407132455,"y":-1358.113080611019,"z":615.4593568536837}},{"id":"6969","data":{"label":"eUniverse","x":-1333.2935320168604,"y":1076.8746229425096,"z":775.7924311698057}},{"id":"6968","data":{"label":"ForumNation","x":4233.665206377435,"y":-1495.1775428355795,"z":176.99759749564902}},{"id":"6967","data":{"label":"Pokemonvillage","x":4041.483823762912,"y":-1498.887905588418,"z":366.94666284462096}},{"id":"6966","data":{"label":"ReserveAuction","x":4026.743402426162,"y":-1256.266466661299,"z":227.2622932548909}},{"id":"6965","data":{"label":"Dustcloud.com","x":4223.260642213153,"y":-1247.558707164064,"z":520.3572376266965}},{"id":"6964","data":{"label":"Casesladder.com","x":4273.039776493813,"y":-1297.5580866453492,"z":63.896499225220005}},{"id":"6963","data":{"label":"FunOne.com","x":4141.356943031316,"y":-1525.11281152199,"z":865.4715162163365}},{"id":"6962","data":{"label":"EUniverse","x":-1311.8266091932594,"y":1543.661885171523,"z":136.51847054773313}},{"id":"6961","data":{"label":"eLiberation.com","x":2882.1924840880856,"y":440.0784523631846,"z":438.7529563086323}},{"id":"6959","data":{"label":"NetRidium","x":-1529.076197391131,"y":-2318.577169057637,"z":370.6671056659272}},{"id":"6960","data":{"label":"eSynch","x":3027.3248815353227,"y":348.78080564712036,"z":868.5649563199552}},{"id":"6957","data":{"label":"Gateway Energy","x":1760.3953843789086,"y":215.30147284543273,"z":194.93528518302793}},{"id":"6958","data":{"label":"ESS","x":-1562.088928226342,"y":-2162.7917292819475,"z":656.4448213643021}},{"id":"6956","data":{"label":"Apexx","x":1868.698555744254,"y":-78.86776620428282,"z":595.4648263790232}},{"id":"6954","data":{"label":"ESoft","x":1387.7486323459952,"y":2129.3162236025655,"z":684.7693469348262}},{"id":"6955","data":{"label":"Second Round of Financing","x":1813.4065837130074,"y":194.03699479756142,"z":541.8954778085374}},{"id":"6953","data":{"label":"eSoft","x":1752.1799237994592,"y":48.09939168485653,"z":389.47370939465077}},{"id":"6952","data":{"label":"Telebit","x":3358.4629285089604,"y":121.72767274672151,"z":366.1802656436919}},{"id":"6951","data":{"label":"TouchWave","x":3426.2347373323664,"y":103.80393855339753,"z":361.3241177350956}},{"id":"6950","data":{"label":"Saraide.com","x":3250.279454804433,"y":84.272806144676,"z":59.05712342814162}},{"id":"6949","data":{"label":"Torrent Networking","x":3380.282600222461,"y":-184.54775041114408,"z":949.6016057543966}},{"id":"6945","data":{"label":"EPresence","x":4009.49441105403,"y":-2733.1076828869764,"z":803.8720124417935}},{"id":"6948","data":{"label":"OZ.COM","x":3476.429856257246,"y":-110.92384317227152,"z":292.628103972977}},{"id":"6946","data":{"label":"SND","x":-1041.1836142325005,"y":1266.4445855651993,"z":99.60587246431052}},{"id":"6947","data":{"label":"Ericsson SpA","x":3950.8365449979783,"y":-2680.2935088036743,"z":406.7602435665123}},{"id":" Renames Itself EPIQ Systems","data":{"label":"PHiTECH for $6.25 Million","x":3875.2039278855245,"y":83.21399233218563,"z":465.17610843015643}},{"id":"6943","data":{"label":"Electronic Processing","x":3077.155395488093,"y":696.5366155061038,"z":138.36315105336539}},{"id":"6942","data":{"label":"enCommerce for $470 Million","x":-751.0251031703851,"y":1301.5917864427884,"z":458.3964502223665}},{"id":"6941","data":{"label":"Entrust","x":-780.8120916101243,"y":1155.6931575097005,"z":321.9009658106215}},{"id":"6939","data":{"label":"Gaylord Communications","x":3904.0189598587785,"y":-1442.3977332168688,"z":199.64542953142316}},{"id":"6940","data":{"label":"Musicforce.com and Lightsource.com","x":3987.398482962145,"y":-1310.1317548913107,"z":804.1901628142309}},{"id":"6938","data":{"label":"Part of Belamo","x":2998.7304980156314,"y":1116.666773568967,"z":192.74876246909844}},{"id":"6937","data":{"label":"BigStar Entertainment","x":3089.0896061065887,"y":1001.5211983763029,"z":637.6085727001557}},{"id":"6936","data":{"label":"Lightbinders","x":-307.7783230666537,"y":-3175.922019506961,"z":645.7023877321882}},{"id":"6935","data":{"label":"Xyvision","x":2707.1150619636874,"y":805.9061982066996,"z":70.6846809170536}},{"id":"6934","data":{"label":"Xyvision Enterprise Solutions","x":-206.79964526146932,"y":-3302.703809994987,"z":815.6373983245197}},{"id":"6933","data":{"label":"Cadmus Communications","x":-357.4703291600508,"y":-3328.7922805730336,"z":589.459458459324}},{"id":"6932","data":{"label":"Enterprise Engines","x":2252.8389050088717,"y":1988.4659816653211,"z":91.18715741242012}},{"id":"6931","data":{"label":"QAD","x":2100.195095325418,"y":1974.748195591451,"z":197.72740599155503}},{"id":"6930","data":{"label":"Global Enterprise Technology","x":1654.142055524957,"y":-4260.042010545387,"z":759.4054824116859}},{"id":"6929","data":{"label":"Pegasus","x":508.35998605185114,"y":-4454.762023304156,"z":130.2307628222028}},{"id":"6928","data":{"label":"Endemol","x":-1381.0332803724975,"y":881.5983620911647,"z":448.5790216873144}},{"id":"6927","data":{"label":"Telef�nica de Argentina S.A.","x":-1522.9967285798614,"y":859.6085921369295,"z":534.4197579239343}},{"id":"6926","data":{"label":"EngineeringPerformance","x":3479.6097499034195,"y":516.1044318992163,"z":966.4007488170201}},{"id":"6925","data":{"label":"Embarcadero Technologies","x":3479.603279070723,"y":359.0546101839209,"z":963.3415384232884}},{"id":"6924","data":{"label":"CI Wireless","x":3374.863808073822,"y":-1052.375426494516,"z":320.25674731971355}},{"id":"6923","data":{"label":"NetSat28 Company","x":3208.0131814017095,"y":-803.7594835791024,"z":884.9728433052817}},{"id":"6921","data":{"label":"EDS","x":-907.0623366207979,"y":-3100.660154462037,"z":637.3558120546188}},{"id":"6922","data":{"label":"Systematics","x":-974.5270096315876,"y":-2950.5460623605213,"z":826.1622874327617}},{"id":"6920","data":{"label":"Elron Electronic Industries","x":1541.9104458672218,"y":-889.3784656971329,"z":131.04943272415227}},{"id":"6919","data":{"label":"Mynd","x":2555.48326868353,"y":1657.482698007927,"z":361.6767741724207}},{"id":"6918","data":{"label":"Switzerlands Inter Chip AG","x":3094.9887029175206,"y":-3352.146888307529,"z":941.7577442029203}},{"id":"6917","data":{"label":"CE Consumer Electronic AG","x":3182.086303118549,"y":-3228.6387186216334,"z":507.7109543942617}},{"id":"6916","data":{"label":"Fore Systems","x":2954.2961998096707,"y":-1394.2526500075228,"z":767.2807818797371}},{"id":"6915","data":{"label":"GE","x":3832.3164177685157,"y":-2676.855608046184,"z":607.3102797042113}},{"id":"6914","data":{"label":"ImproveNet","x":2750.385755845382,"y":-1519.5502822270537,"z":110.87730688171837}},{"id":"6913","data":{"label":"General Electric","x":-81.95103375514373,"y":-4335.9069074272165,"z":496.20604147960455}},{"id":"6912","data":{"label":"Texas Micro For $115 Million","x":3910.0212184726215,"y":226.2878383451898,"z":614.4213668006353}},{"id":"6911","data":{"label":"Texas Micro","x":3136.885767952517,"y":-3209.0467082572213,"z":590.3951476389002}},{"id":"6910","data":{"label":"Maximum","x":1811.04102605574,"y":1823.4844791986325,"z":777.6987317371578}},{"id":"6909","data":{"label":"Eidos","x":1887.877937102875,"y":1683.5435149497507,"z":942.9108655637186}},{"id":"6908","data":{"label":"Swiftcall USA","x":3713.524883347789,"y":-2254.672933770262,"z":445.50171702875696}},{"id":"6907","data":{"label":"Outsource Automated Services and Integrated Systems Reservations Services","x":3399.3036538928945,"y":-2164.5792333882264,"z":300.34825929968156}},{"id":"6906","data":{"label":"EGlobe","x":3628.959907410367,"y":-1027.3054151973251,"z":806.9391178367594}},{"id":"6905","data":{"label":"Highpoint Telecoms iGlobe","x":3654.358624174649,"y":-2085.5081542583525,"z":489.135265015012}},{"id":"6904","data":{"label":"Eglobe","x":-452.3984403606637,"y":2020.2120457574902,"z":797.1976397985056}},{"id":"6903","data":{"label":"Inference","x":1083.9185282685298,"y":2020.6904207400703,"z":538.7747552298365}},{"id":"6902","data":{"label":"eGain Communications","x":-730.7870526822635,"y":1853.3156599512768,"z":279.0827762980421}},{"id":"6901","data":{"label":"Nitman Software","x":1206.1962655246907,"y":1776.0536389172848,"z":473.39221447419}},{"id":"6900","data":{"label":"Sitebridge","x":1241.150155369527,"y":1940.9580129015485,"z":215.73377097144152}},{"id":"6899","data":{"label":"EGain","x":1096.670494193062,"y":1890.931062423343,"z":610.1889397234559}},{"id":"6898","data":{"label":"Siemens","x":1648.9813893073315,"y":1241.634558682339,"z":828.6694880461661}},{"id":"6897","data":{"label":"NetScreen Technologies for $905 Million","x":1530.5906964602746,"y":1413.4028046489293,"z":4.9947841644946145}},{"id":"6896","data":{"label":"Numetrix","x":-1557.3982901080308,"y":-1752.7527046098057,"z":500.94966094671946}},{"id":"6895","data":{"label":"Matach Assets","x":793.5932333241321,"y":-4222.283902748679,"z":286.56205914202235}},{"id":"6893","data":{"label":"MSI","x":1055.4285504375525,"y":-451.7073839583454,"z":556.4841363080224}},{"id":"6894","data":{"label":"Britannica.com","x":832.8466843237838,"y":-4367.989680823532,"z":289.59543120266807}},{"id":"6892","data":{"label":"iPing","x":2940.8859762765487,"y":-1265.2511579525612,"z":203.35876212698366}},{"id":"6891","data":{"label":"ECal","x":3535.4719263842053,"y":-79.64195415982795,"z":262.8307628426938}},{"id":"6890","data":{"label":"Arbor Associates","x":-302.7071792407778,"y":1084.6623547722975,"z":636.2819474394819}},{"id":"6889","data":{"label":"EBenX","x":-303.3299159564881,"y":1254.1361289951328,"z":102.3193577317929}},{"id":"6888","data":{"label":"eOrganizer","x":2681.4709029345686,"y":759.2108493560818,"z":894.8806960915798}},{"id":"6887","data":{"label":"3Cube","x":2934.3497083418133,"y":678.6660077796405,"z":5.837439722306881}},{"id":"6886","data":{"label":"Eastern Software","x":-1036.2467430267054,"y":688.666392741392,"z":24.771080467862472}},{"id":"6885","data":{"label":"Intercept Group","x":1232.445462571316,"y":-4136.912726888927,"z":932.7869312309535}},{"id":"6884","data":{"label":"Netpliance","x":-655.7318758126885,"y":-2448.035241450107,"z":6.9121016876159125}},{"id":"6883","data":{"label":"OneMain.com","x":-538.241946791376,"y":-2308.003384685544,"z":811.8695173638723}},{"id":"6882","data":{"label":"MindSpring Enterprises","x":-459.43128763601317,"y":-2347.2454018139956,"z":471.00087558231786}},{"id":"6880","data":{"label":"Etoolz","x":-44.80991188129428,"y":-3279.260115343154,"z":803.1834935974897}},{"id":"6881","data":{"label":"Eagle Wireless","x":1154.091157612589,"y":2365.8376382539327,"z":552.1391892512593}},{"id":"6879","data":{"label":"Eagle Wireless International","x":81.90903512214345,"y":-3190.2260184382803,"z":793.0764610696301}},{"id":"6878","data":{"label":"E-Sync Division","x":711.1996803987172,"y":-3837.6076938251017,"z":553.2090420616236}},{"id":"6877","data":{"label":"Howard Systems","x":545.2362049062385,"y":-3814.8237129732624,"z":968.9384394231308}},{"id":"6876","data":{"label":"Learn2.com","x":2308.281824679596,"y":-361.7663702595828,"z":596.5629811862227}},{"id":"6875","data":{"label":"Logistics Firm","x":2463.6259632590663,"y":-504.6878851122692,"z":586.3297067348221}},{"id":"6874","data":{"label":"Cendants Books.com Web site","x":-2087.701733433254,"y":26.588948555384377,"z":514.7129955690963}},{"id":"6873","data":{"label":"BarnesandNoble.com","x":-2272.116687877117,"y":-919.1305123429715,"z":55.943978746411105}},{"id":"6872","data":{"label":"Tycho Networks","x":1356.1072941355524,"y":-476.01353411140553,"z":434.4422680473921}},{"id":"6871","data":{"label":"DSL.net","x":1250.3659554761434,"y":-592.9826209190051,"z":929.259604086882}},{"id":"6868","data":{"label":"Drkoop.com","x":1969.853271838011,"y":1218.2635608751616,"z":503.5291920419633}},{"id":"6870","data":{"label":"Staples","x":1029.558997309533,"y":-126.35491644498961,"z":84.49440852181512}},{"id":"6869","data":{"label":"DrDrew.com","x":2664.5453517821907,"y":-289.6733136826433,"z":492.3146866753534}},{"id":"6867","data":{"label":"C. Everett Koop","x":2573.1405882689996,"y":-211.1335934041208,"z":746.2750471366721}},{"id":"6866","data":{"label":"drkoop.com","x":3101.9600226057228,"y":-3781.509899618827,"z":927.5593964691533}},{"id":"6865","data":{"label":"Prime Bancshares","x":2664.324316340949,"y":-352.726030269524,"z":882.2191598126037}},{"id":"6863","data":{"label":"Infogrames","x":4123.97667147396,"y":241.75863618985022,"z":860.9717864405222}},{"id":"6864","data":{"label":"Hasbro Interactive and Games.com","x":4130.876739543114,"y":-1653.6550423378862,"z":888.993485897498}},{"id":"6861","data":{"label":"Buck","x":-1944.088563296093,"y":-2007.1628103324706,"z":146.44230646189206}},{"id":"6862","data":{"label":"Interest in LiveWireMedia","x":-1958.0369007354193,"y":-1853.8208908541665,"z":892.4096983914231}},{"id":"6860","data":{"label":"Data Broadcasting","x":-896.6925244023037,"y":-725.5575465317743,"z":822.2566933668738}},{"id":"6858","data":{"label":"Verant Interactive","x":2635.4170938195857,"y":1058.9120202321774,"z":254.8068124752072}},{"id":"6859","data":{"label":"Vertex Interactive","x":3528.5230070841453,"y":1259.1053828692338,"z":566.6441928110506}},{"id":"6857","data":{"label":"Consumer Health","x":890.7916503274964,"y":2109.04778516453,"z":760.548481033275}},{"id":"6856","data":{"label":"Advance Paradigm","x":1048.0356543496941,"y":2086.3793105304467,"z":472.3720752256184}},{"id":"6855","data":{"label":"Bigfoot Interactive","x":3506.2687235315398,"y":-1517.2367895199986,"z":998.5529510292521}},{"id":"6854","data":{"label":"eMerge Interactive","x":-412.5817214249905,"y":619.2754924769706,"z":202.57541006130108}},{"id":"6853","data":{"label":"Lead Dog","x":-2122.4312370763164,"y":-438.3413699319117,"z":57.511777972879315}},{"id":"6852","data":{"label":"Iconixx","x":-2144.054958311799,"y":-593.7758631092529,"z":594.9452692523711}},{"id":"6851","data":{"label":"MarchFirst Assets","x":-2005.264575660451,"y":288.51781764452426,"z":887.4912810382048}},{"id":"6849","data":{"label":"OpinionWare","x":2545.9178293666355,"y":1062.8110437387932,"z":749.505730642935}},{"id":"6850","data":{"label":"Divine InterVentures","x":-600.8138181309632,"y":1200.8061416827932,"z":391.8429876844647}},{"id":"6848","data":{"label":"DataBites","x":2722.327970407272,"y":884.6052542139105,"z":727.4246670579381}},{"id":"6847","data":{"label":"Divine","x":2888.4606416330626,"y":-3638.7772230488895,"z":191.74050511147178}},{"id":"6846","data":{"label":"Voice Technologies Group","x":1722.1610428544418,"y":-166.2225923819624,"z":80.82206529414093}},{"id":"6845","data":{"label":"Ford Microelectronics","x":1463.555798655887,"y":39.42606827321288,"z":18.140331379842944}},{"id":"6844","data":{"label":"Trillium","x":1616.2236308528045,"y":22.2176572179942,"z":39.35004492593386}},{"id":"6843","data":{"label":"Data Kinetics","x":1670.269939532236,"y":-238.01194906123692,"z":438.24690511784905}},{"id":"8240","data":{"label":"Madison Square Garden","x":1672.621887668688,"y":-185.69060221900872,"z":497.2765471021872}},{"id":"6841","data":{"label":"Softcom","x":1560.7269211738712,"y":32.720968929987976,"z":240.27934064999945}},{"id":"6840","data":{"label":"NetBoost","x":1490.4439402294956,"y":43.09954443286915,"z":393.701094215084}},{"id":"6839","data":{"label":"Ipivot","x":1586.6668626456121,"y":-312.81962174398086,"z":27.780338350298138}},{"id":"6838","data":{"label":"Selectica","x":3829.007663767532,"y":-1449.464199060078,"z":918.0520217928463}},{"id":"6837","data":{"label":"Intel 64 Fund","x":3779.31344570527,"y":-1307.7803683432353,"z":5.833497925452846}},{"id":"6836","data":{"label":"Panja","x":1554.7992908957513,"y":-317.74190480676225,"z":232.8746104156374}},{"id":"6835","data":{"label":"$5 Million Investment","x":3017.6676288025874,"y":1548.9205817153115,"z":791.1641525174736}},{"id":"6834","data":{"label":"IntelliCorp","x":3138.6230620060596,"y":1444.2440088586482,"z":105.44632930202025}},{"id":"6833","data":{"label":"Home Account Network","x":-1204.2570599042206,"y":-2703.165800426229,"z":61.8349163037073}},{"id":"6832","data":{"label":"InteliData","x":3298.6123466486406,"y":-3558.3968529981325,"z":499.15724009429255}},{"id":"6831","data":{"label":"Mamma.com","x":312.7345570509269,"y":1577.0618854422264,"z":159.33696592193613}},{"id":"6830","data":{"label":"TEC","x":364.1694026315877,"y":1319.8206239367073,"z":352.724558350999}},{"id":"6829","data":{"label":"Intasys","x":237.78352059875942,"y":1438.1280705730105,"z":759.3302358384946}},{"id":"6828","data":{"label":"1View Network","x":1849.0459048044713,"y":1722.0784752404006,"z":491.19256696184664}},{"id":"6825","data":{"label":"Infomatic AG","x":3577.4603664457263,"y":-2343.247185886919,"z":766.5117363940202}},{"id":"6827","data":{"label":"IDVDBox","x":-2327.652891890584,"y":-787.9321938203284,"z":969.2514248387687}},{"id":"6826","data":{"label":"Inprimis","x":-2313.476918846966,"y":-948.9051095897476,"z":359.33284829640775}},{"id":"6824","data":{"label":"3D Solutions and Radio Profits","x":-1280.3091114862332,"y":1047.6642020204426,"z":761.9446966918946}},{"id":"6823","data":{"label":"Innuity","x":-1336.6736476180586,"y":907.6588909400543,"z":279.0934888200096}},{"id":"6822","data":{"label":"FastForward Networks","x":435.60208682434586,"y":-1782.312508653129,"z":988.217171528814}},{"id":"6821","data":{"label":"Impulse Buy Network","x":388.0576826460133,"y":-1498.1755358254295,"z":717.0038279230841}},{"id":"6818","data":{"label":"Knowledge Systems","x":3299.0834070897854,"y":657.5187340540906,"z":534.4365554168247}},{"id":"6820","data":{"label":"WebSpective Software","x":352.3897567638087,"y":-1457.4725912595732,"z":249.88567859298928}},{"id":"6819","data":{"label":"The Jacobson Group","x":3153.4916835532185,"y":740.5232210193008,"z":324.6221412889825}},{"id":"6817","data":{"label":"Network Solutions","x":3430.1212872028145,"y":690.3100017338384,"z":207.63437159869434}},{"id":"6816","data":{"label":"Sales Technology","x":3148.0917987046614,"y":858.1851822439712,"z":332.99722662664544}},{"id":"6815","data":{"label":"TISSintra","x":1689.8846492194953,"y":1996.0024995049698,"z":996.1382891525825}},{"id":"6814","data":{"label":"InfoVista","x":1542.938236416181,"y":2056.8764664847986,"z":976.6953364983582}},{"id":"6812","data":{"label":"Red Wing","x":3971.097671009704,"y":208.91705388233095,"z":961.9497001550084}},{"id":"6813","data":{"label":"Ardent Software","x":2886.1999665210697,"y":-3342.7883834777604,"z":556.3864364228436}},{"id":"6807","data":{"label":"DiscoveryCom","x":-403.84338672437434,"y":-3223.6942757003008,"z":748.0255162883099}},{"id":"6811","data":{"label":"Active IQ","x":4027.0093809142236,"y":356.1058001520223,"z":986.1896994538879}},{"id":"6810","data":{"label":"divine","x":2715.9983928845213,"y":1049.3652364260151,"z":631.0961109262954}},{"id":"6809","data":{"label":"Atmosphere Networks","x":1625.7101329436273,"y":1870.2621482421437,"z":620.3422263351898}},{"id":"6808","data":{"label":"Ditech","x":1788.3664690005244,"y":1918.8690698585515,"z":50.974630891798434}},{"id":"6804","data":{"label":"Theatre Direct International","x":-580.9012744753973,"y":-3222.4773650900615,"z":63.564242576639174}},{"id":"6806","data":{"label":"Petstore.com","x":5.6553211937052765,"y":-2836.6552906807956,"z":243.91462058734348}},{"id":"6805","data":{"label":"Getko Direct Response","x":960.4251982085507,"y":-4314.120978974981,"z":830.2862619625247}},{"id":"6802","data":{"label":"Commerx","x":286.74545884492954,"y":-23.807181161670087,"z":693.706197391949}},{"id":"6803","data":{"label":"Hollywood.com","x":-620.9354750454495,"y":-3078.429696576754,"z":508.34106245298585}},{"id":"6801","data":{"label":"MSC Industrial Direct Co.","x":111.88542547484394,"y":27.89052362772145,"z":230.4248853054145}},{"id":"6796","data":{"label":"eCapitalist Financial Services","x":4114.699126377335,"y":-1799.6989960083065,"z":559.9782725428483}},{"id":"6800","data":{"label":"Direct Access Interactive","x":-783.3361840348566,"y":650.436083239706,"z":129.62634327589927}},{"id":"6799","data":{"label":"Integral Systems","x":440.1111632727734,"y":-869.511005257983,"z":164.0961787051045}},{"id":"6798","data":{"label":"Strategic Outcomes Services","x":320.5082430406592,"y":2161.690411657799,"z":339.4766290638316}},{"id":"6797","data":{"label":"CareScience","x":208.14323337439419,"y":2060.5606944111005,"z":154.6963879369896}},{"id":"6795","data":{"label":"JB Oxford Holdings","x":4228.723815410296,"y":-1698.3963377149475,"z":728.6859508436631}},{"id":"6794","data":{"label":"Certain Hanover Direct Assets","x":2830.2257583147857,"y":-2187.2046436432925,"z":10.92286401148157}},{"id":"6793","data":{"label":"HSN","x":1045.0309608846464,"y":2250.8228066408674,"z":320.76524680639795}},{"id":"6792","data":{"label":"SiteSmith","x":-899.3895083548546,"y":-2625.4476334408955,"z":757.2795828078233}},{"id":"6791","data":{"label":"GoRacing Division","x":2147.3766216899567,"y":-226.1460193643088,"z":576.226472977205}},{"id":"6788","data":{"label":"Blue Byte","x":373.96485486646225,"y":1924.664563295496,"z":415.9424566416472}},{"id":"6790","data":{"label":"Egreetings Network","x":1599.6962236031204,"y":-2501.7173717955384,"z":554.3423239464322}},{"id":"6789","data":{"label":"Fusion Networks","x":858.694167793476,"y":1325.1618130917905,"z":14.102088313100003}},{"id":"6787","data":{"label":"Ubi Soft","x":211.22067483257797,"y":1951.188060073513,"z":717.6244527857591}},{"id":"6786","data":{"label":"Made In Heaven Entertainment","x":4462.2233026976655,"y":-399.99199800533825,"z":690.895798130182}},{"id":"6785","data":{"label":"Launch Media","x":4398.5401005770245,"y":-251.72710112382356,"z":529.0629268130891}},{"id":"6784","data":{"label":"Fontanosa Project","x":-2295.808829367927,"y":-1566.9899705831658,"z":683.9688535377048}},{"id":"6783","data":{"label":"Mission West Properties","x":-2243.5254276846285,"y":-1706.9068351958363,"z":171.14651376397316}},{"id":"8260","data":{"label":"ATU Long Distance","x":-381.0303736493688,"y":-3962.1858788895292,"z":934.7807669644193}},{"id":"6782","data":{"label":"Sonicopia","x":-1094.9178072139784,"y":-3227.436926771495,"z":265.1527558862743}},{"id":"6781","data":{"label":"Pulse","x":-981.0600953912012,"y":-3329.907715941456,"z":287.528025553899}},{"id":"6780","data":{"label":"Sonic Foundry","x":2605.9311587625853,"y":1278.4231722714048,"z":516.0279936973136}},{"id":"6779","data":{"label":"GT Interactive Software","x":4032.3370477337767,"y":-1654.286645210149,"z":960.8507419383177}},{"id":"6778","data":{"label":"Infogrames Entertainment","x":4082.5063673933237,"y":-1505.0653976064928,"z":840.7343210899179}},{"id":"6777","data":{"label":"FVA","x":-1662.8871472633557,"y":1186.6663480836432,"z":529.7375495374376}},{"id":"6776","data":{"label":"ResortQuest","x":-1515.4613723113039,"y":1211.1969664214803,"z":178.56913668243047}},{"id":"6775","data":{"label":"Transatlantic Software","x":3326.294004847785,"y":-389.35668550174523,"z":729.1240769225207}},{"id":"6774","data":{"label":"Applied Digital","x":443.0906529671397,"y":1489.6903393500615,"z":531.2726642303236}},{"id":"6773","data":{"label":"New York Times Digital","x":3557.204432943763,"y":833.1745617110437,"z":434.27960460115725}},{"id":"6771","data":{"label":"SoftAware","x":2960.5698094162453,"y":-2889.075369942414,"z":13.770448355961307}},{"id":"6772","data":{"label":"Flatiron Partners","x":3434.2802257173444,"y":931.900830299779,"z":837.9102620164667}},{"id":"6770","data":{"label":"NaviSite","x":1471.394884339048,"y":-1304.0598273420655,"z":436.71878929964316}},{"id":"6769","data":{"label":"Dell Computer","x":-1785.4968512291123,"y":-2892.1769088940064,"z":238.62916433988124}},{"id":"6768","data":{"label":"Softlab Division","x":4113.638498239827,"y":-2242.067088050226,"z":525.7564579620797}},{"id":"6767","data":{"label":"CSC","x":4015.919566517934,"y":-2360.8464744841704,"z":155.47199374926257}},{"id":"6766","data":{"label":"Gen3","x":1482.5890679498616,"y":-1925.844611076359,"z":480.52583371662297}},{"id":"6765","data":{"label":"ClearData.net","x":2603.7087022570377,"y":983.2473486740782,"z":709.9747550936905}},{"id":"6764","data":{"label":"CYGNS Computer Association","x":-147.10803262429863,"y":-3444.7894338769365,"z":238.70157629555976}},{"id":"6763","data":{"label":"TeleTechHoldings","x":3975.661707704914,"y":-2316.198459741181,"z":30.53361877781868}},{"id":"6762","data":{"label":"CompuNet","x":3226.738177593562,"y":1605.2246187492892,"z":267.5446861964401}},{"id":"6761","data":{"label":"Safeguard Scientifics","x":2377.865709223255,"y":864.2352089563165,"z":157.9114700434796}},{"id":"6760","data":{"label":"Interest in Internet Community Concepts","x":2040.3522446313837,"y":-3409.6263156360765,"z":577.0088432614373}},{"id":"6759","data":{"label":"PopMail.com","x":1890.8272567700733,"y":-3448.6975894484294,"z":894.0395559286595}},{"id":"6755","data":{"label":"InterWave","x":2126.6811778859465,"y":-3444.3778031861084,"z":135.82686599085304}},{"id":"6757","data":{"label":"FiberCore","x":187.43450088766622,"y":1878.3213436981887,"z":525.3002943359033}},{"id":"6758","data":{"label":"Data Communications","x":97.00226053498136,"y":1746.378146126326,"z":507.168310421563}},{"id":"6756","data":{"label":"Wireless","x":2265.149217770054,"y":-3392.854006473499,"z":420.2741888453394}},{"id":"6754","data":{"label":"Covad Communications Group","x":2114.2469308741456,"y":-1846.9275481358272,"z":549.2463590813044}},{"id":"6753","data":{"label":"Nomad Media with Option to Buy","x":-1236.7861664584761,"y":-2821.5479090685153,"z":934.6965589871533}},{"id":"6752","data":{"label":"Streamedia","x":-1170.221025892331,"y":-2962.2270364993897,"z":46.36173325209714}},{"id":"6751","data":{"label":"FrontHost and SkyHigh","x":684.2610676937902,"y":-3817.2065904711335,"z":470.88677999705686}},{"id":"6750","data":{"label":"Shares of BuyItNow.com","x":1597.2149958978598,"y":-2825.590370739941,"z":121.78187654254558}},{"id":"6749","data":{"label":"MWW Group","x":636.2519794791424,"y":-4185.311521065625,"z":964.4008854708486}},{"id":"6748","data":{"label":"Golin/Harris","x":486.2454128863392,"y":-4209.576970710417,"z":725.0433003759209}},{"id":"6747","data":{"label":"Dial-Thru Assets","x":313.76964212418534,"y":-3971.0965734159017,"z":963.9451176548525}},{"id":"6746","data":{"label":"Q Comm","x":199.300498109405,"y":-3852.3454921414905,"z":780.0114792618868}},{"id":"6745","data":{"label":"VEW Telnet","x":-528.9057211364006,"y":1323.0481578214994,"z":700.7575640728865}},{"id":"6744","data":{"label":"World Online International N.V.","x":1807.5745803588725,"y":-217.2216288290847,"z":264.98677912623367}},{"id":"6742","data":{"label":"Mail.com","x":2834.4814289411315,"y":784.5373557133507,"z":240.1631836725693}},{"id":"6743","data":{"label":"Swift Telecommunications","x":2759.123357082034,"y":641.2320010886688,"z":745.9910811521919}},{"id":"6741","data":{"label":"Way Communications","x":721.375925771606,"y":-3994.458171908934,"z":369.1654042410042}},{"id":"6740","data":{"label":"Frontline","x":830.1596718466412,"y":-3885.2907679459986,"z":537.1294515097898}},{"id":"6739","data":{"label":"Ultracom Communications","x":376.0631836063185,"y":1806.2332053172804,"z":506.1994002151975}},{"id":"6738","data":{"label":"Terayon","x":518.3854412798751,"y":1751.3179275870043,"z":362.5005878780809}},{"id":"6737","data":{"label":"DotWireless","x":2154.458254924458,"y":1891.044408194507,"z":498.9187283860301}},{"id":"6736","data":{"label":"Sage Group for $260 Million","x":4238.203355562731,"y":-59.771345171542634,"z":616.669386006714}},{"id":"6735","data":{"label":"Interact Commerce Group","x":2059.4382416997523,"y":-4348.148646698999,"z":177.4396668405891}},{"id":"6734","data":{"label":"Convergent Communications","x":1270.264393552924,"y":2387.012489917659,"z":994.0584072762715}},{"id":"6733","data":{"label":"Texas Pacific Group","x":1392.266734860411,"y":2305.7304169196186,"z":908.6257496636048}},{"id":"6732","data":{"label":"Atlas","x":-1495.6963612573475,"y":-1994.0213675169384,"z":562.6212986659784}},{"id":"6730","data":{"label":"Comm-Press","x":2041.415615492434,"y":-4186.2544069625565,"z":921.8135566470962}},{"id":"6729","data":{"label":"Research Triangle Commerce","x":2312.91442579101,"y":-4042.5494171908076,"z":685.4992902387256}},{"id":"6731","data":{"label":"J.D. Edwards","x":-1627.2338579687926,"y":-1888.845601244093,"z":891.3048061871765}},{"id":"6728","data":{"label":"Alantro Communications","x":2055.6760563083835,"y":1833.7210583769584,"z":987.5015875380631}},{"id":"6727","data":{"label":"TI","x":2033.3284585787096,"y":1978.248042451767,"z":668.6780097918258}},{"id":"6726","data":{"label":"Anderson Consulting Subsidiary ePValue","x":362.43586162568045,"y":-3684.092875249553,"z":902.267419311618}},{"id":"6725","data":{"label":"ICG Commerce","x":481.5743965932238,"y":-3573.982306394859,"z":762.7275654062926}},{"id":"6724","data":{"label":"SAP Aktiengesellschaft","x":1110.332943761302,"y":1358.4478220565852,"z":461.44680101417765}},{"id":"6722","data":{"label":"Aces Research","x":-1946.0400776397705,"y":60.80374367499007,"z":44.30207526506824}},{"id":"6723","data":{"label":"Telogy Networks","x":2040.0614022356012,"y":375.2693447783622,"z":651.2049267828588}},{"id":"6721","data":{"label":"RMI.Net","x":-2041.3441251964912,"y":-75.14452368749244,"z":306.13528366038037}},{"id":"6720","data":{"label":"CommerceBid.com","x":1319.1737347507087,"y":1368.5011540689338,"z":683.0211012596734}},{"id":"6719","data":{"label":"Australia E-Commerce Pty","x":3178.132839324481,"y":587.4917893237434,"z":20.779955123067182}},{"id":"6718","data":{"label":"Toyota Tsusho","x":3097.911111936969,"y":497.09156433102635,"z":888.3504014831236}},{"id":"6717","data":{"label":"Comedy.com","x":3636.628162188753,"y":-1709.3052751732757,"z":686.0142097101012}},{"id":"6716","data":{"label":"Z.com","x":3589.38474556083,"y":-1859.0392558901885,"z":470.1742179045014}},{"id":"6715","data":{"label":"Media One","x":581.2930655305563,"y":-807.6103230306862,"z":877.2487897967765}},{"id":"6714","data":{"label":"FreshFlowerSource.com","x":-2402.142408494956,"y":-1005.9156596409312,"z":29.964640455953706}},{"id":"6713","data":{"label":"Flowers USA","x":-2395.6005804226297,"y":-855.3971275762215,"z":37.168494765972056}},{"id":"6712","data":{"label":"Justatip.com","x":-2046.3331303974155,"y":-1140.27877293132,"z":532.301607739903}},{"id":"6711","data":{"label":"Traffix","x":-2003.9921310541558,"y":-1295.4274286999744,"z":802.1670936680503}},{"id":"6710","data":{"label":"People.com Consulting","x":3991.7363287279513,"y":-1732.6284324341768,"z":966.7337771493741}},{"id":"6709","data":{"label":"Synaptic","x":1721.0818000883728,"y":-2046.3340209316257,"z":949.024055535455}},{"id":"8296","data":{"label":"WKKX-FM","x":1646.064784024993,"y":-2784.7817513261343,"z":907.1111593813001}},{"id":"6707","data":{"label":"euro909.com A/S","x":3425.566893300427,"y":640.4897319902602,"z":541.8351369424541}},{"id":" HI)","data":{"label":"KGMB-TV (Honolulu","x":3129.1926051359724,"y":425.6790863332071,"z":961.9234301161916}},{"id":"6706","data":{"label":"TransWestern","x":3650.0394206655346,"y":-2344.4284783209505,"z":28.17219298478846}},{"id":"6705","data":{"label":"WorldPages","x":3789.6332259121746,"y":-2259.707592420666,"z":481.70978303820135}},{"id":"6704","data":{"label":"Searchbutton","x":3727.6655270448264,"y":446.7968845606165,"z":497.1216931671718}},{"id":"6703","data":{"label":"Mondosoft","x":3612.7759778159707,"y":555.4900405670287,"z":126.7494132638325}},{"id":"6702","data":{"label":"HotJobs.com for $460 Million","x":3701.9153571238294,"y":-1067.6254584292315,"z":348.47855848093315}},{"id":"6701","data":{"label":"Monster.com","x":3836.4008009348663,"y":-1134.8792376657116,"z":161.36375816197068}},{"id":"6700","data":{"label":"Barnes & Noble","x":-1883.6013158950152,"y":239.69458092573223,"z":690.4918852941157}},{"id":"6699","data":{"label":"enews","x":-1833.6869958468799,"y":375.26938008735124,"z":984.5693584206927}},{"id":"6698","data":{"label":"PETsMART.com","x":-2267.677344308222,"y":-1866.7531789202753,"z":134.9977768400079}},{"id":"6697","data":{"label":"PETsMART","x":-2311.062006280681,"y":-1717.6360657681812,"z":629.8205255153536}},{"id":"6696","data":{"label":"ProcureZone.com","x":3210.865609171513,"y":1174.1646442073861,"z":802.244461569851}},{"id":"6694","data":{"label":"ipoPros","x":2138.450187233566,"y":30.80741813608256,"z":121.81728486634213}},{"id":"6695","data":{"label":"Mitsui","x":3207.263616660246,"y":1326.226288335737,"z":647.6049980730612}},{"id":"6693","data":{"label":"TheStreet","x":1968.322292918163,"y":-58.09425121881213,"z":985.3053422898472}},{"id":"6692","data":{"label":"Multex.com","x":3716.1899796150883,"y":995.9426717196293,"z":355.4989113260847}},{"id":"6691","data":{"label":"Merrill Lynch & Co.","x":1479.4571964534043,"y":-3724.1494586256786,"z":248.65050269521439}},{"id":"6690","data":{"label":"Maxon","x":3242.5948286967014,"y":-381.5974336745412,"z":408.903842813142}},{"id":"6686","data":{"label":"Fireworks Creative","x":3500.8675544663492,"y":-264.7433827311206,"z":658.7666271637238}},{"id":"6688","data":{"label":"COGNICASE","x":-1926.2867648145345,"y":-2534.5665626227765,"z":866.5352006721743}},{"id":"6689","data":{"label":"Personus","x":3369.585821847506,"y":-78.6598684293931,"z":896.8187053187535}},{"id":"6687","data":{"label":"Enter.Net","x":3175.4371031789124,"y":-251.63688655353417,"z":626.717067883967}},{"id":"6685","data":{"label":"Chili!Soft","x":1010.5191831115185,"y":-3624.377691086713,"z":103.33716258183712}},{"id":"6684","data":{"label":"Cobalt Networks","x":861.4389583912957,"y":-3521.699529334691,"z":367.14183165456893}},{"id":"6683","data":{"label":"PartsVoice","x":440.0213811990625,"y":1359.4428430430362,"z":231.6462382519049}},{"id":"6682","data":{"label":"Cobalt Group","x":519.6643022302442,"y":1229.5279516741039,"z":209.44539605658542}},{"id":"6681","data":{"label":"Intervu","x":3333.6714773238054,"y":1247.2365828451339,"z":491.0388530254568}},{"id":"6680","data":{"label":"CNN News Group","x":697.5526043659829,"y":-1787.2276746125362,"z":234.2130485336089}},{"id":"6679","data":{"label":"TechRepublic for $23 Million","x":2872.972003371304,"y":-420.2444026083631,"z":663.3790654937922}},{"id":"6678","data":{"label":"Norwest Venture Capital","x":3194.886041840111,"y":-433.5250562138199,"z":866.1535156900484}},{"id":"6676","data":{"label":"MySimon","x":3028.490521258708,"y":-553.9760260014327,"z":211.92994815323908}},{"id":"6677","data":{"label":"techies.com","x":3035.0600827717344,"y":-383.5523238248297,"z":68.64952781734313}},{"id":"6675","data":{"label":"Digital Media","x":2966.5133173765826,"y":-462.51319956216867,"z":28.745904815869807}},{"id":"6674","data":{"label":"CNet","x":3434.5123808280478,"y":-3278.1275785010976,"z":340.52053182078845}},{"id":"6673","data":{"label":"Ziff Davis Media","x":621.0674077606518,"y":-3844.948477134227,"z":323.58443859624873}},{"id":"6671","data":{"label":"AppWatch","x":3011.4554517864326,"y":-685.9227658081945,"z":420.5006874978543}},{"id":"6670","data":{"label":"NetVentures","x":3003.122193021076,"y":-742.4834711515623,"z":623.8460125309983}},{"id":"6672","data":{"label":"ZDNet Group","x":2443.1278869580656,"y":1928.0496235229248,"z":854.2053917135481}},{"id":"6668","data":{"label":"WinFiles.com","x":2865.2112993003766,"y":-440.5022369742692,"z":877.0290192291048}},{"id":"6669","data":{"label":"AuctionGate","x":2819.659334641602,"y":-434.46631270740363,"z":390.2863682017037}},{"id":"6667","data":{"label":"Killer App","x":2988.3156086046,"y":-715.7920174917408,"z":656.4400398074355}},{"id":"6666","data":{"label":"Sumo","x":2969.5643694581922,"y":-763.7430183362412,"z":879.1505298392892}},{"id":"6665","data":{"label":"Nordby International","x":2984.6788971626447,"y":-494.04164359669267,"z":165.07916309446412}},{"id":"6664","data":{"label":"SavvySearch","x":2779.0207962436943,"y":-480.28479191791394,"z":773.8103928472182}},{"id":"6663","data":{"label":"NoWonder","x":2956.4898753162997,"y":-742.4376836736901,"z":245.4737213228908}},{"id":"6662","data":{"label":"Cnet","x":-1385.4714570058036,"y":1520.5798085144233,"z":112.43461260132004}},{"id":"6661","data":{"label":"CMG Direct","x":861.7957941065197,"y":1205.2117145195361,"z":662.0320730819489}},{"id":"6660","data":{"label":"MSGI","x":714.0943086034431,"y":1256.1359628886457,"z":829.533741777403}},{"id":"6659","data":{"label":"Intelliprep","x":2833.94795285675,"y":-185.6889310385386,"z":804.9975275986445}},{"id":"6658","data":{"label":"Click2Learn","x":2009.6424885065553,"y":-3342.4222064435335,"z":437.18522304573315}},{"id":"6656","data":{"label":"Peak Software","x":-677.3941256701578,"y":-2366.4301558469856,"z":949.4769959414084}},{"id":"6657","data":{"label":"US LEC","x":825.4466790059382,"y":-3840.4239231791757,"z":437.0537936215293}},{"id":"6654","data":{"label":"Avalon","x":-518.8223677933847,"y":-3439.956494425148,"z":141.00250271961778}},{"id":"6655","data":{"label":"Traverse Internet","x":-594.5802970911654,"y":-3583.510989286693,"z":531.6575485647724}},{"id":"6653","data":{"label":"Innovex","x":-1525.4043606474784,"y":-2272.694350629527,"z":387.3643647676863}},{"id":"6652","data":{"label":"Apogee Networks","x":2857.09341613977,"y":362.255542374618,"z":166.0135692497}},{"id":"6649","data":{"label":"NuSpeed","x":2957.6962235224983,"y":166.76209646798816,"z":961.1111578394098}},{"id":"6651","data":{"label":"Netiverse","x":2774.5317722973787,"y":397.7087624030901,"z":139.46950424104188}},{"id":"6650","data":{"label":"Komodo","x":2825.2077707865337,"y":43.95837201748509,"z":49.13828948904975}},{"id":"6648","data":{"label":"IPmobile","x":2819.285785095676,"y":384.81634011815095,"z":332.35877482632617}},{"id":"6647","data":{"label":"PixStream","x":2897.3432196713566,"y":92.10874684437931,"z":905.4780892554455}},{"id":"6646","data":{"label":"Vovida and IPCell","x":2948.806555863356,"y":224.07390147586375,"z":51.71653623447714}},{"id":"6645","data":{"label":"Radiata","x":2940.3284635384853,"y":269.7533833274656,"z":254.26562684852283}},{"id":"6643","data":{"label":"Rhythms NetConnections","x":2461.7500719027566,"y":-152.3687275412558,"z":934.7770974990042}},{"id":"6644","data":{"label":"ExiO Communications","x":2902.2014397784906,"y":329.78466602818844,"z":644.4101383136104}},{"id":"6642","data":{"label":"Be Connected","x":2913.066804493272,"y":293.8631459208518,"z":169.74215244681812}},{"id":"6641","data":{"label":"Cogency","x":2747.257959829207,"y":366.90203805353303,"z":201.30023174719992}},{"id":"6640","data":{"label":"Amteva","x":2736.1389358512943,"y":391.6446825169123,"z":10.839712911959287}},{"id":"6639","data":{"label":"TransMedia","x":2791.8478521052803,"y":368.9906402012002,"z":189.51201522902684}},{"id":"6638","data":{"label":"Calista","x":2697.188410531724,"y":361.60144912849137,"z":338.73252801013945}},{"id":"6637","data":{"label":"MaxComm Technologies","x":2701.221057152241,"y":337.22243120800977,"z":884.5950980904773}},{"id":"6636","data":{"label":"Danish Net Access Developer","x":2774.8749243884304,"y":45.2793749638322,"z":765.1751596151928}},{"id":"6635","data":{"label":"Webline Communications","x":2907.8365192938436,"y":126.66179828068834,"z":622.9611332167221}},{"id":"6634","data":{"label":"Pirelli & C. SAPA","x":2643.2204059676633,"y":269.221304241526,"z":219.42894379882594}},{"id":"6633","data":{"label":"Portal Software","x":3090.934537587791,"y":335.8077564205132,"z":844.9147339453654}},{"id":"6632","data":{"label":"AudioLogic","x":-1463.2935348436195,"y":-1664.5353241050088,"z":453.7420963318588}},{"id":"6631","data":{"label":"Netmarquee","x":-1635.6160635849517,"y":-1678.5897193005262,"z":546.8130296203788}},{"id":"6630","data":{"label":"Circle.com","x":-1747.300365958563,"y":-1571.8694552564666,"z":433.6816746913252}},{"id":"6627","data":{"label":"MemberWorks","x":1181.3296017547618,"y":-4124.109114980548,"z":1.3698212124264586}},{"id":"6629","data":{"label":"CINAR","x":1396.8597654124023,"y":-1969.057208513172,"z":914.3925333802392}},{"id":"6623","data":{"label":"Chordiant","x":1515.5385072166264,"y":-3584.039924456929,"z":722.0691827052937}},{"id":"6628","data":{"label":"CIC Interactive","x":1334.3811813255652,"y":-4161.978093024563,"z":130.79076433415082}},{"id":"6626","data":{"label":"Solution Partners","x":-1253.0790116893957,"y":835.3090785026397,"z":3.7654160197437836}},{"id":"6625","data":{"label":"Chorus Communications Group","x":1315.6048326912642,"y":-2747.6479681224173,"z":271.7328537785153}},{"id":"6624","data":{"label":"White Spider","x":1670.8791335607311,"y":-3520.2718068972526,"z":284.55937548697284}},{"id":"6622","data":{"label":"Edgenet","x":-1783.3741587871737,"y":-1745.2363046844516,"z":328.9880819619806}},{"id":"6621","data":{"label":"Choice One","x":-1664.7323624103149,"y":-1836.0439519669317,"z":882.3095906646516}},{"id":"6620","data":{"label":"Little Universe","x":-1163.30469361516,"y":-2541.479553724531,"z":897.1412555780267}},{"id":"6617","data":{"label":"Sprint FON Group","x":-619.4391422804556,"y":-2337.188130918314,"z":65.98163608606522}},{"id":"6619","data":{"label":"Continental Choice Care","x":-1282.395292680734,"y":-2431.4070331569746,"z":101.45103033559577}},{"id":"6618","data":{"label":"Peoples Choice TV","x":-706.682528647455,"y":-2474.1752503567022,"z":319.1310580260434}},{"id":"6616","data":{"label":"Venex","x":3714.8652746821863,"y":-1909.1421050711187,"z":974.0163912413509}},{"id":"6615","data":{"label":"PCS Innovations","x":1738.3339908688486,"y":1614.6735218773247,"z":688.7250061766797}},{"id":"6613","data":{"label":"Globo.com","x":-23.010086067451994,"y":1360.5051012896874,"z":511.1304278548119}},{"id":"6614","data":{"label":"Schlumberger","x":1584.5444439837684,"y":1633.2240994191297,"z":962.3630963402354}},{"id":"6611","data":{"label":"MIH","x":1323.6314275942605,"y":-99.70824333070777,"z":245.1916086734438}},{"id":"6612","data":{"label":"Telecom Italia","x":-41.6929369738491,"y":1206.5479174274242,"z":485.80797983595534}},{"id":"6610","data":{"label":"StockHouse Media","x":3704.2752115978965,"y":-2217.679219148591,"z":200.74801984640288}},{"id":"6609","data":{"label":"Chinadotcom","x":3701.198320126842,"y":-2065.8037933469286,"z":731.9359725112373}},{"id":"6608","data":{"label":"Billserv","x":1319.2376844188566,"y":-2248.4126251811977,"z":301.2060844913311}},{"id":"6607","data":{"label":"LifeLink","x":3595.628738144551,"y":135.49458265529302,"z":25.680534966260325}},{"id":"6606","data":{"label":"Ceragon Networks","x":2387.435208066553,"y":-3663.3303022217306,"z":731.1974692398471}},{"id":"6605","data":{"label":"The Internet Channel","x":548.1912300333597,"y":-2626.1884063751786,"z":712.5756795689773}},{"id":"6604","data":{"label":"Cyberbranch","x":-701.7778171913137,"y":-4037.2386809649583,"z":8.073694693886857}},{"id":"6602","data":{"label":"Dishnet DSL","x":2128.3909804562536,"y":333.55328953702247,"z":118.5350018246778}},{"id":"6603","data":{"label":"CGI","x":930.2059823541508,"y":-4162.42839850344,"z":392.7821483303091}},{"id":"6601","data":{"label":"OSC","x":-1101.7696486906602,"y":-2443.4473748696046,"z":302.88150504299495}},{"id":"6599","data":{"label":"Princeton eCom","x":347.1841222764451,"y":-2315.843150802124,"z":235.31437908512575}},{"id":"6596","data":{"label":"Centra","x":-115.81011104303298,"y":1670.7702459858274,"z":304.2209429356781}},{"id":"6600","data":{"label":"Jaleco","x":3525.226482308153,"y":-1251.461168156095,"z":497.7738925715065}},{"id":"6598","data":{"label":"New Century Equity Holdings","x":198.59947275136437,"y":-2478.2443990536976,"z":954.6488257705383}},{"id":"6597","data":{"label":"MindLever","x":-34.1589959287021,"y":1803.2330387535712,"z":171.06778955824643}},{"id":"6595","data":{"label":"Patagon.com","x":-1926.6713328230378,"y":786.9370058290242,"z":444.87603674461894}},{"id":"6594","data":{"label":"Banco Santander Central Hispano S.A.","x":-2008.697179894267,"y":655.8282393257086,"z":743.6091771623612}},{"id":"6593","data":{"label":"Integrated Systems","x":-990.8613566857775,"y":972.3743092561735,"z":91.79125388897668}},{"id":"6591","data":{"label":"CellPoint","x":-2047.3548917142318,"y":-204.53208708308193,"z":482.7863959166996}},{"id":"6592","data":{"label":"Centennial","x":-2317.424523433506,"y":-1424.317567820358,"z":381.21617468839287}},{"id":"6590","data":{"label":"E Com Ventures","x":-2145.9702088720132,"y":-309.49696265585226,"z":33.97954380931267}},{"id":"6588","data":{"label":"TeleSpeed","x":-1020.0531064147349,"y":-3371.3223607683317,"z":508.9719199719374}},{"id":"6589","data":{"label":"CCI","x":-1157.1240949073876,"y":-3429.503345694112,"z":427.6491289551059}},{"id":"6587","data":{"label":"MovieTickets.com","x":669.9970080339081,"y":-1382.5509823511993,"z":987.1780963263867}},{"id":"6586","data":{"label":"ThirdAge Media","x":621.981901693443,"y":-1153.364913713417,"z":93.75447491378085}},{"id":"6585","data":{"label":"Contentville","x":-2227.9605581750193,"y":-1945.252510974126,"z":17.94157928154516}},{"id":"6583","data":{"label":"DayPlan.com","x":1638.190824000265,"y":1660.3382244193426,"z":184.2924597337896}},{"id":"6584","data":{"label":"Medscape","x":705.1544802851554,"y":-1112.3057849424968,"z":631.105964148726}},{"id":"6582","data":{"label":"SensCom","x":1781.5804672610284,"y":1494.921020829005,"z":383.22221331962567}},{"id":"6581","data":{"label":"CraftClick.com","x":1487.5939447640376,"y":1613.2431393461884,"z":563.9546307898348}},{"id":"6580","data":{"label":"Venture Catalyst","x":1623.7808352211223,"y":1512.1935012190206,"z":691.3409543891261}},{"id":"6579","data":{"label":"Remainder of Iridium","x":838.6313715404658,"y":2145.6480764596035,"z":692.4908840517892}},{"id":"6578","data":{"label":"Castle Harlan","x":997.0392887370467,"y":2160.157616894925,"z":684.6999744681315}},{"id":"6577","data":{"label":"Car Rental Direct.com","x":3070.1586574179373,"y":1553.2950460013171,"z":688.175520923551}},{"id":"6575","data":{"label":"Greenlight.com","x":3290.5929382276827,"y":-2475.3754819032133,"z":441.752008370921}},{"id":"6573","data":{"label":"Idealab","x":143.8633322440728,"y":2168.942741706749,"z":369.24965667577834}},{"id":"6576","data":{"label":"GenesisIntermedia","x":2934.7525977924624,"y":1627.5531332220653,"z":259.89942862610513}},{"id":"6574","data":{"label":"Autodata","x":3313.8173368109256,"y":-2449.5702380554553,"z":528.0149705432873}},{"id":"6572","data":{"label":"CarsDirect.com","x":-1924.5714682510174,"y":-2838.9865867302747,"z":40.01138341383026}},{"id":"6571","data":{"label":"idealab!","x":3256.3337525850593,"y":-2490.0434053284544,"z":379.6234038807993}},{"id":"6569","data":{"label":"Intel Capital","x":-257.283145743595,"y":1732.7054536203814,"z":182.41980934537128}},{"id":"6570","data":{"label":"R Systems","x":-138.3744149570648,"y":1827.8010347039071,"z":568.7647899746448}},{"id":"6568","data":{"label":"HighGround Systems","x":555.7230767604119,"y":-3418.7258533298645,"z":141.5444142578486}},{"id":"6567","data":{"label":"Portal Connect","x":3260.4421568169264,"y":-58.71367344234295,"z":807.7860453297108}},{"id":"6565","data":{"label":"Symphony Systems","x":2187.832235035058,"y":1314.1384492136513,"z":188.66167717173155}},{"id":"6566","data":{"label":"SER Systems AG","x":3148.4007750301307,"y":-146.86892781772167,"z":677.5449905341635}},{"id":"6564","data":{"label":"Woodhead Industries","x":2354.2490160654543,"y":1332.5990565379288,"z":158.2679402704825}},{"id":"6563","data":{"label":"Daleen Technologies","x":-1283.3592334666541,"y":957.7547770795909,"z":468.4485132381073}},{"id":"6562","data":{"label":"SAIC","x":-1217.3678280021306,"y":1095.3229227660686,"z":803.9657560741347}},{"id":"6561","data":{"label":"Daily-e","x":3209.78744346199,"y":937.1130764227364,"z":595.7025449081759}},{"id":"6560","data":{"label":"Interliant","x":3293.2976527109813,"y":808.886309530355,"z":154.78604382839077}},{"id":"6559","data":{"label":"Med-Link","x":3217.920915652312,"y":1085.107479377294,"z":284.73972865882513}},{"id":"6558","data":{"label":"CareInsite","x":3352.820736598279,"y":990.9069496402499,"z":99.69854122989585}},{"id":"6557","data":{"label":"Cyber Media Group","x":-1466.501908326477,"y":-3073.484875234612,"z":717.8177911502803}},{"id":"6556","data":{"label":"AppOnline.com","x":-1383.5507262164224,"y":-2945.3247272924464,"z":366.58965964984145}},{"id":"6555","data":{"label":"Cyber-Tech","x":-581.3333606836181,"y":-3501.567389802151,"z":407.89812917921495}},{"id":"6554","data":{"label":"Cybertech Wireless","x":-515.7377754516183,"y":1783.8105912951069,"z":73.40564182685516}},{"id":"6553","data":{"label":"Fastnet","x":-636.8950671788975,"y":1684.520313924787,"z":463.7284335046843}},{"id":"6552","data":{"label":"ExpressGold","x":2792.7614397696307,"y":-167.00206252704447,"z":265.15497621834226}},{"id":"6551","data":{"label":"PaylinX","x":2884.833385942209,"y":-263.86072751901247,"z":969.4845440824582}},{"id":"6550","data":{"label":"Mediconsult.com","x":-427.5898143560189,"y":-3541.3248436903064,"z":306.216592764897}},{"id":"6548","data":{"label":"Andrx","x":-488.0383902216322,"y":-3288.7209314390648,"z":2.929891729409384}},{"id":"6549","data":{"label":"Cybear Group","x":-948.2062369190494,"y":1319.485441062876,"z":982.7968726103984}},{"id":"6547","data":{"label":"AHTs Operating Assets","x":-279.0308301182695,"y":-3385.428042808557,"z":947.9039953752953}},{"id":"6546","data":{"label":"Telegraph.net New Technology","x":-345.26498178251586,"y":-3293.553733274784,"z":659.8351755450593}},{"id":"6545","data":{"label":"Cybear","x":-416.3999377838036,"y":-3426.6629997844902,"z":822.7391880282602}},{"id":"6544","data":{"label":"Equant N.V.","x":-56.097620689693485,"y":-3051.333019418762,"z":150.14676564491847}},{"id":"6543","data":{"label":"Avantron","x":3532.213947250465,"y":612.0086776868629,"z":941.917422138373}},{"id":"6542","data":{"label":"Sunrise Telecom","x":3561.8647258240126,"y":449.7499454011395,"z":739.9161356639463}},{"id":"6541","data":{"label":"VarTec Telecom","x":1223.6893059746317,"y":-4255.531635744117,"z":758.3875127296393}},{"id":"6540","data":{"label":"Lightyear Communications","x":1090.2630517175558,"y":-4172.739760180907,"z":324.568769123772}},{"id":"6539","data":{"label":"Pangea","x":3492.3581843588727,"y":-2577.6161158476425,"z":700.3756922072564}},{"id":"6538","data":{"label":"Manitoba Telecom","x":3664.850893461604,"y":-2570.472224878915,"z":786.5704488976653}},{"id":"6537","data":{"label":"//hot-orange.com","x":-283.19936706192584,"y":1499.936099019098,"z":35.04031288167497}},{"id":"6535","data":{"label":"GST Telecom","x":1444.1992841191022,"y":-1336.534797757904,"z":662.6037843612855}},{"id":"6534","data":{"label":"Able Telecom","x":1398.8635796081762,"y":-3818.5549733775497,"z":350.8850301364621}},{"id":"6536","data":{"label":"VersaTel","x":-375.873907157295,"y":1357.5863115948914,"z":779.3684266347851}},{"id":"6531","data":{"label":"Redstone Telecom","x":-499.7405140054998,"y":1686.9466457064445,"z":368.86116872990016}},{"id":"6533","data":{"label":"Bracknell","x":1260.6237529373648,"y":-3893.8401861939633,"z":251.2833893948192}},{"id":"6532","data":{"label":"Dialnet","x":-650.0217308997667,"y":1632.1145989947672,"z":123.42012004556024}},{"id":"6530","data":{"label":"Banco Bradesco S.A.","x":-2118.6443249976546,"y":-2433.4751603822338,"z":911.7945091113542}},{"id":"6528","data":{"label":"KMC Telecom Holdings","x":2560.282741635724,"y":-2693.7805089175104,"z":535.8678697920341}},{"id":" SGPS","data":{"label":"Portugal Telecom","x":-1801.7223019387927,"y":-1481.482263302506,"z":229.97395442937662}},{"id":"6524","data":{"label":"Cumulus Media","x":-209.3425901185724,"y":1261.5634271629933,"z":179.63190286026887}},{"id":"6527","data":{"label":"CIT","x":3516.1968212405936,"y":-2355.6651915533894,"z":34.66238080795958}},{"id":"6526","data":{"label":"eGlobe","x":3564.208495875132,"y":-2207.739411308253,"z":612.1164232322576}},{"id":"6525","data":{"label":"Digital Software Maker","x":-273.8470106108207,"y":1116.44998273475,"z":439.70118695142844}},{"id":"6523","data":{"label":"WebServe","x":3008.9195151094937,"y":407.06383932579956,"z":464.0231853875854}},{"id":"6522","data":{"label":"CT Communications","x":3084.66017570874,"y":263.66010831350195,"z":424.6812364682675}},{"id":"6520","data":{"label":"Datalink.net","x":2454.3527558820597,"y":868.3091007778285,"z":5.682242586267261}},{"id":"6518","data":{"label":"Quote.com","x":2943.8518918566833,"y":-1733.0994154579366,"z":577.5851002529746}},{"id":"6521","data":{"label":"Cross Communications","x":2255.651238253511,"y":919.0622556995768,"z":776.2080822669906}},{"id":"6519","data":{"label":"IPO Crossroads","x":3153.9658410550383,"y":-1689.0467769554416,"z":274.91224698590554}},{"id":"6517","data":{"label":"VitalCom","x":-1479.5956444056526,"y":-3333.6507498119227,"z":795.3451030458067}},{"id":"6516","data":{"label":"Data Critical","x":-1390.1291243738046,"y":-3460.120107810668,"z":288.67337299223504}},{"id":"6515","data":{"label":"Remarq","x":-121.8270225222559,"y":1510.0598664537047,"z":914.7784003642477}},{"id":"6513","data":{"label":"PeerLogic","x":-287.76124997852776,"y":1765.2763784083636,"z":38.928230409452254}},{"id":"6512","data":{"label":"Fabrik Connect","x":-397.4535931670025,"y":1656.903389278139,"z":210.56054078306198}},{"id":"6514","data":{"label":"Netmosphere","x":-304.51463494853897,"y":1468.4436923931216,"z":356.94341707996233}},{"id":"6511","data":{"label":"Amplitude Software","x":-149.26773640364627,"y":1744.9293093680335,"z":212.4309953764545}},{"id":"6510","data":{"label":"Isocor","x":-82.21778556994695,"y":1617.5193893640899,"z":17.147590120161205}},{"id":"6508","data":{"label":"UltraRF","x":1259.0980184508853,"y":2104.572192178257,"z":237.62238716679084}},{"id":"6509","data":{"label":"E*TRADE Group","x":-397.48555833395676,"y":1572.9188684456312,"z":501.6691353419411}},{"id":"6507","data":{"label":"Nippon Credit Bank","x":2288.6871174241405,"y":-78.76531434455228,"z":339.9125243257597}},{"id":"6506","data":{"label":"Aureal Semiconductor","x":-1756.689652256191,"y":-1083.5152418453172,"z":150.38799545137405}},{"id":"6505","data":{"label":"Creative Technology","x":-1832.4970865978867,"y":-1222.6381286404721,"z":192.50896582376242}},{"id":"6504","data":{"label":"Creative Business Solutions","x":1432.9217670771204,"y":2163.558877791922,"z":927.5530549994144}},{"id":"6500","data":{"label":"DataBank Intl","x":2665.360033220557,"y":-602.1733161800612,"z":122.98676522954688}},{"id":"6502","data":{"label":"PointServe","x":700.2237324444659,"y":407.6332992618063,"z":390.9387095425554}},{"id":"6503","data":{"label":"Scoot.com plc","x":349.5111258020829,"y":2398.876244630809,"z":700.6979920120995}},{"id":"6501","data":{"label":"Tickets.com","x":338.29894684128885,"y":-818.6990125926377,"z":380.44222726736797}},{"id":"6499","data":{"label":"Digital Courier","x":3477.231312152645,"y":-1303.430199499051,"z":68.07217160732915}},{"id":"6498","data":{"label":"F-Secure","x":2613.9021705035193,"y":-416.60805805843665,"z":502.6247429882391}},{"id":"6497","data":{"label":"Fastech","x":3673.11682549316,"y":503.9129550579364,"z":662.9703307863424}},{"id":"6495","data":{"label":"Nelvana","x":4181.92040065426,"y":-1430.6016041949588,"z":647.7670132889284}},{"id":"6494","data":{"label":"Corus","x":4128.780151739088,"y":-1578.2318653427187,"z":998.211378185506}},{"id":"6493","data":{"label":"Tele.ring","x":2603.4473423967884,"y":1884.7769167862607,"z":598.5441681825032}},{"id":"6496","data":{"label":"Cotelligent","x":3614.477406351354,"y":647.4576948110716,"z":537.0486088311224}},{"id":"6492","data":{"label":"Western Wireless","x":2740.1002535830594,"y":1806.2896130531517,"z":571.2456118692108}},{"id":"6491","data":{"label":"Corporate Subscription Services","x":2915.2866619696542,"y":982.146889649639,"z":131.68421153227737}},{"id":"6490","data":{"label":"RoweCom","x":2851.5149329827727,"y":1113.2483900395455,"z":57.04721671979307}},{"id":"6489","data":{"label":"Corporate Technology Information Services","x":313.01424715527037,"y":1847.3099099379397,"z":669.5515533411336}},{"id":"6488","data":{"label":"OneSource Information Services","x":454.6033814280413,"y":1922.243173531735,"z":708.8089066270164}},{"id":"6486","data":{"label":"Hatcher Associates","x":1031.5964343003902,"y":1356.5060508857841,"z":219.85127327769936}},{"id":"6484","data":{"label":"CoreExpress","x":-795.7650334864984,"y":866.8966653948519,"z":923.2752776718927}},{"id":"6487","data":{"label":"NZ Applied Technologies","x":2878.360579021205,"y":926.4565517363653,"z":425.4896310146832}},{"id":"6485","data":{"label":"Morgan Stanley Dean Witter & Co.","x":-969.4848637264199,"y":894.0789231762765,"z":751.2440983681432}},{"id":"6482","data":{"label":"Cooking.com","x":-948.3140697317817,"y":-3678.402370938592,"z":388.0828394982814}},{"id":"6483","data":{"label":"Benchmark Capital","x":-801.622201487311,"y":687.6850844223964,"z":326.6301083326324}},{"id":"6481","data":{"label":"Starbucks","x":-1026.4763331730467,"y":-3541.0939364748547,"z":798.9938241910432}},{"id":"6479","data":{"label":"Seeker Software","x":-726.2022027058265,"y":442.72130836814176,"z":633.2394168992568}},{"id":"6478","data":{"label":"Subsidiary Multi-User Solutions","x":1640.6351714564616,"y":-3426.805579007683,"z":986.4021027857443}},{"id":"6480","data":{"label":"Continental AG","x":3542.7994366590174,"y":-2114.9393612987756,"z":30.902546579842706}},{"id":"6477","data":{"label":"Computone","x":1505.0782394379503,"y":-3525.423523546511,"z":826.191444380743}},{"id":"6476","data":{"label":"Fast Search & Transfer","x":2011.475745917246,"y":-1643.2340822844135,"z":177.97338678736497}},{"id":"6475","data":{"label":"Dell","x":1554.2534761417319,"y":-1744.7313490957922,"z":255.85791442695304}},{"id":"6474","data":{"label":"Computer Design Associates","x":1754.4147929885548,"y":2192.2442782154303,"z":625.4456997508944}},{"id":"6473","data":{"label":"Juniper Group","x":1905.0045921610163,"y":2128.77656847691,"z":110.06831997620381}},{"id":"6472","data":{"label":"Infinite Technologies","x":-338.3875730865557,"y":-3910.9282897380763,"z":531.2799458369146}},{"id":"6471","data":{"label":"AVT","x":-480.624073500323,"y":-3875.9137389012685,"z":231.28100442756482}},{"id":"6470","data":{"label":"Optec","x":173.52205406953726,"y":-3385.9091768400103,"z":480.9189774843303}},{"id":"6469","data":{"label":"JMW Capital Partners","x":292.8644841919818,"y":-3266.784056099329,"z":262.5564351301133}},{"id":"6468","data":{"label":"Lifestyle Technologies","x":-242.718835188944,"y":-3296.6792918958545,"z":39.9576658707157}},{"id":"6467","data":{"label":"eResource Capital Group","x":-247.0626884948574,"y":-3451.9059207520036,"z":821.6844328371864}},{"id":"6466","data":{"label":"CanWest Global Communications","x":539.7784748485501,"y":-4515.780679846996,"z":9.686929221010665}},{"id":"6465","data":{"label":"IBS","x":-662.5464591752416,"y":1089.088350118409,"z":57.81660924235976}},{"id":"6461","data":{"label":"ConnectInc.com","x":-1106.781533020464,"y":666.6435654095094,"z":932.9191308425604}},{"id":"6464","data":{"label":"CanWest","x":-610.2431398877493,"y":843.189126519861,"z":725.1556337530827}},{"id":"6462","data":{"label":"Sun","x":3537.7907060950283,"y":-2975.7382327443975,"z":378.7728806626982}},{"id":"6460","data":{"label":"Calico Commerce","x":-947.1125949951138,"y":643.5609022115887,"z":216.7984167262751}},{"id":"6457","data":{"label":"Caldera","x":3788.050741008412,"y":555.4920619318318,"z":787.5731731348112}},{"id":"6459","data":{"label":"Tarantella","x":-2021.6172067660762,"y":-703.6967120364952,"z":647.0731923920241}},{"id":"6463","data":{"label":"Canal Plus","x":804.2365107589358,"y":-3608.540332535515,"z":16.42565804057061}},{"id":"6458","data":{"label":"Ragula","x":-2030.5526939464312,"y":-732.6346636070539,"z":619.6891363675605}},{"id":"6456","data":{"label":"CAIS Software","x":2836.701209188591,"y":66.13603336893539,"z":769.5727793425211}},{"id":"6455","data":{"label":"Atcom","x":-944.2792693549904,"y":369.41810040753717,"z":504.9445456341783}},{"id":"6453","data":{"label":"Compuware","x":-2031.2679502479818,"y":-405.2411217385961,"z":691.0248941886783}},{"id":"6454","data":{"label":"CACI Internationals Comnet Products Group","x":4471.370946716233,"y":-1207.2390802542577,"z":384.32542409319126}},{"id":"6450","data":{"label":"CacheFlow","x":-1074.5896230304152,"y":-2930.025114724259,"z":305.94701917792946}},{"id":"6452","data":{"label":"Springbank Networks","x":-1152.7452329214088,"y":-2787.3833106777183,"z":422.7980673563612}},{"id":"6451","data":{"label":"Entera","x":-953.370066804523,"y":-2821.5165214361523,"z":147.32826121629182}},{"id":"6449","data":{"label":"Marc Andreesen","x":-957.1155603204506,"y":-3040.204586959769,"z":151.1461060628576}},{"id":"6447","data":{"label":"CableTron","x":4458.603900002137,"y":-1011.0844649047635,"z":880.1321845214331}},{"id":"6448","data":{"label":"Indus River Networks","x":3227.2377608130246,"y":-2037.9826060325577,"z":598.1677019739379}},{"id":"6445","data":{"label":"Mediacom","x":281.8887979983301,"y":-698.72363136898,"z":39.240771195647284}},{"id":"6446","data":{"label":"AT&T Broadband Local Cable Subsidiary","x":4123.928845115638,"y":179.25542456219046,"z":705.6135123301992}},{"id":"6444","data":{"label":"Cable & Wireless HKT","x":3428.6215814382413,"y":-1051.0414376296112,"z":398.2890673771804}},{"id":"6443","data":{"label":"Pacific Century CyberWorks","x":3351.9537330519643,"y":-1184.5202846657057,"z":578.1396950293196}},{"id":"6442","data":{"label":"CyberBranch","x":-1648.2541233897416,"y":-2496.742443569927,"z":954.9180294912525}},{"id":"6437","data":{"label":"The Energy Group","x":-842.4717124351441,"y":-2345.4724610095454,"z":833.0317387387105}},{"id":"6440","data":{"label":"CGI Group","x":-1737.2251504823066,"y":-2617.8575440907325,"z":85.41288455601847}},{"id":"6441","data":{"label":"Larochelle Gratton","x":-1658.5172103692219,"y":-2747.9721263244674,"z":722.6108873172287}},{"id":"6439","data":{"label":"SLMsoft.com","x":-912.3344310054918,"y":619.5945713768097,"z":216.15333597058185}},{"id":"6438","data":{"label":"InterCept Group","x":-903.0985834529938,"y":775.6834992761924,"z":317.9261529786119}},{"id":"6436","data":{"label":"CheMatch.com","x":-695.2797741186127,"y":-2283.9835236622284,"z":515.6668285867898}},{"id":"6435","data":{"label":"NFO WorldGroup","x":-566.5079948615703,"y":875.3421587872026,"z":527.5105621760921}},{"id":"6430","data":{"label":"SubmitOrder.com","x":-1369.8913582776158,"y":-3171.8198532943907,"z":149.21345060162517}},{"id":"6434","data":{"label":"The Interpublic Group of Companies","x":-690.8362698766673,"y":777.5919306954083,"z":227.98986518670915}},{"id":"6433","data":{"label":"Eritmo.com","x":-2186.880712322511,"y":445.987432609355,"z":361.24566201357135}},{"id":"6432","data":{"label":"ePrize","x":3933.2390387194737,"y":-2474.7840375687465,"z":746.0093315991614}},{"id":"6431","data":{"label":"Rare Medium","x":3879.2603318000038,"y":-2609.2106929283436,"z":193.40012512081285}},{"id":"6429","data":{"label":"Barksdale Group","x":-1508.3878769869102,"y":-3077.705861939311,"z":136.09549225294893}},{"id":"6428","data":{"label":"OrderTrust","x":1291.4004009607997,"y":-902.3561029788771,"z":629.7671433675167}},{"id":"6427","data":{"label":"GreyStone Digital Technology","x":-1045.1284589570798,"y":-3192.9088739317285,"z":700.7920968027408}},{"id":"6426","data":{"label":"Agilent Technologies","x":-1079.94714093544,"y":-3031.971615081036,"z":854.9749592800536}},{"id":"6425","data":{"label":"Trigon","x":1694.2831904721706,"y":-4301.410068117094,"z":606.9215475140409}},{"id":"6424","data":{"label":"StarGuide","x":3370.054682007357,"y":-3083.9502647453846,"z":667.8023242668676}},{"id":"6423","data":{"label":"Viewpoint Digital","x":2273.2848989324502,"y":-709.2159744558885,"z":405.39483280336964}},{"id":"6422","data":{"label":"Digital Media Online","x":3012.5202486017224,"y":-2414.374680218864,"z":721.6555427529489}},{"id":"6421","data":{"label":"IndustryClick","x":2582.9461559326464,"y":-3801.6177472827903,"z":504.00404562169433}},{"id":"6420","data":{"label":"Digital Jones","x":3860.593467505446,"y":255.97471512799348,"z":682.1221817073244}},{"id":"6416","data":{"label":"Kozmo","x":1268.5950919391962,"y":-676.9448579707823,"z":173.66528693790738}},{"id":"6419","data":{"label":"DealTime","x":3740.8035119473825,"y":343.7955738256924,"z":915.5016433010878}},{"id":"6418","data":{"label":"TransTech","x":3991.0411066021315,"y":-1182.6677247874068,"z":496.7916873408351}},{"id":"6417","data":{"label":"Kurt Salmon Associates","x":4105.730544778306,"y":-1290.5908151989925,"z":413.81466230887276}},{"id":"6415","data":{"label":"Digital Marketing Services","x":2212.911462699044,"y":-623.0100401137743,"z":766.2935047005158}},{"id":"6414","data":{"label":"the Childrens Group","x":-325.1586798483777,"y":-3740.351866815322,"z":739.0115339867738}},{"id":"6412","data":{"label":"Diamond Lane Communications","x":-702.5545977923161,"y":-3302.623943246965,"z":474.2451908169667}},{"id":"6413","data":{"label":"1-800-Flowers","x":-473.4357480262106,"y":-3772.8431660956107,"z":729.1273469737325}},{"id":"6410","data":{"label":"Serena Software","x":1033.2748590210222,"y":2000.2040813186486,"z":630.0981503705567}},{"id":"6411","data":{"label":"Diamond Optimum Systems","x":1178.481924469982,"y":1950.863553372773,"z":874.7520167557383}},{"id":"6409","data":{"label":"Cluster Consulting","x":-2485.1408977862857,"y":-721.7802873256815,"z":105.27520083051112}},{"id":"6408","data":{"label":"Diamond Technology Partners","x":-2465.946578824296,"y":-565.1104576767839,"z":377.5044259249149}},{"id":"6407","data":{"label":"OmniTech","x":401.1314666418448,"y":-4084.225296146893,"z":52.46764012878447}},{"id":"6406","data":{"label":"Diamond","x":553.5245849443991,"y":-4132.032119801553,"z":555.5147994248592}},{"id":"6405","data":{"label":"Dialogs Online Business","x":-216.80081034820023,"y":1811.127251109091,"z":57.5018589743459}},{"id":"6404","data":{"label":"The Thomsen Group","x":-77.97746140966865,"y":1870.1704952357204,"z":325.92830992882125}},{"id":"6403","data":{"label":"Deutsche Bank AG","x":2707.3613046768796,"y":-3968.2555810397653,"z":226.53250592405882}},{"id":"6401","data":{"label":"Deutsche Bank","x":2875.471904914906,"y":-2051.5648933776197,"z":961.7298379268468}},{"id":"6402","data":{"label":"EssentialMarkets","x":2986.8229574860834,"y":-2241.679829446729,"z":561.515003651839}},{"id":"6399","data":{"label":"Delano","x":1036.0043867431623,"y":2435.1488207077537,"z":629.1229540994501}},{"id":"6400","data":{"label":"Continuity Solutions","x":1188.5204200843773,"y":2415.341358674491,"z":218.3475612345549}},{"id":"6398","data":{"label":"HomeCom Security Division","x":-1564.3521087193449,"y":-1690.6200599292251,"z":814.0404552962965}},{"id":"6397","data":{"label":"IDefense","x":-1508.8846877065464,"y":-1831.1280352523158,"z":437.14815769969806}},{"id":"6396","data":{"label":"CompuSpirit","x":4095.3700535610833,"y":-2177.321964582798,"z":607.2644167469721}},{"id":"6393","data":{"label":"Datatec","x":-921.1763331268389,"y":1469.6298442196876,"z":547.8667583626855}},{"id":"6395","data":{"label":"D&E Communications","x":4193.943804538665,"y":-2061.927893606038,"z":636.5763795400909}},{"id":"6394","data":{"label":"BCS","x":-773.3882324276547,"y":1501.6204420825707,"z":53.16580979345997}},{"id":"6392","data":{"label":"TeamBCA","x":-961.1844343592265,"y":1074.7521762394817,"z":597.8832498155593}},{"id":"6391","data":{"label":"Datalex","x":-928.2059858788007,"y":915.4252074053875,"z":163.1622004025759}},{"id":"6390","data":{"label":"Remedy","x":2825.5516840480186,"y":-2517.2498138170777,"z":223.32090599553857}},{"id":"6389","data":{"label":"Addition Systems","x":18.777089611021438,"y":-2917.148917738932,"z":313.6610093705383}},{"id":"6388","data":{"label":"Loudeye","x":3944.032289972427,"y":59.9067621427821,"z":306.103009372986}},{"id":"6383","data":{"label":"BTopenworld","x":4257.822988569598,"y":248.8375462168451,"z":862.7505017464779}},{"id":"6387","data":{"label":"NxTrend Technology","x":1021.4817741092984,"y":-4382.086180209833,"z":629.0769817033695}},{"id":"6386","data":{"label":"Beazer Homes USA","x":930.0334300437748,"y":-4246.1584011138575,"z":580.0280466984229}},{"id":"6385","data":{"label":"Lafarge","x":1243.3669996436693,"y":-4183.887105678938,"z":609.2494346673365}},{"id":"6384","data":{"label":"wCities","x":4343.564670168871,"y":119.40162194370077,"z":46.95129560142708}},{"id":"6382","data":{"label":"Spotcast Communications","x":-1262.8815053399376,"y":-2197.365342635604,"z":258.43308393476883}},{"id":"6381","data":{"label":"Gilat Satellite Networks","x":3143.7858812794675,"y":639.4933905756825,"z":802.9691593891333}},{"id":"6380","data":{"label":"WorldXChange","x":-721.6753169646763,"y":-3606.4320670588777,"z":751.525558422982}},{"id":"6379","data":{"label":"New Tel","x":-597.6740490562929,"y":-3701.6818036724544,"z":903.010239255668}},{"id":"6378","data":{"label":"Backwire.com","x":-1242.9282914680948,"y":-2137.1943233906395,"z":751.0187509661185}},{"id":"6377","data":{"label":"Leap Wireless","x":-1398.5838447925794,"y":-2122.4460056337284,"z":983.5161998322102}},{"id":"6376","data":{"label":"Sacramento Valley Partnership","x":3731.7814505251717,"y":-1751.548960768132,"z":484.0383829661692}},{"id":"6375","data":{"label":"Cable & Wireless Cwix Service","x":2654.251288519361,"y":690.9722137815097,"z":536.7950244206065}},{"id":"6374","data":{"label":"Prodigy","x":3765.0771408740593,"y":1008.1895843712946,"z":313.94238903232497}},{"id":"6373","data":{"label":"Vision Network","x":508.1714233676671,"y":-2622.192399426469,"z":714.5482822546612}},{"id":"6372","data":{"label":"SeraNova","x":1472.4054795991915,"y":-4041.2878342991326,"z":711.2692970111445}},{"id":"6371","data":{"label":"Silverline Technologies","x":1323.3589657650318,"y":-4060.8943151468648,"z":652.5024957727181}},{"id":"6369","data":{"label":"O2wireless Solutions","x":808.730786467996,"y":2230.307703575785,"z":273.954193686321}},{"id":"6370","data":{"label":"HAF","x":658.074224895674,"y":2197.6251470816715,"z":393.1445505274127}},{"id":"6368","data":{"label":"Hutchison Satellite Unit","x":-1675.9644778263976,"y":-2623.4740259337723,"z":676.2442065419654}},{"id":"6367","data":{"label":"Cyberworks","x":-1694.9543379366207,"y":-2781.9091430190592,"z":319.8709005230556}},{"id":"6366","data":{"label":"Digital Island","x":3033.5687344048656,"y":-2744.491799345713,"z":923.4661370608119}},{"id":"6365","data":{"label":"Cable & Wireless Optus","x":3184.0720637709346,"y":-2732.6426498076257,"z":453.0418870378683}},{"id":"6364","data":{"label":"Belize Telecom","x":1461.7484514215494,"y":-4105.676208344805,"z":581.5994792814116}},{"id":"6363","data":{"label":"Carlisle Holdings","x":1619.8733041750138,"y":-4071.64991662243,"z":881.2235624328946}},{"id":"6362","data":{"label":"IndiaPlaza.com","x":3513.2210282566775,"y":-1843.195419849052,"z":732.138252862974}},{"id":"6361","data":{"label":"FormsIndia.com","x":3625.6202938202878,"y":-1594.4919165174588,"z":386.68694721025565}},{"id":"6359","data":{"label":"Satyam Infoway","x":3483.3191778394803,"y":-1683.7642099821996,"z":648.4273059463401}},{"id":"6360","data":{"label":"Kheladi.com","x":3550.3673809966303,"y":-1540.827121646857,"z":733.3291157732009}},{"id":"6358","data":{"label":"Tripod Data Systems","x":3544.8546030041543,"y":-1108.7158406640106,"z":449.61648311846017}},{"id":"6357","data":{"label":"DigiScents","x":3243.9368368044607,"y":-3535.242883735782,"z":18.807387186029256}},{"id":"6356","data":{"label":"PCCW","x":3340.4901087114467,"y":-3411.9199644697414,"z":39.97689389740589}},{"id":"6354","data":{"label":"Bsquare","x":364.772599705665,"y":2261.5463451131855,"z":600.5341519339653}},{"id":"6355","data":{"label":"Mainbrace","x":453.85990822010626,"y":2380.003736687224,"z":614.2247983860341}},{"id":"6353","data":{"label":"GemStone Systems","x":1344.9395583548003,"y":-4402.6478291502235,"z":760.6882780041307}},{"id":"6352","data":{"label":"ZeroPlus.com","x":906.1192437103687,"y":-3016.845307300045,"z":256.90127828743204}},{"id":"6350","data":{"label":"BroadLogic","x":1597.679132459546,"y":-290.57411531653906,"z":858.418386766407}},{"id":"6351","data":{"label":"Interleaf","x":3202.4339261346504,"y":-1417.5777106375963,"z":876.3577315797966}},{"id":"6349","data":{"label":"Innovent","x":1371.8611603941008,"y":1781.2065040178995,"z":614.3509926618192}},{"id":"6348","data":{"label":"Altima Communications","x":1189.6242549579038,"y":1519.1925517062045,"z":745.2523428183082}},{"id":"6347","data":{"label":"NewPort Communications","x":1151.1821576909497,"y":1686.2735611800554,"z":401.259692949947}},{"id":"6346","data":{"label":"Element 14","x":1412.5188455189627,"y":1739.7977128959428,"z":62.831375933375845}},{"id":"6343","data":{"label":"iBEAM Broadcasting","x":1941.8249498551058,"y":-4278.439590111101,"z":634.3239344686671}},{"id":"6345","data":{"label":"VisionTech","x":1440.559609832837,"y":1591.161765161196,"z":19.43262971947668}},{"id":"6344","data":{"label":"AltoCom","x":1283.1437076543907,"y":1795.6112689329693,"z":241.25070653153614}},{"id":"6340","data":{"label":"SBS","x":-833.0546880675884,"y":-2937.9585967453754,"z":723.3701348700931}},{"id":"6342","data":{"label":"Internet Broadcasting Systems","x":3175.872693582034,"y":-107.96248276243205,"z":262.1170021412373}},{"id":"6341","data":{"label":"LaMusica.com","x":3328.2213780587335,"y":-2119.1024032232485,"z":120.02192649637978}},{"id":"6339","data":{"label":"Yahoo","x":-1936.21451470995,"y":-2771.1036839615463,"z":795.4263193586947}},{"id":"6338","data":{"label":"Biztravel.com","x":37.987056963571376,"y":-4236.130895424336,"z":526.7223510016022}},{"id":"6337","data":{"label":"British Airways Plc","x":-122.41691453439125,"y":-4232.2825276664835,"z":174.80616351252687}},{"id":"6336","data":{"label":"Rogers Wireless Communications","x":930.6395785809282,"y":-788.5079445279443,"z":546.726481001877}},{"id":"6335","data":{"label":"Sqribe","x":3026.388771517085,"y":-3254.452616069532,"z":186.88875850419717}},{"id":"6334","data":{"label":"Brio","x":2901.819249815335,"y":-3370.1998366082266,"z":714.1262381066824}},{"id":"6333","data":{"label":"Trojan Television","x":3132.5716424248376,"y":-571.5735394305475,"z":73.20577452420119}},{"id":"6331","data":{"label":"Powerful Media","x":534.4345334781383,"y":-1012.6272600709299,"z":69.65645669007192}},{"id":"6332","data":{"label":"Brilliant Digital Entertainment","x":3114.7591328720364,"y":-414.07319382226524,"z":28.42903332155622}},{"id":"6329","data":{"label":"Brightmail","x":3450.296440476295,"y":-310.07007354713824,"z":661.1679493515177}},{"id":"6330","data":{"label":"Brill Media","x":-2053.2049957051845,"y":-1452.7920063259908,"z":969.5166750880513}},{"id":"6328","data":{"label":"DataCyr","x":-654.7166702718678,"y":632.8465592486609,"z":496.9278789484479}},{"id":"6327","data":{"label":"Breakaway","x":3542.2139787357246,"y":-2885.4187031344336,"z":757.0674749076422}},{"id":"6326","data":{"label":"Zartis","x":-607.337200366138,"y":693.6491321382673,"z":486.6953801279699}},{"id":"6325","data":{"label":"WPL Labs","x":-672.9937171488305,"y":541.8511968817365,"z":247.1845755646791}},{"id":"6322","data":{"label":"Data Recognition","x":-1128.391862799369,"y":1322.8388433739883,"z":379.3628377654921}},{"id":"6324","data":{"label":"Breakaway Solutions","x":-516.3647512317816,"y":547.8966926183421,"z":974.6495074798476}},{"id":"6323","data":{"label":"Vertex Partners","x":2991.6761632461585,"y":439.91490970065024,"z":266.3262918121401}},{"id":"6321","data":{"label":"Brady","x":-1255.4181354212494,"y":1232.176802058516,"z":38.02605908112855}},{"id":"6320","data":{"label":"Flashpoint","x":3932.8493370596043,"y":-1686.0811215140143,"z":757.9522801550595}},{"id":"6318","data":{"label":"Bottomline","x":3523.8829661606096,"y":-3392.514007539755,"z":116.57224147883616}},{"id":"6317","data":{"label":"Cash Management Services","x":3930.7814171493756,"y":-1801.5024630091502,"z":300.4123658051332}},{"id":"6319","data":{"label":"Checkpoint Holdings","x":3995.8065158579157,"y":-1870.444485554192,"z":441.72896451607534}},{"id":"6316","data":{"label":"Bottomline Technologies","x":4071.827238376216,"y":-1736.8389894444185,"z":903.4066026639223}},{"id":"6315","data":{"label":"Credit Suisse First Boston (USA)","x":-2211.9691659597174,"y":-1086.6902532363333,"z":212.99715379099115}},{"id":"6314","data":{"label":"Marketing Services Group","x":-2127.086070552001,"y":-1352.8065774284873,"z":746.5982953474733}},{"id":"6313","data":{"label":"Credit Suisse First Boston","x":-2205.9906194148098,"y":-1236.8916477985595,"z":541.9197097015696}},{"id":"6312","data":{"label":"Fonepark","x":1821.9911063365544,"y":2075.7846299825405,"z":440.19916894227663}},{"id":"6311","data":{"label":"Bolt","x":1972.5908537755713,"y":2039.0127550484267,"z":131.8379471994726}},{"id":"6310","data":{"label":"Boca Research","x":3690.885361902083,"y":-2445.7724869962058,"z":478.2045088276294}},{"id":"6309","data":{"label":"Informatec","x":3652.5099997872003,"y":-2594.681436154331,"z":160.79145041692854}},{"id":"6308","data":{"label":"Eritmo","x":1654.429226449034,"y":1062.602907258466,"z":333.5746555370851}},{"id":"6307","data":{"label":"BMG","x":-2460.3475750720454,"y":-480.7857070702121,"z":834.6925572892696}},{"id":"6306","data":{"label":"MicroCell","x":-1836.2860655448696,"y":-2613.5433416564924,"z":189.03943183235873}},{"id":"6305","data":{"label":"Brokat Infosystems Aktiengesellschaft","x":-405.0117085528814,"y":-3844.7181729781073,"z":195.74258841538094}},{"id":"6304","data":{"label":"Blaze Software","x":1371.070825476495,"y":-4471.285797527282,"z":284.4055046844105}},{"id":"6303","data":{"label":"Brokat","x":1220.516686554698,"y":-4467.651700003409,"z":685.4821246399745}},{"id":"6302","data":{"label":"Madduck Technologies","x":2244.9915089803544,"y":-3610.012297738558,"z":140.561391915782}},{"id":"6300","data":{"label":"Blackboard","x":2094.180384008887,"y":-3534.7113574482796,"z":577.6245513303924}},{"id":"6301","data":{"label":"Two Collegiate Community Firms","x":1927.237038511881,"y":-3562.61249247995,"z":594.4961496067649}},{"id":"6299","data":{"label":"Vista","x":3059.9600593392915,"y":1057.8742864667656,"z":201.94759609334878}},{"id":"6298","data":{"label":"Black Bean Studios","x":3928.671054417444,"y":-2235.136819168669,"z":198.83508672636796}},{"id":"6297","data":{"label":"Primix","x":-1902.421637782512,"y":55.28612861040892,"z":626.1572396030788}},{"id":"6296","data":{"label":"Michael Electric","x":2805.7580665325822,"y":1156.9901668908115,"z":584.9852596527185}},{"id":"6295","data":{"label":"Integrated Cabling","x":2912.6648030041824,"y":772.0865620773793,"z":154.66369039927153}},{"id":"6294","data":{"label":"Integrated Cabling Systems","x":2751.747566331005,"y":1014.5952665878976,"z":172.71871791763394}},{"id":"6292","data":{"label":"GMCI Netcomm","x":2802.1693226190937,"y":917.7032489757758,"z":552.0860585289126}},{"id":"6293","data":{"label":"Computer Cabling & Accessories","x":2963.7501029168216,"y":1187.9507702626224,"z":356.7318889261011}},{"id":"6291","data":{"label":"Black Box","x":2907.0385182125374,"y":1042.8018430396078,"z":541.466994492533}},{"id":"6290","data":{"label":"Harris Black","x":-1012.5632980977521,"y":1366.6020914288401,"z":323.7275495502312}},{"id":"6289","data":{"label":"Market Facts","x":-1090.9956323202437,"y":1230.0372979742087,"z":342.7679017142151}},{"id":"6288","data":{"label":"Measurement Microsystems","x":3806.2661136526813,"y":394.82948324579047,"z":903.6649326862649}},{"id":"6287","data":{"label":"Bookham Technology","x":3731.059929627131,"y":529.42282432922,"z":561.6106089088995}},{"id":"6286","data":{"label":"Netect","x":1765.1670360598328,"y":-3627.4483889097337,"z":151.9884236543112}},{"id":"6285","data":{"label":"BindView Development","x":1892.3078393235573,"y":-3521.306630754253,"z":609.060549537731}},{"id":"6283","data":{"label":"Big City Radio","x":795.2617453369426,"y":1387.862818077474,"z":713.9838988735668}},{"id":"6284","data":{"label":"UPF","x":917.3188940533055,"y":1276.166384512403,"z":233.18530182380127}},{"id":"6282","data":{"label":"BrainPlay","x":4008.668371837658,"y":-2513.0990147785446,"z":795.9516377715374}},{"id":"6281","data":{"label":"Consolidated Stores","x":3936.7949111806665,"y":-2632.352940543668,"z":355.07973031700124}},{"id":"6280","data":{"label":"Big Theory","x":-915.339140824467,"y":1146.237131550717,"z":313.06335376824876}},{"id":"6279","data":{"label":"Big Planet","x":-285.6703977730331,"y":-3684.6082330715226,"z":691.7577664524317}},{"id":"6278","data":{"label":"Nu Skin Enterprises","x":-244.4401213758415,"y":-3832.8963756663497,"z":339.90641972838745}},{"id":"6277","data":{"label":"Big Party","x":-2127.225627155956,"y":260.26967086448167,"z":849.5757875183292}},{"id":"6276","data":{"label":"IParty","x":-2208.1694326741363,"y":126.87459764317191,"z":420.67407340957044}},{"id":"6275","data":{"label":"BigNetwork.com","x":4275.067998863874,"y":-1443.4502640956548,"z":23.555005339273016}},{"id":"6274","data":{"label":"Euniverse","x":4136.004451604754,"y":-1370.2069608277743,"z":260.2243643066098}},{"id":"6273","data":{"label":"Game Show Network","x":1250.8137092268926,"y":-947.2103715705566,"z":264.9370465868186}},{"id":"6272","data":{"label":"RTL Group","x":930.6558313384444,"y":612.0021045566355,"z":728.8500945306962}},{"id":"6270","data":{"label":"Bertelsmann AG","x":-865.2053875663573,"y":1826.110473280085,"z":287.7239812791754}},{"id":"6271","data":{"label":"i-Escrow","x":1080.6804043624124,"y":719.9041741185247,"z":592.9232113776757}},{"id":"6269","data":{"label":"CDNow","x":1682.6255517064028,"y":43.38903413137723,"z":781.6630706564251}},{"id":"6268","data":{"label":"Putnam Investments","x":1.5198844069486768,"y":-3391.0250855279965,"z":808.5851153255284}},{"id":"6267","data":{"label":"Rare Medium Group","x":85.96546539187966,"y":-3250.9453127605393,"z":439.1923502745856}},{"id":"6263","data":{"label":"Bell Microproducts","x":1724.716205760299,"y":-3546.688478052284,"z":334.49505790610544}},{"id":"6266","data":{"label":"Franklin Resources","x":197.82643053097445,"y":-3353.944802702009,"z":441.1073127483105}},{"id":"6265","data":{"label":"Flycast Communications","x":2402.870281083513,"y":-1928.7268874025226,"z":534.8469827562681}},{"id":"6264","data":{"label":"Touch The Progress Group","x":1578.7343167020244,"y":-3606.1355501804373,"z":273.7006834187288}},{"id":"6262","data":{"label":"The Object People","x":3150.941775339925,"y":995.2331908417082,"z":963.9959597017424}},{"id":"6259","data":{"label":"Component Systems","x":2949.7880936098572,"y":1102.9027357029863,"z":487.4886032577788}},{"id":"6261","data":{"label":"Softport","x":3266.3882211864975,"y":1174.9063067427878,"z":478.24560870223155}},{"id":"6260","data":{"label":"BEA","x":272.29893674916093,"y":2316.0593527835545,"z":265.13913518723854}},{"id":"6258","data":{"label":"Avitek","x":3030.3674924486786,"y":1284.9366506814404,"z":536.3014567509825}},{"id":"6257","data":{"label":"Bea Systems","x":3884.4272922452647,"y":-2398.5782838074533,"z":491.0407919080195}},{"id":"6256","data":{"label":"Beatnik","x":-789.8985305618435,"y":-2615.349820015791,"z":136.93259281295235}},{"id":"6255","data":{"label":"FindWhat.com","x":-1700.6498990908256,"y":-2861.317316924085,"z":233.48455387043532}},{"id":"6253","data":{"label":"TMP Worldwide","x":4040.098801662375,"y":-1584.534635738638,"z":356.9584207908429}},{"id":"6254","data":{"label":"Beasley Broadcast Group","x":-1722.3075739328124,"y":-2709.8297568906282,"z":166.09719867378624}},{"id":"6252","data":{"label":"NewMedia.com","x":471.37491110259816,"y":1539.6441410521438,"z":490.5580340163662}},{"id":"6251","data":{"label":"Extended Systems","x":3831.9062525709533,"y":-2446.1308084453935,"z":940.3800553063371}},{"id":"6250","data":{"label":"Palm","x":3808.390817054871,"y":-2592.3009299544565,"z":234.27840639559295}},{"id":"6249","data":{"label":"Intermedia Group","x":922.9729745215927,"y":1529.6101751072001,"z":54.75196487037692}},{"id":"6248","data":{"label":"Intelispan in All-Stock Transaction","x":-1839.9780323414484,"y":-916.2316312719122,"z":656.1721051246907}},{"id":"6247","data":{"label":"ReplayTV","x":2963.6104364631883,"y":-2740.3710883154927,"z":360.6977414604526}},{"id":"6246","data":{"label":"Mondex International","x":3344.3603418294742,"y":847.8844173815105,"z":119.65821918759012}},{"id":"6245","data":{"label":"MasterCard International","x":3245.772665880042,"y":978.9145290730621,"z":317.5804706908243}},{"id":"6244","data":{"label":"Sun Microsystems","x":643.6577836985716,"y":-3560.333190048722,"z":129.04601492494416}},{"id":"6243","data":{"label":"Jamdat Mobile","x":462.0153430694086,"y":-3555.716003042694,"z":251.40693043397766}},{"id":"6242","data":{"label":"Patricof & Co. Ventures","x":575.114757872997,"y":-3694.6969235337588,"z":978.7776003432156}},{"id":"6241","data":{"label":"Aberdare Fiber Optic Cables","x":3148.409465588721,"y":780.823069640197,"z":225.85982229191637}},{"id":"6240","data":{"label":"J.P. Morgan & Co.","x":2123.7896110205165,"y":-2474.879023246048,"z":825.9061650281844}},{"id":"6239","data":{"label":"PracticallyNetworked.com","x":210.49127326626694,"y":1447.3335621459755,"z":327.5041251479196}},{"id":"6238","data":{"label":"EntryPoint","x":-2216.9647645185714,"y":-436.0114781081338,"z":817.3434015174875}},{"id":"6237","data":{"label":"Infogate","x":-2333.316302832035,"y":-333.4248814886869,"z":575.3061701863875}},{"id":"6236","data":{"label":"Bristol Retail Solutions","x":283.8619217551377,"y":2045.7773218858574,"z":231.19431423677918}},{"id":"6235","data":{"label":"Registry Magic","x":431.99660007703187,"y":2092.2486737676372,"z":349.9450618353761}},{"id":"6234","data":{"label":"WinDrivers.com","x":301.6645881892882,"y":1567.8613057411394,"z":964.4591307088137}},{"id":" NY)","data":{"label":"WOKR-TV (Rochester","x":-2610.632846440558,"y":607.7317242605932,"z":556.7743936474516}},{"id":"6233","data":{"label":"DBAsupport.com","x":239.22029170888345,"y":1513.7265391799165,"z":258.20699076559373}},{"id":"6232","data":{"label":"Envenue","x":1471.4619381788107,"y":-622.3770621135354,"z":733.4913571092904}},{"id":"8247","data":{"label":"VDOnet Corporation","x":-1505.0504523331915,"y":-2141.2580854170574,"z":73.71353125440928}},{"id":"6230","data":{"label":"NetZero","x":365.6114144483963,"y":-3499.0879142238987,"z":762.9001635756181}},{"id":"6228","data":{"label":"Qualcomm","x":4299.605023996023,"y":-1397.0812863481547,"z":894.2209731181774}},{"id":"6226","data":{"label":"Prince","x":792.6486329194199,"y":-1414.5322610430076,"z":815.0743204430506}},{"id":"6229","data":{"label":"Front Porch Communications","x":473.3297075885912,"y":-3619.5456763826214,"z":121.58360117450506}},{"id":"6227","data":{"label":"Priceline.com","x":4075.5276502581582,"y":101.568849167199,"z":528.5326581308916}},{"id":"6224","data":{"label":"CollegeLink.com","x":3938.7413915002326,"y":-1497.1982464402263,"z":780.3883998025498}},{"id":"6225","data":{"label":"Online Scouting Network","x":4073.0005679399346,"y":-1414.099219549773,"z":895.7664546809458}},{"id":"6223","data":{"label":"LinuxToday.com","x":277.47679011169794,"y":1529.7384736270797,"z":165.8601802241333}},{"id":"6222","data":{"label":"LinuxCentral.com","x":243.83081478696795,"y":1302.7007112069787,"z":147.48417348301547}},{"id":"6221","data":{"label":"Megatec","x":-534.9725349842779,"y":1734.449691787304,"z":452.3981196763238}},{"id":"6219","data":{"label":"1492 Technologies","x":3476.6243820890686,"y":-1351.2274598810814,"z":345.76750480808107}},{"id":"6220","data":{"label":"Kanbay","x":-374.8020432640087,"y":1744.7310346198765,"z":362.85239072382814}},{"id":"6218","data":{"label":"MicroLegend","x":-42.470279290846065,"y":1956.225727742417,"z":230.04200985422085}},{"id":"6217","data":{"label":"Performance","x":-173.74673237675415,"y":1884.0380266082502,"z":277.362481237829}},{"id":"6216","data":{"label":"Cablecom Group","x":114.1734189483659,"y":-3117.2421597387993,"z":520.3962292828461}},{"id":"6215","data":{"label":"SharkyExtreme","x":400.7308355509449,"y":1591.9626815196161,"z":758.2590580653952}},{"id":"6213","data":{"label":"Internet.com","x":407.5248504150013,"y":1394.3598921155099,"z":551.2146699360283}},{"id":"6212","data":{"label":"Moreton Bay Ventures","x":-1896.747931043127,"y":-945.1193669630366,"z":463.0562335002981}},{"id":"6214","data":{"label":"LinuxStart","x":234.9515553080978,"y":1354.4941863929862,"z":692.2668566378904}},{"id":"6211","data":{"label":"Basis","x":-2195.641829955829,"y":-701.8806056246985,"z":227.40840796485108}},{"id":"6209","data":{"label":"Capella Group","x":1051.2773279115436,"y":-4438.801851250478,"z":808.5335818818919}},{"id":"6210","data":{"label":"Amazon","x":-2286.3189369566235,"y":-835.3555898449031,"z":88.041410903279}},{"id":"6207","data":{"label":"EER Systems","x":2976.2519845793795,"y":727.9727827881061,"z":231.6186294171465}},{"id":"6208","data":{"label":"Precis","x":903.2959304091719,"y":-4484.913330493319,"z":385.0764405632563}},{"id":"6205","data":{"label":"The Yankee Group","x":3214.770965533081,"y":-1296.9157977870427,"z":973.1695209603324}},{"id":"6203","data":{"label":"Merant","x":3621.4888427272363,"y":-1434.8419239513096,"z":518.5004617265037}},{"id":"6206","data":{"label":"L-3 Communications Holdings","x":2993.342499206641,"y":573.9920544615834,"z":895.6382986314297}},{"id":"6204","data":{"label":"Marathon Group","x":3763.9060153447053,"y":-1494.1574804393586,"z":590.3214173950042}},{"id":"6201","data":{"label":"Ireland Telecom Firm","x":-1154.157848126038,"y":798.2167606600233,"z":301.10195244740834}},{"id":"6202","data":{"label":"Ireland Online","x":-1232.1289118891775,"y":670.9783816697372,"z":722.9515775570566}},{"id":"6200","data":{"label":"Northern Light Technology","x":3396.533765059493,"y":-1173.7951786373687,"z":349.07015289819145}},{"id":"6199","data":{"label":"Musicmaker.com","x":585.7384551531054,"y":2333.6915803922775,"z":779.2786542291727}},{"id":"6198","data":{"label":"EMI Group plc","x":462.5333411253887,"y":2239.0084702947343,"z":958.446314322976}},{"id":"6197","data":{"label":"Leisureplanet","x":1996.1973909440221,"y":-283.47202668779664,"z":227.82183086544893}},{"id":"6196","data":{"label":"Nokias SDH/DWDM Transport Equipment Business","x":3264.4695042848234,"y":-3342.9267402782907,"z":744.4328598748318}},{"id":"6195","data":{"label":"Towne Services","x":-1382.4304143545703,"y":-2499.4941776953865,"z":131.86939294222054}},{"id":"6194","data":{"label":"Private Business","x":-1333.5374321258507,"y":-2336.7109291481747,"z":617.9268366562101}},{"id":"6193","data":{"label":"North Systems","x":1818.1921368695894,"y":1313.8149702109686,"z":510.68118089116086}},{"id":"6192","data":{"label":"OnDemand","x":1965.1108921776822,"y":1273.0126861112985,"z":742.9549259799255}},{"id":"6191","data":{"label":"Whistle Communications","x":2758.4282681901605,"y":-3629.1569384164823,"z":62.54782367152978}},{"id":"6190","data":{"label":"North Sky","x":3244.320664953035,"y":-2224.9112638328074,"z":742.2311381449314}},{"id":"6189","data":{"label":"Mainspring","x":2922.350386902288,"y":-3534.1871809330505,"z":583.3236255368428}},{"id":"6188","data":{"label":"Quantum Business Solutions","x":-2167.7463871881037,"y":-1656.2177315651002,"z":456.1597553849408}},{"id":"6187","data":{"label":"Collins Computing","x":-2220.0226901908136,"y":-1519.4796856399344,"z":321.788394799295}},{"id":"6186","data":{"label":"Doghouses Web Business","x":1779.268181857905,"y":-3337.6984034992383,"z":119.35379736622242}},{"id":"6185","data":{"label":"First Consulting","x":1811.5271435219984,"y":-3174.1247894067183,"z":399.8246391848794}},{"id":"6184","data":{"label":"Event Zero","x":98.91621867258527,"y":2044.8593588436306,"z":872.8196209526053}},{"id":"6183","data":{"label":"First Union","x":244.84124886351356,"y":2111.305285696725,"z":754.0718876434005}},{"id":"6182","data":{"label":"Business Centers","x":-833.6569246863501,"y":632.148555877624,"z":583.1372194001406}},{"id":"6180","data":{"label":"First Colony Lifes p.d.q. Unit","x":3615.5965983592077,"y":323.1883566515153,"z":141.16268622768047}},{"id":"8322","data":{"label":"Gwinnett Post-Tribune","x":-207.54058399688256,"y":-3713.8831309892544,"z":800.8714301667487}},{"id":"6179","data":{"label":"ChannelPoint","x":3491.315194099252,"y":244.45141479733593,"z":388.17900906920255}},{"id":"6178","data":{"label":"Security First","x":728.025351078436,"y":-2183.619962461138,"z":762.2476133849716}},{"id":"6177","data":{"label":"Reciprocal","x":3374.453848166796,"y":-1150.429435493898,"z":93.14879386115149}},{"id":"6176","data":{"label":"First Data","x":3498.3908075296395,"y":-1255.753030197015,"z":369.3626571709305}},{"id":"6174","data":{"label":"Business.com","x":-1918.348941716173,"y":478.4528463865854,"z":445.07647436432205}},{"id":"6175","data":{"label":"Work.com","x":-1960.2274210398161,"y":325.449706470019,"z":723.0912146954322}},{"id":"6173","data":{"label":"Informix Database Unit","x":2662.8271146155557,"y":-3592.209210106854,"z":663.8424848751594}},{"id":"6172","data":{"label":"Informix","x":2730.1335674274724,"y":-3286.047048749454,"z":252.59832305770578}},{"id":"6171","data":{"label":"International Business Machines","x":-2042.34842292537,"y":-1895.003306684991,"z":645.6677075799622}},{"id":"6170","data":{"label":"Integrated Business Systems and Services","x":3252.4960701515884,"y":1479.2407019115935,"z":517.4017406901621}},{"id":"6166","data":{"label":"Florence Business Net","x":-1230.010951544897,"y":-2466.0191058745245,"z":805.6001584151688}},{"id":"6169","data":{"label":"FundsXpress Financial Network","x":3321.389306670545,"y":1345.3048447583642,"z":77.80866028928357}},{"id":"6168","data":{"label":"Two-Ten Communications","x":3092.104366531559,"y":1273.6485119616627,"z":686.9720751665467}},{"id":"6167","data":{"label":"United News & Medias PR Newswire","x":2720.335048668422,"y":1908.4247992995097,"z":989.2018144203752}},{"id":"6165","data":{"label":"IBS Interactive","x":-1077.3366540942777,"y":-2513.3423202698177,"z":467.5779516440697}},{"id":"6164","data":{"label":"Dascom","x":2601.080841834465,"y":-3497.4071260072005,"z":865.9687448507698}},{"id":"6163","data":{"label":"IBM","x":2772.650024297768,"y":-3485.0536722145935,"z":142.90804350249275}},{"id":"6162","data":{"label":"Business Evolution","x":3468.7774333656034,"y":-1985.9832458572646,"z":467.0658776092451}},{"id":"6161","data":{"label":"Kana","x":3431.4248591825635,"y":-2128.946232892413,"z":20.484726050960855}},{"id":"6160","data":{"label":"Content Technologies","x":-1498.9879730781013,"y":-1590.1552707626315,"z":736.6845375959164}},{"id":"6159","data":{"label":"Baltimore","x":-1536.10113644541,"y":-1445.7593896765038,"z":695.6285292941249}},{"id":"6158","data":{"label":"Johnson & Johnson","x":-1960.2896442944984,"y":-1435.541110674183,"z":500.0795789653549}},{"id":"6157","data":{"label":"BabyCenter","x":-1871.2473218467676,"y":-1565.45003066574,"z":86.8514944640879}},{"id":"6153","data":{"label":"iBalls","x":-1805.3109024480943,"y":-2507.99303663935,"z":933.2556095165268}},{"id":"6156","data":{"label":"eToys","x":-1742.0634442850053,"y":-1671.0483456168904,"z":893.9665686497365}},{"id":"6155","data":{"label":"9 Net Avenue","x":1604.236178432643,"y":-425.63989396250327,"z":32.87828078029453}},{"id":"6151","data":{"label":"Aventail","x":3154.3586477180743,"y":-1238.1983034668829,"z":954.049598681467}},{"id":"6154","data":{"label":"Concentric Network","x":1598.9614353836369,"y":-589.8476168731904,"z":758.3307318703187}},{"id":"6152","data":{"label":"Avenue A","x":-1804.8380379627793,"y":-2662.42264078237,"z":581.1628861599885}},{"id":"6150","data":{"label":"VPNet","x":-642.4294479509813,"y":-3214.374788260814,"z":751.4109121307033}},{"id":"6149","data":{"label":"Celestica","x":-537.5820693726469,"y":-3083.4780349765024,"z":220.7927015234985}},{"id":"6148","data":{"label":"Quintus","x":-772.1778250667307,"y":-3089.9531454480048,"z":912.0541893166182}},{"id":"8304","data":{"label":"Gemstar International Group","x":964.3143996138688,"y":-1168.2033922654555,"z":912.2307563632169}},{"id":"6146","data":{"label":"Holographix","x":2915.280374101244,"y":-3446.8405008801274,"z":198.15792993526625}},{"id":"6144","data":{"label":"AIS","x":4262.718594648779,"y":-1994.309434198628,"z":393.2724891062873}},{"id":"6145","data":{"label":"Avanex","x":2817.8504790546876,"y":-3563.751944064363,"z":178.06893377971966}},{"id":"6143","data":{"label":"CSK Auto","x":1992.3001307196346,"y":-2700.825538128876,"z":901.8810614250317}},{"id":"6142","data":{"label":"Automotive Information Center And Its Autosite Web-Based Products","x":3930.146692251279,"y":616.2921958057314,"z":218.28102906402913}},{"id":"6139","data":{"label":"Cirrus Logic","x":-1418.6839404764908,"y":-1798.7192842966265,"z":336.84772589754976}},{"id":"6141","data":{"label":"Autoweb.com","x":3844.6102425838017,"y":491.0684588568183,"z":602.9723861842198}},{"id":"6140","data":{"label":"Peak Audio","x":-1549.446386387251,"y":-1880.2269577900875,"z":47.622889437941794}},{"id":"6138","data":{"label":"Audible","x":1328.8322287330366,"y":-726.0675421803089,"z":8.545587008757183}},{"id":"6137","data":{"label":"ATX Telecommunications Services For $900 Million","x":2302.561980011059,"y":-12.083483016477658,"z":906.610834453505}},{"id":"6135","data":{"label":"Attunity","x":2354.7106529764296,"y":-2768.655953407651,"z":972.1803752600799}},{"id":"6136","data":{"label":"CoreComm","x":2158.1862790856976,"y":-12.449587237426385,"z":525.042365593098}},{"id":"6134","data":{"label":"MedaTech and subsidiary Insol","x":-1518.541869159534,"y":-2509.6417649142995,"z":591.6085140677702}},{"id":"6133","data":{"label":"International Software Group","x":-1569.349138155576,"y":-2368.539240245309,"z":70.92416435367221}},{"id":"6132","data":{"label":"ATL Research","x":2092.802835172166,"y":241.26642378746328,"z":187.52094607529602}},{"id":"6131","data":{"label":"New Atlanta Communications","x":4261.1288459108,"y":7.738168515698817,"z":258.00077623909124}},{"id":"6130","data":{"label":"Unify","x":4151.008612444333,"y":115.96282508462082,"z":553.8783072402626}},{"id":"6129","data":{"label":"FGL Graphics","x":-968.4048941624978,"y":1646.4921977114755,"z":808.3637958446344}},{"id":"6126","data":{"label":"Compensated Devices","x":2642.791584332019,"y":-3710.787535662764,"z":240.9266822931404}},{"id":"6128","data":{"label":"ATI","x":-1118.4064811675512,"y":1662.941720168924,"z":264.4002069472593}},{"id":"6127","data":{"label":"IntelleSale.com","x":3148.1279935697194,"y":-871.246411010582,"z":435.67813259551724}},{"id":"6125","data":{"label":"Microsemi","x":2508.1829574989406,"y":-3790.326098906278,"z":198.5857630819754}},{"id":"6124","data":{"label":"Ramp Networks","x":-653.7940063725146,"y":-3151.8072213607556,"z":31.120104091854948}},{"id":"6123","data":{"label":"Nokia","x":-551.539396059613,"y":-3275.698360730675,"z":479.47625053182105}},{"id":"6122","data":{"label":"PakNetX","x":3246.0501927721043,"y":-2936.500023511258,"z":222.58892920604077}},{"id":"6121","data":{"label":"Aspect","x":-221.3099566704841,"y":-4272.790203628866,"z":878.1209748882081}},{"id":"6120","data":{"label":"Aspect Online","x":3102.196836683046,"y":-2925.2074196200283,"z":212.61142862704352}},{"id":"6119","data":{"label":"EXchange","x":3001.830058021984,"y":-3032.4557645281266,"z":741.6475319729234}},{"id":"6118","data":{"label":"eTour Assets","x":2821.3681734614775,"y":1563.2169233172972,"z":93.80788528257145}},{"id":"6117","data":{"label":"Evergreen","x":1836.2153882796374,"y":2335.261574732075,"z":986.0891521372229}},{"id":"6116","data":{"label":"Net Effect Systems","x":2577.0161095279354,"y":1368.1207074936729,"z":144.48091413825682}},{"id":"6115","data":{"label":"Hutchison Whampoa","x":853.8756466119048,"y":-1545.7201948474672,"z":145.37525071459712}},{"id":"6114","data":{"label":"Cheung Kong (Holdings)","x":834.9623953850137,"y":-1508.3549288792856,"z":142.65693971326843}},{"id":" Enters Joint Partnership","data":{"label":"PCG","x":4092.7174327755693,"y":-2448.5408504252155,"z":30.663016448538414}},{"id":"6108","data":{"label":"EdgeMatrix","x":3500.36478153578,"y":-707.2937542632462,"z":700.8592561891247}},{"id":"6112","data":{"label":"Monkey King Media","x":1106.5736226326144,"y":2125.9313303436975,"z":174.2510744156045}},{"id":"6111","data":{"label":"A.Media","x":948.2164882928055,"y":2132.989496579232,"z":978.0031236108589}},{"id":"6110","data":{"label":"AsiaContent.com","x":3046.650139930325,"y":-3834.2893149326324,"z":538.7340035227742}},{"id":"6109","data":{"label":"Netlife Asia","x":3593.2568271212876,"y":-860.222598726119,"z":644.6096704767916}},{"id":"6107","data":{"label":"Skyhub Asia Holdings","x":973.1181274872388,"y":2077.39454851328,"z":483.5966039166939}},{"id":"6106","data":{"label":"5G Wireless Communications","x":815.3209689200612,"y":2043.7537069848495,"z":369.7287442323292}},{"id":"6105","data":{"label":"Space Asia","x":2377.319097661185,"y":1054.6493813271854,"z":867.2827460911277}},{"id":"6101","data":{"label":"Digital Video Art","x":-2344.683726522644,"y":-564.2746557947594,"z":910.9834924288425}},{"id":"6104","data":{"label":"Engage","x":2522.9707272834403,"y":1066.3007675970175,"z":702.1626853111196}},{"id":"6103","data":{"label":"Asera","x":-240.7211143266927,"y":-4031.424434186249,"z":633.9715685408114}},{"id":"6102","data":{"label":"Andersen Consulting","x":-149.31499118052943,"y":-4151.920799917044,"z":552.419139480244}},{"id":"6100","data":{"label":"WorldGate","x":2696.0125856725335,"y":-3880.436950595553,"z":742.2412117651926}},{"id":"6099","data":{"label":"Art.com","x":-358.7979260325974,"y":1620.485198182574,"z":93.17292491850382}},{"id":"6098","data":{"label":"Getty Images","x":-514.6718925658397,"y":1572.2085071286747,"z":5.791623440819738}},{"id":"6097","data":{"label":"iMusic.com","x":-657.823962409344,"y":-2928.7380144764297,"z":373.1859070989489}},{"id":"6096","data":{"label":"ArtistDirect","x":-791.440186018292,"y":-2827.791126418966,"z":441.3176989338505}},{"id":"6095","data":{"label":"Black Arrow Capital Through Subsidiary","x":1560.5815971881575,"y":2109.7892431047494,"z":838.5561675980042}},{"id":"6093","data":{"label":"Merisel","x":3391.6100892573504,"y":-3148.225339657899,"z":290.8941414970443}},{"id":"6094","data":{"label":"ScanSource","x":1717.3574218434132,"y":2087.129798631806,"z":759.1113292269605}},{"id":"6092","data":{"label":"Arrow Electronics","x":3283.099990555702,"y":-3260.234547931782,"z":427.7621385054042}},{"id":"6091","data":{"label":"ArrayComm","x":-577.0627894367958,"y":-2987.788826601031,"z":176.174463146463}},{"id":"6090","data":{"label":"Marconi","x":-546.4558179521173,"y":-3136.436804524578,"z":885.0699225654763}},{"id":"6088","data":{"label":"Arlington Capital","x":757.0534938067894,"y":-2368.3543727706365,"z":634.7100054663981}},{"id":"6089","data":{"label":"Division of PSINet","x":2105.720554611745,"y":-4285.739716865604,"z":297.3363459781797}},{"id":"6087","data":{"label":"fine.com International","x":-1532.7643329736895,"y":588.4956229907311,"z":502.6140728900914}},{"id":"6086","data":{"label":"Arista","x":-1152.6719210124554,"y":-3711.154592101494,"z":217.40305194307496}},{"id":"6085","data":{"label":"SupplierMarket.com","x":205.73307115186935,"y":222.33891496724937,"z":258.58878588483435}},{"id":"6080","data":{"label":"Arel Communications","x":3634.642704799069,"y":440.4245638170041,"z":148.9625366943157}},{"id":"6083","data":{"label":"GlobalSoft","x":701.3085235578965,"y":-3889.53486945451,"z":276.06977649707454}},{"id":"6084","data":{"label":"TradingDynamics","x":30.035739609261782,"y":-2.5628164234703945,"z":191.04126859529958}},{"id":"6082","data":{"label":"E-nnovations","x":914.2636084442993,"y":-4039.911361387724,"z":173.15797231408303}},{"id":"6081","data":{"label":"W2Com","x":3703.7883650216063,"y":299.3586955954397,"z":988.9361716757712}},{"id":"6079","data":{"label":"Cosource","x":4319.486174243473,"y":-1807.6421347553492,"z":38.57682301665655}},{"id":"6078","data":{"label":"Cosource.com","x":314.3801737640956,"y":1363.8119567672438,"z":5.922550944162941}},{"id":"6076","data":{"label":"CRL Network Services","x":-1897.879382907563,"y":-2075.994647758012,"z":898.631564531994}},{"id":"6077","data":{"label":"Applix","x":162.00212529951932,"y":1382.9073921418003,"z":177.0840635827422}},{"id":"6075","data":{"label":"Cordada","x":-1933.7197587431308,"y":-2390.375075974881,"z":47.41058101838558}},{"id":"6074","data":{"label":"Tabor Interactive","x":-2014.1796917893782,"y":-2102.3792637028464,"z":599.4195602941645}},{"id":"6073","data":{"label":"AppliedTheory","x":-1922.243572188031,"y":-2229.2396995837157,"z":601.7339301104158}},{"id":"6072","data":{"label":"EarthLink","x":-467.7533829605459,"y":-2503.9990929822193,"z":917.3307314897352}},{"id":"6070","data":{"label":"Aperian","x":-1299.5399493043624,"y":-3253.3282074052686,"z":863.2005062674946}},{"id":"6071","data":{"label":"Infinity Interactive","x":-1409.8303281769734,"y":-3150.3157724116704,"z":32.443910085474755}},{"id":"6069","data":{"label":"InfoInterActive","x":2277.904073875544,"y":-425.16900772600184,"z":608.2167993317418}},{"id":"6068","data":{"label":"AOL Canada","x":3842.4265460399283,"y":585.8879423709459,"z":747.91552710857}},{"id":"6066","data":{"label":"Analysis & Technology","x":-1554.504845499339,"y":321.6557041534543,"z":291.79494755314516}},{"id":"6067","data":{"label":"Royal Bank","x":3717.909010568196,"y":680.4962326684999,"z":821.941632629718}},{"id":"6065","data":{"label":"Anteon","x":-1522.2426545328244,"y":468.9907425476895,"z":950.2032304173873}},{"id":"6064","data":{"label":"Group Cortex","x":3993.057187907433,"y":-1405.9075119919594,"z":332.19307108227866}},{"id":"6063","data":{"label":"triSpan","x":3723.153108058039,"y":-1564.9646966082269,"z":59.38394808893821}},{"id":"6062","data":{"label":"CFT Consulting","x":3844.4656476424534,"y":-1669.3497909382017,"z":405.39744400552166}},{"id":"6061","data":{"label":"AnswerThink","x":-963.5416363989934,"y":1409.2937631197456,"z":162.16376492285022}},{"id":"6060","data":{"label":"Antilles Wireless Cable TV","x":2388.1813855555883,"y":-3758.660033015674,"z":949.0053340443059}},{"id":"6059","data":{"label":"Atlantic Tele-Network","x":2530.324743653822,"y":-3727.9210085019554,"z":605.9069933494852}},{"id":"6058","data":{"label":"Conifer","x":-4.748260842573018,"y":1412.8164780497173,"z":346.6186753113283}},{"id":"6057","data":{"label":"Sequoia Software","x":-1350.371531336134,"y":-2080.1289687336753,"z":42.478178393144276}},{"id":"6056","data":{"label":"Analysts International","x":-1501.957020192765,"y":-2047.050990174766,"z":212.65344511542162}},{"id":"6055","data":{"label":"AENTV","x":-1424.6427161175143,"y":-2906.465755412797,"z":738.4334214262509}},{"id":"6054","data":{"label":"TV onthe Web","x":-1242.8915557236849,"y":-2880.6614081647476,"z":167.54050627451343}},{"id":"6053","data":{"label":"Ameritech New Media","x":-784.6025576317916,"y":-3404.337801623515,"z":804.281395887749}},{"id":"6051","data":{"label":"J.P. Morgan Chase & Co.","x":2222.7359942984176,"y":-2237.0049755162563,"z":9.22940920672155}},{"id":"6052","data":{"label":"WideOpenWest","x":-758.989653648991,"y":-3555.8337223176804,"z":230.5560059547338}},{"id":"6050","data":{"label":"StarMedia Network","x":-2395.874601223784,"y":-138.70178264615697,"z":323.17989127951074}},{"id":"6049","data":{"label":"BET Holdings","x":4324.4132357160015,"y":-2061.837726352224,"z":79.10317089126573}},{"id":"6048","data":{"label":"SierraCities.com","x":554.4185787664564,"y":-3975.6543248367075,"z":466.769003087387}},{"id":"6047","data":{"label":"LoanCity.com","x":3727.4171000736187,"y":-1272.738293353309,"z":516.9684466669642}},{"id":"6046","data":{"label":"AMRI","x":3731.846894591121,"y":-1428.455444952845,"z":32.07881286126168}},{"id":"6045","data":{"label":"CareSteps","x":-2151.136204759007,"y":106.91231260853874,"z":281.06067125471947}},{"id":"6044","data":{"label":"American Healthways","x":-2007.3453863031955,"y":176.71024707425022,"z":228.42889546826672}},{"id":"6041","data":{"label":"energyOn.com","x":2193.119627351616,"y":-3185.8487392661564,"z":374.7236888814167}},{"id":"6043","data":{"label":"First Home Mortgage","x":3391.3258706347024,"y":283.25039831361937,"z":254.84527864691287}},{"id":"6042","data":{"label":"American Home Mortgage","x":3258.2486560792786,"y":361.43857414860577,"z":346.94078844312037}},{"id":"6040","data":{"label":"American Power Conversion","x":2033.6567844504716,"y":-3205.480249357791,"z":530.5252812033465}},{"id":"6039","data":{"label":"American Church Lists","x":972.5513315036847,"y":-4202.820711290191,"z":604.8927632431471}},{"id":"6034","data":{"label":"Ibero Partners","x":3785.572729935704,"y":-1776.3371868444751,"z":866.1524954784778}},{"id":"6038","data":{"label":"InfoUSA","x":826.8057198679362,"y":-4265.276924306281,"z":429.1682442338984}},{"id":"6036","data":{"label":"ACE","x":3707.3432064572708,"y":823.6491393472261,"z":96.3954519481025}},{"id":"6035","data":{"label":"American Quantum Cycles","x":2249.589287288454,"y":-3246.2743630483437,"z":213.61521066843082}},{"id":"6032","data":{"label":"American Information Systems","x":1888.9716771529056,"y":-2524.536747656589,"z":63.65349809070597}},{"id":"6037","data":{"label":"Frederiksen Group","x":3562.2083531919143,"y":896.1645589133595,"z":10.260241230964695}},{"id":"6033","data":{"label":"Foodline.com","x":256.2692195114205,"y":-3897.7602762820516,"z":558.0381882326468}},{"id":"6031","data":{"label":"Exodus","x":304.05051180579176,"y":2263.4297438416024,"z":275.80473333473043}},{"id":"6030","data":{"label":"American Telecasting","x":-120.54834508948943,"y":-2623.4928818176054,"z":452.8946558424984}},{"id":"6029","data":{"label":"North American Power Brokers","x":4327.425474632778,"y":-58.87268208376008,"z":600.2654641654392}},{"id":"6028","data":{"label":"Unitil","x":4199.580745821827,"y":42.28833036667493,"z":274.458726912602}},{"id":"6027","data":{"label":"GetThere","x":376.11360542826606,"y":-3830.082365484099,"z":797.2903344548694}},{"id":"6026","data":{"label":"edocs","x":243.61330174386785,"y":-4032.196419299049,"z":891.5964879092451}},{"id":"6025","data":{"label":"Qpass","x":494.7296363696155,"y":-4106.7875016577,"z":369.1974238740714}},{"id":"6024","data":{"label":"American Express","x":391.46455260241964,"y":-3986.9059901901155,"z":782.2248276855646}},{"id":"6022","data":{"label":"SoftQuad","x":4001.9713573948675,"y":-1464.1369719474283,"z":324.52246811583694}},{"id":"6021","data":{"label":"AT&T","x":682.6669857444313,"y":2034.5842330301384,"z":733.5713062914}},{"id":"6023","data":{"label":"The American Sports Machine","x":4069.0905217188674,"y":-1327.3067340347848,"z":288.8053214262725}},{"id":"6020","data":{"label":"Solutions Plus","x":-942.765373825524,"y":524.9062935342408,"z":936.1544984928559}},{"id":"6019","data":{"label":"CareerShop.com","x":-521.1844388663694,"y":-4065.8630887806967,"z":84.91131102365301}},{"id":"6017","data":{"label":"Transmeta","x":1382.1644326225469,"y":1.3550491679743573,"z":232.42303803820485}},{"id":"6018","data":{"label":"Personnel Group of America","x":-650.582250314977,"y":-3998.4066291534646,"z":44.02710752384365}},{"id":"6016","data":{"label":"Homestore.com","x":1405.8789715313223,"y":17.26793273638941,"z":138.85415499434495}},{"id":"6015","data":{"label":"Kdi Internet Solutions","x":3218.52412694991,"y":-1493.2966553857323,"z":412.99095818155604}},{"id":"6014","data":{"label":"UcoNects","x":-759.7697508791016,"y":694.4946346369015,"z":579.0191730639556}},{"id":"6013","data":{"label":"NetQuarters","x":-884.3104818954307,"y":399.46791449550983,"z":540.4577813320741}},{"id":"6011","data":{"label":"Usurf","x":-1860.2403152523414,"y":-2176.5939690221867,"z":623.4665522250058}},{"id":"6012","data":{"label":"Premier Internet Services","x":-1835.118706046386,"y":-2337.385407594236,"z":812.5605311998685}},{"id":"6010","data":{"label":"PDQ.net","x":3210.912305752361,"y":-1218.5523993298093,"z":458.6768424843015}},{"id":"6009","data":{"label":"Pointe Communications","x":3153.382657215575,"y":-1536.824782472846,"z":734.0711497316435}},{"id":"6008","data":{"label":"Internet America","x":3127.9287748797788,"y":-1357.3099032374575,"z":689.0450114786535}},{"id":"6006","data":{"label":"Tegic","x":2197.820810895246,"y":-580.9270729916398,"z":776.7326596051638}},{"id":"6007","data":{"label":"Mass.-Based ISP","x":-932.387848234102,"y":592.3767396027542,"z":49.11023104970247}},{"id":"6004","data":{"label":"AOL","x":-1755.7466967111736,"y":-1334.2814012195145,"z":889.4254164561637}},{"id":"6005","data":{"label":"China.com","x":2150.8370249168174,"y":-485.31051701833167,"z":878.5320593816767}},{"id":"6003","data":{"label":"Radiant Systems","x":2315.5288349551984,"y":-517.880189208171,"z":130.2849212884467}},{"id":"6001","data":{"label":"DBT Online","x":3819.2969038366136,"y":95.89473936364084,"z":791.4385847524883}},{"id":"6002","data":{"label":"Assets of Information America","x":3797.133522960439,"y":254.29922028157853,"z":177.76462726837417}},{"id":"5999","data":{"label":"eMachines","x":2054.692465575634,"y":-925.1422528793273,"z":550.4472758333121}},{"id":"6000","data":{"label":"Technology Crossover Ventures","x":1782.2255732499661,"y":-1351.3061396661828,"z":348.137375178682}},{"id":"5998","data":{"label":"Internet Accounts of Virtual Media Technologies","x":-823.8856652013637,"y":696.6882961989277,"z":261.1264694366957}},{"id":"5997","data":{"label":"Log On America","x":-781.5725444829764,"y":533.6993244981613,"z":724.275903158744}},{"id":"5996","data":{"label":"Alysis Technologies","x":3295.122983231293,"y":1419.1101825380865,"z":731.8121497146215}},{"id":"5995","data":{"label":"Pitney Bowes","x":3381.437815843655,"y":1294.288910830278,"z":3.0163540350325313}},{"id":"5991","data":{"label":"Alta Vista","x":-1541.8910158405788,"y":1023.3063908158892,"z":335.7679761995382}},{"id":"5989","data":{"label":"Raging Bull","x":2689.8273204525676,"y":1128.5766014681303,"z":424.6018200716657}},{"id":"5994","data":{"label":"Pharsalia","x":-837.7903171584244,"y":498.34058830317736,"z":839.4747896265555}},{"id":"5992","data":{"label":"Alteon","x":-778.5812979299271,"y":782.6274493170467,"z":396.540149971081}},{"id":"5993","data":{"label":"Bluetail","x":-854.082536861596,"y":225.39114970852097,"z":735.7699942063207}},{"id":"5988","data":{"label":"Alpha","x":479.601156737976,"y":-2478.606099947017,"z":590.7525191490348}},{"id":"5982","data":{"label":"MyPoints.com","x":2923.747096414234,"y":-3856.6417312677413,"z":614.5997895921373}},{"id":"5987","data":{"label":"Nex-I.com","x":2606.506736288212,"y":-3644.291159736713,"z":186.59021223995364}},{"id":"5986","data":{"label":"AlphaNet","x":2761.5561734169223,"y":-3676.2107972381873,"z":315.0726418148908}},{"id":"5985","data":{"label":"HalfBrain.com","x":3607.9979191398606,"y":1073.8608747311537,"z":863.5190289411654}},{"id":"5983","data":{"label":"Alliance Development Group","x":3099.0243488271954,"y":-2330.4831174818287,"z":21.003429208927837}},{"id":"5984","data":{"label":"AlphaBlox","x":3514.9886001154846,"y":1197.9188421205781,"z":638.0514043305039}},{"id":"5980","data":{"label":"E-Cruiter.com","x":3102.008173240076,"y":70.57357473809589,"z":81.08275988219793}},{"id":"5981","data":{"label":"Allen and Associates","x":3148.4451905983824,"y":225.85358771021856,"z":840.7197448827033}},{"id":"5978","data":{"label":"U.S. Bancorp","x":1987.121178361801,"y":1370.0591456635375,"z":168.1737792490603}},{"id":"5979","data":{"label":"Oliver-Allen","x":1930.1614055692435,"y":1520.3862089833638,"z":492.63137679632507}},{"id":"5977","data":{"label":"NSA","x":4534.651533154301,"y":-615.5790086845946,"z":331.43222415114514}},{"id":"5976","data":{"label":"Allen Systems Group","x":4515.40136225507,"y":-442.61367078512376,"z":833.0835101683756}},{"id":"5975","data":{"label":"Prairie iNet","x":1502.3477080412658,"y":-3762.6394246888003,"z":258.40291554546366}},{"id":"5974","data":{"label":"UtiliCorp United","x":1369.2439651611621,"y":-3685.5508216023327,"z":855.7260392459742}},{"id":"5973","data":{"label":"Greenberg News","x":653.6534795965799,"y":778.3132960378771,"z":131.99993641432252}},{"id":"5971","data":{"label":"Juno Online Services","x":1312.647023258456,"y":-265.89160560039,"z":25.572298243740743}},{"id":"5972","data":{"label":"Prospect Street Ventures","x":1446.3934329777194,"y":-457.59245987120084,"z":113.00816931055624}},{"id":"5970","data":{"label":"PlanetRx.com","x":3285.0760090847507,"y":1283.684613461939,"z":696.2731668518664}},{"id":"5968","data":{"label":"Virtualis Systems","x":2965.7053174059192,"y":-338.7831222791201,"z":968.3710752134602}},{"id":"5969","data":{"label":"Tenet Healthcare","x":3217.6180222176617,"y":1415.598773210112,"z":567.1655931077921}},{"id":"5967","data":{"label":"Kivex.com","x":3007.5381257974905,"y":-506.472556722264,"z":751.6114296145211}},{"id":"5966","data":{"label":"THOMSON multimedia S.A.","x":-1821.2399665574503,"y":-2119.5623186499347,"z":37.752312117524276}},{"id":"5965","data":{"label":"Internet Devices","x":-1812.2570403937914,"y":-2287.8680024295354,"z":401.6540865724227}},{"id":" Division of Firstwave Technologies","data":{"label":"Distributor Orda-M","x":3120.7961435506077,"y":1603.8615366996128,"z":595.6660467296163}},{"id":"5963","data":{"label":"CallPath Assets","x":-1849.8967742223465,"y":-2224.8064911320694,"z":776.5841746606532}},{"id":"5962","data":{"label":"ASI Communications","x":-1949.1784864849512,"y":-1757.657423062853,"z":497.343913598177}},{"id":"5961","data":{"label":"Alanco","x":-1933.9553572323518,"y":-1915.7381460454321,"z":800.2012322075844}},{"id":"5960","data":{"label":"Southwest PCS","x":-1388.7421610397387,"y":-1880.8362698364208,"z":277.393216520911}},{"id":"5959","data":{"label":"Alamosa","x":-1310.712201749593,"y":-2034.0083299097319,"z":588.7849467691861}},{"id":"5958","data":{"label":"Network24","x":246.72895311841876,"y":-2588.8757489042005,"z":927.9288333881888}},{"id":"8329","data":{"label":"Practical Control Systems Technologies","x":3699.9585424682045,"y":583.8339478022672,"z":994.2149546454922}},{"id":"5956","data":{"label":"InterVU","x":836.6301744294342,"y":-1623.7544958614708,"z":285.62108896970864}},{"id":"5955","data":{"label":"Loudeye Technologies","x":150.3637754699962,"y":-2798.5543764062095,"z":658.3782579137415}},{"id":"5954","data":{"label":"Virage","x":422.3368522607593,"y":-2375.8062285446986,"z":203.9699357158309}},{"id":"5953","data":{"label":"AT&T Wireless Group","x":263.0507289362822,"y":-2818.0402375895414,"z":504.06040144743235}},{"id":"5952","data":{"label":"Apple Computer","x":-128.1977302075402,"y":-2517.2205495539943,"z":262.6575184996991}},{"id":"5951","data":{"label":"Akamai Technologies","x":274.6817965606997,"y":-2414.278075220541,"z":900.5366734898854}},{"id":"5949","data":{"label":"Mortgagebot","x":-1283.041645466165,"y":1285.104883212207,"z":836.3428654535428}},{"id":"5948","data":{"label":"Data on Air","x":3383.1449508255855,"y":-846.0698219099158,"z":534.7369576186312}},{"id":"5950","data":{"label":"Thin Air Software","x":-1383.8767861411047,"y":1173.6513630339095,"z":249.3144726270773}},{"id":"5947","data":{"label":"Trimble","x":3440.285480594999,"y":-988.6787228420467,"z":537.8732972419324}},{"id":"5945","data":{"label":"J-Phone Group","x":1710.089121630518,"y":-3363.138148411991,"z":988.251005589271}},{"id":"5946","data":{"label":"Japan Telecom Co.","x":1619.4762535098907,"y":-3333.722430964394,"z":588.500248231623}},{"id":"5943","data":{"label":"Vodafone Group PLC","x":-263.2259494651016,"y":1939.6975265790034,"z":285.10917846352936}},{"id":"5940","data":{"label":"Agere","x":2651.5341538282682,"y":-3028.681251520353,"z":326.693600962753}},{"id":"5942","data":{"label":"Digital Market","x":162.8669538273648,"y":505.165888726895,"z":12.085329870052508}},{"id":"5941","data":{"label":"Agile Software","x":80.55802513284061,"y":327.28945080005815,"z":904.6300310579489}},{"id":"5938","data":{"label":"Novatel Wireless","x":236.1972621941827,"y":-2722.4819292758875,"z":471.8976748479811}},{"id":"5939","data":{"label":"RTS Wireless","x":-784.8407764082813,"y":1696.017421964124,"z":370.39956522007157}},{"id":"5937","data":{"label":"WPP Group plc","x":3551.550077676018,"y":-1238.8881782622284,"z":598.435967781845}},{"id":"5936","data":{"label":"Advertising.com","x":3378.4888759926926,"y":-1270.7678648316255,"z":904.1406067921785}},{"id":"5935","data":{"label":"Reuters Group PLC","x":4503.21619417317,"y":-267.80553539913035,"z":159.32361342045832}},{"id":"8261","data":{"label":"Digital Equipment","x":2396.3913758844756,"y":901.033430516949,"z":266.61080680116925}},{"id":"5934","data":{"label":"Advent Networks","x":-676.0434287082239,"y":-3754.846439064826,"z":605.9294899895491}},{"id":"5933","data":{"label":"Southern Union","x":-549.7903764039356,"y":-3824.298911264734,"z":252.13606647816022}},{"id":"5932","data":{"label":"Digital Media World","x":386.2107571460406,"y":1565.6793897439675,"z":893.9489420962974}},{"id":"5931","data":{"label":"Advanstar Communications","x":223.07109087554545,"y":1563.365567396877,"z":817.2011922113264}},{"id":"5926","data":{"label":"Silicon Systems Design","x":-1391.4574487759637,"y":-2015.517073948517,"z":163.41139200176548}},{"id":"5929","data":{"label":"Vitesse","x":-863.4095027766707,"y":-2855.604311343169,"z":62.21496642025137}},{"id":"5930","data":{"label":"Exbit","x":-741.4491716365637,"y":-2966.421467405887,"z":981.661780486728}},{"id":"5928","data":{"label":"XMLSolutions","x":1776.877162143156,"y":-3414.8508739611643,"z":487.8744521526184}},{"id":"5927","data":{"label":"Vitria","x":1902.1637149959524,"y":-3307.5228122637473,"z":446.9282579427196}},{"id":"5925","data":{"label":"Chicory Systems","x":-1142.3316316973746,"y":-2193.5018230655896,"z":37.87875512875627}},{"id":"5923","data":{"label":"Marcus Technology","x":712.0169870944114,"y":-3527.76495827904,"z":397.7657696382848}},{"id":"5924","data":{"label":"Parthus Technologies plc","x":-1291.0072789876544,"y":-2135.950804348052,"z":466.96175444854873}},{"id":"5922","data":{"label":"Artesia Technologies","x":882.582312867989,"y":-3538.6778717347615,"z":211.2434079412071}},{"id":"5921","data":{"label":"Rapid Travel Solutions","x":748.7931280232378,"y":-1539.423902538511,"z":764.7830854806565}},{"id":"5920","data":{"label":"Exceptis","x":370.46997769975405,"y":1865.0045493641737,"z":232.801175800873}},{"id":"5919","data":{"label":"Trintech","x":514.5036890545184,"y":1889.3165385438624,"z":103.50130600178508}},{"id":"5918","data":{"label":"Cycle Computer","x":919.1551203508643,"y":1840.1406241430368,"z":173.7191016830073}},{"id":"5917","data":{"label":"Tadpole","x":1078.9651564640053,"y":1842.5889466609715,"z":241.17817625731263}},{"id":"5915","data":{"label":"NDS","x":-1639.02486720433,"y":-2844.5631363831735,"z":621.9268510823304}},{"id":"5916","data":{"label":"Orbis Technology","x":588.5260496166875,"y":519.0218784397248,"z":397.0263931707312}},{"id":"5914","data":{"label":"Freeserve","x":2035.762029613451,"y":-2661.8218431300506,"z":239.4432760070677}},{"id":"5913","data":{"label":"Wanadoo","x":1982.2383492041672,"y":-2887.7651508663007,"z":752.1785015147435}},{"id":"5912","data":{"label":"Eircell","x":1819.3939182534123,"y":-3310.5283840516104,"z":848.7407139137853}},{"id":"5911","data":{"label":"Vodafone","x":1716.364559949473,"y":-3200.6688007959524,"z":191.42283908296042}},{"id":"5910","data":{"label":"R2 Technology","x":3797.512381140369,"y":-1234.3411462274776,"z":515.8136395224127}},{"id":"5909","data":{"label":"Kodak","x":3682.816413621117,"y":-1128.2846117967429,"z":206.3322672022505}},{"id":"5906","data":{"label":"MarketWatch.com","x":-752.82487022552,"y":-633.392743608857,"z":741.4178909159946}},{"id":"5908","data":{"label":"Creative Planet","x":2861.8332580738406,"y":1500.1351206473955,"z":188.20556681357047}},{"id":"5907","data":{"label":"United News & Media","x":2980.215352769492,"y":1389.97054425866,"z":575.7362984597852}},{"id":"5905","data":{"label":"Pearson plc","x":-722.510104314485,"y":-385.8436829992579,"z":566.9061180339743}},{"id":"5904","data":{"label":"InSite Marketing Technology","x":454.17945375397494,"y":2168.993349882944,"z":514.2095693746166}},{"id":"5903","data":{"label":"Silknet","x":607.6227008610549,"y":2155.688885352436,"z":482.9712403733795}},{"id":"5902","data":{"label":"Assets of WorldPort Communications","x":-1991.291626887338,"y":-1222.7921840424533,"z":805.7335867848652}},{"id":"5901","data":{"label":"Energis","x":-2012.556234070554,"y":-1063.4549863909137,"z":444.82252199526283}},{"id":"5898","data":{"label":"NetMind","x":215.13432275597006,"y":2150.6464696487174,"z":85.75411625640595}},{"id":"5900","data":{"label":"Interactive Edge","x":-1059.7568969233812,"y":1338.173756405863,"z":15.798136663662143}},{"id":"5899","data":{"label":"Cordiant","x":-986.777395497033,"y":1477.6744344184117,"z":653.2879726824632}},{"id":"5897","data":{"label":"Puma","x":378.15934581457213,"y":2134.3016576811733,"z":313.7843550116768}},{"id":"5896","data":{"label":"DinSide Auksjon","x":1324.0354910344613,"y":-4312.636706521845,"z":321.9179683374476}},{"id":"5895","data":{"label":"QXL","x":1168.0275146871245,"y":-4270.700684319422,"z":702.8059595432605}},{"id":"5894","data":{"label":"ORT","x":3214.161361557285,"y":-990.1280988086746,"z":156.48362485284872}},{"id":"5893","data":{"label":"Reuters","x":3189.811580631678,"y":-1147.729100651568,"z":220.3585671040733}},{"id":"5892","data":{"label":"Qualitative Marketing Software","x":-587.1204536629216,"y":1439.35879064242,"z":489.93461441288974}},{"id":"5891","data":{"label":"Sagent","x":-441.5929233779134,"y":1494.0176011474086,"z":300.84324255769747}},{"id":"5890","data":{"label":"Advanced Educational Systems","x":106.26192348058294,"y":-3383.5960535714876,"z":476.18666736352446}},{"id":"5889","data":{"label":"SmartForce","x":-48.98831256117228,"y":-3355.2725630671625,"z":519.982063209451}},{"id":"5888","data":{"label":"Engineering Animation","x":585.0440146870137,"y":-3684.915983589489,"z":977.399948424659}},{"id":"5887","data":{"label":"Unigraphics Solutions","x":421.78865986426354,"y":-3643.823309486918,"z":507.81524049576785}},{"id":"5886","data":{"label":"Advanced Recruiting Technologies","x":3122.453268962414,"y":144.71770059568917,"z":532.3367046399039}},{"id":"5885","data":{"label":"Hire.com","x":3028.508186541909,"y":265.0542390211549,"z":83.43125838450138}},{"id":"5884","data":{"label":"Sabre","x":2342.8155464995407,"y":1763.976418594816,"z":42.87428776563096}},{"id":"5883","data":{"label":"BuildNet","x":1095.0399933507674,"y":-4242.2432340969535,"z":415.34620055995333}},{"id":"5882","data":{"label":"Cameron Ashley Building Products","x":1193.7434440027673,"y":-4356.168026638542,"z":532.9122435090336}},{"id":"5881","data":{"label":"Mobility Electronics","x":-1728.0957969104884,"y":-1538.7881932312703,"z":626.1169027739903}},{"id":"5880","data":{"label":"Cybex Computer Products","x":-1805.8776043240084,"y":-1681.5494813516534,"z":163.50984666133718}},{"id":"5879","data":{"label":"Advanced Radio Telecom","x":2903.0842352792615,"y":-1966.6384073509635,"z":356.41644274555426}},{"id":"5878","data":{"label":"Qwest Communications International","x":3660.7628500166675,"y":-21.793293039865603,"z":736.4576824140225}},{"id":"5877","data":{"label":"E-Stamp","x":2292.020801653345,"y":-549.365521459803,"z":196.91250746619727}},{"id":"5876","data":{"label":"Data Trak Technologies of California","x":2244.7104006776026,"y":-385.74920202890553,"z":485.12184005824577}},{"id":"5875","data":{"label":"Galileo International","x":181.10836452123567,"y":1218.1217551478267,"z":158.01732529484758}},{"id":"5874","data":{"label":"Cendant","x":105.71160494919695,"y":1340.5895851145142,"z":234.29470496505078}},{"id":"5872","data":{"label":"Intergraph","x":-402.454780376238,"y":-3760.6920560194226,"z":163.42809534225222}},{"id":"5873","data":{"label":"RTSe USA","x":-521.6087462917244,"y":-3670.215929386584,"z":798.5691867140619}},{"id":"5871","data":{"label":"Sunquest Information Systems","x":2536.2234831417154,"y":-4074.2948298174656,"z":168.87126048502466}},{"id":"5870","data":{"label":"Misys plc","x":2609.757692337271,"y":-3937.5897566758285,"z":40.83203391864987}},{"id":"5869","data":{"label":"Galaxy.com","x":4087.3281817731895,"y":-1655.0587285924348,"z":414.5564192014919}},{"id":"5868","data":{"label":"Logika","x":4058.3103825796316,"y":-1803.2727166597856,"z":858.1385295791366}},{"id":"5867","data":{"label":"Microware Systems","x":3285.224627029538,"y":-2939.5905921583753,"z":398.75565078211196}},{"id":"5866","data":{"label":"RadiSys","x":3248.195879179568,"y":-3098.56925921445,"z":987.5513619815208}},{"id":"5865","data":{"label":"Universal Distribution Services","x":-1073.257418693849,"y":-3410.7545586192737,"z":43.99234872775048}},{"id":"5864","data":{"label":"Innotrac","x":-928.7507043731944,"y":-3466.882467764226,"z":137.76479141922772}},{"id":"5863","data":{"label":"ACNielsen","x":-199.41042690895847,"y":1568.1471983810115,"z":800.5885951949045}},{"id":"5860","data":{"label":"Ciena","x":-1030.680191851883,"y":1581.4573815147396,"z":530.6047687228339}},{"id":"5861","data":{"label":"Cyras","x":-705.1761712212947,"y":1424.4275362277858,"z":47.78769943570271}},{"id":"5862","data":{"label":"VNU N.V.","x":-48.15864530619274,"y":1562.3420036682855,"z":705.7912644243047}},{"id":"5859","data":{"label":"Visual Data","x":339.68315709117996,"y":-4115.92491504859,"z":176.13608646651159}},{"id":"5858","data":{"label":"SportSoft Golf","x":454.9470638934745,"y":-4018.751597715534,"z":238.92350707983766}},{"id":"5857","data":{"label":"Networks Mexico and Zalhe Informatica","x":-225.65275776319368,"y":-2693.7762272814443,"z":617.5474590468853}},{"id":"5855","data":{"label":"CrossKeys","x":-1612.9807339993147,"y":-2628.1761518921553,"z":458.3887860156199}},{"id":"5856","data":{"label":"Dynamic Broadband","x":-1571.807314740754,"y":-2469.9687498254,"z":794.6456820408463}},{"id":"5854","data":{"label":"Kinetra","x":633.5085682001009,"y":745.9697330706931,"z":183.98202959627352}},{"id":"5853","data":{"label":"Healtheon/WebMD","x":3874.305244964742,"y":812.6840950563801,"z":364.7659316981071}},{"id":"5851","data":{"label":"VitalWorks","x":-1778.9486895790014,"y":-1599.2622741933556,"z":681.5754007616164}},{"id":"5852","data":{"label":"BlueGill","x":1171.1885287764344,"y":-2303.809264011443,"z":888.5951118435636}},{"id":"5850","data":{"label":"Nicanet","x":-121.6945140763928,"y":-2865.8013125873663,"z":237.24334767505974}},{"id":"5849","data":{"label":"Holloway Publications","x":2066.5228208079907,"y":-2906.4466932260475,"z":957.4690064725748}},{"id":"5848","data":{"label":"HomeSeekers.com","x":2210.8405270927487,"y":-2861.148892132247,"z":742.2971090418336}},{"id":"5846","data":{"label":"Aceweb Internet","x":-2063.522856366594,"y":-826.5503323951189,"z":852.165528217016}},{"id":"5847","data":{"label":"CEGlobe","x":-2094.5269739362834,"y":-671.7008459313947,"z":978.8234972888064}},{"id":"5845","data":{"label":"Advanced Internet Design & Applications","x":-2115.4190469358923,"y":-1643.6871743008123,"z":704.8440672280187}},{"id":"5844","data":{"label":"Newtek Capital","x":-2001.6813802507534,"y":-1554.021209155596,"z":805.7861927311641}},{"id":"5842","data":{"label":"Primus Telecommunications Group","x":3346.387770978721,"y":-1232.9674913157623,"z":518.9309114943155}},{"id":"5843","data":{"label":"Bekkoame","x":3508.187827028016,"y":-1293.011421905681,"z":103.4795422695054}},{"id":"5841","data":{"label":"DNI Holdings","x":-370.5393755235086,"y":618.3100070614182,"z":327.51748593981887}},{"id":"5840","data":{"label":"IndustrialAmerica","x":-236.12939711884155,"y":692.0112528688715,"z":741.0216276007167}},{"id":"5839","data":{"label":"Epoch Internet","x":3058.3697253158807,"y":939.557043845869,"z":923.8507761232555}},{"id":"5838","data":{"label":"Williams","x":3199.7718488533847,"y":847.2426908604048,"z":492.1409100319427}},{"id":"5837","data":{"label":"Internet Florist Association","x":3128.1129213528366,"y":-3579.088528732669,"z":302.49629730976756}},{"id":"5836","data":{"label":"Flowersandgifts.com","x":3247.3850309913105,"y":-3477.715693981777,"z":43.624667287899044}},{"id":"5835","data":{"label":"Fairfax Equity","x":4353.0828940963365,"y":-1238.438444996369,"z":665.2306225554925}},{"id":"5834","data":{"label":"Internet Holdings","x":4346.090239099123,"y":-1089.512767140563,"z":275.10796815358395}},{"id":"5833","data":{"label":"Ohio and Illinois ISPs","x":2078.21786244501,"y":-80.72668134098421,"z":466.5073879523698}},{"id":"5832","data":{"label":"Voyager.net","x":2190.27970133696,"y":-170.15708035264197,"z":190.0178201711098}},{"id":"5831","data":{"label":"Internet Engineering Group","x":2653.3024043568957,"y":248.37736747091185,"z":93.25508032582141}},{"id":"8316","data":{"label":"Authorize.Net","x":2880.4414365223192,"y":-107.52161573740614,"z":840.780727696078}},{"id":"5829","data":{"label":"NBC Capital","x":1522.636987787143,"y":-2341.024999004416,"z":981.3677351203114}},{"id":"5828","data":{"label":"UltraStar","x":-884.5360428812892,"y":-2324.531560528867,"z":865.4398850829657}},{"id":"5827","data":{"label":"Epitonic.com","x":2820.428804928998,"y":-887.9492593700033,"z":726.4489677309153}},{"id":"5826","data":{"label":"Kohlberg Kravis Roberts & Co.","x":-982.5653200265151,"y":472.7616115945284,"z":89.30235480021165}},{"id":"5824","data":{"label":"HP","x":1040.2928313601005,"y":-3118.6537224890276,"z":720.7956424141199}},{"id":"5825","data":{"label":"Mirror Image","x":1178.233520552014,"y":-3038.703578045997,"z":271.0066937041951}},{"id":"5823","data":{"label":"MetalSite","x":-416.1556740426363,"y":515.65405027415,"z":202.63967571178298}},{"id":"5821","data":{"label":"Visual Effects Plug-Ins","x":2534.3243924348326,"y":-3.2048109347506397,"z":483.10280459573886}},{"id":"5822","data":{"label":"Internet Capital Group","x":-248.90695523132717,"y":508.0443089534692,"z":530.7614577819644}},{"id":"5819","data":{"label":"DigitalThink","x":1734.4319100476741,"y":233.41449399040266,"z":714.3082966500531}},{"id":"5820","data":{"label":"Adobe","x":2231.9459295298093,"y":1028.7551714192705,"z":214.07676106667606}},{"id":"5818","data":{"label":"NetSpeak","x":2591.496714481147,"y":1157.5416190514761,"z":627.5481137998529}},{"id":"5817","data":{"label":"ADIR VoIP Technologies","x":2432.199508702948,"y":1144.375752793956,"z":45.02673350696118}},{"id":"5816","data":{"label":"Adexa","x":1144.2481548978312,"y":-4041.9658082023907,"z":477.865793489608}},{"id":"5815","data":{"label":"FreeMarkets","x":1001.2312308411783,"y":-3993.763447539346,"z":506.64448010682526}},{"id":"5814","data":{"label":"Starburst Software","x":1310.7605509791802,"y":-557.5443247709927,"z":257.2220239074658}},{"id":"5813","data":{"label":"Adero","x":1163.4139438886004,"y":-683.7409391830679,"z":776.8256695495859}},{"id":"5812","data":{"label":"Centigram Communications","x":2555.4654450079024,"y":-267.73951326066526,"z":416.031471231769}},{"id":"5811","data":{"label":"ADC Telecommunications","x":-2240.3287468548424,"y":16.217740893705923,"z":483.03340001302985}},{"id":"5810","data":{"label":"ACT Networks","x":-963.2019882343138,"y":-2530.329821612305,"z":167.92896195777396}},{"id":"5809","data":{"label":"Clarent","x":-801.366604439695,"y":-2481.5925568978646,"z":757.8255624203247}},{"id":"5808","data":{"label":"Bottle Rocket","x":1849.983584263502,"y":-474.2284159294495,"z":320.39865617194897}},{"id":"5807","data":{"label":"Mueller Telecoms ISP Division","x":-216.02110916645506,"y":1690.4090454381349,"z":343.70002521893485}},{"id":"5806","data":{"label":"ACT Teleconferencing","x":-77.48263944675773,"y":1761.6713391138164,"z":167.25804617535033}},{"id":"5805","data":{"label":"Authentic8","x":-891.4398079503326,"y":-3353.823994854887,"z":381.6208972639532}},{"id":"5804","data":{"label":"ActivCard","x":-733.4600355101711,"y":-3356.9890834423513,"z":348.3027304955606}},{"id":"5803","data":{"label":"Cheetah Technologies","x":-1481.4083646107076,"y":255.04281845744208,"z":437.737260283305}},{"id":"5801","data":{"label":"Acme Multimedia","x":3403.9138116539034,"y":-393.15157785435076,"z":32.67861971180586}},{"id":"5802","data":{"label":"Dynatech","x":-1375.9043680861123,"y":363.415844144155,"z":311.3953135426368}},{"id":"5800","data":{"label":"Cognicase","x":3341.8026004535204,"y":-240.87068274553167,"z":34.9152456513857}},{"id":"5799","data":{"label":"Acer","x":576.2978633310477,"y":-1546.5058262748307,"z":278.9683342815956}},{"id":"5798","data":{"label":"Account4","x":163.42555040651405,"y":1786.6248694687147,"z":234.7133697699606}},{"id":"5797","data":{"label":"Lawson Software","x":30.602497651975227,"y":1852.443450706438,"z":666.4931559410188}},{"id":"5796","data":{"label":"Access One for $200 Million","x":2523.4792204234054,"y":1256.499124102951,"z":797.6900761646461}},{"id":"5795","data":{"label":"Talk.com","x":2670.17027825866,"y":1221.007648490603,"z":843.3270087959177}},{"id":"5794","data":{"label":"Access Eindhoven","x":-1469.1930010763099,"y":-3143.8482809669113,"z":999.0383256551478}},{"id":"5793","data":{"label":"Via Net.Works","x":-1445.6983437076997,"y":-3290.2579575703517,"z":484.91434195592944}},{"id":"5792","data":{"label":"Press Access","x":1759.4797412655726,"y":696.5808715030216,"z":383.97239227176726}},{"id":"5790","data":{"label":"ADC Telecom","x":2470.7516613674234,"y":-415.6203857988612,"z":234.39528161179624}},{"id":"5788","data":{"label":"UniNet","x":-983.3476920222124,"y":-2739.1644230142306,"z":369.5050306362453}},{"id":"5791","data":{"label":"Broadband Access Systems","x":2303.9265066430507,"y":-465.1197789421567,"z":654.1934201703112}},{"id":"5789","data":{"label":"Access Direct","x":1861.920178984059,"y":-1939.0083416985308,"z":556.8433363876992}},{"id":"5787","data":{"label":"OnSite Access","x":1525.2708023351452,"y":-949.1240907744277,"z":220.51037174101572}},{"id":"5786","data":{"label":"TelDaFax","x":-1070.1243697353239,"y":-2844.88595373005,"z":866.9337532793649}},{"id":"5785","data":{"label":"Canadian Access","x":-2306.5818568034056,"y":-1286.5922612724544,"z":78.79947949596944}},{"id":"5784","data":{"label":"ClientLogic","x":-2334.5728446791577,"y":-1137.2416529297948,"z":391.9130179990626}},{"id":"5783","data":{"label":"Blink Data","x":1380.1144984354696,"y":-4121.41818643684,"z":706.232639356664}},{"id":"5782","data":{"label":"Covista","x":1531.5778447273906,"y":-4129.146921222866,"z":792.3218134277654}},{"id":"5780","data":{"label":"OpenText","x":548.8671870230046,"y":2149.9724174954645,"z":365.09169796894093}},{"id":"5781","data":{"label":"LeadingSide Products","x":701.0422776885871,"y":2118.8011117137066,"z":611.8558696505377}},{"id":"5779","data":{"label":"Stanford Resources","x":-1883.0934236529151,"y":26.93761129727318,"z":898.5966629666025}},{"id":"5778","data":{"label":"iSuppli","x":-1999.337479981158,"y":-100.33570334282285,"z":218.4502246175246}},{"id":"5777","data":{"label":"OmniSky","x":373.33118233792356,"y":-2667.892205333346,"z":687.1755710105903}},{"id":"5775","data":{"label":"Strategic Data","x":258.5486953721602,"y":1785.778332665166,"z":45.4378815620331}},{"id":"5776","data":{"label":"MyGeek","x":3404.142067436438,"y":-1754.0492611531545,"z":76.11283250865996}},{"id":"5771","data":{"label":"B2SB Technologies","x":2367.2445691727035,"y":-123.49439500579501,"z":508.2715278329677}},{"id":"5773","data":{"label":"Convergent Group","x":-2064.6956446789463,"y":-894.9763911252321,"z":185.42072087762796}},{"id":"5774","data":{"label":"J Net Enterprises","x":286.24249290720354,"y":1945.5138263408844,"z":875.6463887469039}},{"id":"5772","data":{"label":"Cinergy","x":-1944.834835910243,"y":-998.1354234902774,"z":871.8788700333869}},{"id":"5770","data":{"label":"Network ICE","x":3331.445307706207,"y":-2254.522480276478,"z":759.5983731666747}},{"id":"5769","data":{"label":"Internet Security Systems","x":3174.36851570867,"y":-2294.4019081030765,"z":279.81631219968483}},{"id":"5767","data":{"label":"CustomerLinx","x":560.5100663526155,"y":-3748.203631222719,"z":862.8451047482813}},{"id":"5768","data":{"label":"ETC Data Services","x":670.762771609192,"y":-3629.1269780745665,"z":516.0325911631081}},{"id":"5766","data":{"label":"Net Connection","x":2729.062211138211,"y":1206.8687395611132,"z":138.46415073852913}},{"id":"5764","data":{"label":"Static","x":1263.0097509530078,"y":-146.853876624833,"z":317.01468970158396}},{"id":"5765","data":{"label":"MyTravelGuide.com","x":2603.62365362311,"y":1100.889311971183,"z":381.24061552929334}},{"id":"5763","data":{"label":"Greatland","x":-1906.672876580493,"y":-1047.5076324221982,"z":901.6556546227728}},{"id":"5762","data":{"label":"Execusite","x":-1957.7045436656852,"y":-1189.9778184182624,"z":109.52980595264083}},{"id":"5761","data":{"label":"Global Election Systems","x":3592.68870679105,"y":3.514003614351168,"z":942.5567442446683}},{"id":"5760","data":{"label":"Diebold","x":3470.464241534133,"y":91.44586150427494,"z":612.5690273773283}},{"id":"5759","data":{"label":"Vivendi Universal S.A.","x":-2440.4794384633205,"y":-1445.745455411724,"z":838.9101900844722}},{"id":"5758","data":{"label":"eOne","x":3409.9022741285444,"y":872.8152810911088,"z":174.66561805716464}},{"id":"5757","data":{"label":"VeriSign","x":3315.375738001876,"y":752.9238894421815,"z":296.8697182585196}},{"id":"5755","data":{"label":"TA Associates","x":1168.2261828808005,"y":-3750.652575907142,"z":847.3535476466578}},{"id":"5756","data":{"label":"Velocity.com","x":-396.15931895814447,"y":-1046.187487280239,"z":885.8926826398719}},{"id":"5752","data":{"label":"Barra Global Estimates","x":1451.6039488145307,"y":-3818.1425156911964,"z":421.4970254157753}},{"id":"5753","data":{"label":"Bain Capital","x":970.0405586071274,"y":-3880.7144663525605,"z":361.25944058197047}},{"id":"5754","data":{"label":"Datek Online Holdings","x":1019.9822551910761,"y":-3740.479285389397,"z":124.20334310369086}},{"id":"5751","data":{"label":"Multex","x":1321.4850196756197,"y":-3727.4387166684246,"z":688.1588639730136}},{"id":"5750","data":{"label":"Global Sports","x":417.3423078087035,"y":-764.2317994938485,"z":610.3497985155999}},{"id":"5748","data":{"label":"Bechtel Group","x":2463.796827284992,"y":-3488.2516767227457,"z":526.28930410399}},{"id":"5747","data":{"label":"Eschelon Telecom","x":1223.0270617872793,"y":-2611.4769175829047,"z":142.52737116776015}},{"id":"5749","data":{"label":"Probex","x":2325.40170846367,"y":-3548.3281620974526,"z":474.70901685414856}},{"id":"5746","data":{"label":"Alliance Entertainment","x":1410.1313773158827,"y":2080.743013870723,"z":362.0895153360604}},{"id":"5745","data":{"label":"The Yucaipa Companies","x":1535.9198291398416,"y":2002.7741603451377,"z":649.9326840686182}},{"id":"5744","data":{"label":"FI Data","x":-940.1622453172085,"y":-2383.097638074812,"z":187.8493776430603}},{"id":"5743","data":{"label":"Billing Concepts","x":-1075.1979452494147,"y":-2297.139782016371,"z":484.35854052098983}},{"id":" a Division of Danish GN","data":{"label":"FaxNet","x":1355.11828751325,"y":2386.686091475656,"z":488.78696131771295}},{"id":"5741","data":{"label":"Critical Path","x":-242.6450317101603,"y":1615.8504997291511,"z":241.29381547870344}},{"id":"5740","data":{"label":"HHPN Development","x":-1243.478213559481,"y":-2950.3922220022023,"z":954.8179751920502}},{"id":"5739","data":{"label":"Phoenix Resources Technologies","x":-1132.51085053461,"y":-3062.191630616898,"z":139.78778309473316}},{"id":"5738","data":{"label":"RightPoint","x":200.37921844380662,"y":-4247.786216108267,"z":188.0115156641058}},{"id":"5737","data":{"label":"E.piphany","x":350.6346215197036,"y":-4230.049803193773,"z":536.1405139122782}},{"id":"5735","data":{"label":"Euroweb","x":2587.607013275021,"y":1681.3871443874432,"z":710.8193694604838}},{"id":"5736","data":{"label":"Hungarian ISPs","x":2591.060328542485,"y":1523.0302634371474,"z":306.1898289500513}},{"id":"5734","data":{"label":"Screaming Media.Net","x":3516.2117790615057,"y":-1577.7332485482516,"z":528.2554014737985}},{"id":"5733","data":{"label":"Winfield Capital","x":3356.6686609482695,"y":-1605.6997656689718,"z":382.9174839762555}},{"id":"5730","data":{"label":"Lightspan","x":4033.8257090534335,"y":-1947.96189654187,"z":343.70049217599984}},{"id":"5732","data":{"label":"SOFTBANK CORP.","x":-580.1615711436343,"y":1557.81657232234,"z":938.27769429627}},{"id":"5731","data":{"label":"Kmarts Bluelight.com","x":2400.9488828350686,"y":-207.07418393624084,"z":431.6153273397463}},{"id":"5729","data":{"label":"PAIX","x":-1040.957064534349,"y":-2620.272700804662,"z":178.8379789881862}},{"id":"5728","data":{"label":"AboveNet","x":-258.06984809848836,"y":-4207.995933209636,"z":81.53394954807092}},{"id":"5726","data":{"label":"Broadband Provider OnePoint","x":3988.355062175925,"y":-1618.5628486724477,"z":108.6946887740865}},{"id":"5727","data":{"label":"AboveNet Communications","x":-1043.572233269761,"y":-2459.4915144345587,"z":119.77276627538535}},{"id":"5725","data":{"label":"Verizon","x":3809.547269654675,"y":-2859.532664562279,"z":629.9938067451793}},{"id":"5723","data":{"label":"TeleTech Holdings","x":-1.976327915681395,"y":-3508.005692307971,"z":319.5769703629574}},{"id":"5724","data":{"label":"Newgen Results","x":140.59874610776706,"y":-3571.156441424803,"z":393.7036489391412}},{"id":"5722","data":{"label":"Great Plains Software","x":1682.8098118744865,"y":-665.5072177854272,"z":458.0798448344787}},{"id":"5719","data":{"label":"NetCreations","x":-1234.0975291830148,"y":-2754.386120328647,"z":431.8717117463928}},{"id":"5721","data":{"label":"Eloquent","x":209.6527810860507,"y":2000.1424504482302,"z":221.84611996904204}},{"id":"5720","data":{"label":"SpeechWorks","x":531.7302593988488,"y":-4066.0422789961776,"z":645.0568378924575}},{"id":"5718","data":{"label":"SEAT Pagine Gialle","x":-1368.7635371715044,"y":-2682.091813902726,"z":354.9333546329687}},{"id":"5716","data":{"label":"INT Media Group","x":-37.33667433393293,"y":-4214.9158459104865,"z":793.3913715630034}},{"id":"5717","data":{"label":"EarthWeb","x":108.08760302140217,"y":-4179.288547994439,"z":484.59648237906737}},{"id":"5715","data":{"label":"Danish I-Builder 21st.dk","x":4066.7561724161915,"y":-1988.4768662440647,"z":899.7682711385302}},{"id":"5712","data":{"label":"TriZetto Group","x":1279.1272743913241,"y":2155.802622652993,"z":490.3608447961121}},{"id":"5714","data":{"label":"Primix Solutions","x":3932.0429421070494,"y":-2071.458239462897,"z":378.920671937091}},{"id":"5710","data":{"label":"JoinNet","x":506.06274954356877,"y":-2574.4011224726696,"z":585.735504272559}},{"id":"5713","data":{"label":"Finserv","x":1317.5270620721822,"y":2003.752756995911,"z":954.78487043602}},{"id":"5711","data":{"label":"America Online Latin America","x":1441.0155793170688,"y":-169.22699743477278,"z":812.0374300043858}},{"id":"5709","data":{"label":"View Tech","x":-1372.7153192419355,"y":416.25421299810296,"z":536.8147729346601}},{"id":"5707","data":{"label":"SeeUthere.com","x":441.60377123414037,"y":-1447.1013471812398,"z":973.3946024159517}},{"id":"5708","data":{"label":"Digital Origin","x":-776.5327221389471,"y":-2946.260044860178,"z":894.7478036040701}},{"id":"5706","data":{"label":"Equilibrium","x":2756.9174260441305,"y":700.455035658495,"z":751.1217428689163}},{"id":"5702","data":{"label":"Charles Schwab","x":-11.632020699584245,"y":-3784.761092628488,"z":354.4324040334812}},{"id":"5705","data":{"label":"CMGI","x":2622.3645249330184,"y":775.8649310454257,"z":193.08813456862217}},{"id":"5704","data":{"label":"ComputerActive","x":1433.1047523974894,"y":-4190.8064644413425,"z":669.9692906422838}},{"id":"5703","data":{"label":"Advantage Learning","x":1286.5151995011438,"y":-4215.336078244736,"z":781.0410694785417}},{"id":"5701","data":{"label":"E-Loan","x":100.20296280423736,"y":-3894.5835407876575,"z":103.3785892767003}},{"id":"5700","data":{"label":"Abbey National plc","x":-1.0207175719756378,"y":-4007.1320483256955,"z":917.6544209153901}},{"id":"5699","data":{"label":"Rest of Connect.com.au","x":-137.02685563388286,"y":-4048.7853430683435,"z":688.0063119992061}},{"id":"5698","data":{"label":"AAPT","x":18.713119967434068,"y":-4065.2286974134995,"z":968.3131785881967}},{"id":"5697","data":{"label":"Webhelp","x":1246.724443641153,"y":1490.7958416732345,"z":44.120228167490396}},{"id":"5696","data":{"label":"Tantau Software","x":1311.4565254577574,"y":1419.6039417808806,"z":850.8645470612197}},{"id":"5695","data":{"label":"5th Floor Interactive","x":-1054.015350637405,"y":905.0798792183914,"z":648.4307606712267}},{"id":"5694","data":{"label":"Xceed","x":-1029.841826441073,"y":1057.1347048615953,"z":893.1371683890011}},{"id":"5693","data":{"label":"I-drive","x":3296.299569405235,"y":-510.30091336794067,"z":809.7730344566423}},{"id":"5692","data":{"label":"ZDNet","x":3159.9317677090294,"y":-640.9227465408467,"z":951.3431603023032}},{"id":"5691","data":{"label":"Call Technologies for $90 Million","x":-643.1835577154056,"y":286.4136198280885,"z":746.2114709230287}},{"id":"5690","data":{"label":"Kerbango","x":-610.3596567772747,"y":358.60745495733227,"z":370.58962244622484}},{"id":"5689","data":{"label":"Alteon WebSystems","x":-741.1121933610057,"y":344.5557723087459,"z":913.9498510079404}},{"id":"5688","data":{"label":"CAIS Internet","x":-799.3043293266919,"y":457.5020948594929,"z":695.2737601737167}},{"id":"5687","data":{"label":"HealtheTech","x":-545.7392557699059,"y":406.92753480787815,"z":376.06885669043953}},{"id":"5685","data":{"label":"LANSource","x":-628.3780824424948,"y":246.24971266945886,"z":711.7300515690376}},{"id":"5686","data":{"label":"Smartcode Technologie for $17.5 Million","x":-601.8053981667485,"y":329.94234613855497,"z":58.23002411806111}},{"id":"5684","data":{"label":"IWC","x":-643.1661996719026,"y":220.44494247135117,"z":588.1247736194643}},{"id":"5683","data":{"label":"AvantGo","x":497.92275820941313,"y":-387.10603461256323,"z":246.3233058373837}},{"id":"5682","data":{"label":"USWeb/CKS","x":-722.7193843750747,"y":387.00410534124967,"z":719.9207627213437}},{"id":"5681","data":{"label":"Open Cellular Systems","x":-1659.3566551732192,"y":-1077.3935072537115,"z":648.1527251574208}},{"id":"5680","data":{"label":"LaBarge","x":-1625.2427287985279,"y":-1224.213279297539,"z":451.0721484413427}},{"id":"5677","data":{"label":"Silicon Valley Magazine","x":3634.3621840433225,"y":-1780.9700041567257,"z":922.8424107044312}},{"id":"5679","data":{"label":"Atomic Pop","x":3161.133816726414,"y":-2093.4687998750906,"z":516.7468912256438}},{"id":"5678","data":{"label":"New Valley","x":3227.637062107973,"y":-1952.9395490306833,"z":372.921373231422}},{"id":"5676","data":{"label":"NetUSA","x":3687.018755728639,"y":-1639.0130860853378,"z":842.0587837154569}},{"id":"5675","data":{"label":"WorldGate Communications","x":-2409.932405584849,"y":-707.560576728717,"z":950.5589584323158}},{"id":"5672","data":{"label":"SkyTel Communications","x":1989.1834161188854,"y":682.865887198991,"z":527.6947784330868}},{"id":"5674","data":{"label":"NACT Telecommunications","x":4522.857284855214,"y":-1134.7194812230591,"z":57.574448637504716}},{"id":"5673","data":{"label":"World Wireless Communication","x":1092.108240829425,"y":2291.501710054279,"z":829.5054873161678}},{"id":"5670","data":{"label":"Wireless Facilities","x":-2095.364585677852,"y":-1701.76808226392,"z":543.2696724103583}},{"id":"5668","data":{"label":"WebMD","x":1310.0385807851053,"y":-537.6109007843943,"z":902.4648332524586}},{"id":"5671","data":{"label":"Telia AB","x":3445.737870949786,"y":1457.9959573704355,"z":848.41891617835}},{"id":"5669","data":{"label":"Wind River Systems","x":-1835.189912211788,"y":-2083.4915237348055,"z":823.0497746361103}},{"id":"5667","data":{"label":"WebLink Wireless","x":342.1785111416075,"y":-2468.8254592041076,"z":449.67001332963497}},{"id":"5666","data":{"label":"Webhire","x":2176.6349481093994,"y":180.61904089555446,"z":654.3471841977031}},{"id":"5665","data":{"label":"Blue Wave Systems","x":1628.0293634021164,"y":-465.5375415043236,"z":56.35605517441289}},{"id":"5664","data":{"label":"Wave Systems","x":1604.6156933966995,"y":-145.8282637774355,"z":328.8265456280377}},{"id":"5662","data":{"label":"Walker Interactive Systems","x":4481.204013005801,"y":-545.7428060310904,"z":818.8396151526007}},{"id":"5661","data":{"label":"SmartRoute Systems","x":809.1319479219846,"y":-931.447759365487,"z":745.8457109962309}},{"id":"5659","data":{"label":"VTEL","x":-1088.1342125879326,"y":375.2413114890669,"z":70.71981360275447}},{"id":"5663","data":{"label":"Hyperion Solutions","x":310.5135549236752,"y":-3846.523842323943,"z":917.209181111289}},{"id":"5660","data":{"label":"Polycom","x":-1192.2490449156578,"y":494.5279649059876,"z":236.22045138475835}},{"id":"5657","data":{"label":"Vixel","x":943.3219515087335,"y":2236.3082248531455,"z":332.97807142786917}},{"id":"5658","data":{"label":"Estimation","x":-1605.749056028285,"y":-3287.7194250805474,"z":390.032534778386}},{"id":"5656","data":{"label":"Telco Systems","x":-1048.4319649950737,"y":-2562.014202342899,"z":368.11511631083715}},{"id":"5655","data":{"label":"Computer Network Technology","x":566.4431347217514,"y":1701.8432723374553,"z":991.0582007433222}},{"id":"5654","data":{"label":"webMethods","x":524.2767649145871,"y":1524.8066247211573,"z":949.3869917976101}},{"id":"5653","data":{"label":"Vignette","x":1004.0231268909583,"y":-3688.054043431457,"z":827.8337555567956}},{"id":"5652","data":{"label":"VINA Technologies","x":1238.6916726776708,"y":-4529.1339661153315,"z":469.37183700947503}},{"id":"5651","data":{"label":"Vertel","x":1834.8056554091345,"y":-4239.944958656215,"z":188.88015841014118}},{"id":"5650","data":{"label":"Video Services","x":907.7146251119684,"y":-1642.4733601581288,"z":795.3837532201269}},{"id":"5646","data":{"label":"Ariba","x":191.43599929541142,"y":45.196467005635895,"z":895.9220790410274}},{"id":"5649","data":{"label":"VDC Communications","x":805.5136134412451,"y":-4121.588357863107,"z":908.1492157293092}},{"id":"5645","data":{"label":"UTStarcom","x":3697.412124716411,"y":910.3806686061325,"z":869.9599297595364}},{"id":"5648","data":{"label":"Raycom Media","x":-2294.2402269081663,"y":-18.036599812479835,"z":108.89913754554303}},{"id":"5647","data":{"label":"National Amusements","x":228.42624137824168,"y":-1285.9608493902397,"z":529.1084359171649}},{"id":"5644","data":{"label":"Ericsson","x":3340.1857019423906,"y":-38.80666168338212,"z":121.19728493770543}},{"id":"5643","data":{"label":"Verilink","x":-2292.5867988314963,"y":-1508.938202518154,"z":140.13299144223467}},{"id":"5642","data":{"label":"Verio","x":518.8200204527725,"y":-2587.9142404662257,"z":117.14507692555509}},{"id":"5641","data":{"label":"Telstra Corporation","x":3376.0630753325713,"y":-1335.597175938895,"z":523.9642523236179}},{"id":"5640","data":{"label":"United Pan-Europe Communications N.V.","x":1072.34742550195,"y":-2118.8311530205965,"z":716.4088695888227}},{"id":"5639","data":{"label":"Triton PCS Holdings","x":4348.9718237661145,"y":-185.15354024927,"z":910.7430988851353}},{"id":"5638","data":{"label":"TicketWeb","x":1633.9071689481807,"y":-1624.582556506376,"z":337.5684060923367}},{"id":"5636","data":{"label":"Trident Microsystems","x":4389.916871331909,"y":-989.4763772718516,"z":503.64688022051786}},{"id":"5637","data":{"label":"Rise Technology","x":4395.019416100915,"y":-1131.8407021093835,"z":679.2722322884541}},{"id":"5635","data":{"label":"Telscape International","x":3207.374567157175,"y":-3399.448180124302,"z":593.9297326842257}},{"id":"5634","data":{"label":"DIRECTV Broadband","x":2292.8033170774324,"y":-2076.6904888201275,"z":92.40950750099609}},{"id":"5633","data":{"label":"Hughes Electronics","x":2534.3219236548166,"y":-2309.4014988210324,"z":883.7770734036221}},{"id":"5632","data":{"label":"Telocity","x":2453.358514975678,"y":-2211.770221613,"z":671.6454468689706}},{"id":"5631","data":{"label":"Nippon Telegraph and Telephone","x":-2362.484085863056,"y":-1816.7708717844466,"z":440.2978687880565}},{"id":"5630","data":{"label":"Telewest Communications","x":4557.657230895597,"y":-919.7225247570491,"z":619.4128123280789}},{"id":"5629","data":{"label":"Telephone and Data Systems","x":1243.3301549034359,"y":-2555.664616925943,"z":256.06330468804515}},{"id":"5628","data":{"label":"Condor Technology Solutions","x":801.5380438596931,"y":2395.9909199865633,"z":775.7710337246697}},{"id":"5627","data":{"label":"Telaxis Communications","x":-2113.7336724087504,"y":-2321.3613955848336,"z":601.9927398479219}},{"id":"5626","data":{"label":"Visual Networks","x":-2272.573175210906,"y":-1634.0060443455586,"z":746.4928494861572}},{"id":"5625","data":{"label":"Technical Communications","x":-1348.165888241382,"y":1456.8183982966311,"z":433.66626371203944}},{"id":"5624","data":{"label":"Cognizant Technology Solutions","x":582.4529924596386,"y":2285.279487439375,"z":729.6765348048351}},{"id":"5622","data":{"label":"Technology Solutions","x":3240.295818363501,"y":-2848.931197370291,"z":622.3298658619292}},{"id":"5623","data":{"label":"OAO Technology Solutions","x":3086.265531348523,"y":-2837.2016097554933,"z":648.7947122849225}},{"id":"5621","data":{"label":"West Group","x":-1876.5897102092651,"y":-610.9120591270412,"z":929.9439002474705}},{"id":"5620","data":{"label":"McLeodUSA","x":-1908.8786927380693,"y":-773.6731774276459,"z":413.4699263934949}},{"id":"5619","data":{"label":"MCK Communications","x":-1598.157345119364,"y":228.48903741823779,"z":432.09968942336553}},{"id":"5618","data":{"label":"Marvel Entertainment Group","x":3588.9387500167686,"y":-2932.4460677635416,"z":883.3188886748351}},{"id":"5617","data":{"label":"Marvel Enterprises","x":3678.343987916851,"y":-2820.0931807572833,"z":704.6110894845585}},{"id":"5616","data":{"label":"Galileo Technology","x":-1493.6522839102975,"y":1118.7986876448385,"z":468.5427107361515}},{"id":"5615","data":{"label":"Marvell Technology Group","x":-1617.0793767824432,"y":1044.265424032048,"z":232.17069776164624}},{"id":"5614","data":{"label":"QCC","x":-700.7680806289518,"y":1319.386001238976,"z":60.106547547330806}},{"id":"5613","data":{"label":"marchFIRST","x":-735.0835570059294,"y":1171.9323226354918,"z":16.705058650579918}},{"id":"5612","data":{"label":"Avaya","x":-676.496144459471,"y":-3059.403115648187,"z":585.1051355359281}},{"id":"5611","data":{"label":"LookSmart","x":-1956.4809551084704,"y":-1339.6964430888493,"z":157.63994764146204}},{"id":"5610","data":{"label":"StarBase","x":-886.2408837950825,"y":427.61761984242366,"z":382.43900074621126}},{"id":"5609","data":{"label":"Macromedia","x":3155.4983469638364,"y":-3135.1813612618334,"z":267.45403455316864}},{"id":"5608","data":{"label":"Liberty Satellite & Technology","x":2692.6456095473604,"y":1558.3109059492963,"z":625.5604651322701}},{"id":"5607","data":{"label":"SONICblue","x":3076.442351078802,"y":-2642.7145247409944,"z":750.0742843108792}},{"id":"5606","data":{"label":"LSI Logic","x":1487.9833950499815,"y":-3482.123063670108,"z":861.7847844683986}},{"id":"5605","data":{"label":"CANAL+","x":2154.8625536133095,"y":2149.9024778726116,"z":508.7568306569099}},{"id":"5604","data":{"label":"The Associated Group","x":988.442151286079,"y":-1691.7206752103539,"z":329.5739940346545}},{"id":"5603","data":{"label":"Sky Global Networks","x":3781.2857369253034,"y":-2913.109925317753,"z":600.0658646200105}},{"id":"5602","data":{"label":"Fonix","x":3483.494762308551,"y":-3463.337807541859,"z":128.20576739873647}},{"id":"5601","data":{"label":"KVH Industries","x":1444.289352432259,"y":-4338.320287675682,"z":955.2746181202667}},{"id":"5600","data":{"label":"Koninklijke Philips Electronics N.V.","x":4183.506955554332,"y":-1763.8534698079297,"z":492.58001627302406}},{"id":"5599","data":{"label":"The Walt Disney","x":3992.972462950558,"y":675.7128447555579,"z":663.0540057830448}},{"id":"5597","data":{"label":"Comshare","x":2443.1162845361177,"y":-3915.632244021417,"z":478.4418884097559}},{"id":"5598","data":{"label":"Komag","x":-125.16770291790863,"y":-3848.8621248502955,"z":299.7087482772558}},{"id":"5596","data":{"label":"JNI","x":-173.97158683682574,"y":1505.0578293178241,"z":583.1963585494344}},{"id":"5595","data":{"label":"Symbian","x":-2178.4948895662274,"y":-2089.0114513558433,"z":765.0555494168411}},{"id":"5594","data":{"label":"Interwoven","x":1630.8565484009168,"y":1303.3077438851797,"z":85.08268153153531}},{"id":"5592","data":{"label":"Internet Pictures","x":646.3304371197551,"y":-1381.4430418389384,"z":148.34820660890347}},{"id":"5593","data":{"label":"Intersil","x":2438.594876392228,"y":2035.5050169071637,"z":387.73159100611434}},{"id":"5591","data":{"label":"Internap Network Services","x":2405.848765476084,"y":-3969.8787868351164,"z":199.39940688289616}},{"id":"5590","data":{"label":"Inktomi","x":537.8575491335691,"y":-1435.2718883838434,"z":132.17037246150554}},{"id":"5589","data":{"label":"InterNAP Network Services","x":295.83405523240754,"y":-1534.430486745307,"z":849.3857140117809}},{"id":"5588","data":{"label":"NetSolve","x":1161.8724350711045,"y":1029.0348791360466,"z":241.26777304531254}},{"id":"5587","data":{"label":"Interact Commerce","x":4107.358628940942,"y":34.28050000802159,"z":114.9237127269751}},{"id":"5586","data":{"label":"Ziatech","x":1741.2613813747785,"y":-93.48108000949469,"z":873.6679549342185}},{"id":"5585","data":{"label":"Dialogic","x":1626.1389886523048,"y":-299.9942156835841,"z":105.43010767656047}},{"id":"5584","data":{"label":"InteliData Technologies","x":-1179.9779702177243,"y":-2856.0608517167843,"z":72.98753782181167}},{"id":"5583","data":{"label":"ILD Telecommunications","x":-1780.772325950644,"y":1063.5290146186144,"z":496.29920319292495}},{"id":"5582","data":{"label":"Interphase","x":2020.7658946932888,"y":2293.1199537329403,"z":991.3120942159044}},{"id":"5580","data":{"label":"CommTouch Software","x":-1740.0142970752381,"y":81.79552698321368,"z":480.08370035192183}},{"id":"5581","data":{"label":"Long Distance Savers","x":3536.127879323709,"y":-965.1582304388321,"z":209.18782925119373}},{"id":"5579","data":{"label":"The Reynolds and Reynolds","x":-845.326808070768,"y":1400.4262296850284,"z":591.433625674658}},{"id":"5577","data":{"label":"InfoCure","x":-1766.7080026296298,"y":-1440.1536876049954,"z":406.7558994357943}},{"id":"5578","data":{"label":"PracticeWorks","x":-1696.9536157758046,"y":-1296.0786807944255,"z":409.80489162314404}},{"id":"5576","data":{"label":"Insight Communications","x":4047.9570219721654,"y":-2102.485087361584,"z":132.98334309897442}},{"id":"5575","data":{"label":"El Sitio","x":3670.9630339108526,"y":-1890.9691601710683,"z":46.63375070207509}},{"id":"5574","data":{"label":"IMPSAT Fiber Networks","x":-2273.682714362122,"y":-185.98760345951086,"z":184.00454841681002}},{"id":"5573","data":{"label":"AT&T Easylink Services","x":2893.793945070356,"y":1449.7227350315552,"z":899.9678802474978}},{"id":"5571","data":{"label":"iAsiaWorks","x":2770.677432902622,"y":1560.0121208709897,"z":571.6318316566864}},{"id":"5572","data":{"label":"EasyLink Services","x":2664.4908928168406,"y":1682.9873634637515,"z":146.03773565748423}},{"id":"5570","data":{"label":"Image Entertainment","x":-1808.9363753204168,"y":-2839.406435349845,"z":158.3047656790677}},{"id":"5568","data":{"label":"Hollywood Media","x":-108.99102685380285,"y":-1021.3463290983536,"z":106.82071314033182}},{"id":"5569","data":{"label":"iGate Capital","x":1973.4761426645018,"y":-3093.892949190541,"z":434.23025168815064}},{"id":"5567","data":{"label":"Cemax-Icon","x":2910.947319972538,"y":1213.9378848993765,"z":233.2362308011977}},{"id":"5566","data":{"label":"iNTELEFILM","x":3104.9006152643487,"y":-3125.179099888433,"z":399.89306906436184}},{"id":"5565","data":{"label":"C-Cube Microsystems","x":1312.3942658017813,"y":-3481.593869910189,"z":840.3789451277178}},{"id":"5564","data":{"label":"Retek","x":2437.490520221313,"y":1265.8412954573068,"z":518.4489738989951}},{"id":"5563","data":{"label":"Halifax","x":2534.2866457815953,"y":-4146.641629962388,"z":194.7720508446502}},{"id":"5561","data":{"label":"NEC","x":3346.707578506165,"y":-1828.4639125072326,"z":130.13143288406482}},{"id":"5562","data":{"label":"GlobeSpan","x":-2059.7838591969376,"y":-1296.4582617142569,"z":624.8949242104425}},{"id":"5560","data":{"label":"Global TeleSystems","x":134.68674914750454,"y":-4320.04492550534,"z":687.788374132533}},{"id":"5559","data":{"label":"Citizens Communications","x":1267.367782534976,"y":-3584.9801083020475,"z":611.4484907230897}},{"id":"5557","data":{"label":"Alascom","x":-1858.35174445451,"y":-1179.5530451987388,"z":136.97112329391126}},{"id":"5558","data":{"label":"MCI Telecommunications","x":4514.414824211235,"y":-1291.8209917277836,"z":283.0638847697835}},{"id":"5556","data":{"label":"General Communication","x":1695.546262015947,"y":-4357.214080265921,"z":687.1127805225103}},{"id":"5555","data":{"label":"Telcordia Technologies","x":-931.0587768348778,"y":1690.645943650302,"z":246.30115582411483}},{"id":"5554","data":{"label":"Geoworks","x":-2219.6017838304087,"y":-974.755671999897,"z":467.1131258364307}},{"id":"5553","data":{"label":"Verizon Communications","x":3318.7101129166713,"y":1111.8034193091034,"z":796.5590373828572}},{"id":"5552","data":{"label":"Seagate Technology","x":-1611.0489004923568,"y":-2322.594915014697,"z":601.578491970262}},{"id":"5551","data":{"label":"United Television","x":-2172.1604855508303,"y":199.8148879756127,"z":738.2551343546755}},{"id":"5549","data":{"label":"Western Multiplex","x":3058.259492738569,"y":-483.21004984320734,"z":458.5709961170208}},{"id":"5550","data":{"label":"Metromedia Fiber Network","x":-707.0069908126452,"y":-3223.5253383178124,"z":127.3219478369929}},{"id":"5548","data":{"label":"First Look Media","x":-1443.945826662769,"y":-3430.0755940693953,"z":290.19333408898063}},{"id":"5547","data":{"label":"FiberNet Telecom Group","x":2820.2400104097987,"y":-3890.292443362978,"z":862.0643272920316}},{"id":"5545","data":{"label":"MicroStrategy","x":4397.268067126483,"y":-1529.239448628945,"z":475.6718795975541}},{"id":"5546","data":{"label":"Network-1 Security Solutions","x":3882.0716288868616,"y":644.5248376693708,"z":409.87834967385714}},{"id":"5543","data":{"label":"The News Corporation","x":-2186.0720474831132,"y":-2390.725637654019,"z":627.9549235073863}},{"id":"5544","data":{"label":"Service Metrics","x":1508.824458249197,"y":-2710.9880747412194,"z":83.71434978158354}},{"id":"5542","data":{"label":"Openwave Systems","x":140.38558370522787,"y":-3850.9231739448805,"z":480.92625229454853}},{"id":"5541","data":{"label":"ePresence","x":-1133.5910402237369,"y":1136.620999439101,"z":243.59051145520726}},{"id":"5540","data":{"label":"LXE","x":3149.9487370130882,"y":-1056.2707674529802,"z":540.8254634633212}},{"id":"5539","data":{"label":"EMS Technologies","x":3259.829529096516,"y":-946.9466235416139,"z":409.54993522679706}},{"id":"5538","data":{"label":"Sorrento Networks","x":-153.18583638927976,"y":1432.6817387532574,"z":243.2352141169276}},{"id":"5537","data":{"label":"Entrada Networks","x":-18.991663072087704,"y":1490.1827548637038,"z":392.5698040469934}},{"id":"5536","data":{"label":"Solution 6 Holdings","x":4043.5961454989374,"y":547.0362038522362,"z":582.4594270234176}},{"id":"5535","data":{"label":"Electronic Data Systems","x":2503.446367524286,"y":1805.8597729783232,"z":405.15632501649355}},{"id":"5534","data":{"label":"Essex","x":252.05847211603032,"y":-4277.437993435751,"z":820.9634539629609}},{"id":"5533","data":{"label":"eLEC Communications","x":392.1508103169572,"y":-4339.840362375094,"z":924.58263023592}},{"id":"5531","data":{"label":"McDATA","x":-613.5827631158122,"y":-3322.568878038983,"z":169.56497260861215}},{"id":"5530","data":{"label":"Shared Medical Systems","x":1798.859079041823,"y":1220.7108272768073,"z":669.4777518194528}},{"id":"5529","data":{"label":"OpenTV","x":1304.74206801542,"y":-371.83903618394015,"z":709.2000495251418}},{"id":"5528","data":{"label":"EchoStar Communications","x":-1579.883234323845,"y":-2801.8538681191158,"z":51.08285881406815}},{"id":"5527","data":{"label":"ECCS","x":3386.4623031465453,"y":-1982.1049723081592,"z":420.95694847818964}},{"id":"5525","data":{"label":"eBT International","x":-1621.305903497257,"y":-2573.614749211868,"z":22.11038930025344}},{"id":"5526","data":{"label":"IntraNet Solutions","x":-328.05519741827175,"y":2075.2234710770463,"z":420.6558493224175}},{"id":"5524","data":{"label":"e4L","x":606.8674710760524,"y":-4497.492587634219,"z":444.0844206668535}},{"id":"5523","data":{"label":"Computer Sciences","x":1676.8584523843938,"y":-3777.216206009716,"z":972.0189435350397}},{"id":"5521","data":{"label":"AudioCodes","x":-1683.9851205634739,"y":394.69470600620116,"z":49.333873133707854}},{"id":"5522","data":{"label":"DST Systems","x":-795.3631414146921,"y":-3777.2835508505195,"z":250.9276514386982}},{"id":"5520","data":{"label":"dreamlife","x":1036.1217879765104,"y":-4036.9224103685497,"z":670.4053762412623}},{"id":"5519","data":{"label":"DSP Group","x":-1609.2012235048355,"y":525.2672307485464,"z":190.74986664039463}},{"id":"5518","data":{"label":"Digital Generation Systems","x":3431.37610129966,"y":-2943.58171832595,"z":432.49892720477743}},{"id":"5515","data":{"label":"ALLTEL","x":1028.9871036779068,"y":-477.7607737965227,"z":414.7603755142704}},{"id":"5517","data":{"label":"SunGard Data Systems","x":-2078.1605956883504,"y":-1788.2522600152797,"z":871.4096376228495}},{"id":"5516","data":{"label":"Inside Out Networks","x":1329.5296702090454,"y":1846.8074264189581,"z":93.44072771442447}},{"id":"5514","data":{"label":"Dendrite International","x":4009.6032795170677,"y":-2638.609259874886,"z":58.61124768541259}},{"id":"5513","data":{"label":"Nx Networks","x":-1231.869668456543,"y":-2512.289527806655,"z":122.45166660145435}},{"id":"5512","data":{"label":"Digi International","x":1474.0869671350983,"y":1874.9807171898237,"z":546.291542938097}},{"id":"5511","data":{"label":"PhoneTel Technologies","x":3799.3882609649236,"y":-1390.724885343841,"z":344.862318033071}},{"id":"5510","data":{"label":"XO Communications","x":3073.2085447911686,"y":1665.2173141407275,"z":98.71373084754165}},{"id":"5509","data":{"label":"Sage","x":514.3560321192076,"y":-3190.975104433247,"z":347.1194625914984}},{"id":"5508","data":{"label":"AXENT Technologies","x":3347.47640807319,"y":-636.4808922409447,"z":429.0296045607898}},{"id":"5505","data":{"label":"Metatec International","x":-1657.138029199043,"y":997.288106469965,"z":172.3334906094376}},{"id":"5507","data":{"label":"Supertex","x":-2063.904670225762,"y":578.8949790977758,"z":669.0000195692058}},{"id":"5506","data":{"label":"Nogatech","x":-1615.3712434662225,"y":395.0311144230018,"z":250.74467408757008}},{"id":"5504","data":{"label":"Splash Technology Holdings","x":-900.1410947014524,"y":-2719.257668419492,"z":870.8956490739411}},{"id":"5503","data":{"label":"Media 100","x":-753.631665880695,"y":-2777.1840153777957,"z":809.9434755785215}},{"id":"5502","data":{"label":"Datalink","x":2157.8043887464573,"y":1045.581570394851,"z":265.1580955318773}},{"id":"5499","data":{"label":"WebTV Networks","x":1279.311109389847,"y":-738.1640203412235,"z":937.7674444855493}},{"id":"5532","data":{"label":"Electronic Arts","x":3154.066389867021,"y":-3028.856475830207,"z":246.96940779150012}},{"id":"5501","data":{"label":"STARTEC","x":2374.680089216249,"y":1234.8737054777666,"z":702.8651818518092}},{"id":"5500","data":{"label":"Startec Global Communication","x":-2378.3060779768075,"y":-795.4462867927177,"z":191.04072276939266}},{"id":"5498","data":{"label":"Metromedia International Group","x":4470.433106110706,"y":-1458.74301028967,"z":808.9731094049637}},{"id":"5497","data":{"label":"Metro-Goldwyn-Mayer","x":1124.3077840312872,"y":936.7291294104216,"z":489.70037823466697}},{"id":"5496","data":{"label":"Micron Technology","x":1871.28358630802,"y":5.588304763664382,"z":188.1377112227911}},{"id":"5494","data":{"label":"SRS Labs","x":1220.970166216668,"y":-805.276398270179,"z":110.99425755482217}},{"id":"5495","data":{"label":"PRC","x":-1174.3255351184803,"y":1538.2703308952914,"z":864.6944691997644}},{"id":"5493","data":{"label":"Cree","x":1111.1019128998005,"y":2174.8156577404698,"z":337.0308389153589}},{"id":"5492","data":{"label":"ShowCase","x":-333.8808461926019,"y":1567.0066739106478,"z":615.9861193341063}},{"id":"5491","data":{"label":"SPSS","x":-486.9686910002538,"y":1523.4381360451207,"z":782.8315513054409}},{"id":"5490","data":{"label":"Alcatel","x":-1708.7379615988743,"y":-2176.7260184661054,"z":991.6245527816985}},{"id":"5489","data":{"label":"SSE Telecom","x":-1549.4589466232696,"y":-2215.931921952937,"z":148.3436898661066}},{"id":"5487","data":{"label":"Sprint","x":-42.40468605156639,"y":-2411.9060438737633,"z":763.7654671644849}},{"id":"5488","data":{"label":"SpeechWorks International","x":75.82148694968873,"y":1927.4971310577548,"z":192.25667011085568}},{"id":"5484","data":{"label":"deltathree","x":2716.95163697944,"y":-103.44435292402159,"z":463.74291368962696}},{"id":"5486","data":{"label":"Executone Information Systems","x":-1543.7012711215561,"y":-3299.3525401603256,"z":566.5997073755223}},{"id":"5485","data":{"label":"SoftNet Systems","x":2678.544593361931,"y":537.8096771440578,"z":500.82128101865607}},{"id":"8234","data":{"label":"The WIZ","x":1588.8474567035773,"y":56.12875834114129,"z":649.1205352753346}},{"id":"5482","data":{"label":"Accom","x":1573.4488185020446,"y":-4364.183521816942,"z":268.9719660017591}},{"id":"5481","data":{"label":"Socrates Technologies","x":-1139.2205520309983,"y":-2366.7870336070814,"z":355.53165988669156}},{"id":"5480","data":{"label":"Insight Communications Company","x":3318.377689820495,"y":391.5674381285771,"z":836.7342697083575}},{"id":"5479","data":{"label":"Source Media","x":3196.45854944856,"y":504.3343971411641,"z":330.1230490662872}},{"id":"5478","data":{"label":"Acrodyne Communications","x":-518.1814666098439,"y":1269.5768705588807,"z":898.1725458727797}},{"id":"5477","data":{"label":"Grolier","x":-2047.3351084104684,"y":-1945.6080890885892,"z":120.87019514969666}},{"id":"5476","data":{"label":"Scholastic","x":-2119.062833719172,"y":-1810.5124187517204,"z":852.9184019559632}},{"id":"5474","data":{"label":"US Unwired","x":4002.4034410873855,"y":426.85997300525196,"z":242.91491253515952}},{"id":"5473","data":{"label":"HealthWatch","x":1356.3811241855492,"y":-3899.6758264857235,"z":512.9627469696294}},{"id":"5475","data":{"label":"Sterling Commerce","x":1794.3634021486978,"y":-2314.2735312438217,"z":460.0318412901045}},{"id":"5472","data":{"label":"Sapient","x":1512.493413078836,"y":-3877.2833519631013,"z":44.18730635828139}},{"id":"5471","data":{"label":"Sanchez Computer Associates","x":4370.77372473143,"y":-1469.5020588612051,"z":11.049566963988955}},{"id":"5470","data":{"label":"Salem Communications","x":-564.6769057185811,"y":-1695.297005933884,"z":340.5088556900724}},{"id":"5469","data":{"label":"Intuit","x":609.2905354424283,"y":-2070.3832349314803,"z":336.6479819690051}},{"id":"5467","data":{"label":"STM Wireless","x":2949.0738592436273,"y":-2472.498117218966,"z":21.64221022259416}},{"id":"5468","data":{"label":"Atlantic Cellular","x":3064.1569360064623,"y":-2251.804214633881,"z":625.0023784320562}},{"id":"5466","data":{"label":"HotData","x":-1668.2046533485232,"y":-1350.2951579884216,"z":173.20543986917914}},{"id":"5465","data":{"label":"Rogue Wave Software","x":-1668.5819159452808,"y":-1505.1182397540042,"z":610.348113071431}},{"id":"5463","data":{"label":"Koss","x":-1066.7440451269517,"y":90.38835788207234,"z":211.4384799651401}},{"id":"5464","data":{"label":"Cyberlink","x":2130.9385135766715,"y":-304.22435405150645,"z":299.3504883443014}},{"id":"5462","data":{"label":"Regent Communications","x":-1019.0665960443698,"y":222.61724791391316,"z":614.0169984189778}},{"id":"5461","data":{"label":"Radio One","x":-872.4387589435846,"y":-2179.693404050967,"z":533.4892687399441}},{"id":"5460","data":{"label":"SnapTrack","x":563.0531598017014,"y":-3618.6738913739473,"z":121.39928839857528}},{"id":"5459","data":{"label":"QUALCOMM","x":510.15842348747356,"y":-3460.0655819697454,"z":845.2078475839355}},{"id":"5458","data":{"label":"Inflow","x":3728.428862978958,"y":-2682.9743071373236,"z":962.3244037230412}},{"id":"5457","data":{"label":"DigiTEC 2000","x":-957.677296376869,"y":-3541.4136816137398,"z":615.510547343324}},{"id":"5456","data":{"label":"PTEK Holdings","x":4048.1449516963903,"y":169.75494447882738,"z":689.435107499047}},{"id":"5455","data":{"label":"Xpedior","x":588.1345469701882,"y":-2989.2447087959977,"z":623.7983342105153}},{"id":"5454","data":{"label":"Phoenix Technologies","x":177.87420797526056,"y":-4428.4654155472,"z":154.1425030338459}},{"id":"5453","data":{"label":"RAVISENT Technologies","x":3149.5413556494614,"y":1659.3629579997214,"z":916.6222002300068}},{"id":"5452","data":{"label":"Emulex","x":2261.388712464236,"y":-3554.043674698246,"z":436.5195792306276}},{"id":"5451","data":{"label":"Prodigy Communications","x":2780.778660782773,"y":599.6766147206572,"z":480.90636637892123}},{"id":"5449","data":{"label":"VoiceStream Wireless","x":-2422.4014949528973,"y":-253.38099875680382,"z":590.2764218613181}},{"id":"5447","data":{"label":"PictureTel","x":1687.3409999063251,"y":-12.506337253762467,"z":314.7878332919136}},{"id":"5450","data":{"label":"Deutsche Telekom AG","x":2624.4576880227305,"y":1599.608868977357,"z":123.38529160474887}},{"id":"5448","data":{"label":"Power Integrations","x":4541.134443884248,"y":-1059.011245029153,"z":60.52246712627451}},{"id":"5446","data":{"label":"Photonics","x":3337.456706697094,"y":18.7210839727677,"z":830.2864750838011}},{"id":"5445","data":{"label":"Pervasive Software","x":1761.1716950618584,"y":2139.7663126945054,"z":850.1175652834459}},{"id":"5444","data":{"label":"Rocket Software","x":1521.9858475694455,"y":1923.4430706115882,"z":947.9949472063596}},{"id":"5443","data":{"label":"Peritus Software Services","x":1379.3170413634425,"y":1970.4387038153718,"z":708.4807894724426}},{"id":"5440","data":{"label":"Extricity","x":2624.5862968007214,"y":-2479.7753451023987,"z":154.68637664265694}},{"id":"5442","data":{"label":"Novell","x":-802.1324387589884,"y":1040.2976313901545,"z":129.19017106045726}},{"id":"5441","data":{"label":"BEA Systems","x":3107.992889993997,"y":1141.5455862389044,"z":500.39750643386947}},{"id":"5438","data":{"label":"Peregrine Systems","x":2638.566310467004,"y":-2640.6261024196137,"z":750.5729650971065}},{"id":"5439","data":{"label":"Tivoli Systems","x":2811.697415529051,"y":-2592.835146403564,"z":617.1332438312926}},{"id":"5437","data":{"label":"Landmark Communications","x":-1123.566915801393,"y":1505.3599471692523,"z":991.9764549339969}},{"id":"5436","data":{"label":"Logio","x":3275.212993617235,"y":43.00641776964312,"z":571.9904836216551}},{"id":"5433","data":{"label":"COMSAT","x":833.5730955542294,"y":-1847.2087361715476,"z":637.9377603589718}},{"id":"5435","data":{"label":"Pacific WebWorks","x":3315.634717256152,"y":197.8658769010426,"z":16.465450209755204}},{"id":"5434","data":{"label":"Pac-West Telecomm","x":-7.147933838959034,"y":2074.848047732675,"z":126.64443583958906}},{"id":"5432","data":{"label":"On Command","x":-1711.1804604199779,"y":-1404.67871581196,"z":422.92514820304785}},{"id":"5426","data":{"label":"Nextel Partners","x":-166.62830491830755,"y":-4312.300653588856,"z":714.2715430623978}},{"id":"5431","data":{"label":"Viewpoint","x":2398.722718975482,"y":-551.8136366253129,"z":114.67084650542981}},{"id":"5430","data":{"label":"France Telecom","x":-61.7296897852666,"y":-2854.3731195141845,"z":183.8555953292107}},{"id":"5429","data":{"label":"nStor Technologies","x":-2447.350625371598,"y":-1235.3527279128257,"z":902.3808041971222}},{"id":"5427","data":{"label":"Clearnet Communications","x":-2217.470478973928,"y":360.5951244470816,"z":486.16167362746387}},{"id":"5428","data":{"label":"TELUS","x":959.1772401018075,"y":-2376.1078164637765,"z":473.49880740512606}},{"id":"5425","data":{"label":"E-Tek Dynamics","x":-1451.6974940608338,"y":1154.643751018616,"z":742.8621926484693}},{"id":"5424","data":{"label":"New Focus","x":3735.8003772777292,"y":-1705.0212179822006,"z":841.2392215106421}},{"id":"5422","data":{"label":"Storage Technology","x":-2236.6938809952526,"y":-1408.1614675220108,"z":921.2101114155391}},{"id":"5423","data":{"label":"New Era of Networks","x":-1739.4156603188299,"y":582.0838932789848,"z":626.4391675674003}},{"id":"5419","data":{"label":"Datawatch","x":-2185.823542764505,"y":-820.576186373677,"z":816.9238095505511}},{"id":"5421","data":{"label":"Informatica","x":820.7166934917368,"y":1840.271111838697,"z":174.92644382667933}},{"id":"5420","data":{"label":"Network Appliance","x":2646.4649000186437,"y":-3861.519284485744,"z":270.40907408792236}},{"id":"5415","data":{"label":"The Liberty","x":1963.3951940587995,"y":-4337.7511921569185,"z":22.523930402556182}},{"id":"5418","data":{"label":"Next Level Communications","x":1564.4989244188237,"y":-870.0481278955649,"z":581.5119539046269}},{"id":"5417","data":{"label":"British Telecommunications plc","x":2933.7131953228445,"y":1771.0138188679957,"z":998.4673776235766}},{"id":"5416","data":{"label":"TV Guide","x":-459.3937706351612,"y":-3630.1730068376287,"z":498.63279837912523}},{"id":"5414","data":{"label":"eCal","x":2700.593597064142,"y":-1245.7105138039688,"z":770.1665484710991}},{"id":"5413","data":{"label":"Dobson Communications","x":1926.3891497458171,"y":-3214.1223346287193,"z":541.1524996295731}},{"id":"5410","data":{"label":"Mitel","x":971.0810170864629,"y":-4069.0156835761263,"z":654.9196131703836}},{"id":"5412","data":{"label":"Propel","x":2622.970700658203,"y":1039.757058640217,"z":838.198302175506}},{"id":"5411","data":{"label":"Symantec","x":3423.181816073875,"y":-487.41420833244047,"z":146.09924906491844}},{"id":"5408","data":{"label":"Data Systems & Software","x":3660.455472380334,"y":82.1817021457573,"z":102.59186182866719}},{"id":"5409","data":{"label":"Elbit","x":2140.5532086975963,"y":-3262.879824565376,"z":296.45579529675103}},{"id":"5407","data":{"label":"Level 3 Communications","x":1544.7618296793626,"y":-499.43621353664093,"z":4.695691438252991}},{"id":"5406","data":{"label":"Data Return","x":1425.6368770386453,"y":-643.1645178979261,"z":357.51234507094745}},{"id":"5405","data":{"label":"International Microcircuits","x":-728.0489959384331,"y":-2843.032607678399,"z":837.5310978327401}},{"id":"5404","data":{"label":"Ask Jeeves","x":2704.9359548006287,"y":1455.896214161703,"z":527.90308500962}},{"id":"5403","data":{"label":"Digital Transmission Systems","x":-1451.8628669137456,"y":442.63648423328414,"z":129.00107367527136}},{"id":"5402","data":{"label":"Wi-LAN","x":-1273.9858028367905,"y":567.6834984568341,"z":11.463480444096952}},{"id":"5401","data":{"label":"MicroTel International","x":-1298.6915780660718,"y":418.5888954552611,"z":514.4283326097898}},{"id":"5400","data":{"label":"CyberSource","x":-1555.9686336979587,"y":1346.564383898989,"z":983.1350422176288}},{"id":"5398","data":{"label":"Aris","x":-1479.0949723845858,"y":725.3674619350095,"z":266.84179730487733}},{"id":"5399","data":{"label":"PeopleSoft","x":2528.24362214339,"y":1943.6397284605528,"z":712.4055668271827}},{"id":"5397","data":{"label":"Crown Castle International","x":1900.0673322297052,"y":-2477.472936974208,"z":258.5051879333675}},{"id":"5396","data":{"label":"MAYAN Networks","x":3422.901281276865,"y":-2052.6899090077154,"z":19.00743719399589}},{"id":"5395","data":{"label":"Optical Cable","x":2415.701857972439,"y":2090.786173155968,"z":260.14614310427885}},{"id":"5394","data":{"label":"CORNING","x":-102.06564756005992,"y":-4281.368795494982,"z":984.7154292860386}},{"id":"5393","data":{"label":"Convera","x":1606.680886286571,"y":52.84154452554594,"z":891.6246121796312}},{"id":"5392","data":{"label":"New Times","x":3799.9690271418713,"y":-3044.4202050680196,"z":173.92447070154816}},{"id":"5391","data":{"label":"Digital Insight","x":1721.6715911980273,"y":1817.0434669772976,"z":535.6465884971456}},{"id":"5390","data":{"label":"CyberGuard","x":-468.00460147814556,"y":1629.9819582005166,"z":125.74237845279201}},{"id":"5388","data":{"label":"AremisSoft","x":762.9788546040204,"y":-4021.615182329301,"z":870.0039943947066}},{"id":"5389","data":{"label":"Verso Technologies","x":3165.2760846998945,"y":1066.2315851662597,"z":495.566904699825}},{"id":"5387","data":{"label":"Applied Micro Circuits","x":36.195121397068306,"y":-3937.617625376463,"z":730.6147941493459}},{"id":"5386","data":{"label":"Nortel Networks","x":-626.7280603158215,"y":291.4840549399278,"z":440.85868682410444}},{"id":"5385","data":{"label":"Concur Technologies","x":-834.0573423031306,"y":422.71432523632575,"z":747.1118516247249}},{"id":"5384","data":{"label":"ATEC Group","x":3238.5365239261682,"y":-736.4405264635561,"z":425.4347847154998}},{"id":"5383","data":{"label":"Applied Digital Solutions","x":3283.9437201756373,"y":-547.7539170901273,"z":760.3597720397648}},{"id":"5382","data":{"label":"Internet Commerce","x":2160.7189306133987,"y":-4101.206418882674,"z":327.4773348137041}},{"id":"5380","data":{"label":"Guthy-Renker","x":-2043.3040691365102,"y":-1212.223742235702,"z":597.6573268183598}},{"id":"5381","data":{"label":"Answerthink","x":3867.8973258361793,"y":-1511.9208662211036,"z":138.84877104724634}},{"id":"5379","data":{"label":"Alaska Communications Systems Group","x":3642.852369178285,"y":-3180.572469904254,"z":383.644324140471}},{"id":"5378","data":{"label":"AltaVista","x":2747.9264820320623,"y":968.9998219454801,"z":717.0331432467896}},{"id":"5377","data":{"label":"CBS Television Network","x":-296.24832216201776,"y":-562.9298487746037,"z":500.9195010749181}},{"id":"5375","data":{"label":"Embratel Participacoes SA","x":1792.8426595639694,"y":736.206108848196,"z":230.71444623059722}},{"id":"5376","data":{"label":"The Titan","x":3805.2708911003183,"y":-1175.427221909883,"z":557.886387217204}},{"id":"5374","data":{"label":"MIDCOM Communications","x":-1649.0361502374844,"y":-422.26333311973303,"z":404.29911867568836}},{"id":"5373","data":{"label":"Freedom Communications","x":1741.2420437201945,"y":-4161.133130906477,"z":915.5625119815019}},{"id":"5371","data":{"label":"Frontier","x":1293.7586269119984,"y":-2052.151288403156,"z":761.0705267719164}},{"id":"5372","data":{"label":"Cable & Wireless","x":-57.440802305599846,"y":-3034.1615562961024,"z":208.00401155451297}},{"id":"5370","data":{"label":"WAM!NET","x":2980.5066670313054,"y":1627.964180358449,"z":377.0966042708923}},{"id":"5369","data":{"label":"Silicon Graphics","x":2833.5277401525964,"y":1675.579486398372,"z":279.56879984299076}},{"id":"5368","data":{"label":"Shared Technologies Fairchild","x":1359.1308653278593,"y":1175.1546658234975,"z":412.83408492716967}},{"id":"5367","data":{"label":"TouchStone Software","x":-386.19177551794564,"y":1958.6981479998867,"z":403.62909874698374}},{"id":"5366","data":{"label":"Smith Micro Software","x":2862.7399942455286,"y":1799.097737545716,"z":600.9716499284128}},{"id":"5365","data":{"label":"Unisys","x":682.0451876048091,"y":-3964.635460311739,"z":856.8247732871055}},{"id":"5364","data":{"label":"SEEC","x":562.6691208045941,"y":-3927.290295052293,"z":727.9663052655101}},{"id":"5363","data":{"label":"IPC","x":433.63980456629224,"y":-4238.583830622828,"z":56.624822081913216}},{"id":"5362","data":{"label":"Maxtor","x":2106.8322796909797,"y":-3157.7432791644706,"z":613.5236216554276}},{"id":"5361","data":{"label":"Total Sports","x":1526.5828320723886,"y":-1595.6868888877425,"z":17.169188279568594}},{"id":"5359","data":{"label":"Proxim","x":1494.7560059604584,"y":-400.7230865159054,"z":884.7097731610007}},{"id":"5360","data":{"label":"Netopia","x":1444.5061890728612,"y":-71.32918760021221,"z":987.7931005195595}},{"id":"5358","data":{"label":"MFS","x":1692.2576980422737,"y":571.367821955926,"z":305.0675767093698}},{"id":"5357","data":{"label":"ICG Communications","x":1035.782451546952,"y":-1724.6106836369831,"z":269.46210396229776}},{"id":"5356","data":{"label":"UUNET","x":-1337.7343344581277,"y":-3430.7934631609533,"z":371.2430400379567}},{"id":"5354","data":{"label":"Metawave Communications","x":873.7132261026645,"y":2359.312546742367,"z":642.3334775559355}},{"id":"5355","data":{"label":"Verizon Wireless","x":3893.2854812513124,"y":-1743.8558669413706,"z":848.8269011340466}},{"id":"5353","data":{"label":"Hewlett-Packard","x":3308.6695797064694,"y":-1310.7890124390292,"z":288.30709537771736}},{"id":"5352","data":{"label":"Powerwave Technologies","x":1019.6704927014985,"y":2318.840111859008,"z":381.89958840420667}},{"id":"5350","data":{"label":"MicroNet","x":-1472.4314490160816,"y":-2663.063927667265,"z":661.2402802807833}},{"id":"5348","data":{"label":"LCI","x":643.0153492462341,"y":-632.0648437626742,"z":771.5897620758807}},{"id":"5351","data":{"label":"TV Azteca S.A. de C.V.","x":772.5107847753907,"y":-4149.6324408066075,"z":406.49390444407095}},{"id":"5349","data":{"label":"Ampex","x":-1352.0024751456356,"y":-2760.7676490478543,"z":271.67962865048236}},{"id":"5347","data":{"label":"Commerce One","x":1224.4589158126164,"y":1483.1348597139868,"z":87.69383837394761}},{"id":"5346","data":{"label":"UNIsite","x":-1004.9042390756665,"y":-2289.4891064964977,"z":355.11386817829504}},{"id":"5345","data":{"label":"National Broadcasting Company","x":2930.03842284261,"y":-433.5931876211089,"z":987.459622472026}},{"id":"5343","data":{"label":"GTE","x":3878.3322208034115,"y":-2526.8059695419925,"z":928.9585705608998}},{"id":"5344","data":{"label":"CNET Networks","x":3680.350398336712,"y":1236.5261029977864,"z":958.6844316040876}},{"id":"5342","data":{"label":"Clarion Co.","x":1214.3976900422076,"y":-4410.1598286959525,"z":159.32234277685754}},{"id":"5341","data":{"label":"Clare","x":2471.8966759800587,"y":-3856.542240029731,"z":642.8135895451787}},{"id":"5340","data":{"label":"Donrey Media Group","x":-469.45600296585144,"y":-2036.7503815327282,"z":558.2149041026491}},{"id":"5338","data":{"label":"Oracle","x":2963.8547334181494,"y":488.0846839000924,"z":106.06541545585202}},{"id":"5339","data":{"label":"Terabit","x":-832.7060609980394,"y":1161.130214596934,"z":267.03927741041247}},{"id":"5337","data":{"label":"CIBER","x":-1365.7252562264364,"y":758.3373204783684,"z":176.72794418024674}},{"id":"5336","data":{"label":"Insignia Solutions plc","x":-1373.7547885655044,"y":-2379.9631614707287,"z":354.4566872865118}},{"id":"5334","data":{"label":"Tellabs","x":-977.2266140283687,"y":-2670.169845032159,"z":96.67306357742356}},{"id":"5335","data":{"label":"Citrix Systems","x":-1379.1355930684847,"y":-2226.3132674411345,"z":267.31777490372855}},{"id":"5333","data":{"label":"Trilogy","x":3816.970050563652,"y":648.1312961634549,"z":461.8889293325663}},{"id":"5331","data":{"label":"Xilinx","x":2125.445291278419,"y":2092.5242611378762,"z":113.78636185265512}},{"id":"5332","data":{"label":"Chyron","x":-2364.0600027627897,"y":-1675.8066983405338,"z":564.7246816929398}},{"id":"5330","data":{"label":"Altera","x":-1421.0149315482108,"y":1450.0795350811477,"z":536.2460636387947}},{"id":"5329","data":{"label":"Centennial Communications","x":-1119.1358391129033,"y":886.4900821638657,"z":157.16638505299807}},{"id":"5327","data":{"label":"PMC-Sierra","x":1708.936580733709,"y":-2613.051451221232,"z":594.3123369359615}},{"id":"5328","data":{"label":"Cellular Technical Services","x":-1830.1257094132234,"y":740.3409881893422,"z":576.4134095940709}},{"id":"5326","data":{"label":"Alliance Semiconductor","x":1864.859783085888,"y":-2750.887182614783,"z":354.502715832008}},{"id":"5325","data":{"label":"CenturyTel","x":4198.937754275039,"y":379.7037541433383,"z":988.9393096748352}},{"id":"5324","data":{"label":"Startec Global Communications","x":2231.3212766769884,"y":1151.5449653256928,"z":604.0418433435624}},{"id":"5323","data":{"label":"Capsule Communications","x":2073.6089725197644,"y":1178.0768088699842,"z":951.5687916781193}},{"id":"5322","data":{"label":"EMC","x":-646.2579242880101,"y":-3471.017891843883,"z":240.1183043842774}},{"id":"5321","data":{"label":"Cambex","x":3923.6626865330973,"y":139.49035376340453,"z":895.514508539127}},{"id":"5320","data":{"label":"Lineo","x":-1951.8599337059538,"y":-800.7402554007531,"z":111.89076519195362}},{"id":"5319","data":{"label":"Caldera International","x":-1962.9824063800822,"y":-875.9520827610886,"z":56.13076301647446}},{"id":"5318","data":{"label":"Metrocall","x":468.91197358722184,"y":-2321.0068874887434,"z":81.56907842923333}},{"id":"5317","data":{"label":"Motient","x":-63.42183631100124,"y":-3228.259056462923,"z":950.2299921540172}},{"id":"5315","data":{"label":"COMARCO","x":124.72321012490556,"y":2239.5804001832803,"z":777.9709252256057}},{"id":"5316","data":{"label":"IFX","x":-63.658977781542035,"y":-2692.8398065422175,"z":28.25083737883416}},{"id":"5314","data":{"label":"CACI International","x":-1995.8752262540531,"y":-226.60618466508095,"z":874.053969892032}},{"id":"5313","data":{"label":"Clearview Cinema Group","x":1507.2637082938954,"y":68.66042753655438,"z":428.6864648010711}},{"id":"5312","data":{"label":"Advanced Micro Devices","x":-1614.8888939433755,"y":-1624.221920781637,"z":386.79311493049664}},{"id":"5311","data":{"label":"Ariel","x":3526.623828954278,"y":-1931.4474794855364,"z":856.7217392421762}},{"id":"5309","data":{"label":"Pivotal","x":-1457.9885877532945,"y":510.2303045761837,"z":21.863668135249313}},{"id":"5310","data":{"label":"BroadVision","x":3291.6031169550497,"y":-1522.5599481351346,"z":594.2875477077451}},{"id":"5308","data":{"label":"Intel","x":1561.1414161062858,"y":-142.92021017008574,"z":167.84080457763918}},{"id":"5307","data":{"label":"BTG","x":2948.825878547934,"y":434.1571395533156,"z":974.9648921491745}},{"id":"5306","data":{"label":"Braun Consulting","x":3131.8436002867065,"y":548.75671669037,"z":870.2018324496834}},{"id":"5305","data":{"label":"Standard Microsystems","x":-843.0861529705567,"y":-2661.0832402998058,"z":194.8452101563818}},{"id":"5304","data":{"label":"At Home","x":663.2438601373706,"y":-955.3213039957482,"z":575.7119042195975}},{"id":"5303","data":{"label":"Software AG","x":3052.943349695396,"y":-3143.154558376309,"z":792.2562846536421}},{"id":"5302","data":{"label":"Business Objects SA","x":2902.238839123138,"y":1553.32881395596,"z":583.4582806223618}},{"id":"5301","data":{"label":"IXC Communications","x":3278.071873634158,"y":1546.3214138091726,"z":22.51665029190586}},{"id":"5300","data":{"label":"Broadwing","x":2121.438946868585,"y":2218.0003062531523,"z":533.4353559034306}},{"id":"5299","data":{"label":"ATL Products","x":2140.4955925482554,"y":-3034.7891566647695,"z":713.7822191993339}},{"id":"5298","data":{"label":"Advanced Digital Information","x":1742.379222327385,"y":-4393.387478200166,"z":920.0857680988637}},{"id":"5297","data":{"label":"Cisco Systems","x":2798.544295234383,"y":225.71773624703928,"z":683.6047108232221}},{"id":"5295","data":{"label":"Allayer Communications","x":1284.5865963894985,"y":1467.403412968707,"z":201.8361646362392}},{"id":"5296","data":{"label":"Advanced Fibre Communication","x":2873.781737303015,"y":68.32286923197444,"z":996.9405399680196}},{"id":"5294","data":{"label":"ServerWorks","x":1242.7326327262226,"y":1799.3737040597098,"z":744.7056110133212}},{"id":"5293","data":{"label":"BMC Software","x":-1853.9722313751508,"y":-2767.621920618175,"z":377.2325669415899}},{"id":"5292","data":{"label":"BHC Communications","x":1718.8329399924178,"y":-1150.5787272701882,"z":672.7908188681599}},{"id":"5291","data":{"label":"ARES","x":-2141.7399556093224,"y":-2519.518322034974,"z":300.3874422429635}},{"id":"5289","data":{"label":"Scientific-Atlanta","x":3581.664207632475,"y":-45.01828864820709,"z":139.11220583871463}},{"id":"5290","data":{"label":"The Providence Journal","x":4554.226658177991,"y":-481.7054271150655,"z":871.2591754447936}},{"id":"5288","data":{"label":"Blonder Tongue Laboratories","x":1434.7583993131902,"y":1689.7036196736908,"z":698.1712943764364}},{"id":"5286","data":{"label":"Motorola","x":2053.7683109114423,"y":2044.6807218457689,"z":452.85703166117617}},{"id":"5287","data":{"label":"Adelphia Business Solutions","x":-171.93994646235842,"y":2224.584908436891,"z":531.0689539790629}},{"id":"5285","data":{"label":"Adaptive Broadband","x":2981.638862494645,"y":-346.7914006964229,"z":902.3995488414636}},{"id":"5284","data":{"label":"Corel","x":1367.1071551657697,"y":-682.720239224539,"z":670.9612362095035}},{"id":"5283","data":{"label":"Roxio","x":1497.2117069088636,"y":2155.388265524618,"z":650.7421630969515}},{"id":"5282","data":{"label":"Western Digital","x":-252.44431202102533,"y":-3760.053490869841,"z":20.81668750756771}},{"id":"5281","data":{"label":"Analog Devices","x":-725.628500920433,"y":1654.487483561812,"z":649.8659875341571}},{"id":"5280","data":{"label":"Value Line","x":951.7182851664911,"y":-4514.770318700201,"z":179.1798541513192}},{"id":"5279","data":{"label":"Texas Instruments","x":1917.6242906695916,"y":237.55068049374313,"z":611.8842471170392}},{"id":"5278","data":{"label":"Actel","x":-1531.0611543912921,"y":-3141.4914468363886,"z":249.33624986415182}},{"id":"5277","data":{"label":"JDA Software Group","x":-2126.694639455558,"y":-761.723411134777,"z":753.9040001844966}},{"id":"5276","data":{"label":"Active Voice","x":2971.782766749204,"y":105.93994737981029,"z":72.0845374144412}},{"id":"5275","data":{"label":"Activision","x":3139.578556860215,"y":102.99955257104011,"z":543.3805405945009}},{"id":"5274","data":{"label":"Corillian","x":1173.9463588012504,"y":1442.1923258955103,"z":41.09735224445532}},{"id":"5273","data":{"label":"724 Solutions","x":1184.8632495703605,"y":1323.6612673204254,"z":948.4748185220277}},{"id":"5272","data":{"label":"NVIDIA","x":-706.3160431989622,"y":1970.246783190477,"z":316.4918019019931}},{"id":"5271","data":{"label":"3dfx Interactive","x":-1567.3974709110792,"y":1148.990593655928,"z":56.51172145275818}},{"id":"5270","data":{"label":"OPTi","x":4519.297848639648,"y":-992.1449835589515,"z":960.859258908207}},{"id":"5267","data":{"label":"UUNET Technologies","x":1706.1427328311966,"y":645.7079968529415,"z":720.0674134573535}},{"id":"5269","data":{"label":"3Com","x":-476.1960583508535,"y":237.04553551519803,"z":148.96302463398547}},{"id":"5268","data":{"label":"Embratel","x":-2330.311463408956,"y":-406.9861585366889,"z":29.359412351257053}},{"id":"5266","data":{"label":"MCI/WorldCom","x":3930.815475000785,"y":886.1737993736497,"z":230.83258918200755}},{"id":"5265","data":{"label":"BFP","x":3658.9922210689274,"y":967.9472865763728,"z":515.4670176097669}},{"id":"5263","data":{"label":"Wire One Technologies","x":-1290.4706613742758,"y":284.4809324546277,"z":704.9374638971315}},{"id":"5264","data":{"label":"VTI","x":3473.890858479318,"y":979.9680610200676,"z":22.66492801965758}},{"id":"5261","data":{"label":"Winstar Communications","x":276.3467487620719,"y":-4398.711200279065,"z":832.1578971581573}},{"id":"5259","data":{"label":"World Access","x":-1125.8184639121703,"y":-2695.5306949866854,"z":383.2230208783869}},{"id":"5262","data":{"label":"Midcom","x":-467.90220545877673,"y":-190.7444755759616,"z":503.7801526001169}},{"id":"5260","data":{"label":"NACT","x":3458.3324934457305,"y":-58.21187585908774,"z":466.6878681563378}},{"id":"5258","data":{"label":"MCI World","x":2908.908442896811,"y":1310.5567948815997,"z":307.74101301905364}},{"id":"5257","data":{"label":"CompuServe","x":4061.8016949044386,"y":246.8176268418847,"z":644.8410286768056}},{"id":"5256","data":{"label":"WorldCom","x":1854.0083745820466,"y":595.5245818239373,"z":310.9374811278709}},{"id":"5255","data":{"label":"PRENTICE HALL","x":3630.778974436853,"y":1312.2198312811106,"z":771.4719995611963}},{"id":"5253","data":{"label":"WMC-FM","x":-420.9570814389531,"y":-1715.939741006886,"z":823.3939819895033}},{"id":"5254","data":{"label":"WMC-AM","x":-453.94912185509384,"y":-1681.7985022440434,"z":493.1293025355346}},{"id":"5252","data":{"label":"VERITAS Software","x":3618.66685823401,"y":-1062.4613127701268,"z":377.54092194263643}},{"id":"5251","data":{"label":"NECX","x":3523.492386305692,"y":-2180.9994897620504,"z":683.4228860388938}},{"id":"5250","data":{"label":"Tradeum","x":4258.03417968712,"y":-1582.038375520423,"z":810.2978473716715}},{"id":"5248","data":{"label":"Ticketmaster Online","x":-2095.294991340834,"y":335.5890390423201,"z":586.784358915199}},{"id":"5249","data":{"label":"VerticalNet","x":483.10828167118416,"y":-135.48485425590934,"z":290.30455045286806}},{"id":"5247","data":{"label":"Ticketmaster Group","x":3079.294061346256,"y":-3730.311211477191,"z":805.8408583417657}},{"id":"5246","data":{"label":"UbiquiTel","x":1411.26983928123,"y":-3614.6196275377188,"z":184.5925652228815}},{"id":"5245","data":{"label":"Castle Rock","x":2917.85051091035,"y":-2885.9713293790223,"z":592.3331336411412}},{"id":"5244","data":{"label":"Turner Broadcasting System","x":-504.85691450978084,"y":1970.8377480744412,"z":864.7557969719566}},{"id":"5243","data":{"label":"Time Warner Cable France","x":1026.3870177304407,"y":-2011.1363153285424,"z":872.9965192015949}},{"id":"5242","data":{"label":"Time Warner Telecom","x":1388.9013413545463,"y":-1160.9919950754365,"z":836.6250787823861}},{"id":"5241","data":{"label":"CityAuction","x":1878.8883991393468,"y":-1437.002385129812,"z":627.6789503138593}},{"id":"5240","data":{"label":"CitySearch","x":1948.765985740728,"y":-1391.793397017946,"z":906.6508554840358}},{"id":"5238","data":{"label":"Teltronics","x":1164.2279555939149,"y":1875.7882113463274,"z":168.68893970015208}},{"id":"5239","data":{"label":"Telident","x":1250.786195006658,"y":1739.8397998093105,"z":631.2795144888146}},{"id":"5237","data":{"label":"Ticket Shop","x":1859.516900924351,"y":-1750.366968113105,"z":515.2901454693035}},{"id":"5236","data":{"label":"Nippon Telegraph","x":706.2329177923184,"y":-2201.6723171536255,"z":220.44433379527084}},{"id":"5233","data":{"label":"WD","x":-1313.519738029346,"y":-2958.6138645694427,"z":905.0435257190039}},{"id":"5235","data":{"label":"TeleCorp PCS","x":1838.9562852160134,"y":2138.215037034088,"z":508.8907916090326}},{"id":"5230","data":{"label":"TCSI","x":937.5982615652242,"y":2363.5741940483986,"z":897.6022602277413}},{"id":"5234","data":{"label":"Polycell","x":993.7822708449785,"y":2386.994923781308,"z":827.8040533863102}},{"id":"5232","data":{"label":"Telular","x":1465.3590068454905,"y":2353.416091117904,"z":185.7410788926861}},{"id":"5231","data":{"label":"GTE-NMO","x":-26.324118430512044,"y":-4151.926303693001,"z":667.3319743430836}},{"id":"5229","data":{"label":"Telecorp PCS","x":-1572.3163104377886,"y":-2886.1634827780217,"z":631.4935856265458}},{"id":"5228","data":{"label":"Quantum Optech","x":448.9740819989079,"y":-4496.044318895887,"z":101.3243284827845}},{"id":"5227","data":{"label":"Lucent Technologies","x":-2075.9938229816316,"y":637.8641062430397,"z":562.8345200316578}},{"id":"5226","data":{"label":"LodgeNet Entertainment","x":-1166.2586646534965,"y":1606.793087957387,"z":819.0675192957149}},{"id":"5224","data":{"label":"Cineplex Odeon","x":-1124.431657387271,"y":-3657.3962386361018,"z":977.5244870773994}},{"id":"5225","data":{"label":"Luminent","x":2140.0042347538247,"y":-3150.96167903936,"z":30.44607320434811}},{"id":"5222","data":{"label":"Sprint PCS","x":-2262.818741044032,"y":271.49062019189114,"z":70.87253770548352}},{"id":"5223","data":{"label":"Loews Cineplex Entertainment","x":4584.128660067852,"y":-660.4217328044933,"z":180.87878619913766}},{"id":"5221","data":{"label":"Liberty Satellite","x":-1873.2497289236676,"y":-2861.4623818573477,"z":569.106421364799}},{"id":"5219","data":{"label":"Torneos","x":1631.227039725355,"y":2127.373519669177,"z":555.0905698416}},{"id":"5220","data":{"label":"Superstar/Netlink Group","x":-1204.0558070419593,"y":-3488.8295335840553,"z":142.52033635903217}},{"id":"5218","data":{"label":"Associated Group","x":988.3639623145809,"y":-1293.1668641982792,"z":512.7744866244475}},{"id":"5217","data":{"label":"A-Group Merger","x":-303.4313052545767,"y":1827.8797326550211,"z":743.427884488708}},{"id":"8254","data":{"label":"Comcast MHCP Holdings","x":595.4988459402807,"y":-747.3962891918618,"z":191.68246352363983}},{"id":"5215","data":{"label":"Todd-AO","x":3049.747531970338,"y":753.5327751100513,"z":703.1986989454988}},{"id":"5214","data":{"label":"SBLU","x":1755.008707929429,"y":-4449.382816722971,"z":556.3841684153045}},{"id":"5213","data":{"label":"Liberty Digital","x":1170.4133493419522,"y":-839.7497119746922,"z":349.5773299365652}},{"id":"5212","data":{"label":"Navio","x":3063.291018739803,"y":528.3283837055369,"z":883.3689937432961}},{"id":"5211","data":{"label":"Network Computer","x":445.56147463950083,"y":2432.0884325366496,"z":649.2415803612744}},{"id":"5210","data":{"label":"Liberate Technologies","x":3000.293121441344,"y":363.2357737089069,"z":756.3719179915969}},{"id":"5209","data":{"label":"GWNS","x":-1751.1691271287884,"y":996.9944615716995,"z":411.4470550585936}},{"id":"5208","data":{"label":"Liberty Livewire","x":802.1630862029474,"y":-1800.475680928751,"z":529.1197521169064}},{"id":"5207","data":{"label":"Intel Atlantic","x":2020.8998545346358,"y":-167.723036129928,"z":556.7270967387805}},{"id":"5206","data":{"label":"Lernout & Hauspie Speech","x":1855.2148765673082,"y":-156.09305356866935,"z":419.09317798941356}},{"id":"5205","data":{"label":"PLD","x":-1686.801129308717,"y":-3011.3000675720423,"z":91.65167190453683}},{"id":"5204","data":{"label":"ABC Media","x":1923.2052405213399,"y":2225.2057397292665,"z":835.5921105660997}},{"id":"5203","data":{"label":"OCLI","x":1966.9234838370312,"y":1963.4835274183915,"z":795.6259293448784}},{"id":"5202","data":{"label":"Vantis","x":2983.490491378514,"y":1809.9155417878592,"z":747.046307415268}},{"id":"5201","data":{"label":"Lattice Semiconductor","x":333.9536119026998,"y":-3753.8120221481154,"z":694.6646893738426}},{"id":"5200","data":{"label":"Hearst Communications","x":1694.471928468729,"y":-3688.169560354194,"z":589.6124355989984}},{"id":"5199","data":{"label":"E-TEK","x":-966.0806145426307,"y":435.70498100410987,"z":406.7893396242508}},{"id":"5198","data":{"label":"JDS Uniphase","x":-900.8287727002962,"y":295.4773973149486,"z":225.47993409350875}},{"id":"5197","data":{"label":"Long Distance Savers Group","x":1323.1893979947035,"y":1177.9650744556675,"z":444.43906860533076}},{"id":"5196","data":{"label":"Intermedia Communications","x":1521.2201324047583,"y":-4481.714936101673,"z":279.5378043959}},{"id":"5195","data":{"label":"Executone","x":-119.14549507167294,"y":-3259.268855929727,"z":329.55448426353695}},{"id":"5194","data":{"label":"Inter-Tel","x":-10.30424507031421,"y":-3127.6783748438447,"z":747.8912680664995}},{"id":"5193","data":{"label":"IQorder","x":3044.7443016081997,"y":-178.36389874846645,"z":76.92694319380999}},{"id":"5189","data":{"label":"QED","x":1559.353960057153,"y":-2221.85936551009,"z":484.40466111982096}},{"id":"5192","data":{"label":"Prio","x":2941.4502822231607,"y":118.75144021928645,"z":120.7024386802078}},{"id":"5191","data":{"label":"InfoSpace","x":3045.4657373008813,"y":-25.575976722968335,"z":187.8801970732451}},{"id":"5190","data":{"label":"Quantum Effect Devices","x":1698.7840710926866,"y":2298.6292482230583,"z":427.747757869438}},{"id":"5188","data":{"label":"Integrated Device Technology","x":1011.8440877841776,"y":-4333.883990634171,"z":194.8501376784162}},{"id":"5187","data":{"label":"TDI","x":3068.2565781879057,"y":-3676.7575873462692,"z":838.0395820872724}},{"id":"5186","data":{"label":"Infinity Broadcasting","x":-339.9665535008012,"y":-1568.6124164015068,"z":803.1120500250075}},{"id":"5185","data":{"label":"ILD","x":4153.878977252897,"y":-2452.6374325541715,"z":682.3285472275669}},{"id":"5184","data":{"label":"Intellicall","x":-1330.2896433377036,"y":1171.553090920168,"z":306.89599255374003}},{"id":"5183","data":{"label":"Sage Networks Acquisition","x":1197.9679977790574,"y":2312.2365267923024,"z":712.4520942427038}},{"id":"5182","data":{"label":"Sage Acquisition","x":-1581.2939484035542,"y":-2005.5240463711098,"z":330.2155344181583}},{"id":"5181","data":{"label":"HostAmerica","x":-673.8286791838709,"y":706.9091362346398,"z":25.233255989614236}},{"id":"5178","data":{"label":"CompReview","x":2170.3968606099643,"y":1198.09301925812,"z":785.0737096852132}},{"id":"5180","data":{"label":"HomeCom Communications","x":1845.9057171332897,"y":-4035.826969955301,"z":681.5740321562578}},{"id":"5179","data":{"label":"WebTrak","x":2315.3274764430316,"y":1146.3411490498547,"z":75.28262854019685}},{"id":"5171","data":{"label":"Harris","x":1163.3050866692047,"y":1729.4494943000718,"z":777.8986068917125}},{"id":"5177","data":{"label":"HNC Software","x":2334.686965649018,"y":1208.1582835192476,"z":853.4338539960373}},{"id":"5176","data":{"label":"Cemax","x":-1291.6091968608243,"y":480.1129095420638,"z":480.49240111045833}},{"id":"5175","data":{"label":"Imation","x":-1217.6926821330767,"y":612.0926908551664,"z":457.9394852062097}},{"id":"5174","data":{"label":"Tribune-Democrat","x":4203.4717039036705,"y":-1853.7223772015182,"z":356.51973890877844}},{"id":"5172","data":{"label":"NBX","x":-1973.416427887629,"y":756.6889769724585,"z":848.220344333681}},{"id":"5173","data":{"label":"Johnstown","x":3220.083076145401,"y":1674.7866257330134,"z":113.55896268359422}},{"id":"5170","data":{"label":"SARs","x":3455.8662589242604,"y":-3127.7960054032483,"z":272.5860485781324}},{"id":"5168","data":{"label":"WWMT-TV","x":4306.720656038442,"y":204.52486487881288,"z":243.53091721814147}},{"id":"5169","data":{"label":"Harmony Holdings","x":3145.895362326599,"y":-2977.708698195942,"z":373.9426304431408}},{"id":"5167","data":{"label":"Granite Broadcasting","x":3577.31101384899,"y":739.4795936385599,"z":51.4730721767529}},{"id":"5166","data":{"label":"GTS Vox","x":3734.3842310617265,"y":-2497.1415222735714,"z":510.2348104291286}},{"id":"5165","data":{"label":"Golden Telecom","x":1757.133781930811,"y":-3891.7359246665774,"z":296.6683824813219}},{"id":"5164","data":{"label":"GCF Acquisition","x":1799.783519960636,"y":2021.6374525660967,"z":906.9392835981687}},{"id":"5163","data":{"label":"IPC Communications","x":905.4651944697634,"y":-2398.751790251531,"z":479.2167960895004}},{"id":"5162","data":{"label":"Genuity","x":1686.5453780949756,"y":2240.960401078096,"z":624.5037379556826}},{"id":"5161","data":{"label":"Cogent","x":-590.1236510102744,"y":1799.956465596083,"z":535.4890136062942}},{"id":"5160","data":{"label":"Harmonic","x":1215.9956776076178,"y":-3611.6542167619173,"z":224.6130925095844}},{"id":"5159","data":{"label":"WRDW-TV","x":3370.473138341171,"y":-3344.4732164259035,"z":449.6409611565699}},{"id":"5158","data":{"label":"Gray Communications Systems","x":-80.91143638002086,"y":-3621.444301341239,"z":919.2260065062056}},{"id":"5157","data":{"label":"Fundtech","x":1477.7420465591122,"y":-2260.133502069509,"z":707.232377151147}},{"id":"5156","data":{"label":"News Publishing Australia","x":-1865.0427527333704,"y":-1392.9176665014252,"z":433.5822093423365}},{"id":"5155","data":{"label":"Fox Entertainment Group","x":2411.187443736416,"y":-4111.269384708831,"z":519.6510995550012}},{"id":"5154","data":{"label":"Metromedia Fiber Network Services","x":-886.5196216729028,"y":-2465.3161862870925,"z":482.94968174381927}},{"id":"5153","data":{"label":"Focal Communications","x":-1773.67823453828,"y":913.9791892146277,"z":387.48867697591936}},{"id":"5151","data":{"label":"Gadzoox Networks","x":3469.2507140835833,"y":-961.1788011903832,"z":934.0622385759448}},{"id":"5152","data":{"label":"Seagate","x":3501.8114146700445,"y":-940.4507533184633,"z":873.625913419249}},{"id":"5149","data":{"label":"ODC","x":-499.8921047578606,"y":-3833.685824706381,"z":388.4177601471146}},{"id":"5146","data":{"label":"Global Crossing","x":1182.3541339602416,"y":-2446.4386635620085,"z":16.3192969751651}},{"id":"5150","data":{"label":"WAI","x":-1269.0612694408594,"y":717.7988314020595,"z":93.06126114136993}},{"id":"5148","data":{"label":"Glenayre Technologies","x":3058.927808566991,"y":-393.2590700305618,"z":658.9051165234721}},{"id":"5147","data":{"label":"IXnet","x":1154.431188681573,"y":-2591.3670509648096,"z":86.56891125044774}},{"id":"5145","data":{"label":"Compaq","x":1824.9207654528736,"y":-4382.77938056845,"z":906.6503451267904}},{"id":"5144","data":{"label":"Exodus Communications","x":1489.0015214569103,"y":-2538.754242047561,"z":582.3547146975445}},{"id":"5143","data":{"label":"Exar","x":-699.5829693026926,"y":-2768.018472051278,"z":919.5701584244769}},{"id":"5142","data":{"label":"MicroStrategy Investment","x":1258.7840579706753,"y":-3843.649351886911,"z":96.33712788571947}},{"id":"5141","data":{"label":"Exchange Applications","x":1154.011246113565,"y":-3955.7804274248465,"z":148.58291567453574}},{"id":"5140","data":{"label":"Entercom Communications","x":3158.9069254662463,"y":922.1226739608492,"z":384.19107952049455}},{"id":"5139","data":{"label":"KKLT-FM","x":3955.140051614746,"y":-2834.2905817145493,"z":667.8001799865497}},{"id":"5136","data":{"label":"Exigent International","x":1040.4202681238148,"y":1831.0894868947162,"z":413.3275306687263}},{"id":"5138","data":{"label":"WKCF","x":319.90102262995333,"y":-3910.7141438328117,"z":258.84527036561235}},{"id":"5137","data":{"label":"GEC","x":-2464.408313445605,"y":-951.3987975348,"z":886.570785882455}},{"id":"5135","data":{"label":"EIG Acquisition","x":-1454.7255751772798,"y":1357.381422241453,"z":265.18331623582856}},{"id":"5132","data":{"label":"Cabletron","x":-2008.9005116423107,"y":-2144.2751114480075,"z":277.5668977329744}},{"id":"5134","data":{"label":"Elite Information Group","x":4164.897554125846,"y":464.8117994865743,"z":405.0508008167004}},{"id":"5133","data":{"label":"WQCD","x":3946.063947681746,"y":-2411.627813076144,"z":297.45381167238037}},{"id":"5130","data":{"label":"Emtek","x":1089.5174101850962,"y":-439.4112302153135,"z":388.80435009967096}},{"id":"5131","data":{"label":"Efficient Networks","x":1686.23886828797,"y":1389.0251516079225,"z":547.181563323198}},{"id":"5129","data":{"label":"Eclipsys","x":1104.9679118767162,"y":-600.2088485082622,"z":33.24888978057983}},{"id":"5128","data":{"label":"CommTouch","x":2943.275750946448,"y":37.95636463144365,"z":519.9997432211969}},{"id":"5126","data":{"label":"DynCorp","x":-1036.2958098057402,"y":846.3851135052591,"z":541.6295561957522}},{"id":"5127","data":{"label":"GTE Information Systems","x":-1168.398153608212,"y":923.509197254507,"z":313.3637157990654}},{"id":"5125","data":{"label":"Elcotel","x":4387.174332752233,"y":-1817.563496726576,"z":93.19350742461863}},{"id":"5123","data":{"label":"DDI","x":-1047.564666557148,"y":800.426737352077,"z":956.4954877130111}},{"id":"5124","data":{"label":"MCM Electronics","x":445.28334203849727,"y":-3890.5431617392924,"z":870.4686452694916}},{"id":"5122","data":{"label":"Dynamic Circuits","x":2295.3823886790015,"y":-3175.2133884060413,"z":62.100666542693084}},{"id":"5121","data":{"label":"Automata","x":2537.867217818234,"y":-3261.3397641465453,"z":210.32451321189694}},{"id":"5120","data":{"label":"DDi","x":2470.526809981073,"y":-3120.0299666164246,"z":15.430954170958522}},{"id":"5119","data":{"label":"WeatherLabs","x":-2273.5241971571113,"y":-1121.784056490993,"z":220.82460608264887}},{"id":"5117","data":{"label":"PT Merger","x":2751.620118250783,"y":1963.8471316008745,"z":786.5991527981764}},{"id":"5118","data":{"label":"Digital Courier Technologies","x":2436.206331886875,"y":-564.4708980988235,"z":130.47812168590056}},{"id":"5114","data":{"label":"Intermedia-WorldCom","x":1308.8310228747414,"y":1021.8089428842532,"z":591.5929671816305}},{"id":"5116","data":{"label":"Davel Communications","x":3822.2463355120726,"y":-1547.7965321348156,"z":672.5527170229971}},{"id":"5115","data":{"label":"Z-Tel Technologies","x":1428.929386449946,"y":-4507.758320940852,"z":601.7952716530604}},{"id":"5113","data":{"label":"Digex","x":1628.464480911879,"y":876.4232401389427,"z":124.45523310358952}},{"id":"5112","data":{"label":"HFN","x":-1147.3385648811927,"y":-3194.4002726962926,"z":319.40565448870694}},{"id":"5111","data":{"label":"Sybase","x":-1643.8567666137453,"y":694.511906677636,"z":485.8008857218614}},{"id":"5109","data":{"label":"PixelCam","x":-1422.9680162284285,"y":624.0145550721581,"z":21.000523574452366}},{"id":"5110","data":{"label":"Switchboard","x":1427.4297486454889,"y":-787.5226803435953,"z":225.58692143698633}},{"id":"5108","data":{"label":"Zoran","x":-1545.833120152489,"y":530.687567087296,"z":39.090062785439805}},{"id":"5107","data":{"label":"MCMS","x":-1299.2985687958583,"y":868.8406636319014,"z":925.8062684682833}},{"id":"5106","data":{"label":"Micron Electronics","x":2362.7130748196387,"y":23.396363451423895,"z":690.1759317538616}},{"id":"5105","data":{"label":"Zoltar","x":-1482.96511566273,"y":665.022503241391,"z":296.3317737207216}},{"id":"5103","data":{"label":"Primedia Station Group","x":-2144.444667611531,"y":-1095.7032411399518,"z":565.7266879574363}},{"id":"5104","data":{"label":"Spectrian","x":-1449.45271796238,"y":1221.3656422108897,"z":11.364203833628794}},{"id":"5100","data":{"label":"Guy Gannett","x":-476.35579381527714,"y":1858.379231346471,"z":150.99283522530317}},{"id":"5102","data":{"label":"Spanish Broadcasting System","x":2924.9337852454537,"y":1856.9499054589487,"z":267.74220204497243}},{"id":"5101","data":{"label":"SpectraSite Holdings","x":1565.8669030985693,"y":-3550.215902417127,"z":254.4188662652609}},{"id":"5099","data":{"label":"Sinclair Broadcast Group","x":-829.6807101542686,"y":1632.0617612777505,"z":500.51504631593446}},{"id":"5098","data":{"label":"STFI","x":2212.7735535399815,"y":-4179.971164038141,"z":328.498790550432}},{"id":"5097","data":{"label":"Shared Technologies Cellular","x":1167.8992951769715,"y":1085.4377608071527,"z":925.5035188181774}},{"id":"5096","data":{"label":"Tritel","x":468.87287428618765,"y":-2158.4408345156717,"z":966.4506090860066}},{"id":"5095","data":{"label":"SCB Computer Technology","x":2739.997591366564,"y":1664.9541616379956,"z":708.5282424933744}},{"id":"5094","data":{"label":"IPC Interactive Pte.","x":1761.2873572784674,"y":1977.119944949316,"z":143.94717236209064}},{"id":"5093","data":{"label":"SeaChange International","x":638.8470376044106,"y":-2239.814962179531,"z":124.55493879905322}},{"id":"5092","data":{"label":"SBS Technologies","x":2959.043639848868,"y":-1951.3127115077805,"z":103.03177002647624}},{"id":"5091","data":{"label":"SBC Communications","x":1944.296420169857,"y":-2068.8459614962817,"z":499.61036182670716}},{"id":"5090","data":{"label":"SBA Communications","x":837.9722566675196,"y":-4452.661083628356,"z":866.5511274307753}},{"id":"5089","data":{"label":"Edify","x":4560.90719413053,"y":-760.9160913139103,"z":118.66959757990836}},{"id":"5088","data":{"label":"S1","x":405.3210966873703,"y":-2289.856718793704,"z":847.9052906174749}},{"id":"5087","data":{"label":"Motorola Telco","x":1437.4890016733016,"y":-727.934254779324,"z":971.9695149177505}},{"id":"5084","data":{"label":"REMEC","x":-1882.2316226601367,"y":-1333.7512451328798,"z":130.63691206852158}},{"id":"5086","data":{"label":"RSL Communications","x":1966.20515131286,"y":-409.99985552330963,"z":317.16543467546154}},{"id":"5085","data":{"label":"PMC","x":3968.952962376862,"y":336.1448018773917,"z":455.4427884712917}},{"id":"5082","data":{"label":"Rural Cellular","x":3195.2548008064914,"y":-2153.78466359698,"z":69.68941746367574}},{"id":"5083","data":{"label":"Unity Cellular","x":3179.873166574227,"y":-1997.15067519672,"z":596.4356651256766}},{"id":"5081","data":{"label":"IntelliGrip","x":612.0917532200419,"y":-4376.551108237374,"z":558.0147540847593}},{"id":"5080","data":{"label":"Old Pulitzer","x":-1075.540107538306,"y":978.4843830511163,"z":850.8474602043028}},{"id":"5079","data":{"label":"QSI","x":-2165.103265416508,"y":-1032.1488317077774,"z":227.152636823426}},{"id":"5078","data":{"label":"Quality Systems","x":143.30899664306298,"y":-4131.732503849098,"z":748.0169965600967}},{"id":"5077","data":{"label":"Hearst-Argyle","x":-2019.133743443199,"y":-1399.4735210180966,"z":228.13054883982596}},{"id":"5076","data":{"label":"Pulitzer","x":-379.80549451886327,"y":127.46092529232374,"z":428.59755858099334}},{"id":"5075","data":{"label":"BBN","x":-2168.486502022631,"y":327.11110010729954,"z":60.882609469401714}},{"id":"5074","data":{"label":"ATL","x":-118.00258943102608,"y":1994.6748906999637,"z":252.87427128022122}},{"id":"5073","data":{"label":"Emulex Plan","x":423.95621393628335,"y":-4394.795043106273,"z":914.5532422886633}},{"id":"5072","data":{"label":"QLogic","x":4523.906385999846,"y":-1216.3662704722997,"z":451.6196069334184}},{"id":"5071","data":{"label":"GE Capital Consulting","x":957.4675104258181,"y":-2909.399525824865,"z":293.5364034929193}},{"id":"5070","data":{"label":"PSINet","x":652.8318394690268,"y":-2525.3335210580017,"z":240.24939780159337}},{"id":"5069","data":{"label":"DSS","x":-1703.9155620653992,"y":757.7264389385618,"z":447.04544769120224}},{"id":"5068","data":{"label":"Quantum","x":2005.1149877673279,"y":-2953.625258483125,"z":206.35419857519156}},{"id":"5067","data":{"label":"Price Communications","x":4452.091660562637,"y":-1596.5931578369396,"z":91.331639217195}},{"id":"5066","data":{"label":"Deutsche Telekom","x":1256.7038798400336,"y":-1988.8504935784676,"z":896.8598573313216}},{"id":"5063","data":{"label":"PCW","x":3289.867895158567,"y":990.2978429075083,"z":739.052928889485}},{"id":"5065","data":{"label":"VoiceStream","x":1307.0472933282008,"y":-2327.038156553956,"z":556.3273237809394}},{"id":"5064","data":{"label":"Powertel","x":1469.737705791078,"y":-2256.7866359649706,"z":631.9521156226642}},{"id":"5061","data":{"label":"Propel Ahead","x":2276.4000939851157,"y":-4151.279789161822,"z":244.77196532391554}},{"id":"5060","data":{"label":"Pinnacle Systems","x":2642.7959192672515,"y":885.234123741393,"z":360.4744389426686}},{"id":"5062","data":{"label":"PRICE COMMUNICATIONS","x":3820.127872791065,"y":-1879.5076574670725,"z":572.8387759387709}},{"id":"5059","data":{"label":"DTS","x":3629.9876996526273,"y":1195.6493866171595,"z":203.9178585947692}},{"id":"5058","data":{"label":"Pegasus Communications","x":1501.5638300292012,"y":-4292.267897255082,"z":768.692062409468}},{"id":"5057","data":{"label":"WPXW-TV","x":-1988.1063841888272,"y":4.090254689941503,"z":279.35477694204326}},{"id":"5056","data":{"label":"WYPX-TV","x":-1954.5862015861667,"y":600.5021260609055,"z":148.4162391644852}},{"id":"5054","data":{"label":"WFSJ-FM","x":43.29387921738089,"y":-4324.964198542835,"z":461.72905913864224}},{"id":"5055","data":{"label":"WYPX","x":-2490.4218998561228,"y":-828.5356813387807,"z":951.5815527839482}},{"id":"5053","data":{"label":"KPXR","x":178.26748873882252,"y":2341.9928049069476,"z":679.2112776487457}},{"id":"5052","data":{"label":"FASB","x":2415.838010262646,"y":2148.942628860149,"z":204.41239056233096}},{"id":"5049","data":{"label":"ViewPoint Technology","x":3984.670120941195,"y":820.7683579102668,"z":666.123652459278}},{"id":"5051","data":{"label":"Packeteer","x":2621.3266724702407,"y":-4109.183069235802,"z":440.8982908602195}},{"id":"5050","data":{"label":"ODEUM","x":2901.7319126206885,"y":-763.1223472827551,"z":605.5567568910762}},{"id":"5048","data":{"label":"XLI","x":2666.147362272719,"y":-3776.2228761375104,"z":279.3408242758189}},{"id":"5045","data":{"label":"ConsumerCo","x":-34.71278099481833,"y":-2850.724385595163,"z":899.8503959079753}},{"id":"5047","data":{"label":"Oak Technology","x":2778.9763462258534,"y":-637.4787588583613,"z":702.7160014169726}},{"id":"5046","data":{"label":"ComTel","x":-23.98300655326011,"y":-3146.294982377662,"z":35.51141763232191}},{"id":"5044","data":{"label":"NTL","x":-904.1010022685441,"y":1608.8032518026012,"z":57.188356444019426}},{"id":"5043","data":{"label":"ESMR","x":-1105.7531858900722,"y":805.5661927758756,"z":120.58759919173822}},{"id":"5042","data":{"label":"Clearnet","x":806.2828903830477,"y":-2490.5675821367927,"z":826.0080530462437}},{"id":"5041","data":{"label":"SMR Properties","x":-1228.364178495745,"y":-3421.9148038715184,"z":549.9497956524508}},{"id":"5040","data":{"label":"Nextel Communications","x":1344.5777367332657,"y":-1622.0025182830168,"z":626.1774301270223}},{"id":"5039","data":{"label":"Network Access Solutions","x":3481.5487146655323,"y":-2981.620736539887,"z":739.0313827010302}},{"id":"5038","data":{"label":"PGP","x":-2169.014340087707,"y":-515.635413506362,"z":534.8460178786736}},{"id":"5037","data":{"label":"Network Associates","x":-2147.747035347378,"y":-671.6891618822001,"z":671.3093062871136}},{"id":"5036","data":{"label":"Lucent","x":2607.8300080035033,"y":-2864.416683165757,"z":761.6951325019583}},{"id":"5035","data":{"label":"VOX S","x":1935.5766647023293,"y":1402.3137750965998,"z":108.55310546782503}},{"id":"5033","data":{"label":"NBCi","x":727.9407724586326,"y":2327.74491494024,"z":66.36402466578883}},{"id":"5034","data":{"label":"TCI Ventures Group","x":3746.4443882190253,"y":-2817.43786483885,"z":695.3096067460621}},{"id":"5032","data":{"label":"NBC Internet","x":-2234.964087724501,"y":-2242.0412499919257,"z":799.4744096231341}},{"id":"5031","data":{"label":"NCR","x":968.2473773288875,"y":2011.8199349012211,"z":166.46961485170374}},{"id":"5030","data":{"label":"TEKnique","x":-1414.4894138602508,"y":1039.6308506143414,"z":407.0223039115353}},{"id":"5028","data":{"label":"Netstream Telecom Ltda","x":78.19286159756484,"y":-2976.2206131372864,"z":851.5100010335159}},{"id":"5029","data":{"label":"Natural MicroSystems","x":698.2713477662423,"y":1513.719179094087,"z":598.6043405435499}},{"id":"5027","data":{"label":"ACL","x":3359.870509794341,"y":317.4992598982235,"z":302.5223080487025}},{"id":"5026","data":{"label":"NeoMagic","x":3422.06904095145,"y":462.6527108897235,"z":484.69455928832275}},{"id":"5023","data":{"label":"MRV Communications","x":2031.0348283129133,"y":-3119.7070308057887,"z":156.65246242966057}},{"id":"5025","data":{"label":"Fiber Optic Communications","x":-635.2123354957066,"y":1909.5529711415375,"z":499.1624559182186}},{"id":"5024","data":{"label":"Fibronics","x":1269.486281294041,"y":2438.026711011553,"z":281.80529175588487}},{"id":"5022","data":{"label":"MetroNet Communications","x":1647.3756990127258,"y":-4209.333883549116,"z":551.2080343010988}},{"id":"5021","data":{"label":"Keytech LD","x":-1408.352104376819,"y":-3334.4533968504165,"z":847.191009579561}},{"id":" S.A","data":{"label":"Keytech LD","x":3727.620683702803,"y":155.58384059295167,"z":910.2466986509901}},{"id":"5017","data":{"label":"Cypress Semiconductor","x":-852.0953506042001,"y":-2745.326431933202,"z":10.90970038522232}},{"id":"5019","data":{"label":"Keytech LD S.A","x":-269.70272995089,"y":2204.401956318872,"z":215.25882036861253}},{"id":"5018","data":{"label":"IC Works","x":-481.806421068075,"y":-3927.3474831689837,"z":769.0110136976845}},{"id":"5016","data":{"label":"MediaOne","x":3690.9038523840427,"y":-2769.762116965927,"z":749.0934487472817}},{"id":"5015","data":{"label":"CSG Systems International","x":1157.116316550293,"y":-1287.3090945652734,"z":702.6009302442964}},{"id":"5013","data":{"label":"Telecorp","x":422.67332914314693,"y":-2221.194956614138,"z":942.647575066863}},{"id":"5014","data":{"label":"TCGI","x":3081.219280026742,"y":1433.1306760919279,"z":735.2250808533747}},{"id":"8310","data":{"label":"Silicon Investor","x":2812.6660262530168,"y":42.225555767595324,"z":192.1557767051665}},{"id":"5011","data":{"label":"Northern Telecom","x":3362.805391242049,"y":-943.4789894082501,"z":735.2382173967264}},{"id":"5010","data":{"label":"Corning","x":3022.3078584995355,"y":876.5972612078667,"z":317.8787065730086}},{"id":"5009","data":{"label":"New Times Mirror","x":-2086.272961294472,"y":-1990.1646579903813,"z":751.7971010772528}},{"id":"5008","data":{"label":"Harris Computer Systems","x":-378.68369142034226,"y":1824.3041134269224,"z":52.76818414818063}},{"id":"5007","data":{"label":"CEI","x":-2368.066308738129,"y":-1315.688311005466,"z":642.9012312487095}},{"id":"5006","data":{"label":"Conestoga Enterprises","x":1395.401145569801,"y":-4284.118703822161,"z":475.1246947390293}},{"id":"5005","data":{"label":"HCSC","x":-1209.7722883956772,"y":389.1886448592186,"z":359.6450691788173}},{"id":"5004","data":{"label":"Concurrent Computer","x":-319.38570865826114,"y":1678.6795833587666,"z":685.0428036097147}},{"id":"5003","data":{"label":"Zip2","x":2670.290118030269,"y":937.0821240274272,"z":946.180463520929}},{"id":"5002","data":{"label":"SDC","x":2281.0829093422235,"y":2199.9070192008203,"z":833.1764378476018}},{"id":"5001","data":{"label":"Compaq Computer","x":2553.583613299151,"y":843.2521364678169,"z":948.0640691611994}},{"id":"5000","data":{"label":"NWCG","x":1573.3481601455169,"y":2170.3754347098566,"z":391.79995828145286}},{"id":"4999","data":{"label":"Andrew","x":158.92485478821754,"y":1169.6806239521075,"z":944.1991333407067}},{"id":"4996","data":{"label":"TBS","x":-645.2579350989117,"y":-3831.3121405000766,"z":968.3740595885289}},{"id":"4997","data":{"label":"ATU","x":1953.9868631761547,"y":-150.12367289380109,"z":806.9184761304948}},{"id":"4995","data":{"label":"Garden State Cable","x":-2185.80810055995,"y":-1710.418782163843,"z":480.73533288707426}},{"id":"4994","data":{"label":"Adelphia","x":1789.8527205158607,"y":-4322.622625912991,"z":452.8602093590894}},{"id":"4992","data":{"label":"Communications Systems","x":2533.1656536077953,"y":-4006.5273496992563,"z":40.59457900383312}},{"id":"4993","data":{"label":"CenturyTel Alaska","x":1974.0136011555196,"y":189.93380013782553,"z":43.421560242433486}},{"id":"4991","data":{"label":"Comcast LCI Holdings","x":-398.6328193426507,"y":-4108.959781647734,"z":270.2452262584445}},{"id":"4990","data":{"label":"Lenfest","x":1759.418986214513,"y":1365.6779058351904,"z":279.79004828935274}},{"id":"4989","data":{"label":"Comcast Cable Communications","x":3493.1697171994965,"y":1407.5270942075695,"z":690.8605929104727}},{"id":"4988","data":{"label":"AirTouch","x":-2107.9500029951587,"y":-1163.0647733035407,"z":46.03755320756231}},{"id":"4986","data":{"label":"SFX","x":3159.264770506833,"y":1263.106176917183,"z":518.0391369127293}},{"id":"4987","data":{"label":"American Tower","x":-849.0422569628731,"y":-2228.5506735916238,"z":282.50000207941287}},{"id":"4985","data":{"label":"Transacti","x":-1893.5094252776594,"y":-2634.3154652145763,"z":344.61850904211144}},{"id":"4984","data":{"label":"CIENA","x":-812.9629175817145,"y":1306.041376383936,"z":853.8763276277099}},{"id":"8200","data":{"label":"Red Herring Communications","x":779.6203747073246,"y":1930.5071104071749,"z":179.2555671649474}},{"id":"4983","data":{"label":"Jacor","x":-2091.273431853965,"y":-1251.3837233006502,"z":824.5936801776792}},{"id":"4982","data":{"label":"Time-Warner","x":1158.860972772176,"y":-4525.6989761304285,"z":782.6859013389807}},{"id":"4981","data":{"label":"Apollo Acquisition","x":1071.2806635182515,"y":-4488.685228960609,"z":497.987197818613}},{"id":"4980","data":{"label":"America Online","x":-1470.0009314314968,"y":-2720.588671383378,"z":563.7098734389197}},{"id":"4979","data":{"label":"Marcus Cable","x":1686.4661899610637,"y":-4083.2869272653033,"z":748.7985270607396}},{"id":"4978","data":{"label":"PacifiCorp Holdings","x":-167.57500525309524,"y":-3605.008853780595,"z":8.946201626396366}},{"id":"4977","data":{"label":"Alaska Communications System","x":1925.960721445691,"y":-282.8412565631379,"z":929.781118403203}},{"id":"8293","data":{"label":"KZLA-FM (Los Angeles)","x":2166.9504895810587,"y":1957.3262160267932,"z":465.6947383116248}},{"id":"4975","data":{"label":"RTS","x":161.0215345941906,"y":-2705.330091469059,"z":473.92235714382605}},{"id":"4974","data":{"label":"Sinope","x":99.35496568590634,"y":-2518.455112806786,"z":630.8763846248446}},{"id":"4973","data":{"label":"LocusOne","x":117.56655847530419,"y":-2462.781684098027,"z":624.3234011346908}},{"id":"4972","data":{"label":"Aether Systems","x":237.49196119430735,"y":-2569.456964584714,"z":371.00498408929707}},{"id":"4971","data":{"label":"Rainbow News","x":107.95598680667717,"y":-4377.346935098314,"z":937.2437218095411}},{"id":"4970","data":{"label":"Cablevision Systems","x":-2471.9506427542356,"y":-629.9535730973566,"z":82.34746940794491}},{"id":"4969","data":{"label":"Loews","x":-771.5581663116582,"y":-3980.6385346509296,"z":17.59850908028371}},{"id":"4968","data":{"label":"CABLEVISION SYSTEMS","x":3833.211887141184,"y":-1984.8554485729205,"z":935.3609079956549}},{"id":"4967","data":{"label":"Netlink","x":596.7575829710727,"y":-557.7797842735845,"z":555.4452416313824}},{"id":"4966","data":{"label":"FlowPoint","x":3462.9050196852495,"y":-1813.883412079088,"z":935.053057091783}},{"id":"4965","data":{"label":"Silicon Spice","x":1184.1454008555947,"y":1763.1370734610018,"z":263.968126377798}},{"id":"4964","data":{"label":"Pivotal Technologies","x":1311.018289738342,"y":1490.01726000296,"z":661.3061453822633}},{"id":"4963","data":{"label":"BlueSteel","x":-1658.289793568074,"y":-3229.0287283259613,"z":638.9384610979192}},{"id":"4962","data":{"label":"Broadcom","x":1292.0551574889205,"y":1639.175723176154,"z":749.37828865473}},{"id":"4961","data":{"label":"IXC","x":594.7685702428062,"y":-2951.019202306016,"z":914.8670390469398}},{"id":"4960","data":{"label":"BROADWING","x":759.0220451247633,"y":-2815.5257105512624,"z":38.61956112299181}},{"id":"4959","data":{"label":"ZeitNet","x":-350.5736413803097,"y":-3533.1134306078275,"z":941.1299318232167}},{"id":"4958","data":{"label":"Cabletron Systems","x":3342.7031682493825,"y":-1925.2665015720013,"z":570.24161817177}},{"id":"4957","data":{"label":"Scitex Corporation","x":4312.539475155722,"y":-1690.8236659576364,"z":573.4887870505527}},{"id":"4956","data":{"label":"Bitstream","x":2214.156530628008,"y":2137.838766259587,"z":299.3880880817459}},{"id":"4955","data":{"label":"Ares Software","x":2508.6309825276367,"y":-103.51198279894379,"z":99.50647086536057}},{"id":"4954","data":{"label":"Adobe Systems","x":2342.402371119302,"y":-54.41452937565737,"z":415.5880509609027}},{"id":"4953","data":{"label":"Denton","x":2687.094464849306,"y":-4060.539921168713,"z":311.04197945921965}},{"id":"4952","data":{"label":"Osceola County","x":-2290.047412712178,"y":-1780.2514808480291,"z":192.78300767769596}},{"id":"4951","data":{"label":"Jones Intercable","x":633.4116076273385,"y":-693.1442338556062,"z":34.6856667226787}},{"id":"4950","data":{"label":"Adelphia Communications","x":1479.0781506595458,"y":-369.816848779531,"z":396.2909415283535}},{"id":"4949","data":{"label":"NeoVista","x":-1539.6871698764403,"y":-2644.785430632063,"z":32.90586452709676}},{"id":"4948","data":{"label":"Accrue Software","x":3874.919947959538,"y":-2759.55233644747,"z":844.3658003666}},{"id":"4947","data":{"label":"Wild File","x":3328.283833033428,"y":1469.6366283481084,"z":912.1495754335864}},{"id":"4946","data":{"label":"Adaptec","x":1415.5353470888494,"y":-523.7800807817721,"z":102.92663236674304}},{"id":"8202","data":{"label":"ConnectSouth Communications","x":-32.834732513341805,"y":-3836.174680955829,"z":652.0224014262608}},{"id":"8203","data":{"label":"iSky","x":743.9773943987375,"y":-628.8954311635634,"z":163.07444360603273}},{"id":" Muse","data":{"label":"Hicks","x":3033.165373376043,"y":1216.417400617339,"z":89.00244236671328}},{"id":"8206","data":{"label":"Hikari Tsushin","x":-1741.1631237201095,"y":-2291.1813449457204,"z":531.5540690863883}},{"id":" Davidow Ventures","data":{"label":"Mohr","x":-2258.967571639091,"y":-1257.9504767871772,"z":394.69551845420534}},{"id":"8208","data":{"label":"BTC Korea","x":-179.40259729082982,"y":-3938.0967169303426,"z":323.1649099101861}},{"id":"8209","data":{"label":"Mail Call","x":-123.58099448904886,"y":-3561.042858296083,"z":138.07965298661463}},{"id":"node-0.36561741516014434","data":{"label":"","x":-2699.21181192475,"y":-2358.2829744997653,"z":861.08096069046}},{"id":"8210","data":{"label":"","x":945.6048227947304,"y":1959.982659973004,"z":344.6769536424794}},{"id":" Pincus & Co.","data":{"label":"EM Warburg","x":-2039.2264479295204,"y":-2470.647979776334,"z":128.60329670199278}},{"id":"8212","data":{"label":"NET-tel Communications","x":-726.571216158161,"y":170.75923960702858,"z":751.5865232405752}},{"id":"8213","data":{"label":"OneLink Communications","x":-820.4707754877345,"y":-2404.01560442181,"z":872.9902803750505}},{"id":"8214","data":{"label":"Cayman Systems","x":-1765.2966726461807,"y":-2353.9059986874963,"z":618.3491355470613}},{"id":"8217","data":{"label":"ATC Teleports","x":1695.461530181081,"y":1310.1169409385475,"z":174.52268936505598}},{"id":"8218","data":{"label":"Quentra Networks","x":3001.50206123765,"y":-2884.696412734952,"z":694.114090555634}},{"id":"8219","data":{"label":"WaveSplitter Technologies","x":-293.5298473902649,"y":1881.7754909257337,"z":910.7862060008398}},{"id":"8334","data":{"label":"Millet Software","x":3186.583460882198,"y":-6.553185587494227,"z":574.0949858153572}},{"id":"8335","data":{"label":"Outpost Network","x":3175.378931192665,"y":96.2383957058828,"z":237.02255238291215}},{"id":"8336","data":{"label":"Saraide","x":-1861.010189208788,"y":910.7725432215993,"z":5.846820373530015}},{"id":"8337","data":{"label":"TDLI.com","x":3201.7663111431884,"y":-31.86831590557449,"z":931.5351041362063}},{"id":"8338","data":{"label":"Outpost","x":-794.9588617473264,"y":1891.5100083129355,"z":864.9560447875979}},{"id":"8339","data":{"label":"Intermedia","x":4504.443072958622,"y":-885.5265654170034,"z":126.03379196490283}},{"id":"8340","data":{"label":"iPIX","x":470.41620894696007,"y":-1480.3524479563516,"z":522.1663082535042}},{"id":"8341","data":{"label":"Lacerte","x":547.5400844750593,"y":-2221.616195986503,"z":727.5804428747124}},{"id":"8342","data":{"label":"Philips Optoelectronics B.V.","x":-1063.031436794795,"y":226.99168542861116,"z":150.45655957200043}},{"id":"8343","data":{"label":"Dragon Systems","x":1955.866849074153,"y":-38.07112596410116,"z":932.3028858885642}},{"id":"8344","data":{"label":"OmniMed Transcription","x":2003.602895539403,"y":-212.33318668120046,"z":287.26607637706513}},{"id":"8345","data":{"label":"Linguistic Technologies","x":2005.2232227836303,"y":-100.53429236593274,"z":818.8739374759886}},{"id":"8346","data":{"label":"Navio Communications","x":2709.90651418392,"y":1388.1928499039896,"z":714.4608715559114}},{"id":"8347","data":{"label":"Video Rentals","x":727.7916547968152,"y":-1939.2588974464597,"z":135.28636372441616}},{"id":"8348","data":{"label":"A.F. Associates","x":733.3937151530422,"y":-1964.6821718363121,"z":398.4472687664116}},{"id":"8349","data":{"label":"Triumph Communications Group","x":810.1378954534184,"y":-1957.9463401879143,"z":304.0903850824121}},{"id":"8350","data":{"label":"SounDelux","x":705.6307289934493,"y":-1917.5759987760894,"z":996.3712491049224}},{"id":"8351","data":{"label":"Soho Group","x":761.9772572059819,"y":-1971.2125018795064,"z":298.28917914350296}},{"id":"8352","data":{"label":"Four Media","x":1229.5921602626804,"y":-1405.5932058475032,"z":853.7247673438002}},{"id":"8353","data":{"label":"TCI Music","x":1165.353348010909,"y":-1361.1835853098037,"z":876.5460805516383}},{"id":"8354","data":{"label":"Teleport","x":1090.3345846877805,"y":-4547.132042394542,"z":169.84761579778728}},{"id":"8355","data":{"label":"4MC","x":971.2078893918756,"y":-1318.7118196473325,"z":850.2346364383542}},{"id":"8356","data":{"label":"The Todd-AO","x":-1827.6446241049678,"y":989.1900332504174,"z":866.4416294136502}},{"id":"8357","data":{"label":"Ascent Entertainment Group","x":-640.9175108364193,"y":1570.3012346217974,"z":64.36980707335005}},{"id":"8358","data":{"label":"DataPath Systems","x":1623.6459704804029,"y":-3365.066004789964,"z":561.9789671184787}},{"id":"8359","data":{"label":"ZSP","x":1361.4011927175452,"y":-3594.702596462814,"z":211.00564749832552}},{"id":"8360","data":{"label":"Intraserver Technology","x":1447.1522938293856,"y":-3642.987126262461,"z":607.5850885013341}},{"id":"8361","data":{"label":"ParaVoice Technologies","x":1636.3615365002033,"y":-3504.6156127777977,"z":20.749289893960743}},{"id":"8362","data":{"label":"Syntax Systems","x":1593.454824439892,"y":-3335.986539417408,"z":650.2119566746671}},{"id":"8363","data":{"label":"Creative Design Solutions","x":2147.7902357618277,"y":-3334.7507766707345,"z":552.3452974690086}},{"id":"8364","data":{"label":"Texas Monthly","x":1811.010692327758,"y":-3160.4698320482394,"z":465.7251071969115}},{"id":"8365","data":{"label":"Metamor","x":-1415.7527530575658,"y":-1665.2654491242429,"z":89.58672577881566}},{"id":"8366","data":{"label":"Sage IT Partners","x":1047.8436895713726,"y":-2749.047130901299,"z":747.5790822491191}},{"id":"8367","data":{"label":"Orion Film Classics","x":1052.8124321061318,"y":1135.1823066301404,"z":71.10926309920251}},{"id":"8368","data":{"label":"Micron Computer","x":2511.5682943069514,"y":134.63771989287216,"z":8.982031543413926}},{"id":"8369","data":{"label":"Micron Custom Manufacturing Services","x":2518.5904538177983,"y":37.3747324239921,"z":166.6133534756422}},{"id":"8370","data":{"label":"ZEOS International","x":2534.3811339839785,"y":96.69433848857898,"z":989.0317720613848}},{"id":"8371","data":{"label":"Steck-Vaughn Publishing","x":3462.697334082968,"y":-1907.4979026513824,"z":536.6932595840328}},{"id":"8372","data":{"label":"Associative Computers","x":3518.5746893564374,"y":578.2195016936093,"z":677.8583349035945}},{"id":"8373","data":{"label":"Magic","x":-2288.595720019837,"y":-602.6132084864539,"z":129.14288318135436}},{"id":"8374","data":{"label":"CyberMedia","x":-2022.8755134484868,"y":-758.4316728028771,"z":833.2874001162711}},{"id":"8375","data":{"label":"Compusul","x":-2248.256815590528,"y":-549.193194833485,"z":997.7181010033198}},{"id":" Networks","data":{"label":"Cinco","x":-2319.0066160095457,"y":-495.8007326565903,"z":571.7551374813819}},{"id":"8377","data":{"label":"3DV Technology","x":-2037.2937562312677,"y":-790.3806495084955,"z":115.29975416579829}},{"id":"8378","data":{"label":"QA Information Security Holding AB","x":-2127.75151834255,"y":-516.5672200210083,"z":664.515155264199}},{"id":"8379","data":{"label":"Anyware Seguridad Informatica S.A.","x":-2270.095836714887,"y":-761.7618576449977,"z":654.078491454196}},{"id":"8380","data":{"label":"Paradigm","x":-2131.4785234967144,"y":-827.9914371664327,"z":416.2436015375037}},{"id":"8381","data":{"label":"Newhouse Telecom Holdings","x":1310.0423090252834,"y":-1296.8479140717886,"z":45.5493658486823}},{"id":"8382","data":{"label":"Nextel","x":-421.16146624708745,"y":-4050.0187284192325,"z":889.5853173962878}},{"id":"8383","data":{"label":"OneComm","x":1307.4984383684987,"y":-1790.3408834889424,"z":781.323924701489}},{"id":"8384","data":{"label":"Dial Page","x":1511.2020905292602,"y":-1583.4323537431237,"z":999.6460472900494}},{"id":"8385","data":{"label":"Saber Communications","x":1407.6967188763992,"y":-1788.4754727821523,"z":179.91520179727206}},{"id":"8386","data":{"label":"Diamond Cable","x":39.37452976666236,"y":-3115.549394962429,"z":327.49861580801377}},{"id":"8387","data":{"label":"NTL (Triangle)","x":127.90137554946386,"y":-3168.3758676484827,"z":470.8302045773234}},{"id":"8388","data":{"label":"Workplace Technologies plc","x":244.578882623337,"y":-2993.830188595849,"z":71.62239823704498}},{"id":"8389","data":{"label":"Cablelink","x":-74.3732618349095,"y":-2870.5442693319637,"z":747.5219767077357}},{"id":"8390","data":{"label":"Comcast UK Cable Partners","x":41.47240638246603,"y":-3308.0571419690423,"z":928.675800892321}},{"id":"8391","data":{"label":"AetherWorks","x":-1220.920188223026,"y":-2350.0996243095665,"z":812.2812048853472}},{"id":"8392","data":{"label":"ODEUM Microsystems","x":-1682.0300448898593,"y":828.331737349723,"z":393.8156695168127}},{"id":"8393","data":{"label":"Xerographic Laser Images","x":2926.27358985665,"y":-697.1878968889923,"z":419.1771449692945}},{"id":"8394","data":{"label":"Xionics","x":2938.077023351687,"y":-658.6776771796413,"z":691.4593868956987}},{"id":"8395","data":{"label":"Enterprise Technology Group","x":3042.338161574433,"y":-2984.6993331048498,"z":426.96699081274824}},{"id":"8396","data":{"label":"Spectradyne","x":-1694.259243488542,"y":-1242.0109823158564,"z":891.5114665664443}},{"id":"8397","data":{"label":"Waypoint Software","x":906.0957666656241,"y":-240.1363408873849,"z":129.90804398997668}},{"id":"8398","data":{"label":"Mission Critical Technologies","x":715.8331723344213,"y":-304.85251562464873,"z":579.5742651192141}},{"id":"8399","data":{"label":"Treasury Services","x":2979.943045691808,"y":643.4157020608063,"z":346.6210279787027}},{"id":"8400","data":{"label":"The Travel Channel","x":1594.0654519321442,"y":-2800.4724826642273,"z":171.79106506367825}},{"id":"8401","data":{"label":"Barnhill Management","x":2751.7828906427458,"y":-2762.3799652500556,"z":933.9202178289589}},{"id":"8402","data":{"label":"F.Print UK","x":2477.7126043597054,"y":-2572.3717676063648,"z":741.8629494600444}},{"id":"8403","data":{"label":"Innovative Tech Systems","x":2799.1721637694664,"y":-2700.3717913380574,"z":575.1000353015392}},{"id":"8404","data":{"label":"Loran Network Holding","x":2517.5369180958696,"y":-2736.345386711432,"z":124.1215696009188}},{"id":"8405","data":{"label":"Telco Research","x":2466.7712789570287,"y":-2609.9603571132643,"z":194.60627305374257}},{"id":"8406","data":{"label":"Knowlix","x":2518.1549449961967,"y":-2512.8694630522505,"z":954.8132244843662}},{"id":"8407","data":{"label":"SportsChannel Florida Associates","x":952.3900370753968,"y":1101.910813035728,"z":802.1293920013209}},{"id":"8408","data":{"label":"RF Microsystems","x":-1912.6729357472607,"y":-1187.5469131637715,"z":464.1063585755316}},{"id":"8409","data":{"label":"Western Maine Cellular","x":3361.044104274265,"y":-2205.9715696176954,"z":9.787407279462146}},{"id":"8410","data":{"label":"Pacific Telesis Group","x":-1678.6988166341791,"y":-1940.013441558494,"z":853.3885098173681}},{"id":"8411","data":{"label":"Comcast Cellular","x":1749.8404684987727,"y":-2055.9238031571635,"z":437.60784386855664}},{"id":"8412","data":{"label":"Cellular Communications","x":1995.931343073651,"y":-2210.4658673922413,"z":771.2352793301131}},{"id":"8413","data":{"label":"Bell Canada","x":4068.4078682920745,"y":-2509.282471761016,"z":756.1784335340453}},{"id":"8414","data":{"label":"Macmillan","x":-366.2041687345518,"y":-1327.7427804938384,"z":988.7243480885639}},{"id":" IA)","data":{"label":"KGAN-TV (Cedar Rapids","x":4168.593667801808,"y":-1996.8239970538189,"z":92.24738696588864}},{"id":"8416","data":{"label":"WYZZ-TV","x":3856.614427093129,"y":-2971.2555642922334,"z":684.1814842309645}},{"id":"8417","data":{"label":"WSTR-TV","x":850.783517803542,"y":-4536.548661319945,"z":420.3283577844348}},{"id":"8418","data":{"label":"WSMH-TV","x":-1273.7656712890532,"y":1394.5936719014617,"z":751.5759490689602}},{"id":"8419","data":{"label":"KSMO-TV","x":4079.3228354418943,"y":352.3001623227674,"z":42.98777924214736}},{"id":"8420","data":{"label":"KUPN-TV","x":-191.87265502765058,"y":1279.2749779610485,"z":324.7723096325628}},{"id":" IL)","data":{"label":"WICS-TV (Springfield","x":-2742.915645682224,"y":-2040.40296537115,"z":529.6376793176149}},{"id":" FL)","data":{"label":"WTWC-TV (Tallahassee","x":2071.598932834113,"y":-4227.844545374429,"z":74.40731289923596}},{"id":" ME)","data":{"label":"WGME-TV (Portland","x":-2026.568457266078,"y":-2568.984760024822,"z":468.2953224846054}},{"id":" MA)","data":{"label":"WGGB-TV (Springfield","x":-661.7484989226468,"y":1857.2995035045506,"z":256.5460378597948}},{"id":"8427","data":{"label":"SourceSuite","x":3055.1407662024794,"y":600.4317654355946,"z":958.512039473385}},{"id":"8428","data":{"label":"BCH Holding","x":2072.838804469153,"y":1134.5579953117467,"z":594.5842475539235}},{"id":"8429","data":{"label":"AXENT","x":3544.4509898586593,"y":368.3787269495542,"z":209.65663761967247}},{"id":"8430","data":{"label":"Binary Research","x":3434.5405109882095,"y":-661.2972998655341,"z":273.74445440166517}},{"id":"8431","data":{"label":"Quarterdeck","x":3585.056010323169,"y":-529.205960701539,"z":603.1755105680039}},{"id":"8432","data":{"label":"URLabs","x":3514.9488051317758,"y":-320.355938719018,"z":329.07110837509657}},{"id":"8433","data":{"label":"20/20 Software","x":3369.2037486874597,"y":-342.8003081155339,"z":639.3425976787563}},{"id":"8434","data":{"label":"TCI","x":-1775.287552943646,"y":636.030249800916,"z":918.7274285910592}},{"id":"8435","data":{"label":"Paradigm Music Entertainment","x":1028.7163760919434,"y":-1311.7473451933001,"z":686.2353637882259}},{"id":"8436","data":{"label":"The Box Worldwide","x":1021.0241345367508,"y":-1407.425070953217,"z":476.4015960571473}},{"id":"8437","data":{"label":"TeleCorp Wireless","x":373.4788147014865,"y":-2385.7153472595433,"z":166.20886178253858}},{"id":"8438","data":{"label":"Sovam Teleport","x":1785.0555374241585,"y":-3932.4282548006877,"z":394.07661166433417}},{"id":"8439","data":{"label":"TCM","x":1736.3992830834559,"y":-4053.306922569759,"z":282.77552409645557}},{"id":"8440","data":{"label":"Telewest","x":4348.210852226617,"y":-1569.0501131341662,"z":847.3308032470459}},{"id":"8441","data":{"label":"Flextech","x":-2081.617516019036,"y":-2197.144057415619,"z":611.5547474614938}},{"id":"8442","data":{"label":"Coherent","x":-1121.491217014554,"y":-2630.5672956569692,"z":526.6838980325188}},{"id":"8443","data":{"label":"The Charles Rosner Bronfman Discretionary Trust","x":2522.6548869382914,"y":147.63786367825105,"z":529.7390957256146}},{"id":"8444","data":{"label":"Ticketmaster Golf","x":1925.6243938690668,"y":-1514.2396286133066,"z":159.5394805184356}},{"id":"8445","data":{"label":"The Ticket Shop","x":4507.818356425633,"y":-1399.6718524998118,"z":545.6423931245846}},{"id":"8446","data":{"label":"Tennessee Performing Arts Center Management","x":1904.6102204463768,"y":-1476.10608140754,"z":105.01226485013815}},{"id":"8447","data":{"label":"Ticketmaster Ireland","x":1923.4214754618497,"y":-1690.6480234113724,"z":410.95983631712164}},{"id":"8448","data":{"label":"Synchro Systems","x":1954.3891379927918,"y":-1546.3404226862149,"z":258.5435146346318}},{"id":"8449","data":{"label":"TM-Europe Group","x":1934.4750336933503,"y":-1474.4370914397473,"z":827.091928875461}},{"id":"8450","data":{"label":"Ticketmaster-Northwest","x":1902.0843934129043,"y":-1751.1308202423888,"z":104.35170454207187}},{"id":"8451","data":{"label":"Web Media Ventures","x":1609.0635688474285,"y":-1637.498499982476,"z":71.24493793526065}},{"id":"8452","data":{"label":"Ticketmaster-Southeast","x":1738.2458782823524,"y":-1754.1089731780994,"z":245.85440311696894}},{"id":"8453","data":{"label":"Ticketmaster-Australia","x":1950.2388686616296,"y":-1498.746127085661,"z":175.80413902190406}},{"id":"8454","data":{"label":"Ticketmaster-Mexico","x":1926.940456911174,"y":-1732.493323692027,"z":856.336091079456}},{"id":"8455","data":{"label":"Ticketmaster-UK","x":1948.7950120536516,"y":-1701.701185129341,"z":30.54498970032671}},{"id":"8456","data":{"label":"Southern Satellite","x":1758.203464418396,"y":-1153.7488254467653,"z":171.60629808326112}},{"id":"8457","data":{"label":"GST Telecommunications","x":-925.8502229732608,"y":1794.48573093917,"z":345.8940334153122}},{"id":"8458","data":{"label":"MetroComm AxS","x":1382.6373696478458,"y":-1320.0436876631275,"z":520.6993772559747}},{"id":"8459","data":{"label":"Sound One","x":697.953516447003,"y":-1954.8330178797873,"z":706.9116128701087}},{"id":"8460","data":{"label":"Vital Software","x":646.664010907341,"y":-214.66875943226023,"z":361.4210398858053}},{"id":"8461","data":{"label":"United Microelectronics","x":-216.88218319870793,"y":-3630.091390931517,"z":583.90253643467}},{"id":"8462","data":{"label":"United Integrated Circuits","x":-148.59382131882285,"y":-3768.0289450883424,"z":78.67012818935315}},{"id":"8463","data":{"label":"United Pan-Europe Communications","x":1154.0699806322773,"y":-4458.948814523739,"z":132.18064632346693}},{"id":"8464","data":{"label":"Videopole","x":1207.120246172116,"y":-2065.9448892315077,"z":722.3244370533525}},{"id":"8465","data":{"label":"United Video Satellite Group","x":2112.2938869278123,"y":-3337.8226428495777,"z":290.4063255492366}},{"id":"8466","data":{"label":"Netlink USA","x":3192.251780786155,"y":1494.6567315952962,"z":821.100726959242}},{"id":"8467","data":{"label":"VTR","x":1228.1472635891641,"y":-1958.9251151776207,"z":270.7626657707347}},{"id":"8468","data":{"label":"UTH","x":1273.1345718034127,"y":-1784.3345549749433,"z":21.230169593817074}},{"id":"8469","data":{"label":"UPC Slovensko","x":994.2804859449816,"y":-1840.1661768126178,"z":974.0380912067787}},{"id":"8470","data":{"label":"Tebecai","x":1058.9805025576784,"y":-1974.932418634728,"z":242.50647524833323}},{"id":"8471","data":{"label":"Stjarn","x":1107.6991898294264,"y":-2000.7111528667983,"z":824.6160840281038}},{"id":"8472","data":{"label":"RCF","x":1208.2835126249984,"y":-2007.9535338169653,"z":423.33775820093035}},{"id":"8473","data":{"label":"Monor","x":1261.1626198855847,"y":-1957.832825986421,"z":906.5676142078603}},{"id":"8474","data":{"label":"Kabel Plus","x":1176.70627579319,"y":-2017.2044282823526,"z":201.02545211040623}},{"id":"8475","data":{"label":"K&T Group","x":1009.4147898057281,"y":-1920.2938170039101,"z":306.2778213259443}},{"id":"8476","data":{"label":"Intercomm","x":1276.7349608031627,"y":-1972.7768194430464,"z":367.9481908615869}},{"id":"8477","data":{"label":"El Tele Ostfold","x":1115.1241730463234,"y":-2025.830713630602,"z":114.19463780878858}},{"id":"8478","data":{"label":"A2000","x":1071.9606685030676,"y":-2005.6993758773274,"z":362.12004708387633}},{"id":"8479","data":{"label":"@Entertainment","x":1148.1807091398077,"y":-2025.4100161993001,"z":866.5874732263871}},{"id":"8480","data":{"label":"GelreVision","x":1019.53253634878,"y":-1960.4785203555684,"z":138.920383053593}},{"id":"8481","data":{"label":"Pramer S.C.A.","x":-2162.67426238765,"y":-1834.4204164750581,"z":477.82439184476533}},{"id":"8482","data":{"label":"Crown Media Holdings","x":985.6509180746043,"y":-1882.327044549712,"z":232.26587600777603}},{"id":"8483","data":{"label":"PrimaCom","x":1285.671610151384,"y":-1863.0219899032068,"z":592.2661827527589}},{"id":"8484","data":{"label":"UVSG","x":488.56304254984525,"y":-356.2205605226454,"z":395.8589777982031}},{"id":"8485","data":{"label":"Metastream","x":2312.627145038088,"y":-703.6099397194312,"z":193.24192576816836}},{"id":"8486","data":{"label":"Aerial Communications","x":1220.5140969989443,"y":-2466.1070455335953,"z":260.4376182488162}},{"id":"8487","data":{"label":"iMandi","x":2677.1314859243694,"y":-3.647209756574739,"z":579.4556026872726}},{"id":"8488","data":{"label":"WWVR-FM","x":-2279.754826842386,"y":-672.3950992128039,"z":243.35824359135506}},{"id":"8489","data":{"label":"WFTX-TV","x":3581.242428548613,"y":1213.8368422125395,"z":256.47222050604614}},{"id":"8490","data":{"label":"WTHI-FM and AM","x":1464.5148821766734,"y":2008.780778450744,"z":274.9146490903169}},{"id":"8491","data":{"label":"WTHI-TV","x":-2189.243637816487,"y":-2321.0785209472215,"z":338.8060710623999}},{"id":"8492","data":{"label":"KTFM-FM","x":-903.294261233159,"y":-2082.993790490225,"z":155.2709598998856}},{"id":"8493","data":{"label":"KTSA-AM","x":-932.457425661144,"y":-2063.8244319364617,"z":840.5770837346084}},{"id":"8494","data":{"label":"MFS Communications","x":-1292.722947097401,"y":-2613.1470741589096,"z":366.76438777774956}},{"id":"8495","data":{"label":"Xenon 3","x":3096.006376137283,"y":-1187.3750563010394,"z":571.6384763416709}},{"id":"8496","data":{"label":"Global Marine Systems","x":1246.7625314770485,"y":-2624.7370587143796,"z":544.3487488240926}},{"id":"8497","data":{"label":"Racal Telecom","x":1030.0177334498585,"y":-2461.9580001734967,"z":206.22338996250454}}], + edges: [{"id":"edge-0.17155881424661512","source":"1","target":"37","data":{}},{"id":"edge-0.95640038570537","source":"1","target":"38","data":{}},{"id":"edge-0.21101914775652286","source":"1","target":"39","data":{}},{"id":"edge-0.30774266091548297","source":"1","target":"41","data":{}},{"id":"edge-0.08671980304297033","source":"1","target":"42","data":{}},{"id":"edge-0.4895692047125091","source":"1","target":"43","data":{}},{"id":"edge-0.9672314659608361","source":"1","target":"45","data":{}},{"id":"edge-0.7301755175660551","source":"1","target":"46","data":{}},{"id":"edge-0.8799860087280433","source":"46","target":"47","data":{}},{"id":"edge-0.7751695652762429","source":"1","target":"49","data":{}},{"id":"edge-0.44259850237257137","source":"1","target":"50","data":{}},{"id":"edge-0.30869197483404687","source":"1","target":"52","data":{}},{"id":"edge-0.8479825143535011","source":"1","target":"53","data":{}},{"id":"edge-0.058968496064680576","source":"53","target":"54","data":{}},{"id":"edge-0.15491985606301806","source":"53","target":"55","data":{}},{"id":"edge-0.3136243191436736","source":"53","target":"56","data":{}},{"id":"edge-0.09066765049050352","source":"53","target":"57","data":{}},{"id":"edge-0.21902376386699585","source":"53","target":"58","data":{}},{"id":"edge-0.24715734290962743","source":"53","target":"59","data":{}},{"id":"edge-0.9945489139327501","source":"53","target":"60","data":{}},{"id":"edge-0.7068504640687074","source":"53","target":"61","data":{}},{"id":"edge-0.9034072967105071","source":"53","target":"62","data":{}},{"id":"edge-0.21523837962081838","source":"1","target":"63","data":{}},{"id":"edge-0.23471080339008954","source":"1","target":"64","data":{}},{"id":"edge-0.030095583168989748","source":"64","target":"65","data":{}},{"id":"edge-0.8873222882499023","source":"64","target":"66","data":{}},{"id":"edge-0.43696839143841815","source":"64","target":"67","data":{}},{"id":"edge-0.9096975792691782","source":"64","target":"68","data":{}},{"id":"edge-0.5564178271706368","source":"64","target":"69","data":{}},{"id":"edge-0.7649313980986034","source":"64","target":"70","data":{}},{"id":"edge-0.3028396368703008","source":"64","target":"71","data":{}},{"id":"edge-0.006056375730192132","source":"64","target":"73","data":{}},{"id":"edge-0.42037369664414337","source":"64","target":"74","data":{}},{"id":"edge-0.7829297345585147","source":"64","target":"75","data":{}},{"id":"edge-0.729149472598372","source":"64","target":"76","data":{}},{"id":"edge-0.3135012548995666","source":"64","target":"77","data":{}},{"id":"edge-0.1880720680585215","source":"64","target":"78","data":{}},{"id":"edge-0.9239298761285171","source":"64","target":"79","data":{}},{"id":"edge-0.8772959989542011","source":"64","target":"80","data":{}},{"id":"edge-0.17022647313412942","source":"64","target":"81","data":{}},{"id":"edge-0.31152492983882984","source":"64","target":"82","data":{}},{"id":"edge-0.05043130029444609","source":"64","target":"83","data":{}},{"id":"edge-0.055132305809925786","source":"64","target":"84","data":{}},{"id":"edge-0.11852432630924903","source":"64","target":"85","data":{}},{"id":"edge-0.2506945507615663","source":"85","target":"86","data":{}},{"id":"edge-0.7832025988132088","source":"64","target":"3864","data":{}},{"id":"edge-0.5843330760343239","source":"64","target":"87","data":{}},{"id":"edge-0.29611612397871956","source":"1","target":"88","data":{}},{"id":"edge-0.009770973048322862","source":"88","target":"89","data":{}},{"id":"edge-0.745915528260247","source":"88","target":"90","data":{}},{"id":"edge-0.8114173951568846","source":"88","target":"72","data":{}},{"id":"edge-0.9816866563682292","source":"88","target":"91","data":{}},{"id":"edge-0.1792067406181097","source":"88","target":"3870","data":{}},{"id":"edge-0.8448729584458503","source":"88","target":"92","data":{}},{"id":"edge-0.26924093871893473","source":"88","target":"93","data":{}},{"id":"edge-0.9288067153600668","source":"88","target":"94","data":{}},{"id":"edge-0.6325209181633171","source":"88","target":"95","data":{}},{"id":"edge-0.8302887196901592","source":"88","target":"96","data":{}},{"id":"edge-0.7254756450890214","source":"88","target":"97","data":{}},{"id":"edge-0.35491171103467734","source":"88","target":"98","data":{}},{"id":"edge-0.17624900419728662","source":"88","target":"99","data":{}},{"id":"edge-0.5560091704019208","source":"88","target":"100","data":{}},{"id":"edge-0.5857363002046121","source":"1","target":"177","data":{}},{"id":"edge-0.24331690647207527","source":"1","target":"102","data":{}},{"id":"edge-0.09181769477938828","source":"1","target":"103","data":{}},{"id":"edge-0.7946820043152911","source":"1","target":"104","data":{}},{"id":"edge-0.774972331982799","source":"1","target":"3850","data":{}},{"id":"edge-0.012015110827144238","source":"3850","target":"3851","data":{}},{"id":"edge-0.8468365807744977","source":"3850","target":"3852","data":{}},{"id":"edge-0.8385098043106458","source":"3850","target":"3853","data":{}},{"id":"edge-0.8193024247286089","source":"3850","target":"3854","data":{}},{"id":"edge-0.11004914120977216","source":"3850","target":"3855","data":{}},{"id":"edge-0.08935473640752134","source":"3850","target":"3856","data":{}},{"id":"edge-0.7179314779232548","source":"3850","target":"3857","data":{}},{"id":"edge-0.8916757429563296","source":"3850","target":"3858","data":{}},{"id":"edge-0.9892893651499386","source":"3850","target":"3859","data":{}},{"id":"edge-0.004341255921213927","source":"1","target":"3860","data":{}},{"id":"edge-0.16217527811156818","source":"3860","target":"3849","data":{}},{"id":"edge-0.7091334597517038","source":"3860","target":"103","data":{}},{"id":"edge-0.8395682921985224","source":"3860","target":"3862","data":{}},{"id":"edge-0.193086185510982","source":"3860","target":"3863","data":{}},{"id":"edge-0.29020424829157765","source":"1","target":"3865","data":{}},{"id":"edge-0.53518533061482","source":"1","target":"3867","data":{}},{"id":"edge-0.7232511613650117","source":"1","target":"3868","data":{}},{"id":"edge-0.9103269396221989","source":"1","target":"3869","data":{}},{"id":"edge-0.9391594679350004","source":"1","target":"3871","data":{}},{"id":"edge-0.8092682167404193","source":"3872","target":"107","data":{}},{"id":"edge-0.6986979905581334","source":"3872","target":"108","data":{}},{"id":"edge-0.09889714635301528","source":"3872","target":"109","data":{}},{"id":"edge-0.6300966789765141","source":"3872","target":"110","data":{}},{"id":"edge-0.6884293594119051","source":"3872","target":"111","data":{}},{"id":"edge-0.7246305537183257","source":"3872","target":"112","data":{}},{"id":"edge-0.31957880800909066","source":"3872","target":"113","data":{}},{"id":"edge-0.5459112392530518","source":"3872","target":"114","data":{}},{"id":"edge-0.2552195318735384","source":"3872","target":"115","data":{}},{"id":"edge-0.3804989661998943","source":"3872","target":"116","data":{}},{"id":"edge-0.055972478545912585","source":"3872","target":"117","data":{}},{"id":"edge-0.4527830019759922","source":"3872","target":"118","data":{}},{"id":"edge-0.9302962513656574","source":"3872","target":"119","data":{}},{"id":"edge-0.9690816876745958","source":"3872","target":"120","data":{}},{"id":"edge-0.555693458976293","source":"3872","target":"121","data":{}},{"id":"edge-0.9842007819697749","source":"3872","target":"122","data":{}},{"id":"edge-0.7103635968799245","source":"3872","target":"123","data":{}},{"id":"edge-0.7718111927310551","source":"3872","target":"3875","data":{}},{"id":"edge-0.3437332099744508","source":"3872","target":"125","data":{}},{"id":"edge-0.9680544611650155","source":"3872","target":"3876","data":{}},{"id":"edge-0.5810472017972099","source":"3872","target":"127","data":{}},{"id":"edge-0.8322232618835155","source":"3872","target":"128","data":{}},{"id":"edge-0.53716358923835","source":"3872","target":"3877","data":{}},{"id":"edge-0.9381346314451218","source":"3872","target":"3878","data":{}},{"id":"edge-0.7740521130661004","source":"3872","target":"129","data":{}},{"id":"edge-0.3796924758686211","source":"129","target":"130","data":{}},{"id":"edge-0.00008960399700463917","source":"129","target":"131","data":{}},{"id":"edge-0.10973816976483519","source":"3872","target":"132","data":{}},{"id":"edge-0.023077142414873686","source":"3872","target":"133","data":{}},{"id":"edge-0.7756229487433439","source":"3872","target":"134","data":{}},{"id":"edge-0.7275769082575676","source":"3872","target":"139","data":{}},{"id":"edge-0.4816956555534164","source":"139","target":"140","data":{}},{"id":"edge-0.8610944884762994","source":"139","target":"141","data":{}},{"id":"edge-0.5816258433149382","source":"139","target":"142","data":{}},{"id":"edge-0.20439511387444598","source":"3872","target":"143","data":{}},{"id":"edge-0.5871536987719326","source":"4","target":"3879","data":{}},{"id":"edge-0.9855184994342565","source":"4","target":"3880","data":{}},{"id":"edge-0.8534705268547962","source":"4","target":"3881","data":{}},{"id":"edge-0.03815688935593653","source":"4","target":"3882","data":{}},{"id":"edge-0.90346314988091","source":"4","target":"3884","data":{}},{"id":"edge-0.7408963829055886","source":"4","target":"3885","data":{}},{"id":"edge-0.19536857720549428","source":"4","target":"3886","data":{}},{"id":"edge-0.22004708046839205","source":"4","target":"3887","data":{}},{"id":"edge-0.46869455120516657","source":"4","target":"3888","data":{}},{"id":"edge-0.6222159643092531","source":"4","target":"3889","data":{}},{"id":"edge-0.9335184126661205","source":"4","target":"3890","data":{}},{"id":"edge-0.3111658385500049","source":"4","target":"170","data":{}},{"id":"edge-0.23388583704242172","source":"4","target":"3891","data":{}},{"id":"edge-0.194510015535712","source":"4","target":"1297","data":{}},{"id":"edge-0.8174980708046251","source":"4","target":"164","data":{}},{"id":"edge-0.09518563413167214","source":"4","target":"167","data":{}},{"id":"edge-0.5855043367380435","source":"4","target":"3892","data":{}},{"id":"edge-0.5122861930158227","source":"170","target":"177","data":{}},{"id":"edge-0.8837113329141177","source":"171","target":"174","data":{}},{"id":"edge-0.0975735755154381","source":"171","target":"173","data":{}},{"id":"edge-0.8356046896264937","source":"171","target":"3893","data":{}},{"id":"edge-0.09772191386684681","source":"171","target":"3894","data":{}},{"id":"edge-0.9950524802950005","source":"170","target":"3951","data":{}},{"id":"edge-0.3761916793626279","source":"170","target":"175","data":{}},{"id":"edge-0.34634265599832403","source":"170","target":"3896","data":{}},{"id":"edge-0.31452469918323933","source":"170","target":"3897","data":{}},{"id":"edge-0.6790426550303441","source":"170","target":"220","data":{}},{"id":"edge-0.6689490480663216","source":"171","target":"3898","data":{}},{"id":"edge-0.5282027133176506","source":"171","target":"3899","data":{}},{"id":"edge-0.05454255713064482","source":"171","target":"3900","data":{}},{"id":"edge-0.1635245844121398","source":"171","target":"3901","data":{}},{"id":"edge-0.3731297830513818","source":"171","target":"3902","data":{}},{"id":"edge-0.8375715763304312","source":"170","target":"3903","data":{}},{"id":"edge-0.8879621525980044","source":"170","target":"238","data":{}},{"id":"edge-0.29499715508177204","source":"170","target":"239","data":{}},{"id":"edge-0.3498927286261142","source":"170","target":"246","data":{}},{"id":"edge-0.404005820620305","source":"170","target":"247","data":{}},{"id":"edge-0.7197290094305471","source":"170","target":"265","data":{}},{"id":"edge-0.36071640415186823","source":"170","target":"274","data":{}},{"id":"edge-0.540710619875773","source":"170","target":"280","data":{}},{"id":"edge-0.9191710043038099","source":"170","target":"281","data":{}},{"id":"edge-0.35982659330943845","source":"170","target":"282","data":{}},{"id":"edge-0.34858702795456775","source":"170","target":"176","data":{}},{"id":"edge-0.41334371871472775","source":"170","target":"329","data":{}},{"id":"edge-0.17677606534051415","source":"170","target":"332","data":{}},{"id":"edge-0.25030577393407794","source":"170","target":"330","data":{}},{"id":"edge-0.43290150329935195","source":"163","target":"334","data":{}},{"id":"edge-0.48372487215212234","source":"170","target":"337","data":{}},{"id":"edge-0.9112527352992272","source":"170","target":"331","data":{}},{"id":"edge-0.02457101123717842","source":"170","target":"3904","data":{}},{"id":"edge-0.4875574800488809","source":"170","target":"3905","data":{}},{"id":"edge-0.9514109534599007","source":"170","target":"3906","data":{}},{"id":"edge-0.16975183979166464","source":"170","target":"221","data":{}},{"id":"edge-0.5597212722986491","source":"170","target":"224","data":{}},{"id":"edge-0.49727974619750914","source":"170","target":"225","data":{}},{"id":"edge-0.08789442783036905","source":"170","target":"226","data":{}},{"id":"edge-0.6003969835550114","source":"170","target":"227","data":{}},{"id":"edge-0.05397075549059993","source":"170","target":"228","data":{}},{"id":"edge-0.6132168809874141","source":"170","target":"229","data":{}},{"id":"edge-0.23038371457536","source":"170","target":"230","data":{}},{"id":"edge-0.3370034621405982","source":"170","target":"231","data":{}},{"id":"edge-0.6860506251078069","source":"170","target":"232","data":{}},{"id":"edge-0.08748280234045591","source":"170","target":"233","data":{}},{"id":"edge-0.38911054765166164","source":"170","target":"234","data":{}},{"id":"edge-0.04247575958732197","source":"170","target":"235","data":{}},{"id":"edge-0.08317774349433948","source":"170","target":"236","data":{}},{"id":"edge-0.29964272078722876","source":"170","target":"237","data":{}},{"id":"edge-0.36239302402036855","source":"170","target":"240","data":{}},{"id":"edge-0.43877224630660017","source":"170","target":"241","data":{}},{"id":"edge-0.7380724625635204","source":"170","target":"242","data":{}},{"id":"edge-0.052026242921329624","source":"170","target":"244","data":{}},{"id":"edge-0.4445572742321835","source":"170","target":"245","data":{}},{"id":"edge-0.6139250148488336","source":"170","target":"195","data":{}},{"id":"edge-0.2954921309166769","source":"247","target":"248","data":{}},{"id":"edge-0.8185687097770575","source":"247","target":"249","data":{}},{"id":"edge-0.05741698509208448","source":"247","target":"250","data":{}},{"id":"edge-0.08066866341963785","source":"247","target":"251","data":{}},{"id":"edge-0.9101931988665535","source":"247","target":"252","data":{}},{"id":"edge-0.5756071130715146","source":"170","target":"253","data":{}},{"id":"edge-0.8034567497524943","source":"247","target":"254","data":{}},{"id":"edge-0.6823229716850612","source":"247","target":"255","data":{}},{"id":"edge-0.06093602469321957","source":"247","target":"256","data":{}},{"id":"edge-0.08276542463405279","source":"247","target":"257","data":{}},{"id":"edge-0.1925277914271013","source":"247","target":"258","data":{}},{"id":"edge-0.4477171110413112","source":"247","target":"259","data":{}},{"id":"edge-0.700108521120405","source":"247","target":"260","data":{}},{"id":"edge-0.1292685124499573","source":"247","target":"261","data":{}},{"id":"edge-0.3525352217584772","source":"247","target":"262","data":{}},{"id":"edge-0.49785971844451526","source":"247","target":"263","data":{}},{"id":"edge-0.9032464932956303","source":"170","target":"264","data":{}},{"id":"edge-0.28491423312694186","source":"170","target":"23","data":{}},{"id":"edge-0.4683790021462242","source":"265","target":"266","data":{}},{"id":"edge-0.8045358596748171","source":"265","target":"267","data":{}},{"id":"edge-0.1884122538216706","source":"265","target":"268","data":{}},{"id":"edge-0.02277660001908477","source":"265","target":"269","data":{}},{"id":"edge-0.36931317084999726","source":"265","target":"270","data":{}},{"id":"edge-0.7236275534968069","source":"265","target":"271","data":{}},{"id":"edge-0.9012001757538775","source":"265","target":"272","data":{}},{"id":"edge-0.21954100193637016","source":"265","target":"273","data":{}},{"id":"edge-0.49265153733880673","source":"170","target":"291","data":{}},{"id":"edge-0.4171065301250312","source":"170","target":"297","data":{}},{"id":"edge-0.5729954868853069","source":"32","target":"298","data":{}},{"id":"edge-0.9186796039689495","source":"4","target":"309","data":{}},{"id":"edge-0.44497394953338976","source":"35","target":"310","data":{}},{"id":"edge-0.35355839145954904","source":"4","target":"310","data":{}},{"id":"edge-0.007407446651060745","source":"4","target":"311","data":{}},{"id":"edge-0.7422271843043806","source":"4","target":"312","data":{}},{"id":"edge-0.5865211681265383","source":"4","target":"313","data":{}},{"id":"edge-0.9410677965736063","source":"4","target":"314","data":{}},{"id":"edge-0.09731823119814642","source":"4","target":"315","data":{}},{"id":"edge-0.5827514516118959","source":"4","target":"316","data":{}},{"id":"edge-0.2246865873524062","source":"4","target":"319","data":{}},{"id":"edge-0.5147907954583357","source":"4","target":"320","data":{}},{"id":"edge-0.9300420677086165","source":"4","target":"321","data":{}},{"id":"edge-0.4170601401022662","source":"4","target":"322","data":{}},{"id":"edge-0.2591229409570939","source":"4","target":"323","data":{}},{"id":"edge-0.04051269721557271","source":"4","target":"324","data":{}},{"id":"edge-0.5189627170629074","source":"4","target":"325","data":{}},{"id":"edge-0.07273395178209441","source":"4","target":"327","data":{}},{"id":"edge-0.2990381544396157","source":"170","target":"275","data":{}},{"id":"edge-0.56826815726771","source":"8","target":"275","data":{}},{"id":"edge-0.47916467830715503","source":"275","target":"276","data":{}},{"id":"edge-0.8846678778816197","source":"275","target":"277","data":{}},{"id":"edge-0.26283155177168793","source":"275","target":"278","data":{}},{"id":"edge-0.6872655221987372","source":"275","target":"279","data":{}},{"id":"edge-0.29876597261287396","source":"4172","target":"32","data":{}},{"id":"edge-0.9561835635746307","source":"32","target":"300","data":{}},{"id":"edge-0.47484728751502225","source":"32","target":"3907","data":{}},{"id":"edge-0.2601517214769624","source":"32","target":"3908","data":{}},{"id":"edge-0.8842195092201037","source":"32","target":"3909","data":{}},{"id":"edge-0.46939752666963663","source":"3907","target":"3910","data":{}},{"id":"edge-0.7585891896250243","source":"3907","target":"3501","data":{}},{"id":"edge-0.3199912216262384","source":"3910","target":"3911","data":{}},{"id":"edge-0.09561843221704813","source":"3910","target":"3912","data":{}},{"id":"edge-0.5750677411688636","source":"3910","target":"3913","data":{}},{"id":"edge-0.7213720916854565","source":"3907","target":"3508","data":{}},{"id":"edge-0.36120723519667153","source":"3508","target":"3914","data":{}},{"id":"edge-0.797617335285512","source":"3508","target":"3915","data":{}},{"id":"edge-0.5188577271094461","source":"3508","target":"3916","data":{}},{"id":"edge-0.0017336944924914999","source":"3908","target":"299","data":{}},{"id":"edge-0.7058739886090886","source":"3908","target":"3917","data":{}},{"id":"edge-0.6866482622240435","source":"3917","target":"3918","data":{}},{"id":"edge-0.37913638094891544","source":"3917","target":"3919","data":{}},{"id":"edge-0.6284568822699255","source":"3908","target":"303","data":{}},{"id":"edge-0.5743996290950855","source":"3908","target":"301","data":{}},{"id":"edge-0.9155796587185854","source":"3908","target":"304","data":{}},{"id":"edge-0.29028704167430397","source":"3908","target":"3500","data":{}},{"id":"edge-0.44859955594454326","source":"3909","target":"3506","data":{}},{"id":"edge-0.11176110995319144","source":"3909","target":"3507","data":{}},{"id":"edge-0.19541947371225232","source":"3909","target":"305","data":{}},{"id":"edge-0.24557591242300392","source":"3909","target":"3921","data":{}},{"id":"edge-0.897700537502993","source":"3909","target":"3920","data":{}},{"id":"edge-0.9914118232498199","source":"3909","target":"3509","data":{}},{"id":"edge-0.7906548764636767","source":"3942","target":"3935","data":{}},{"id":"edge-0.6439252586517565","source":"3942","target":"3936","data":{}},{"id":"edge-0.9428251534351999","source":"3942","target":"3937","data":{}},{"id":"edge-0.8873026029375348","source":"3942","target":"3938","data":{}},{"id":"edge-0.8036146013821004","source":"3942","target":"3939","data":{}},{"id":"edge-0.47342495232734194","source":"3942","target":"3940","data":{}},{"id":"edge-0.5174145926700728","source":"3941","target":"180","data":{}},{"id":"edge-0.7913996241377115","source":"3941","target":"182","data":{}},{"id":"edge-0.5674679128748532","source":"3941","target":"179","data":{}},{"id":"edge-0.3468176140843162","source":"3941","target":"178","data":{}},{"id":"edge-0.5599984260351496","source":"3942","target":"190","data":{}},{"id":"edge-0.18484663627069553","source":"3942","target":"191","data":{}},{"id":"edge-0.029855567807034467","source":"3942","target":"192","data":{}},{"id":"edge-0.2779825254680055","source":"3942","target":"193","data":{}},{"id":"edge-0.5573423868638396","source":"3942","target":"194","data":{}},{"id":"edge-0.6862869738629727","source":"3942","target":"195","data":{}},{"id":"edge-0.8897758437473473","source":"3942","target":"196","data":{}},{"id":"edge-0.3288091534416926","source":"3942","target":"197","data":{}},{"id":"edge-0.21539348398951086","source":"3942","target":"198","data":{}},{"id":"edge-0.29028250709067227","source":"3942","target":"199","data":{}},{"id":"edge-0.5695997386838212","source":"3942","target":"200","data":{}},{"id":"edge-0.03556738165958784","source":"3942","target":"201","data":{}},{"id":"edge-0.012520385905170572","source":"177","target":"183","data":{}},{"id":"edge-0.5607920315786468","source":"3941","target":"184","data":{}},{"id":"edge-0.7913340656959971","source":"3941","target":"185","data":{}},{"id":"edge-0.9072813602533245","source":"3941","target":"186","data":{}},{"id":"edge-0.6583357501657017","source":"3941","target":"187","data":{}},{"id":"edge-0.6098558738968174","source":"3941","target":"188","data":{}},{"id":"edge-0.2912333598822856","source":"3941","target":"189","data":{}},{"id":"edge-0.6627699729195262","source":"3941","target":"181","data":{}},{"id":"edge-0.6791755328796194","source":"177","target":"3941","data":{}},{"id":"edge-0.7297250920573293","source":"177","target":"3942","data":{}},{"id":"edge-0.7585444251286468","source":"3942","target":"3943","data":{}},{"id":"edge-0.7523483896974303","source":"3944","target":"3945","data":{}},{"id":"edge-0.6119329473325659","source":"3944","target":"3946","data":{}},{"id":"edge-0.47431363413298455","source":"3944","target":"3947","data":{}},{"id":"edge-0.19294319520115355","source":"3944","target":"3948","data":{}},{"id":"edge-0.36794925771016374","source":"3944","target":"3949","data":{}},{"id":"edge-0.25894214823968564","source":"3944","target":"3950","data":{}},{"id":"edge-0.015239253460680224","source":"3942","target":"202","data":{}},{"id":"edge-0.9303409678509802","source":"177","target":"203","data":{}},{"id":"edge-0.45691640358635177","source":"3951","target":"208","data":{}},{"id":"edge-0.06998879239868949","source":"3951","target":"205","data":{}},{"id":"edge-0.7687375107079355","source":"3951","target":"206","data":{}},{"id":"edge-0.38411029775367633","source":"3951","target":"210","data":{}},{"id":"edge-0.6507676839939014","source":"3951","target":"211","data":{}},{"id":"edge-0.19467745735751318","source":"3951","target":"212","data":{}},{"id":"edge-0.34581021720173477","source":"3951","target":"213","data":{}},{"id":"edge-0.03492717520871502","source":"3951","target":"214","data":{}},{"id":"edge-0.5764879900441982","source":"3951","target":"215","data":{}},{"id":"edge-0.6496800469274764","source":"3951","target":"216","data":{}},{"id":"edge-0.13416553643298168","source":"3951","target":"218","data":{}},{"id":"edge-0.5714876755455722","source":"170","target":"317","data":{}},{"id":"edge-0.9105101046202477","source":"170","target":"336","data":{}},{"id":"edge-0.7189584688014785","source":"170","target":"326","data":{}},{"id":"edge-0.9569550332993291","source":"170","target":"335","data":{}},{"id":"edge-0.339303744102059","source":"3903","target":"285","data":{}},{"id":"edge-0.33184265663373624","source":"170","target":"286","data":{}},{"id":"edge-0.6841164441093461","source":"3903","target":"287","data":{}},{"id":"edge-0.7817131522165615","source":"170","target":"288","data":{}},{"id":"edge-0.9469679097243622","source":"3903","target":"289","data":{}},{"id":"edge-0.5611834180809661","source":"3903","target":"290","data":{}},{"id":"edge-0.029586491333350562","source":"3848","target":"324","data":{}},{"id":"edge-0.1335709886820724","source":"471","target":"485","data":{}},{"id":"edge-0.6835102491783858","source":"2785","target":"485","data":{}},{"id":"edge-0.20164498655587293","source":"491","target":"492","data":{}},{"id":"edge-0.6720878115888431","source":"491","target":"493","data":{}},{"id":"edge-0.8808585996399501","source":"491","target":"494","data":{}},{"id":"edge-0.9954249503317489","source":"6","target":"495","data":{}},{"id":"edge-0.2103164393858643","source":"6","target":"497","data":{}},{"id":"edge-0.09090922599501283","source":"6","target":"498","data":{}},{"id":"edge-0.7686095118135186","source":"6","target":"499","data":{}},{"id":"edge-0.5965646855736044","source":"6","target":"500","data":{}},{"id":"edge-0.5367786684393885","source":"6","target":"501","data":{}},{"id":"edge-0.8091639126495258","source":"6","target":"502","data":{}},{"id":"edge-0.2460581626265248","source":"6","target":"504","data":{}},{"id":"edge-0.7308372607233851","source":"6","target":"505","data":{}},{"id":"edge-0.7987791642536035","source":"6","target":"471","data":{}},{"id":"edge-0.4287682895793927","source":"1611","target":"471","data":{}},{"id":"edge-0.16834885378137754","source":"471","target":"472","data":{}},{"id":"edge-0.49596216910214386","source":"471","target":"474","data":{}},{"id":"edge-0.6068185338369152","source":"1810","target":"1811","data":{}},{"id":"edge-0.6700868970469251","source":"3848","target":"3","data":{}},{"id":"edge-0.012792015253432432","source":"3","target":"145","data":{}},{"id":"edge-0.4132597153214952","source":"3","target":"146","data":{}},{"id":"edge-0.16387704177549423","source":"3","target":"147","data":{}},{"id":"edge-0.5360916596943532","source":"3","target":"148","data":{}},{"id":"edge-0.7092241147792284","source":"3","target":"150","data":{}},{"id":"edge-0.8382304805065821","source":"3","target":"151","data":{}},{"id":"edge-0.366154223050289","source":"275","target":"151","data":{}},{"id":"edge-0.3807774681207119","source":"3","target":"153","data":{}},{"id":"edge-0.45138100501801603","source":"3","target":"154","data":{}},{"id":"edge-0.7468001459953331","source":"3","target":"155","data":{}},{"id":"edge-0.8661676724999807","source":"3","target":"156","data":{}},{"id":"edge-0.3671808538142647","source":"3","target":"157","data":{}},{"id":"edge-0.11860854836387569","source":"3","target":"158","data":{}},{"id":"edge-0.04295412142091948","source":"3","target":"159","data":{}},{"id":"edge-0.30576316774453915","source":"3","target":"160","data":{}},{"id":"edge-0.2102932266071813","source":"30","target":"3952","data":{}},{"id":"edge-0.2873586649144779","source":"3952","target":"3953","data":{}},{"id":"edge-0.19559923482191377","source":"3952","target":"3954","data":{}},{"id":"edge-0.03880708777776798","source":"3952","target":"3955","data":{}},{"id":"edge-0.698781673386851","source":"3952","target":"3956","data":{}},{"id":"edge-0.03189214465658963","source":"30","target":"3957","data":{}},{"id":"edge-0.9295393634808542","source":"30","target":"3958","data":{}},{"id":"edge-0.16370651694255756","source":"30","target":"3959","data":{}},{"id":"edge-0.11452899561713892","source":"30","target":"3960","data":{}},{"id":"edge-0.46246436371692523","source":"30","target":"3961","data":{}},{"id":"edge-0.032763288979910765","source":"30","target":"3962","data":{}},{"id":"edge-0.014837204382940561","source":"30","target":"3963","data":{}},{"id":"edge-0.7519079042095291","source":"30","target":"3964","data":{}},{"id":"edge-0.09045519216080566","source":"30","target":"3965","data":{}},{"id":"edge-0.46077509346682133","source":"30","target":"3967","data":{}},{"id":"edge-0.42780900716317927","source":"30","target":"3968","data":{}},{"id":"edge-0.1438831373310805","source":"30","target":"3970","data":{}},{"id":"edge-0.19841664824736105","source":"30","target":"3971","data":{}},{"id":"edge-0.06438732445044693","source":"30","target":"3972","data":{}},{"id":"edge-0.8488910179005722","source":"30","target":"3973","data":{}},{"id":"edge-0.16603873840856376","source":"30","target":"3974","data":{}},{"id":"edge-0.08844457820916385","source":"30","target":"3976","data":{}},{"id":"edge-0.9445571666213901","source":"30","target":"3977","data":{}},{"id":"edge-0.20137856384060937","source":"30","target":"3978","data":{}},{"id":"edge-0.9107555353054073","source":"3992","target":"3979","data":{}},{"id":"edge-0.40650113799135523","source":"3993","target":"3980","data":{}},{"id":"edge-0.06275314891516759","source":"3994","target":"3981","data":{}},{"id":"edge-0.9499881915739032","source":"3996","target":"3983","data":{}},{"id":"edge-0.1575808280426545","source":"3997","target":"3984","data":{}},{"id":"edge-0.5751352647078509","source":"3998","target":"3985","data":{}},{"id":"edge-0.8101734463361685","source":"4000","target":"3987","data":{}},{"id":"edge-0.24807422042512872","source":"4001","target":"3988","data":{}},{"id":"edge-0.4405836463777413","source":"4002","target":"3989","data":{}},{"id":"edge-0.23910849657440703","source":"4003","target":"3990","data":{}},{"id":"edge-0.9378306557949572","source":"4004","target":"3991","data":{}},{"id":"edge-0.7637273141305709","source":"30","target":"3993","data":{}},{"id":"edge-0.3252138350347191","source":"30","target":"3994","data":{}},{"id":"edge-0.23361869670898705","source":"30","target":"3996","data":{}},{"id":"edge-0.48855985217448916","source":"30","target":"3997","data":{}},{"id":"edge-0.9181342934440928","source":"30","target":"3998","data":{}},{"id":"edge-0.7112218290757397","source":"30","target":"3999","data":{}},{"id":"edge-0.3047949164745176","source":"30","target":"4000","data":{}},{"id":"edge-0.25344893008846037","source":"30","target":"4001","data":{}},{"id":"edge-0.5297552987376628","source":"30","target":"4002","data":{}},{"id":"edge-0.02182790772880927","source":"30","target":"4003","data":{}},{"id":"edge-0.5949983719494414","source":"30","target":"176","data":{}},{"id":"edge-0.33032700854405217","source":"30","target":"4004","data":{}},{"id":"edge-0.019120190359830147","source":"30","target":"4005","data":{}},{"id":"edge-0.7906667711727879","source":"30","target":"4006","data":{}},{"id":"edge-0.668402123061562","source":"30","target":"4007","data":{}},{"id":"edge-0.3653490827181334","source":"30","target":"4008","data":{}},{"id":"edge-0.30693146215451317","source":"30","target":"4009","data":{}},{"id":"edge-0.4112721059311921","source":"30","target":"4010","data":{}},{"id":"edge-0.07727720778038427","source":"30","target":"3365","data":{}},{"id":"edge-0.7060467965167607","source":"30","target":"3440","data":{}},{"id":"edge-0.35554063154982596","source":"30","target":"4011","data":{}},{"id":"edge-0.47062296781409785","source":"30","target":"4012","data":{}},{"id":"edge-0.1620098399132628","source":"30","target":"4013","data":{}},{"id":"edge-0.8667913139322867","source":"30","target":"4014","data":{}},{"id":"edge-0.6145334736449515","source":"30","target":"4015","data":{}},{"id":"edge-0.9475581283460515","source":"30","target":"4016","data":{}},{"id":"edge-0.15761521812320378","source":"30","target":"4017","data":{}},{"id":"edge-0.5202650278700405","source":"30","target":"4018","data":{}},{"id":"edge-0.34819125583856647","source":"30","target":"4019","data":{}},{"id":"edge-0.18641828916301972","source":"30","target":"4020","data":{}},{"id":"edge-0.7284358501800257","source":"30","target":"4021","data":{}},{"id":"edge-0.5746520789688441","source":"30","target":"4022","data":{}},{"id":"edge-0.509191712009541","source":"30","target":"4023","data":{}},{"id":"edge-0.7118998353709896","source":"30","target":"4024","data":{}},{"id":"edge-0.7061616781328084","source":"4024","target":"4025","data":{}},{"id":"edge-0.6419565261736602","source":"4024","target":"4026","data":{}},{"id":"edge-0.23907568195926698","source":"4024","target":"4027","data":{}},{"id":"edge-0.25385282636739315","source":"4024","target":"4028","data":{}},{"id":"edge-0.6961041465323241","source":"4024","target":"4029","data":{}},{"id":"edge-0.8829470951008407","source":"4024","target":"4030","data":{}},{"id":"edge-0.20144479147524907","source":"4024","target":"4031","data":{}},{"id":"edge-0.571628966128537","source":"4024","target":"4032","data":{}},{"id":"edge-0.18316440679640866","source":"4024","target":"4033","data":{}},{"id":"edge-0.5526795619110505","source":"4024","target":"4034","data":{}},{"id":"edge-0.2540473801033911","source":"4034","target":"4035","data":{}},{"id":"edge-0.09203742257331426","source":"4034","target":"4036","data":{}},{"id":"edge-0.17739933539426822","source":"4034","target":"4037","data":{}},{"id":"edge-0.2764008623341905","source":"4024","target":"4038","data":{}},{"id":"edge-0.017368487945141897","source":"4024","target":"4039","data":{}},{"id":"edge-0.8886857783377182","source":"4039","target":"4040","data":{}},{"id":"edge-0.25918801392433766","source":"4039","target":"4041","data":{}},{"id":"edge-0.530390161142767","source":"30","target":"4042","data":{}},{"id":"edge-0.5618348467570049","source":"4042","target":"4043","data":{}},{"id":"edge-0.30155995726956397","source":"4042","target":"4044","data":{}},{"id":"edge-0.7053483084140848","source":"4042","target":"4045","data":{}},{"id":"edge-0.32037588006443074","source":"30","target":"4046","data":{}},{"id":"edge-0.4554643118984796","source":"4046","target":"4047","data":{}},{"id":"edge-0.3570529809124554","source":"30","target":"4048","data":{}},{"id":"edge-0.844188447987462","source":"30","target":"4049","data":{}},{"id":"edge-0.5287323017258285","source":"30","target":"4050","data":{}},{"id":"edge-0.47358252409890267","source":"30","target":"4051","data":{}},{"id":"edge-0.4489983974895355","source":"30","target":"4052","data":{}},{"id":"edge-0.49297719728018485","source":"30","target":"4053","data":{}},{"id":"edge-0.3181672532539408","source":"30","target":"4054","data":{}},{"id":"edge-0.4869034680978874","source":"4054","target":"4055","data":{}},{"id":"edge-0.20884967997317605","source":"4054","target":"4056","data":{}},{"id":"edge-0.1864953518026249","source":"4054","target":"4057","data":{}},{"id":"edge-0.1980415771173778","source":"30","target":"4058","data":{}},{"id":"edge-0.8235076441735141","source":"30","target":"4059","data":{}},{"id":"edge-0.22977231195833148","source":"30","target":"4060","data":{}},{"id":"edge-0.014156689686501078","source":"30","target":"4061","data":{}},{"id":"edge-0.30985360877652224","source":"4061","target":"4062","data":{}},{"id":"edge-0.770106260622671","source":"4061","target":"4063","data":{}},{"id":"edge-0.594890364558117","source":"4061","target":"4064","data":{}},{"id":"edge-0.8071189615591585","source":"4061","target":"4065","data":{}},{"id":"edge-0.6050196644926","source":"30","target":"3389","data":{}},{"id":"edge-0.27858174740095265","source":"30","target":"3391","data":{}},{"id":"edge-0.14448141740176723","source":"30","target":"3392","data":{}},{"id":"edge-0.7425553638999225","source":"30","target":"3393","data":{}},{"id":"edge-0.6938208544067042","source":"30","target":"3394","data":{}},{"id":"edge-0.811756461992271","source":"30","target":"3395","data":{}},{"id":"edge-0.5248706303767621","source":"30","target":"3396","data":{}},{"id":"edge-0.9302001780362432","source":"30","target":"3397","data":{}},{"id":"edge-0.5561585305770325","source":"30","target":"3398","data":{}},{"id":"edge-0.03266244014479236","source":"30","target":"3399","data":{}},{"id":"edge-0.06873090176109398","source":"30","target":"3400","data":{}},{"id":"edge-0.5897671651296008","source":"30","target":"3402","data":{}},{"id":"edge-0.8087046483517866","source":"30","target":"3403","data":{}},{"id":"edge-0.37444973278322835","source":"30","target":"3404","data":{}},{"id":"edge-0.4926527658290156","source":"30","target":"3405","data":{}},{"id":"edge-0.7577054352685118","source":"30","target":"3406","data":{}},{"id":"edge-0.8556532137641786","source":"30","target":"3407","data":{}},{"id":"edge-0.04114306740798934","source":"30","target":"4066","data":{}},{"id":"edge-0.9285593313146898","source":"30","target":"4067","data":{}},{"id":"edge-0.5988203875939675","source":"30","target":"4068","data":{}},{"id":"edge-0.8760314680293528","source":"30","target":"4069","data":{}},{"id":"edge-0.4214522926697788","source":"30","target":"4070","data":{}},{"id":"edge-0.7698241838745783","source":"30","target":"4071","data":{}},{"id":"edge-0.7206679687562587","source":"30","target":"4078","data":{}},{"id":"edge-0.6851117396977708","source":"30","target":"4079","data":{}},{"id":"edge-0.14166595943057048","source":"30","target":"4080","data":{}},{"id":"edge-0.772635019814393","source":"30","target":"4081","data":{}},{"id":"edge-0.5941292613715274","source":"30","target":"4082","data":{}},{"id":"edge-0.5945660797422587","source":"30","target":"4083","data":{}},{"id":"edge-0.9428673914851562","source":"4083","target":"4084","data":{}},{"id":"edge-0.774199783848224","source":"4083","target":"4085","data":{}},{"id":"edge-0.8671736811595905","source":"4083","target":"4086","data":{}},{"id":"edge-0.8971480123684401","source":"4083","target":"4087","data":{}},{"id":"edge-0.0031565691363630854","source":"4083","target":"4088","data":{}},{"id":"edge-0.12647626037766235","source":"4083","target":"4089","data":{}},{"id":"edge-0.03288688174001164","source":"4083","target":"4090","data":{}},{"id":"edge-0.5582568230493519","source":"4083","target":"4091","data":{}},{"id":"edge-0.4351385728947694","source":"4083","target":"4092","data":{}},{"id":"edge-0.9501040068983171","source":"4083","target":"4093","data":{}},{"id":"edge-0.4521560592675671","source":"4083","target":"4094","data":{}},{"id":"edge-0.9102321164660003","source":"4083","target":"4095","data":{}},{"id":"edge-0.09444874660585834","source":"4083","target":"4096","data":{}},{"id":"edge-0.49861342392326224","source":"4083","target":"4097","data":{}},{"id":"edge-0.47764815288246587","source":"4083","target":"4098","data":{}},{"id":"edge-0.4412464448678515","source":"4083","target":"4099","data":{}},{"id":"edge-0.34521941227087316","source":"4083","target":"4101","data":{}},{"id":"edge-0.5543285186825482","source":"4083","target":"4102","data":{}},{"id":"edge-0.938424843226608","source":"4083","target":"4104","data":{}},{"id":"edge-0.6324592662204112","source":"4083","target":"4105","data":{}},{"id":"edge-0.9342915709018362","source":"4083","target":"4106","data":{}},{"id":"edge-0.7293854898239576","source":"4083","target":"4107","data":{}},{"id":"edge-0.3207434450899773","source":"4083","target":"4108","data":{}},{"id":"edge-0.8931244667738107","source":"4083","target":"4109","data":{}},{"id":"edge-0.1892302664033314","source":"4083","target":"4110","data":{}},{"id":"edge-0.7624317519302746","source":"4083","target":"4111","data":{}},{"id":"edge-0.19179794298188724","source":"4083","target":"4112","data":{}},{"id":"edge-0.7171213951117763","source":"4083","target":"4113","data":{}},{"id":"edge-0.9549711285877756","source":"4083","target":"4114","data":{}},{"id":"edge-0.6714794524223922","source":"4083","target":"4115","data":{}},{"id":"edge-0.4847858117503603","source":"4083","target":"4116","data":{}},{"id":"edge-0.577635916014337","source":"4083","target":"4117","data":{}},{"id":"edge-0.3389873174068503","source":"4083","target":"4118","data":{}},{"id":"edge-0.7339017982461911","source":"4083","target":"4119","data":{}},{"id":"edge-0.1168291498030869","source":"4083","target":"4120","data":{}},{"id":"edge-0.8174266178592897","source":"4083","target":"4121","data":{}},{"id":"edge-0.3002757432202856","source":"4083","target":"4122","data":{}},{"id":"edge-0.8367966765727148","source":"4083","target":"4123","data":{}},{"id":"edge-0.8369410394936401","source":"4083","target":"4124","data":{}},{"id":"edge-0.33680979453607063","source":"4083","target":"4125","data":{}},{"id":"edge-0.8421013764661516","source":"4083","target":"4126","data":{}},{"id":"edge-0.7858831028083588","source":"4083","target":"4127","data":{}},{"id":"edge-0.6605815550565681","source":"4083","target":"4128","data":{}},{"id":"edge-0.5742187438512627","source":"4083","target":"4129","data":{}},{"id":"edge-0.9356328045862266","source":"4083","target":"4130","data":{}},{"id":"edge-0.11368994432388058","source":"4083","target":"4131","data":{}},{"id":"edge-0.033496257871134194","source":"4083","target":"4132","data":{}},{"id":"edge-0.11240959600962608","source":"4083","target":"4133","data":{}},{"id":"edge-0.5075876217535784","source":"4083","target":"4134","data":{}},{"id":"edge-0.6459034944091679","source":"4083","target":"4135","data":{}},{"id":"edge-0.0399410941484708","source":"30","target":"3220","data":{}},{"id":"edge-0.5517816702517695","source":"30","target":"4136","data":{}},{"id":"edge-0.8209497133821426","source":"30","target":"4138","data":{}},{"id":"edge-0.4519790619899253","source":"30","target":"4139","data":{}},{"id":"edge-0.9401396891072018","source":"30","target":"4140","data":{}},{"id":"edge-0.42587696673237874","source":"30","target":"4141","data":{}},{"id":"edge-0.11987728025032629","source":"4141","target":"4142","data":{}},{"id":"edge-0.2784517058146847","source":"4141","target":"4143","data":{}},{"id":"edge-0.9956675353985729","source":"4141","target":"4144","data":{}},{"id":"edge-0.34922991730115904","source":"4141","target":"4145","data":{}},{"id":"edge-0.49458740331127804","source":"4141","target":"4146","data":{}},{"id":"edge-0.7518452291889755","source":"4141","target":"4147","data":{}},{"id":"edge-0.3609063487996236","source":"4141","target":"4148","data":{}},{"id":"edge-0.09334952196736168","source":"4141","target":"4149","data":{}},{"id":"edge-0.8311780240795354","source":"4141","target":"4150","data":{}},{"id":"edge-0.727619696086029","source":"4141","target":"4151","data":{}},{"id":"edge-0.6582699468793198","source":"4141","target":"4152","data":{}},{"id":"edge-0.29636911727715276","source":"4141","target":"4153","data":{}},{"id":"edge-0.1775061852163411","source":"4141","target":"4154","data":{}},{"id":"edge-0.42769086911498544","source":"4141","target":"4155","data":{}},{"id":"edge-0.8124242499307324","source":"4141","target":"4156","data":{}},{"id":"edge-0.4077265015343834","source":"4141","target":"4157","data":{}},{"id":"edge-0.23731131635570368","source":"4141","target":"4158","data":{}},{"id":"edge-0.609176613074804","source":"4141","target":"4159","data":{}},{"id":"edge-0.6256765160334588","source":"4141","target":"4160","data":{}},{"id":"edge-0.7042660189698842","source":"4141","target":"4161","data":{}},{"id":"edge-0.1397651692991344","source":"4141","target":"4162","data":{}},{"id":"edge-0.48363112484018256","source":"4141","target":"4163","data":{}},{"id":"edge-0.8657084133440422","source":"4141","target":"4164","data":{}},{"id":"edge-0.1824739616838602","source":"4","target":"307","data":{}},{"id":"edge-0.4215929027495142","source":"15","target":"307","data":{}},{"id":"edge-0.9270362444385949","source":"170","target":"308","data":{}},{"id":"edge-0.9320877083277126","source":"5","target":"338","data":{}},{"id":"edge-0.37865428772066845","source":"338","target":"339","data":{}},{"id":"edge-0.6193528254509535","source":"338","target":"340","data":{}},{"id":"edge-0.4356152498631958","source":"338","target":"341","data":{}},{"id":"edge-0.7942016396430625","source":"338","target":"342","data":{}},{"id":"edge-0.5109906373630597","source":"338","target":"343","data":{}},{"id":"edge-0.9985478772440906","source":"338","target":"344","data":{}},{"id":"edge-0.4907498363489511","source":"338","target":"345","data":{}},{"id":"edge-0.46339654392883456","source":"338","target":"346","data":{}},{"id":"edge-0.9627993095107963","source":"338","target":"347","data":{}},{"id":"edge-0.9057525876051111","source":"5","target":"348","data":{}},{"id":"edge-0.8912676524186067","source":"348","target":"349","data":{}},{"id":"edge-0.15112222980412082","source":"348","target":"350","data":{}},{"id":"edge-0.5311500157640436","source":"348","target":"351","data":{}},{"id":"edge-0.5696311222955626","source":"5","target":"352","data":{}},{"id":"edge-0.04046679868436254","source":"352","target":"353","data":{}},{"id":"edge-0.6776558416709686","source":"352","target":"354","data":{}},{"id":"edge-0.3669519400392438","source":"352","target":"355","data":{}},{"id":"edge-0.3583454690936676","source":"352","target":"356","data":{}},{"id":"edge-0.6159951221158098","source":"352","target":"357","data":{}},{"id":"edge-0.7721623199200938","source":"352","target":"358","data":{}},{"id":"edge-0.17893737080760186","source":"352","target":"359","data":{}},{"id":"edge-0.3840940642134125","source":"352","target":"360","data":{}},{"id":"edge-0.6402439980193715","source":"352","target":"361","data":{}},{"id":"edge-0.4947366412153915","source":"352","target":"362","data":{}},{"id":"edge-0.3424586704554218","source":"352","target":"363","data":{}},{"id":"edge-0.5204885807815574","source":"352","target":"364","data":{}},{"id":"edge-0.020894389506555422","source":"352","target":"365","data":{}},{"id":"edge-0.5119640843326803","source":"352","target":"366","data":{}},{"id":"edge-0.07745797448532343","source":"352","target":"367","data":{}},{"id":"edge-0.3765522170027442","source":"5","target":"368","data":{}},{"id":"edge-0.6809594472334957","source":"5","target":"369","data":{}},{"id":"edge-0.5281530958665142","source":"5","target":"370","data":{}},{"id":"edge-0.6130270611194164","source":"5","target":"371","data":{}},{"id":"edge-0.5000407229399215","source":"5","target":"372","data":{}},{"id":"edge-0.045655023011918594","source":"5","target":"373","data":{}},{"id":"edge-0.9173063493334723","source":"5","target":"374","data":{}},{"id":"edge-0.2331378286653618","source":"5","target":"375","data":{}},{"id":"edge-0.9685905159269164","source":"5","target":"376","data":{}},{"id":"edge-0.8062678585930876","source":"5","target":"377","data":{}},{"id":"edge-0.052419091097056336","source":"5","target":"378","data":{}},{"id":"edge-0.8550788284825888","source":"5","target":"379","data":{}},{"id":"edge-0.8990540735633756","source":"5","target":"380","data":{}},{"id":"edge-0.46137205270223514","source":"5","target":"381","data":{}},{"id":"edge-0.7508383169818722","source":"5","target":"382","data":{}},{"id":"edge-0.28763008095994924","source":"5","target":"383","data":{}},{"id":"edge-0.060709777342754956","source":"5","target":"384","data":{}},{"id":"edge-0.7531396096268956","source":"5","target":"385","data":{}},{"id":"edge-0.9023102063118897","source":"5","target":"386","data":{}},{"id":"edge-0.16277421247569568","source":"5","target":"387","data":{}},{"id":"edge-0.333562326709282","source":"5","target":"388","data":{}},{"id":"edge-0.7015574943920821","source":"5","target":"389","data":{}},{"id":"edge-0.9198631111090085","source":"5","target":"390","data":{}},{"id":"edge-0.9657975062069579","source":"5","target":"391","data":{}},{"id":"edge-0.09600293860614295","source":"5","target":"392","data":{}},{"id":"edge-0.994758852302458","source":"5","target":"393","data":{}},{"id":"edge-0.9341330570605997","source":"5","target":"394","data":{}},{"id":"edge-0.9179965232215552","source":"5","target":"395","data":{}},{"id":"edge-0.4740189898216527","source":"5","target":"396","data":{}},{"id":"edge-0.8688497898186158","source":"5","target":"397","data":{}},{"id":"edge-0.49599669584914685","source":"5","target":"398","data":{}},{"id":"edge-0.5694236985014178","source":"5","target":"399","data":{}},{"id":"edge-0.019515743368058613","source":"5","target":"400","data":{}},{"id":"edge-0.8463178042206443","source":"10","target":"388","data":{}},{"id":"edge-0.776681316322164","source":"5","target":"401","data":{}},{"id":"edge-0.9726921205847845","source":"5","target":"402","data":{}},{"id":"edge-0.9199459349461243","source":"5","target":"403","data":{}},{"id":"edge-0.9699934622380992","source":"5","target":"404","data":{}},{"id":"edge-0.8201732347483255","source":"5","target":"405","data":{}},{"id":"edge-0.1907199739738452","source":"5","target":"406","data":{}},{"id":"edge-0.2939803201732223","source":"5","target":"407","data":{}},{"id":"edge-0.3950426721438909","source":"5","target":"408","data":{}},{"id":"edge-0.07299700230253037","source":"408","target":"409","data":{}},{"id":"edge-0.8755464068046781","source":"408","target":"410","data":{}},{"id":"edge-0.25251790236753835","source":"408","target":"411","data":{}},{"id":"edge-0.39609524881396085","source":"408","target":"412","data":{}},{"id":"edge-0.3396013319496869","source":"408","target":"413","data":{}},{"id":"edge-0.4451678108325594","source":"408","target":"414","data":{}},{"id":"edge-0.25420622810840987","source":"408","target":"415","data":{}},{"id":"edge-0.42475645074207025","source":"408","target":"416","data":{}},{"id":"edge-0.7964113831093687","source":"408","target":"417","data":{}},{"id":"edge-0.9685444015478757","source":"408","target":"418","data":{}},{"id":"edge-0.32639937830013466","source":"408","target":"419","data":{}},{"id":"edge-0.4655270368402564","source":"408","target":"420","data":{}},{"id":"edge-0.3427886308104733","source":"408","target":"421","data":{}},{"id":"edge-0.24808539423735776","source":"408","target":"422","data":{}},{"id":"edge-0.7985084821289214","source":"5","target":"423","data":{}},{"id":"edge-0.014565579744863388","source":"5","target":"424","data":{}},{"id":"edge-0.10502789411635338","source":"5","target":"425","data":{}},{"id":"edge-0.097925067079081","source":"5","target":"426","data":{}},{"id":"edge-0.44581382806494707","source":"5","target":"427","data":{}},{"id":"edge-0.7391351265951356","source":"5","target":"428","data":{}},{"id":"edge-0.7143415779726048","source":"5","target":"429","data":{}},{"id":"edge-0.5203856895079297","source":"5","target":"430","data":{}},{"id":"edge-0.4893917211451724","source":"5","target":"431","data":{}},{"id":"edge-0.8697182121006783","source":"5","target":"432","data":{}},{"id":"edge-0.0837189809023362","source":"5","target":"433","data":{}},{"id":"edge-0.8552101930329945","source":"5","target":"4171","data":{}},{"id":"edge-0.12463388611276893","source":"5","target":"434","data":{}},{"id":"edge-0.48219618129650477","source":"5","target":"435","data":{}},{"id":"edge-0.037581017720969445","source":"5","target":"436","data":{}},{"id":"edge-0.9337422390933618","source":"5","target":"437","data":{}},{"id":"edge-0.9438630450570338","source":"5","target":"438","data":{}},{"id":"edge-0.10676121990401866","source":"5","target":"439","data":{}},{"id":"edge-0.33705732074418027","source":"5","target":"440","data":{}},{"id":"edge-0.5951465169318073","source":"5","target":"441","data":{}},{"id":"edge-0.8096023804111778","source":"5","target":"442","data":{}},{"id":"edge-0.7772310459425369","source":"5","target":"443","data":{}},{"id":"edge-0.920647726432563","source":"443","target":"444","data":{}},{"id":"edge-0.27023403741092","source":"443","target":"445","data":{}},{"id":"edge-0.594324018173823","source":"443","target":"446","data":{}},{"id":"edge-0.42497327710423805","source":"443","target":"447","data":{}},{"id":"edge-0.14467245065938905","source":"443","target":"448","data":{}},{"id":"edge-0.7515278503529534","source":"443","target":"449","data":{}},{"id":"edge-0.5067927114727813","source":"443","target":"450","data":{}},{"id":"edge-0.7979199353673041","source":"443","target":"451","data":{}},{"id":"edge-0.025048648736412327","source":"443","target":"452","data":{}},{"id":"edge-0.27262765909726383","source":"443","target":"453","data":{}},{"id":"edge-0.7152110285738589","source":"443","target":"454","data":{}},{"id":"edge-0.3756907670754157","source":"443","target":"455","data":{}},{"id":"edge-0.47892089825415995","source":"443","target":"456","data":{}},{"id":"edge-0.30877546488079277","source":"443","target":"457","data":{}},{"id":"edge-0.5119450942723365","source":"443","target":"458","data":{}},{"id":"edge-0.025756811058531337","source":"443","target":"459","data":{}},{"id":"edge-0.8614095864399935","source":"443","target":"460","data":{}},{"id":"edge-0.9269439239850956","source":"443","target":"461","data":{}},{"id":"edge-0.015341901285967019","source":"443","target":"462","data":{}},{"id":"edge-0.24778316254288035","source":"443","target":"463","data":{}},{"id":"edge-0.9431363111120423","source":"443","target":"464","data":{}},{"id":"edge-0.34394295051439006","source":"443","target":"465","data":{}},{"id":"edge-0.061934310316227315","source":"6","target":"466","data":{}},{"id":"edge-0.7849114682641605","source":"6","target":"467","data":{}},{"id":"edge-0.98721840770875","source":"6","target":"468","data":{}},{"id":"edge-0.015115644570252496","source":"6","target":"469","data":{}},{"id":"edge-0.8407789656666009","source":"6","target":"470","data":{}},{"id":"edge-0.36826056737832435","source":"471","target":"475","data":{}},{"id":"edge-0.989516431545205","source":"471","target":"476","data":{}},{"id":"edge-0.7331465597845754","source":"476","target":"477","data":{}},{"id":"edge-0.8633768092730401","source":"476","target":"478","data":{}},{"id":"edge-0.6735533228001311","source":"476","target":"479","data":{}},{"id":"edge-0.5223985858327738","source":"476","target":"481","data":{}},{"id":"edge-0.2128036169675378","source":"471","target":"483","data":{}},{"id":"edge-0.6911597266701237","source":"471","target":"484","data":{}},{"id":"edge-0.03867454056174502","source":"33","target":"171","data":{}},{"id":"edge-0.6901398942065209","source":"7","target":"508","data":{}},{"id":"edge-0.18828756058121998","source":"7","target":"509","data":{}},{"id":"edge-0.15008886482046102","source":"7","target":"510","data":{}},{"id":"edge-0.3505859745777107","source":"7","target":"511","data":{}},{"id":"edge-0.869446471901123","source":"7","target":"512","data":{}},{"id":"edge-0.3184697436289803","source":"7","target":"513","data":{}},{"id":"edge-0.5762740506720923","source":"7","target":"516","data":{}},{"id":"edge-0.9762556831884464","source":"7","target":"517","data":{}},{"id":"edge-0.5572285525484271","source":"7","target":"519","data":{}},{"id":"edge-0.3546971294567127","source":"7","target":"522","data":{}},{"id":"edge-0.6347551895684329","source":"7","target":"523","data":{}},{"id":"edge-0.8479268707524064","source":"7","target":"524","data":{}},{"id":"edge-0.04738622499156797","source":"7","target":"525","data":{}},{"id":"edge-0.7398417481855608","source":"7","target":"526","data":{}},{"id":"edge-0.38652394139472124","source":"7","target":"527","data":{}},{"id":"edge-0.44105025357154637","source":"7","target":"528","data":{}},{"id":"edge-0.1571337255344616","source":"7","target":"530","data":{}},{"id":"edge-0.4098211751468679","source":"7","target":"531","data":{}},{"id":"edge-0.44572522620873656","source":"7","target":"532","data":{}},{"id":"edge-0.7728706445410782","source":"7","target":"533","data":{}},{"id":"edge-0.03533229175451025","source":"7","target":"535","data":{}},{"id":"edge-0.9723963980792316","source":"7","target":"537","data":{}},{"id":"edge-0.414362503198624","source":"7","target":"540","data":{}},{"id":"edge-0.4722527163550432","source":"7","target":"541","data":{}},{"id":"edge-0.32123997844409047","source":"7","target":"542","data":{}},{"id":"edge-0.4379874890558042","source":"7","target":"543","data":{}},{"id":"edge-0.4192979677831634","source":"7","target":"544","data":{}},{"id":"edge-0.7464134266412032","source":"7","target":"546","data":{}},{"id":"edge-0.2387243403910304","source":"7","target":"547","data":{}},{"id":"edge-0.5618001287140937","source":"7","target":"548","data":{}},{"id":"edge-0.7316017195211273","source":"7","target":"549","data":{}},{"id":"edge-0.48945920154792","source":"7","target":"550","data":{}},{"id":"edge-0.8803174343633648","source":"7","target":"552","data":{}},{"id":"edge-0.9767196653907317","source":"7","target":"553","data":{}},{"id":"edge-0.6101376448782638","source":"7","target":"554","data":{}},{"id":"edge-0.649468392352073","source":"7","target":"555","data":{}},{"id":"edge-0.5891030639124661","source":"7","target":"556","data":{}},{"id":"edge-0.6825211784841336","source":"7","target":"557","data":{}},{"id":"edge-0.29544048935190803","source":"7","target":"558","data":{}},{"id":"edge-0.6482297484369166","source":"7","target":"560","data":{}},{"id":"edge-0.0005077041908856383","source":"7","target":"562","data":{}},{"id":"edge-0.05190308792760501","source":"7","target":"564","data":{}},{"id":"edge-0.2144072333096736","source":"7","target":"565","data":{}},{"id":"edge-0.5431211817249391","source":"7","target":"567","data":{}},{"id":"edge-0.360224471364603","source":"7","target":"568","data":{}},{"id":"edge-0.42753502461131876","source":"7","target":"569","data":{}},{"id":"edge-0.20804190823287172","source":"7","target":"570","data":{}},{"id":"edge-0.21562676830887773","source":"7","target":"571","data":{}},{"id":"edge-0.28490737575132696","source":"7","target":"572","data":{}},{"id":"edge-0.1254076211597026","source":"7","target":"573","data":{}},{"id":"edge-0.08425181982730567","source":"7","target":"575","data":{}},{"id":"edge-0.48211900093710436","source":"7","target":"577","data":{}},{"id":"edge-0.230887095398413","source":"7","target":"578","data":{}},{"id":"edge-0.3721532966921772","source":"7","target":"579","data":{}},{"id":"edge-0.3298576102527362","source":"7","target":"580","data":{}},{"id":"edge-0.46462660924087484","source":"7","target":"581","data":{}},{"id":"edge-0.7084813825191596","source":"7","target":"585","data":{}},{"id":"edge-0.38078947497302384","source":"7","target":"586","data":{}},{"id":"edge-0.5959955811106494","source":"7","target":"587","data":{}},{"id":"edge-0.7565688156869574","source":"7","target":"588","data":{}},{"id":"edge-0.7213368274187779","source":"7","target":"590","data":{}},{"id":"edge-0.22861567302842611","source":"7","target":"591","data":{}},{"id":"edge-0.9362408432683829","source":"7","target":"592","data":{}},{"id":"edge-0.7908165600845989","source":"7","target":"593","data":{}},{"id":"edge-0.2640660285365537","source":"7","target":"594","data":{}},{"id":"edge-0.24874457264170835","source":"7","target":"595","data":{}},{"id":"edge-0.3111741783164903","source":"7","target":"596","data":{}},{"id":"edge-0.17792384211673795","source":"7","target":"599","data":{}},{"id":"edge-0.6872102980419494","source":"7","target":"600","data":{}},{"id":"edge-0.14192135921232873","source":"7","target":"602","data":{}},{"id":"edge-0.5484993494242689","source":"7","target":"611","data":{}},{"id":"edge-0.6155184757304473","source":"7","target":"614","data":{}},{"id":"edge-0.3490954975835632","source":"7","target":"619","data":{}},{"id":"edge-0.4661825539571105","source":"7","target":"623","data":{}},{"id":"edge-0.5167593556756154","source":"7","target":"624","data":{}},{"id":"edge-0.9311486618868345","source":"7","target":"625","data":{}},{"id":"edge-0.5000945227576603","source":"7","target":"626","data":{}},{"id":"edge-0.3630825517088745","source":"7","target":"627","data":{}},{"id":"edge-0.5681935909697646","source":"7","target":"628","data":{}},{"id":"edge-0.19628751264892141","source":"7","target":"629","data":{}},{"id":"edge-0.48582492726123006","source":"7","target":"630","data":{}},{"id":"edge-0.17951516973780923","source":"7","target":"631","data":{}},{"id":"edge-0.3321880123728509","source":"7","target":"632","data":{}},{"id":"edge-0.7515489722633064","source":"7","target":"633","data":{}},{"id":"edge-0.5824366810067969","source":"7","target":"634","data":{}},{"id":"edge-0.9572832139378467","source":"7","target":"636","data":{}},{"id":"edge-0.30568375359038047","source":"7","target":"637","data":{}},{"id":"edge-0.40994308313306504","source":"7","target":"638","data":{}},{"id":"edge-0.10525944654562203","source":"7","target":"639","data":{}},{"id":"edge-0.3173492118907759","source":"7","target":"640","data":{}},{"id":"edge-0.9150089779607706","source":"7","target":"641","data":{}},{"id":"edge-0.26198041069928935","source":"7","target":"642","data":{}},{"id":"edge-0.6069418426195363","source":"7","target":"643","data":{}},{"id":"edge-0.39247509652520973","source":"7","target":"644","data":{}},{"id":"edge-0.20253083703713815","source":"7","target":"646","data":{}},{"id":"edge-0.25674723288827495","source":"7","target":"648","data":{}},{"id":"edge-0.4115457596662677","source":"7","target":"650","data":{}},{"id":"edge-0.20734216177751463","source":"7","target":"651","data":{}},{"id":"edge-0.08225825860016722","source":"7","target":"652","data":{}},{"id":"edge-0.8471232619040259","source":"7","target":"654","data":{}},{"id":"edge-0.46218332439129584","source":"7","target":"655","data":{}},{"id":"edge-0.4652569115131684","source":"7","target":"656","data":{}},{"id":"edge-0.7508283562438007","source":"7","target":"658","data":{}},{"id":"edge-0.7802831460387796","source":"7","target":"659","data":{}},{"id":"edge-0.05284560213046574","source":"7","target":"662","data":{}},{"id":"edge-0.8428278106805316","source":"7","target":"663","data":{}},{"id":"edge-0.8915665440599927","source":"7","target":"664","data":{}},{"id":"edge-0.8618844670023147","source":"7","target":"665","data":{}},{"id":"edge-0.2047184766010144","source":"7","target":"666","data":{}},{"id":"edge-0.623881514873327","source":"7","target":"667","data":{}},{"id":"edge-0.6734198367843702","source":"7","target":"668","data":{}},{"id":"edge-0.06858159711741063","source":"7","target":"669","data":{}},{"id":"edge-0.5226058029266964","source":"7","target":"671","data":{}},{"id":"edge-0.45889745710503815","source":"7","target":"672","data":{}},{"id":"edge-0.5638633225645662","source":"7","target":"673","data":{}},{"id":"edge-0.07395338630519421","source":"7","target":"674","data":{}},{"id":"edge-0.5829564442594826","source":"7","target":"675","data":{}},{"id":"edge-0.24791630760054395","source":"7","target":"676","data":{}},{"id":"edge-0.6206530577775886","source":"7","target":"677","data":{}},{"id":"edge-0.7267981896207925","source":"7","target":"678","data":{}},{"id":"edge-0.18872858059508357","source":"7","target":"679","data":{}},{"id":"edge-0.0655419354314406","source":"7","target":"680","data":{}},{"id":"edge-0.35266703128523336","source":"7","target":"681","data":{}},{"id":"edge-0.7814932477211696","source":"7","target":"683","data":{}},{"id":"edge-0.7574365528426359","source":"7","target":"685","data":{}},{"id":"edge-0.32954697204259165","source":"7","target":"686","data":{}},{"id":"edge-0.7356478171010146","source":"7","target":"687","data":{}},{"id":"edge-0.5910820362024098","source":"7","target":"688","data":{}},{"id":"edge-0.681022348502907","source":"7","target":"689","data":{}},{"id":"edge-0.6768466924614986","source":"7","target":"690","data":{}},{"id":"edge-0.8089601751610906","source":"7","target":"691","data":{}},{"id":"edge-0.06091230259712743","source":"7","target":"693","data":{}},{"id":"edge-0.17345952098599215","source":"7","target":"694","data":{}},{"id":"edge-0.8517518015511527","source":"7","target":"695","data":{}},{"id":"edge-0.852635881015114","source":"7","target":"697","data":{}},{"id":"edge-0.397294688036975","source":"7","target":"698","data":{}},{"id":"edge-0.7631657704146841","source":"7","target":"700","data":{}},{"id":"edge-0.8510431643634002","source":"7","target":"701","data":{}},{"id":"edge-0.8363141774234528","source":"7","target":"702","data":{}},{"id":"edge-0.06304241712281944","source":"7","target":"703","data":{}},{"id":"edge-0.5117538297655257","source":"7","target":"704","data":{}},{"id":"edge-0.20070452999941502","source":"7","target":"705","data":{}},{"id":"edge-0.46243712585610175","source":"7","target":"706","data":{}},{"id":"edge-0.10197047847309837","source":"7","target":"707","data":{}},{"id":"edge-0.4503184702205032","source":"7","target":"708","data":{}},{"id":"edge-0.023026278576416148","source":"7","target":"709","data":{}},{"id":"edge-0.5737515558944641","source":"7","target":"710","data":{}},{"id":"edge-0.44471298477688115","source":"7","target":"711","data":{}},{"id":"edge-0.2998736724205233","source":"7","target":"712","data":{}},{"id":"edge-0.3269700327225622","source":"7","target":"714","data":{}},{"id":"edge-0.14506187770531898","source":"7","target":"717","data":{}},{"id":"edge-0.8623687822009793","source":"7","target":"719","data":{}},{"id":"edge-0.7613747394934589","source":"7","target":"720","data":{}},{"id":"edge-0.3481384847306297","source":"4173","target":"847","data":{}},{"id":"edge-0.5955463664196903","source":"4173","target":"848","data":{}},{"id":"edge-0.9208752116323515","source":"4173","target":"849","data":{}},{"id":"edge-0.035682139411729485","source":"4173","target":"850","data":{}},{"id":"edge-0.381526769705949","source":"4173","target":"851","data":{}},{"id":"edge-0.26283909927693094","source":"4173","target":"852","data":{}},{"id":"edge-0.8999496543536278","source":"4173","target":"853","data":{}},{"id":"edge-0.5118920378888072","source":"4173","target":"1243","data":{}},{"id":"edge-0.9241598295007907","source":"4173","target":"1244","data":{}},{"id":"edge-0.5519920451652667","source":"4173","target":"1265","data":{}},{"id":"edge-0.4440801220296764","source":"4173","target":"1266","data":{}},{"id":"edge-0.9610480120884801","source":"4173","target":"1267","data":{}},{"id":"edge-0.7893770103052962","source":"8","target":"8","data":{}},{"id":"edge-0.4972721651984542","source":"8","target":"1269","data":{}},{"id":"edge-0.1763522142948062","source":"8","target":"1270","data":{}},{"id":"edge-0.33386838765021665","source":"8","target":"220","data":{}},{"id":"edge-0.7080262662421191","source":"8","target":"1274","data":{}},{"id":"edge-0.8607248349023127","source":"8","target":"1275","data":{}},{"id":"edge-0.16313162485955846","source":"8","target":"1276","data":{}},{"id":"edge-0.8115424189523728","source":"8","target":"1277","data":{}},{"id":"edge-0.8083095741145851","source":"8","target":"1278","data":{}},{"id":"edge-0.7093170530744424","source":"8","target":"1281","data":{}},{"id":"edge-0.9644510213380761","source":"8","target":"1282","data":{}},{"id":"edge-0.3762947484637329","source":"1286","target":"1283","data":{}},{"id":"edge-0.7357049188103295","source":"1286","target":"1284","data":{}},{"id":"edge-0.06635246286149954","source":"8","target":"1285","data":{}},{"id":"edge-0.7358350832741374","source":"1286","target":"1287","data":{}},{"id":"edge-0.5954481609166298","source":"8","target":"1286","data":{}},{"id":"edge-0.45251838486154017","source":"9","target":"1317","data":{}},{"id":"edge-0.11438786564307368","source":"9","target":"1348","data":{}},{"id":"edge-0.5430573102007781","source":"9","target":"1362","data":{}},{"id":"edge-0.1110987114915658","source":"9","target":"1415","data":{}},{"id":"edge-0.9435350182447142","source":"4174","target":"1289","data":{}},{"id":"edge-0.5519019815591395","source":"4174","target":"1290","data":{}},{"id":"edge-0.5978041765256386","source":"4174","target":"1291","data":{}},{"id":"edge-0.22681727181858458","source":"4174","target":"335","data":{}},{"id":"edge-0.2719157815537858","source":"4174","target":"1293","data":{}},{"id":"edge-0.5665205635809059","source":"4174","target":"1294","data":{}},{"id":"edge-0.16729366699396664","source":"4174","target":"1295","data":{}},{"id":"edge-0.38907335340387617","source":"4174","target":"1296","data":{}},{"id":"edge-0.21851175964144454","source":"4174","target":"1297","data":{}},{"id":"edge-0.36453152132883826","source":"4174","target":"1298","data":{}},{"id":"edge-0.10413437338351117","source":"4174","target":"1299","data":{}},{"id":"edge-0.08667091363406354","source":"4174","target":"1300","data":{}},{"id":"edge-0.22671499409151163","source":"4174","target":"1281","data":{}},{"id":"edge-0.8556649643963055","source":"4174","target":"1308","data":{}},{"id":"edge-0.5418169999935705","source":"4174","target":"1312","data":{}},{"id":"edge-0.39682605312205266","source":"4174","target":"1314","data":{}},{"id":"edge-0.9682552930844608","source":"4174","target":"1316","data":{}},{"id":"edge-0.20373983978414878","source":"1317","target":"1318","data":{}},{"id":"edge-0.7892134236141899","source":"1317","target":"1319","data":{}},{"id":"edge-0.37977762478257127","source":"1317","target":"1324","data":{}},{"id":"edge-0.09870454038191512","source":"1317","target":"1325","data":{}},{"id":"edge-0.4468998955955814","source":"1317","target":"1326","data":{}},{"id":"edge-0.043036744073065014","source":"1317","target":"1327","data":{}},{"id":"edge-0.1886549336630945","source":"1317","target":"1328","data":{}},{"id":"edge-0.589208326116041","source":"1317","target":"1329","data":{}},{"id":"edge-0.15826279582382852","source":"1317","target":"1330","data":{}},{"id":"edge-0.9110466648994004","source":"1317","target":"1331","data":{}},{"id":"edge-0.4472643974117445","source":"1317","target":"1332","data":{}},{"id":"edge-0.053109358467618106","source":"1333","target":"1334","data":{}},{"id":"edge-0.47875857605080574","source":"1333","target":"1343","data":{}},{"id":"edge-0.8383646763547143","source":"9","target":"1333","data":{}},{"id":"edge-0.6441103261690939","source":"1348","target":"1357","data":{}},{"id":"edge-0.461533190850391","source":"1348","target":"1361","data":{}},{"id":"edge-0.9957766738520009","source":"10","target":"1416","data":{}},{"id":"edge-0.6140161855080075","source":"10","target":"1417","data":{}},{"id":"edge-0.7370818701643174","source":"10","target":"1418","data":{}},{"id":"edge-0.5013727703347415","source":"10","target":"1419","data":{}},{"id":"edge-0.14710177167031158","source":"10","target":"1420","data":{}},{"id":"edge-0.2503664749938266","source":"10","target":"1421","data":{}},{"id":"edge-0.8405879792798736","source":"10","target":"1422","data":{}},{"id":"edge-0.05453283845660106","source":"10","target":"1423","data":{}},{"id":"edge-0.1696731977477104","source":"10","target":"1424","data":{}},{"id":"edge-0.3434142402611786","source":"10","target":"1426","data":{}},{"id":"edge-0.7243175236120354","source":"10","target":"1427","data":{}},{"id":"edge-0.4812147122387753","source":"10","target":"1428","data":{}},{"id":"edge-0.7904431857280194","source":"10","target":"1429","data":{}},{"id":"edge-0.4182579342599697","source":"10","target":"1431","data":{}},{"id":"edge-0.6009265448056837","source":"10","target":"1432","data":{}},{"id":"edge-0.11788248126927203","source":"10","target":"1433","data":{}},{"id":"edge-0.37394152221028687","source":"10","target":"1435","data":{}},{"id":"edge-0.9782731215947376","source":"10","target":"1436","data":{}},{"id":"edge-0.5937618304927694","source":"10","target":"1437","data":{}},{"id":"edge-0.6082429856853926","source":"10","target":"1438","data":{}},{"id":"edge-0.543325487819696","source":"10","target":"1439","data":{}},{"id":"edge-0.12623050107870126","source":"10","target":"1440","data":{}},{"id":"edge-0.14724881153513358","source":"10","target":"1441","data":{}},{"id":"edge-0.2919553887898665","source":"10","target":"1442","data":{}},{"id":"edge-0.6532048919322584","source":"10","target":"1443","data":{}},{"id":"edge-0.0743411772665048","source":"10","target":"1446","data":{}},{"id":"edge-0.1626578111095205","source":"10","target":"1447","data":{}},{"id":"edge-0.47253766764301797","source":"10","target":"1448","data":{}},{"id":"edge-0.8633568940551162","source":"10","target":"1449","data":{}},{"id":"edge-0.471749527947501","source":"10","target":"1451","data":{}},{"id":"edge-0.3182550616204316","source":"10","target":"1452","data":{}},{"id":"edge-0.4060629970882701","source":"10","target":"1453","data":{}},{"id":"edge-0.2234685494325972","source":"10","target":"1454","data":{}},{"id":"edge-0.6828051731190217","source":"10","target":"1455","data":{}},{"id":"edge-0.5348726655725788","source":"10","target":"1456","data":{}},{"id":"edge-0.42780390924172074","source":"10","target":"1457","data":{}},{"id":"edge-0.8773639229829799","source":"10","target":"1458","data":{}},{"id":"edge-0.06331153082108942","source":"10","target":"1459","data":{}},{"id":"edge-0.43862861436773226","source":"10","target":"1460","data":{}},{"id":"edge-0.6023001644293793","source":"10","target":"1461","data":{}},{"id":"edge-0.26437135498419706","source":"10","target":"1462","data":{}},{"id":"edge-0.11438688860944479","source":"10","target":"1463","data":{}},{"id":"edge-0.5205910036474826","source":"10","target":"1464","data":{}},{"id":"edge-0.46895252168189816","source":"10","target":"1465","data":{}},{"id":"edge-0.54598825730075","source":"10","target":"1466","data":{}},{"id":"edge-0.14359651088741465","source":"10","target":"1467","data":{}},{"id":"edge-0.580671576611939","source":"10","target":"1468","data":{}},{"id":"edge-0.13408858432308723","source":"10","target":"1469","data":{}},{"id":"edge-0.7214459247292113","source":"10","target":"1470","data":{}},{"id":"edge-0.8063792384011548","source":"10","target":"1471","data":{}},{"id":"edge-0.2069782326631","source":"10","target":"1472","data":{}},{"id":"edge-0.8497008248666245","source":"10","target":"1473","data":{}},{"id":"edge-0.11634384873056303","source":"10","target":"1474","data":{}},{"id":"edge-0.8088721089863466","source":"10","target":"1475","data":{}},{"id":"edge-0.3394872565736593","source":"10","target":"1476","data":{}},{"id":"edge-0.5468052709506979","source":"10","target":"1477","data":{}},{"id":"edge-0.1734744242775319","source":"10","target":"1478","data":{}},{"id":"edge-0.8881756387647111","source":"10","target":"1479","data":{}},{"id":"edge-0.48560270080583945","source":"10","target":"1480","data":{}},{"id":"edge-0.6223981382104031","source":"10","target":"1481","data":{}},{"id":"edge-0.7973958473437122","source":"10","target":"1482","data":{}},{"id":"edge-0.13097959148688565","source":"10","target":"1483","data":{}},{"id":"edge-0.15041909140639076","source":"10","target":"1484","data":{}},{"id":"edge-0.8839877719496712","source":"10","target":"1485","data":{}},{"id":"edge-0.723129807890835","source":"10","target":"1486","data":{}},{"id":"edge-0.648710607208651","source":"10","target":"1487","data":{}},{"id":"edge-0.21629347294561518","source":"10","target":"1488","data":{}},{"id":"edge-0.9740664251490174","source":"10","target":"1489","data":{}},{"id":"edge-0.7558598590604193","source":"1492","target":"4177","data":{}},{"id":"edge-0.6464199991045652","source":"1492","target":"4178","data":{}},{"id":"edge-0.7298381207715601","source":"10","target":"1490","data":{}},{"id":"edge-0.6961280915858239","source":"10","target":"1491","data":{}},{"id":"edge-0.6669703285975681","source":"10","target":"1493","data":{}},{"id":"edge-0.6555555757833178","source":"10","target":"1495","data":{}},{"id":"edge-0.4726993387707259","source":"10","target":"1496","data":{}},{"id":"edge-0.15652524994727224","source":"10","target":"220","data":{}},{"id":"edge-0.2832280516473822","source":"10","target":"1498","data":{}},{"id":"edge-0.45583475573594723","source":"10","target":"1499","data":{}},{"id":"edge-0.5894395908501997","source":"10","target":"1500","data":{}},{"id":"edge-0.8193958045877143","source":"10","target":"1501","data":{}},{"id":"edge-0.8700631380092547","source":"10","target":"1502","data":{}},{"id":"edge-0.39363997230617565","source":"10","target":"1503","data":{}},{"id":"edge-0.33157049799128724","source":"10","target":"1504","data":{}},{"id":"edge-0.2937204218851688","source":"10","target":"1505","data":{}},{"id":"edge-0.09897125071198931","source":"10","target":"1506","data":{}},{"id":"edge-0.1101014978646142","source":"10","target":"1507","data":{}},{"id":"edge-0.3402365829680216","source":"10","target":"1508","data":{}},{"id":"edge-0.2766729657924831","source":"10","target":"1509","data":{}},{"id":"edge-0.03243900532891408","source":"10","target":"1510","data":{}},{"id":"edge-0.07525591452254221","source":"10","target":"1511","data":{}},{"id":"edge-0.6694687234345651","source":"10","target":"1512","data":{}},{"id":"edge-0.42777572089718974","source":"10","target":"1513","data":{}},{"id":"edge-0.2919300256098063","source":"10","target":"1514","data":{}},{"id":"edge-0.6803028029700624","source":"10","target":"1515","data":{}},{"id":"edge-0.7079536103114974","source":"1515","target":"1516","data":{}},{"id":"edge-0.5489464511991657","source":"1515","target":"1517","data":{}},{"id":"edge-0.22853613050204613","source":"1515","target":"1518","data":{}},{"id":"edge-0.5653454245706968","source":"10","target":"1519","data":{}},{"id":"edge-0.41454574472456995","source":"10","target":"1520","data":{}},{"id":"edge-0.8813569671568806","source":"10","target":"1522","data":{}},{"id":"edge-0.4475380150518875","source":"10","target":"1523","data":{}},{"id":"edge-0.6672399313559949","source":"10","target":"1524","data":{}},{"id":"edge-0.43471857487792587","source":"10","target":"1525","data":{}},{"id":"edge-0.3894712506690503","source":"10","target":"1526","data":{}},{"id":"edge-0.6342427351635898","source":"10","target":"1528","data":{}},{"id":"edge-0.4662494318138757","source":"10","target":"1529","data":{}},{"id":"edge-0.5418878047365046","source":"1529","target":"1530","data":{}},{"id":"edge-0.4227855884799121","source":"1529","target":"1531","data":{}},{"id":"edge-0.5985060332846375","source":"1529","target":"1532","data":{}},{"id":"edge-0.8660266589132217","source":"1529","target":"1533","data":{}},{"id":"edge-0.058406387673630045","source":"1529","target":"1534","data":{}},{"id":"edge-0.6189059378532702","source":"1529","target":"1535","data":{}},{"id":"edge-0.5007554370439229","source":"1529","target":"1536","data":{}},{"id":"edge-0.29483429586128596","source":"1529","target":"1537","data":{}},{"id":"edge-0.31283755384670564","source":"1529","target":"1538","data":{}},{"id":"edge-0.651732890742375","source":"1529","target":"1539","data":{}},{"id":"edge-0.19824132532518868","source":"1529","target":"1540","data":{}},{"id":"edge-0.4288486212631797","source":"1529","target":"1541","data":{}},{"id":"edge-0.26433409604531644","source":"1529","target":"1542","data":{}},{"id":"edge-0.1890996834456673","source":"1529","target":"1543","data":{}},{"id":"edge-0.44028031987136207","source":"1529","target":"1544","data":{}},{"id":"edge-0.6827398455184945","source":"10","target":"1545","data":{}},{"id":"edge-0.8222820819342247","source":"10","target":"1546","data":{}},{"id":"edge-0.7907596482657107","source":"10","target":"1547","data":{}},{"id":"edge-0.148637085634997","source":"10","target":"1548","data":{}},{"id":"edge-0.8811814850037591","source":"10","target":"1549","data":{}},{"id":"edge-0.748247083315543","source":"10","target":"1550","data":{}},{"id":"edge-0.4822815830973717","source":"10","target":"1551","data":{}},{"id":"edge-0.00998756590201788","source":"10","target":"1552","data":{}},{"id":"edge-0.3849065431591401","source":"10","target":"1553","data":{}},{"id":"edge-0.4466583814350109","source":"10","target":"1554","data":{}},{"id":"edge-0.9220491633066785","source":"10","target":"1555","data":{}},{"id":"edge-0.60592401274838","source":"10","target":"1556","data":{}},{"id":"edge-0.5764179483909884","source":"10","target":"1559","data":{}},{"id":"edge-0.5848294211858016","source":"10","target":"1560","data":{}},{"id":"edge-0.13273109861967614","source":"10","target":"1561","data":{}},{"id":"edge-0.7645254693823136","source":"10","target":"1562","data":{}},{"id":"edge-0.23482046942827162","source":"10","target":"1563","data":{}},{"id":"edge-0.006157039768818873","source":"10","target":"1564","data":{}},{"id":"edge-0.13453067838819321","source":"10","target":"1567","data":{}},{"id":"edge-0.1602075150591855","source":"10","target":"1568","data":{}},{"id":"edge-0.4960926126444707","source":"10","target":"1569","data":{}},{"id":"edge-0.3647704173872841","source":"10","target":"1570","data":{}},{"id":"edge-0.768412816878189","source":"10","target":"1571","data":{}},{"id":"edge-0.9159644188689802","source":"11","target":"1572","data":{}},{"id":"edge-0.06068970321823164","source":"1572","target":"1573","data":{}},{"id":"edge-0.469496323620457","source":"1572","target":"1574","data":{}},{"id":"edge-0.4089356805371587","source":"1574","target":"1575","data":{}},{"id":"edge-0.5833985236703847","source":"1572","target":"1576","data":{}},{"id":"edge-0.34005888314276467","source":"1572","target":"1577","data":{}},{"id":"edge-0.60970298864889","source":"1572","target":"1578","data":{}},{"id":"edge-0.806211354896478","source":"1572","target":"1579","data":{}},{"id":"edge-0.4468095451967853","source":"1572","target":"1580","data":{}},{"id":"edge-0.3490679140033961","source":"11","target":"1581","data":{}},{"id":"edge-0.34048181590215854","source":"15","target":"1581","data":{}},{"id":"edge-0.00924945444324976","source":"11","target":"1582","data":{}},{"id":"edge-0.652014249756929","source":"11","target":"1583","data":{}},{"id":"edge-0.35591506942209916","source":"11","target":"1584","data":{}},{"id":"edge-0.22224304316442178","source":"11","target":"1585","data":{}},{"id":"edge-0.4102927497316924","source":"11","target":"1586","data":{}},{"id":"edge-0.7977433939610725","source":"11","target":"1589","data":{}},{"id":"edge-0.7075802162647991","source":"11","target":"1590","data":{}},{"id":"edge-0.6024068459746166","source":"11","target":"1591","data":{}},{"id":"edge-0.9367338124892639","source":"11","target":"1592","data":{}},{"id":"edge-0.37126090141887014","source":"11","target":"1595","data":{}},{"id":"edge-0.6800260687329398","source":"11","target":"1596","data":{}},{"id":"edge-0.5142182646076361","source":"11","target":"1597","data":{}},{"id":"edge-0.313053070367167","source":"11","target":"1600","data":{}},{"id":"edge-0.5759206120420777","source":"11","target":"1602","data":{}},{"id":"edge-0.023694964757001724","source":"11","target":"1614","data":{}},{"id":"edge-0.5250159590949548","source":"11","target":"1616","data":{}},{"id":"edge-0.3332181969783796","source":"3897","target":"4205","data":{}},{"id":"edge-0.02951643832183226","source":"3897","target":"4206","data":{}},{"id":"edge-0.40206542060742145","source":"3897","target":"4207","data":{}},{"id":"edge-0.5338709250942395","source":"3897","target":"4208","data":{}},{"id":"edge-0.052649723009419835","source":"3897","target":"4211","data":{}},{"id":"edge-0.9231236472262918","source":"3897","target":"4212","data":{}},{"id":"edge-0.6633396488531897","source":"3897","target":"4213","data":{}},{"id":"edge-0.6178928444559169","source":"3897","target":"4214","data":{}},{"id":"edge-0.02101340267040963","source":"3897","target":"4215","data":{}},{"id":"edge-0.8402881977717052","source":"3897","target":"4216","data":{}},{"id":"edge-0.8372290153798756","source":"3897","target":"4217","data":{}},{"id":"edge-0.9856210933506728","source":"3897","target":"4218","data":{}},{"id":"edge-0.18638205793766893","source":"3897","target":"4219","data":{}},{"id":"edge-0.6592121697710593","source":"3897","target":"4220","data":{}},{"id":"edge-0.5511584330459376","source":"3897","target":"4221","data":{}},{"id":"edge-0.8887394398314514","source":"3897","target":"4222","data":{}},{"id":"edge-0.45024610956845956","source":"3897","target":"4223","data":{}},{"id":"edge-0.5025782661678726","source":"3897","target":"4224","data":{}},{"id":"edge-0.8607982619261318","source":"3897","target":"4225","data":{}},{"id":"edge-0.3169926469345097","source":"3897","target":"4226","data":{}},{"id":"edge-0.37839447597272047","source":"3897","target":"4227","data":{}},{"id":"edge-0.9160710403150643","source":"3897","target":"4228","data":{}},{"id":"edge-0.7708398471737885","source":"3897","target":"4229","data":{}},{"id":"edge-0.5804863848256154","source":"3897","target":"4230","data":{}},{"id":"edge-0.6447277016776862","source":"3897","target":"4231","data":{}},{"id":"edge-0.9751894214132755","source":"3897","target":"4232","data":{}},{"id":"edge-0.6706240756663393","source":"3897","target":"4233","data":{}},{"id":"edge-0.1747952045298624","source":"3897","target":"4234","data":{}},{"id":"edge-0.684683937736436","source":"3897","target":"4235","data":{}},{"id":"edge-0.6109118608818231","source":"12","target":"1617","data":{}},{"id":"edge-0.223042254442815","source":"12","target":"1618","data":{}},{"id":"edge-0.10614189427312137","source":"12","target":"1620","data":{}},{"id":"edge-0.3016735832483921","source":"12","target":"1622","data":{}},{"id":"edge-0.35463977459563","source":"12","target":"1623","data":{}},{"id":"edge-0.34905198899040846","source":"12","target":"1624","data":{}},{"id":"edge-0.8381753959701892","source":"12","target":"1625","data":{}},{"id":"edge-0.013746446139449864","source":"12","target":"1626","data":{}},{"id":"edge-0.3240925706370148","source":"12","target":"1628","data":{}},{"id":"edge-0.5748715113617722","source":"12","target":"1629","data":{}},{"id":"edge-0.7332606885682131","source":"12","target":"1631","data":{}},{"id":"edge-0.9747793456027174","source":"12","target":"1633","data":{}},{"id":"edge-0.5478772886496437","source":"12","target":"1634","data":{}},{"id":"edge-0.3121395381801231","source":"12","target":"1636","data":{}},{"id":"edge-0.5704294823481499","source":"12","target":"1648","data":{}},{"id":"edge-0.9872552311633616","source":"12","target":"1649","data":{}},{"id":"edge-0.5057796164212103","source":"12","target":"1650","data":{}},{"id":"edge-0.3085295200543443","source":"12","target":"1651","data":{}},{"id":"edge-0.6901838179592983","source":"12","target":"1652","data":{}},{"id":"edge-0.04742371405815837","source":"12","target":"1653","data":{}},{"id":"edge-0.7890401433446761","source":"12","target":"1655","data":{}},{"id":"edge-0.10361634164933098","source":"12","target":"1656","data":{}},{"id":"edge-0.04108188766292176","source":"12","target":"1657","data":{}},{"id":"edge-0.14621963604509158","source":"12","target":"1659","data":{}},{"id":"edge-0.4002488002230584","source":"12","target":"1660","data":{}},{"id":"edge-0.350170863204762","source":"12","target":"4236","data":{}},{"id":"edge-0.5191348470768997","source":"12","target":"4237","data":{}},{"id":"edge-0.749108002766981","source":"12","target":"4238","data":{}},{"id":"edge-0.6816472511927509","source":"12","target":"4239","data":{}},{"id":"edge-0.6392999528557368","source":"13","target":"1662","data":{}},{"id":"edge-0.16786386436502254","source":"13","target":"1663","data":{}},{"id":"edge-0.03996557156530778","source":"13","target":"1664","data":{}},{"id":"edge-0.010230199601987566","source":"13","target":"1665","data":{}},{"id":"edge-0.3447473425840548","source":"13","target":"1666","data":{}},{"id":"edge-0.6774201354499243","source":"13","target":"1667","data":{}},{"id":"edge-0.539057789759575","source":"13","target":"1668","data":{}},{"id":"edge-0.9485202833438735","source":"13","target":"1669","data":{}},{"id":"edge-0.6046906569403434","source":"13","target":"1671","data":{}},{"id":"edge-0.43476796491444447","source":"13","target":"1674","data":{}},{"id":"edge-0.28998717653500994","source":"13","target":"1675","data":{}},{"id":"edge-0.13465428679918867","source":"13","target":"1676","data":{}},{"id":"edge-0.14167050086073907","source":"13","target":"1677","data":{}},{"id":"edge-0.654233292341635","source":"13","target":"1678","data":{}},{"id":"edge-0.97769993239054","source":"13","target":"1682","data":{}},{"id":"edge-0.6179328872852392","source":"13","target":"1684","data":{}},{"id":"edge-0.5256931646321352","source":"13","target":"1685","data":{}},{"id":"edge-0.3676134677242311","source":"13","target":"1688","data":{}},{"id":"edge-0.587916410546125","source":"13","target":"1692","data":{}},{"id":"edge-0.3547419990834537","source":"13","target":"1693","data":{}},{"id":"edge-0.30741733447108643","source":"13","target":"1694","data":{}},{"id":"edge-0.9927617210325068","source":"13","target":"1698","data":{}},{"id":"edge-0.9870146867976943","source":"13","target":"1701","data":{}},{"id":"edge-0.9140777478635433","source":"13","target":"1703","data":{}},{"id":"edge-0.6594828062222244","source":"13","target":"1705","data":{}},{"id":"edge-0.9637139683599578","source":"13","target":"1706","data":{}},{"id":"edge-0.22643845135799134","source":"13","target":"1708","data":{}},{"id":"edge-0.59684149526736","source":"13","target":"1709","data":{}},{"id":"edge-0.8119887629935221","source":"13","target":"1710","data":{}},{"id":"edge-0.40233316361901683","source":"13","target":"1711","data":{}},{"id":"edge-0.38281128223490857","source":"13","target":"1718","data":{}},{"id":"edge-0.7694520670818996","source":"13","target":"1719","data":{}},{"id":"edge-0.07888415164735973","source":"13","target":"1720","data":{}},{"id":"edge-0.5271788801542643","source":"13","target":"1729","data":{}},{"id":"edge-0.12116105004828515","source":"13","target":"1732","data":{}},{"id":"edge-0.5450749483336224","source":"13","target":"1733","data":{}},{"id":"edge-0.11728579296387154","source":"13","target":"1734","data":{}},{"id":"edge-0.2982601941747891","source":"13","target":"1737","data":{}},{"id":"edge-0.6179475544146271","source":"13","target":"1742","data":{}},{"id":"edge-0.7431823518897138","source":"13","target":"1743","data":{}},{"id":"edge-0.7277391675123708","source":"13","target":"1747","data":{}},{"id":"edge-0.3799531931448501","source":"13","target":"1750","data":{}},{"id":"edge-0.8501113665571038","source":"13","target":"1751","data":{}},{"id":"edge-0.37106918082694484","source":"13","target":"1754","data":{}},{"id":"edge-0.14182813608226175","source":"13","target":"1756","data":{}},{"id":"edge-0.3277349664548945","source":"13","target":"1758","data":{}},{"id":"edge-0.7500229737071586","source":"13","target":"1760","data":{}},{"id":"edge-0.1532375462651001","source":"13","target":"1761","data":{}},{"id":"edge-0.36064430857424323","source":"13","target":"1764","data":{}},{"id":"edge-0.4860791000650102","source":"13","target":"1765","data":{}},{"id":"edge-0.9006821842331969","source":"13","target":"1768","data":{}},{"id":"edge-0.44580172415037866","source":"13","target":"1769","data":{}},{"id":"edge-0.6778548030210516","source":"13","target":"1770","data":{}},{"id":"edge-0.3910543600716718","source":"13","target":"1771","data":{}},{"id":"edge-0.5498894776068066","source":"13","target":"1772","data":{}},{"id":"edge-0.6253174882387436","source":"13","target":"1773","data":{}},{"id":"edge-0.6464483186954715","source":"1773","target":"1774","data":{}},{"id":"edge-0.41802590266673967","source":"1773","target":"1775","data":{}},{"id":"edge-0.3638622254810129","source":"1773","target":"1776","data":{}},{"id":"edge-0.5111686834102724","source":"1773","target":"1777","data":{}},{"id":"edge-0.16876947357734529","source":"1773","target":"1778","data":{}},{"id":"edge-0.3404921287540468","source":"1773","target":"1779","data":{}},{"id":"edge-0.5056631553108697","source":"1773","target":"1780","data":{}},{"id":"edge-0.14333593235753672","source":"1773","target":"1781","data":{}},{"id":"edge-0.1423428662570667","source":"13","target":"1801","data":{}},{"id":"edge-0.48682194779644616","source":"13","target":"1802","data":{}},{"id":"edge-0.060037653686358716","source":"13","target":"1803","data":{}},{"id":"edge-0.4212473743393417","source":"13","target":"1804","data":{}},{"id":"edge-0.5342136529697334","source":"13","target":"1806","data":{}},{"id":"edge-0.03205012303255872","source":"13","target":"1807","data":{}},{"id":"edge-0.9839789248364674","source":"13","target":"1808","data":{}},{"id":"edge-0.3680957173521169","source":"13","target":"1809","data":{}},{"id":"edge-0.3695448615028498","source":"14","target":"1810","data":{}},{"id":"edge-0.42660456038001504","source":"1810","target":"1812","data":{}},{"id":"edge-0.38818327381234674","source":"14","target":"1813","data":{}},{"id":"edge-0.8300288739097601","source":"14","target":"1814","data":{}},{"id":"edge-0.785880505129301","source":"14","target":"1815","data":{}},{"id":"edge-0.7205272489950729","source":"14","target":"1816","data":{}},{"id":"edge-0.6854536375664433","source":"14","target":"1817","data":{}},{"id":"edge-0.917555569630129","source":"14","target":"1818","data":{}},{"id":"edge-0.7508423950823706","source":"14","target":"1819","data":{}},{"id":"edge-0.059007781457537156","source":"14","target":"1820","data":{}},{"id":"edge-0.04457232554960444","source":"14","target":"1821","data":{}},{"id":"edge-0.7671531141205781","source":"14","target":"1822","data":{}},{"id":"edge-0.22071909510917687","source":"14","target":"1823","data":{}},{"id":"edge-0.15694389714947277","source":"14","target":"1824","data":{}},{"id":"edge-0.14717319095756265","source":"14","target":"1825","data":{}},{"id":"edge-0.4434553962311294","source":"1611","target":"1493","data":{}},{"id":"edge-0.05797032778423383","source":"1611","target":"1829","data":{}},{"id":"edge-0.9539793186826055","source":"4240","target":"475","data":{}},{"id":"edge-0.9959094543360782","source":"1611","target":"1838","data":{}},{"id":"edge-0.5449007161560733","source":"1611","target":"1846","data":{}},{"id":"edge-0.3912183128625897","source":"1611","target":"1848","data":{}},{"id":"edge-0.39122874080130643","source":"1611","target":"1849","data":{}},{"id":"edge-0.1395260261898088","source":"1611","target":"4241","data":{}},{"id":"edge-0.9547617081462643","source":"14","target":"1853","data":{}},{"id":"edge-0.4646968817514452","source":"1853","target":"1854","data":{}},{"id":"edge-0.130858466788232","source":"1853","target":"1855","data":{}},{"id":"edge-0.7192566318712403","source":"1853","target":"1856","data":{}},{"id":"edge-0.12991651525358994","source":"1853","target":"1857","data":{}},{"id":"edge-0.9482157732655789","source":"1853","target":"1858","data":{}},{"id":"edge-0.11791977930242559","source":"1853","target":"1859","data":{}},{"id":"edge-0.27133341594859184","source":"1853","target":"1860","data":{}},{"id":"edge-0.22501210997085996","source":"1853","target":"1861","data":{}},{"id":"edge-0.9612548998421528","source":"1853","target":"1862","data":{}},{"id":"edge-0.9873618126392805","source":"1853","target":"1863","data":{}},{"id":"edge-0.346541681504295","source":"1853","target":"1864","data":{}},{"id":"edge-0.13217252755401798","source":"1853","target":"1865","data":{}},{"id":"edge-0.26257076595914963","source":"1853","target":"1866","data":{}},{"id":"edge-0.700143077347972","source":"1853","target":"1867","data":{}},{"id":"edge-0.5706936577694763","source":"1853","target":"1868","data":{}},{"id":"edge-0.007887737419136176","source":"1853","target":"1869","data":{}},{"id":"edge-0.9908019815219284","source":"1869","target":"1870","data":{}},{"id":"edge-0.8529834924202306","source":"1869","target":"1871","data":{}},{"id":"edge-0.4791697698290127","source":"1869","target":"1872","data":{}},{"id":"edge-0.9121101244666221","source":"1869","target":"1873","data":{}},{"id":"edge-0.5250743726535181","source":"1869","target":"1874","data":{}},{"id":"edge-0.9057837166074909","source":"1869","target":"1875","data":{}},{"id":"edge-0.7143980075648984","source":"14","target":"1877","data":{}},{"id":"edge-0.6187028658475777","source":"14","target":"1316","data":{}},{"id":"edge-0.8772392012527757","source":"14","target":"1879","data":{}},{"id":"edge-0.7576595242211837","source":"14","target":"1880","data":{}},{"id":"edge-0.768824207463692","source":"14","target":"1881","data":{}},{"id":"edge-0.5895411464306988","source":"14","target":"1882","data":{}},{"id":"edge-0.6965044589955345","source":"14","target":"1883","data":{}},{"id":"edge-0.4700249866321693","source":"14","target":"1884","data":{}},{"id":"edge-0.1962128841095676","source":"14","target":"1885","data":{}},{"id":"edge-0.6177832876849283","source":"14","target":"1886","data":{}},{"id":"edge-0.12750191090102736","source":"14","target":"1887","data":{}},{"id":"edge-0.09786089115694585","source":"14","target":"1888","data":{}},{"id":"edge-0.9275502957706092","source":"14","target":"1889","data":{}},{"id":"edge-0.8904932846956142","source":"14","target":"1890","data":{}},{"id":"edge-0.883585801679339","source":"14","target":"1892","data":{}},{"id":"edge-0.24759033259743513","source":"14","target":"1893","data":{}},{"id":"edge-0.32520539223422484","source":"14","target":"1894","data":{}},{"id":"edge-0.4675654301260388","source":"15","target":"1897","data":{}},{"id":"edge-0.2093213877614304","source":"15","target":"1898","data":{}},{"id":"edge-0.9266824345675553","source":"15","target":"1899","data":{}},{"id":"edge-0.09880861728550316","source":"15","target":"1900","data":{}},{"id":"edge-0.7722767823199668","source":"15","target":"1901","data":{}},{"id":"edge-0.25641234096150756","source":"15","target":"1902","data":{}},{"id":"edge-0.6833286485510901","source":"15","target":"1903","data":{}},{"id":"edge-0.41489881532497397","source":"15","target":"1904","data":{}},{"id":"edge-0.9321028191011995","source":"15","target":"1905","data":{}},{"id":"edge-0.7660084072011251","source":"15","target":"1906","data":{}},{"id":"edge-0.4884959866929892","source":"15","target":"1907","data":{}},{"id":"edge-0.7591329194872733","source":"15","target":"1908","data":{}},{"id":"edge-0.8609647020656084","source":"15","target":"1909","data":{}},{"id":"edge-0.7973274971064848","source":"15","target":"1910","data":{}},{"id":"edge-0.4851919916692089","source":"15","target":"1911","data":{}},{"id":"edge-0.8736513180482011","source":"15","target":"1912","data":{}},{"id":"edge-0.7098031147178276","source":"15","target":"1913","data":{}},{"id":"edge-0.8516163453778538","source":"15","target":"1914","data":{}},{"id":"edge-0.7667566146632363","source":"15","target":"1915","data":{}},{"id":"edge-0.9749657995398231","source":"15","target":"1916","data":{}},{"id":"edge-0.22850597260220873","source":"15","target":"1917","data":{}},{"id":"edge-0.13095151001185434","source":"15","target":"1918","data":{}},{"id":"edge-0.6805350435003086","source":"15","target":"1919","data":{}},{"id":"edge-0.281145069880685","source":"15","target":"1920","data":{}},{"id":"edge-0.41587895328469693","source":"15","target":"1921","data":{}},{"id":"edge-0.1738468811680336","source":"15","target":"1922","data":{}},{"id":"edge-0.656646836203223","source":"15","target":"1923","data":{}},{"id":"edge-0.5621599012280218","source":"15","target":"1924","data":{}},{"id":"edge-0.5488433444176857","source":"15","target":"1925","data":{}},{"id":"edge-0.3047060134858717","source":"15","target":"1926","data":{}},{"id":"edge-0.5162818760921088","source":"15","target":"1927","data":{}},{"id":"edge-0.783262969303359","source":"15","target":"1928","data":{}},{"id":"edge-0.6602949973345256","source":"15","target":"4245","data":{}},{"id":"edge-0.6669542543664355","source":"15","target":"1929","data":{}},{"id":"edge-0.6095175294863293","source":"15","target":"1930","data":{}},{"id":"edge-0.20158541444077005","source":"15","target":"1931","data":{}},{"id":"edge-0.7848521952947196","source":"15","target":"1932","data":{}},{"id":"edge-0.14558373307872996","source":"15","target":"1933","data":{}},{"id":"edge-0.21307264042013752","source":"15","target":"1934","data":{}},{"id":"edge-0.30200795765172006","source":"15","target":"1935","data":{}},{"id":"edge-0.33700253703586225","source":"15","target":"1936","data":{}},{"id":"edge-0.7022058557893598","source":"15","target":"1937","data":{}},{"id":"edge-0.7925969582900032","source":"15","target":"1938","data":{}},{"id":"edge-0.7403218469733455","source":"15","target":"1939","data":{}},{"id":"edge-0.10782234974633242","source":"15","target":"1940","data":{}},{"id":"edge-0.04603560913377436","source":"15","target":"1941","data":{}},{"id":"edge-0.8797041109765067","source":"15","target":"1942","data":{}},{"id":"edge-0.7740916222503502","source":"15","target":"1943","data":{}},{"id":"edge-0.5139505437342058","source":"15","target":"1944","data":{}},{"id":"edge-0.45260360389769616","source":"15","target":"1945","data":{}},{"id":"edge-0.5220488858959835","source":"15","target":"1946","data":{}},{"id":"edge-0.7067042899211848","source":"15","target":"1947","data":{}},{"id":"edge-0.5008133284195075","source":"15","target":"1948","data":{}},{"id":"edge-0.4916875702346688","source":"15","target":"1949","data":{}},{"id":"edge-0.7165211786193704","source":"15","target":"1950","data":{}},{"id":"edge-0.6919030526518775","source":"15","target":"1951","data":{}},{"id":"edge-0.2598219238258528","source":"15","target":"1952","data":{}},{"id":"edge-0.8800308792468996","source":"15","target":"1954","data":{}},{"id":"edge-0.2599735116960651","source":"15","target":"1955","data":{}},{"id":"edge-0.4742044036412354","source":"15","target":"1956","data":{}},{"id":"edge-0.60237093356418","source":"15","target":"1957","data":{}},{"id":"edge-0.2708471594519479","source":"15","target":"1958","data":{}},{"id":"edge-0.3741690519584797","source":"15","target":"1959","data":{}},{"id":"edge-0.7647580920467236","source":"15","target":"1962","data":{}},{"id":"edge-0.6796164745277542","source":"15","target":"1963","data":{}},{"id":"edge-0.22940758826408314","source":"15","target":"1964","data":{}},{"id":"edge-0.6471094130130339","source":"15","target":"1965","data":{}},{"id":"edge-0.4504231123066851","source":"15","target":"1966","data":{}},{"id":"edge-0.9086137108908521","source":"15","target":"1953","data":{}},{"id":"edge-0.6378965641369518","source":"15","target":"1970","data":{}},{"id":"edge-0.13670020232022106","source":"15","target":"1971","data":{}},{"id":"edge-0.9730177487436471","source":"15","target":"1972","data":{}},{"id":"edge-0.833082444350921","source":"15","target":"1492","data":{}},{"id":"edge-0.6968323728958252","source":"10","target":"1492","data":{}},{"id":"edge-0.2792120130565994","source":"15","target":"1973","data":{}},{"id":"edge-0.6928445418740481","source":"15","target":"1974","data":{}},{"id":"edge-0.21348688030294083","source":"15","target":"1975","data":{}},{"id":"edge-0.34975860940327586","source":"15","target":"1976","data":{}},{"id":"edge-0.8028676075161412","source":"15","target":"1977","data":{}},{"id":"edge-0.8166178786430596","source":"15","target":"1978","data":{}},{"id":"edge-0.2518090442534131","source":"15","target":"1979","data":{}},{"id":"edge-0.3443701012651774","source":"15","target":"1981","data":{}},{"id":"edge-0.8959455476189","source":"15","target":"1982","data":{}},{"id":"edge-0.745960714068324","source":"15","target":"1983","data":{}},{"id":"edge-0.19256537169028443","source":"15","target":"1980","data":{}},{"id":"edge-0.3777180831218121","source":"16","target":"1984","data":{}},{"id":"edge-0.3613073888834317","source":"1984","target":"1985","data":{}},{"id":"edge-0.7266941698112157","source":"1984","target":"1986","data":{}},{"id":"edge-0.2115595118934097","source":"1990","target":"1991","data":{}},{"id":"edge-0.9077997690561699","source":"1990","target":"1992","data":{}},{"id":"edge-0.4946185785900221","source":"16","target":"1994","data":{}},{"id":"edge-0.881741817697488","source":"1994","target":"1995","data":{}},{"id":"edge-0.07801360491153897","source":"1994","target":"1996","data":{}},{"id":"edge-0.29883357824523427","source":"1994","target":"1997","data":{}},{"id":"edge-0.7747765300719534","source":"1994","target":"1998","data":{}},{"id":"edge-0.04705626091934856","source":"1994","target":"1999","data":{}},{"id":"edge-0.48331102072188825","source":"2000","target":"2001","data":{}},{"id":"edge-0.7950822991462929","source":"2000","target":"2002","data":{}},{"id":"edge-0.9271334844670529","source":"2000","target":"2003","data":{}},{"id":"edge-0.7113669592912095","source":"2000","target":"2004","data":{}},{"id":"edge-0.05569056655288818","source":"2000","target":"2005","data":{}},{"id":"edge-0.9801079345445425","source":"2000","target":"2006","data":{}},{"id":"edge-0.07172702576860623","source":"2000","target":"2008","data":{}},{"id":"edge-0.7574309303061231","source":"2000","target":"2009","data":{}},{"id":"edge-0.176279782598723","source":"2000","target":"2010","data":{}},{"id":"edge-0.17195770179984216","source":"2000","target":"2011","data":{}},{"id":"edge-0.5212299247697552","source":"2000","target":"2012","data":{}},{"id":"edge-0.927079828571483","source":"2000","target":"2013","data":{}},{"id":"edge-0.4983798375754953","source":"16","target":"2014","data":{}},{"id":"edge-0.7602208034901812","source":"2014","target":"2015","data":{}},{"id":"edge-0.9984106135662978","source":"2014","target":"2016","data":{}},{"id":"edge-0.07850422387632805","source":"16","target":"2017","data":{}},{"id":"edge-0.28890510018907145","source":"2017","target":"2018","data":{}},{"id":"edge-0.37004101431803305","source":"16","target":"2019","data":{}},{"id":"edge-0.781710967102436","source":"2019","target":"2020","data":{}},{"id":"edge-0.9211277353651477","source":"16","target":"2021","data":{}},{"id":"edge-0.4479722164095121","source":"16","target":"2022","data":{}},{"id":"edge-0.5095695383245324","source":"17","target":"2023","data":{}},{"id":"edge-0.8612106054303901","source":"17","target":"2024","data":{}},{"id":"edge-0.6872466736897473","source":"17","target":"2025","data":{}},{"id":"edge-0.2509435655861567","source":"17","target":"2027","data":{}},{"id":"edge-0.2834515158365547","source":"17","target":"2028","data":{}},{"id":"edge-0.9158899648361303","source":"17","target":"2030","data":{}},{"id":"edge-0.9793553763608815","source":"17","target":"2031","data":{}},{"id":"edge-0.5946142119216817","source":"2031","target":"2032","data":{}},{"id":"edge-0.5233232860757158","source":"2031","target":"2033","data":{}},{"id":"edge-0.47955708532469155","source":"2031","target":"2034","data":{}},{"id":"edge-0.36692257356867053","source":"2031","target":"2035","data":{}},{"id":"edge-0.6588072253169277","source":"17","target":"2036","data":{}},{"id":"edge-0.004443282455207642","source":"17","target":"2037","data":{}},{"id":"edge-0.027862630156870738","source":"17","target":"2039","data":{}},{"id":"edge-0.4788028581895196","source":"17","target":"2040","data":{}},{"id":"edge-0.651679856419952","source":"17","target":"2041","data":{}},{"id":"edge-0.8049839820408762","source":"17","target":"2042","data":{}},{"id":"edge-0.9997409093923786","source":"17","target":"2043","data":{}},{"id":"edge-0.15418506717264702","source":"17","target":"2044","data":{}},{"id":"edge-0.07545838308391817","source":"2044","target":"2045","data":{}},{"id":"edge-0.9484425517233186","source":"17","target":"2046","data":{}},{"id":"edge-0.9288501796932915","source":"17","target":"2048","data":{}},{"id":"edge-0.8820233339361736","source":"17","target":"2049","data":{}},{"id":"edge-0.9527680873543014","source":"17","target":"2050","data":{}},{"id":"edge-0.3441847908410105","source":"17","target":"2051","data":{}},{"id":"edge-0.20194716391870093","source":"17","target":"2052","data":{}},{"id":"edge-0.2910550987218288","source":"17","target":"2054","data":{}},{"id":"edge-0.175291339836813","source":"17","target":"2056","data":{}},{"id":"edge-0.9986398937100842","source":"17","target":"2058","data":{}},{"id":"edge-0.7148066039749268","source":"17","target":"2059","data":{}},{"id":"edge-0.9413886934738687","source":"17","target":"2062","data":{}},{"id":"edge-0.2782955175444677","source":"17","target":"2064","data":{}},{"id":"edge-0.6262695899128421","source":"17","target":"2065","data":{}},{"id":"edge-0.07487022330967608","source":"17","target":"2069","data":{}},{"id":"edge-0.10076268515383302","source":"17","target":"2073","data":{}},{"id":"edge-0.39006035459873867","source":"17","target":"2076","data":{}},{"id":"edge-0.09692245689162982","source":"17","target":"2077","data":{}},{"id":"edge-0.30305134709759773","source":"17","target":"2078","data":{}},{"id":"edge-0.36109829376067437","source":"17","target":"2079","data":{}},{"id":"edge-0.8840244951048886","source":"17","target":"2082","data":{}},{"id":"edge-0.898834031144804","source":"17","target":"2083","data":{}},{"id":"edge-0.6030818960662179","source":"17","target":"4250","data":{}},{"id":"edge-0.48239088385828377","source":"17","target":"2085","data":{}},{"id":"edge-0.2140143922729154","source":"17","target":"2751","data":{}},{"id":"edge-0.6382754961132282","source":"17","target":"2087","data":{}},{"id":"edge-0.47569333594744956","source":"17","target":"2676","data":{}},{"id":"edge-0.4189920061661365","source":"4251","target":"4252","data":{}},{"id":"edge-0.8276269144177233","source":"4251","target":"4253","data":{}},{"id":"edge-0.1007155931228556","source":"4251","target":"4258","data":{}},{"id":"edge-0.7397860844900999","source":"4251","target":"4276","data":{}},{"id":"edge-0.07863982792161073","source":"4251","target":"4277","data":{}},{"id":"edge-0.28527234507223587","source":"4251","target":"4278","data":{}},{"id":"edge-0.7667856930822343","source":"4251","target":"4279","data":{}},{"id":"edge-0.518762712145747","source":"4251","target":"4280","data":{}},{"id":"edge-0.4616928355245815","source":"4251","target":"4281","data":{}},{"id":"edge-0.4340410967725612","source":"4251","target":"4282","data":{}},{"id":"edge-0.014691842221551399","source":"4251","target":"4283","data":{}},{"id":"edge-0.6145889691725621","source":"4251","target":"4284","data":{}},{"id":"edge-0.039992640107481936","source":"4251","target":"4285","data":{}},{"id":"edge-0.47705947481447186","source":"4251","target":"4286","data":{}},{"id":"edge-0.916461658899435","source":"4251","target":"4287","data":{}},{"id":"edge-0.6510789646144906","source":"4251","target":"4288","data":{}},{"id":"edge-0.7165127971045464","source":"4251","target":"4289","data":{}},{"id":"edge-0.46346013592329594","source":"4251","target":"4290","data":{}},{"id":"edge-0.6879090600752784","source":"4251","target":"4291","data":{}},{"id":"edge-0.034931874977166544","source":"4251","target":"4292","data":{}},{"id":"edge-0.4078652637581588","source":"4251","target":"4293","data":{}},{"id":"edge-0.6287760438569301","source":"4251","target":"4294","data":{}},{"id":"edge-0.886362214788122","source":"4294","target":"4295","data":{}},{"id":"edge-0.5165694682547255","source":"9","target":"4293","data":{}},{"id":"edge-0.6661963222407155","source":"4298","target":"2093","data":{}},{"id":"edge-0.49595574301350887","source":"4298","target":"2094","data":{}},{"id":"edge-0.3180105113795695","source":"4298","target":"2095","data":{}},{"id":"edge-0.9324762528576964","source":"4298","target":"2101","data":{}},{"id":"edge-0.34670029912176803","source":"4298","target":"2102","data":{}},{"id":"edge-0.11358781689311703","source":"4298","target":"2103","data":{}},{"id":"edge-0.9753496332085592","source":"4298","target":"2104","data":{}},{"id":"edge-0.17606541966683986","source":"4298","target":"2105","data":{}},{"id":"edge-0.1259174293925962","source":"4298","target":"2106","data":{}},{"id":"edge-0.40021019212629616","source":"4298","target":"2107","data":{}},{"id":"edge-0.4847730669753676","source":"4298","target":"2108","data":{}},{"id":"edge-0.8561055368182624","source":"4298","target":"2109","data":{}},{"id":"edge-0.18461734449541667","source":"4298","target":"2110","data":{}},{"id":"edge-0.786060004178458","source":"4298","target":"2111","data":{}},{"id":"edge-0.22012184473302798","source":"4298","target":"2112","data":{}},{"id":"edge-0.5232288188143994","source":"4298","target":"2113","data":{}},{"id":"edge-0.35457645702705354","source":"4298","target":"2114","data":{}},{"id":"edge-0.48162813693536943","source":"4298","target":"2115","data":{}},{"id":"edge-0.5175730762744384","source":"4298","target":"2116","data":{}},{"id":"edge-0.9326430642788466","source":"4298","target":"2117","data":{}},{"id":"edge-0.6128159716603099","source":"4298","target":"2118","data":{}},{"id":"edge-0.12506417284793048","source":"4298","target":"2119","data":{}},{"id":"edge-0.9445602061084177","source":"4298","target":"2120","data":{}},{"id":"edge-0.5726722792319974","source":"4298","target":"2121","data":{}},{"id":"edge-0.43213678056168825","source":"4298","target":"2127","data":{}},{"id":"edge-0.4906618006759771","source":"4298","target":"2128","data":{}},{"id":"edge-0.3433927618099806","source":"4298","target":"2129","data":{}},{"id":"edge-0.4991643828065835","source":"4298","target":"2130","data":{}},{"id":"edge-0.2682985572874439","source":"4298","target":"2132","data":{}},{"id":"edge-0.7948943302474603","source":"4298","target":"2133","data":{}},{"id":"edge-0.9710348260326527","source":"4298","target":"2134","data":{}},{"id":"edge-0.3605448809322509","source":"4298","target":"2135","data":{}},{"id":"edge-0.05668612306862597","source":"4298","target":"2136","data":{}},{"id":"edge-0.00017241517563904019","source":"4298","target":"2137","data":{}},{"id":"edge-0.4884337724657706","source":"4298","target":"2138","data":{}},{"id":"edge-0.6382789455323303","source":"4298","target":"2142","data":{}},{"id":"edge-0.025299411306462627","source":"4298","target":"2143","data":{}},{"id":"edge-0.613057163509843","source":"4298","target":"2144","data":{}},{"id":"edge-0.4025427091511442","source":"4298","target":"2145","data":{}},{"id":"edge-0.3994822044484416","source":"4298","target":"2146","data":{}},{"id":"edge-0.8793743701386612","source":"4298","target":"2147","data":{}},{"id":"edge-0.2597136223449672","source":"4298","target":"2149","data":{}},{"id":"edge-0.921842489682074","source":"4298","target":"2161","data":{}},{"id":"edge-0.3719886498215035","source":"4298","target":"2164","data":{}},{"id":"edge-0.8432080015106449","source":"18","target":"2245","data":{}},{"id":"edge-0.7978389583763024","source":"18","target":"2246","data":{}},{"id":"edge-0.6411963402172982","source":"18","target":"2247","data":{}},{"id":"edge-0.3662709248483773","source":"18","target":"2258","data":{}},{"id":"edge-0.26960465166880376","source":"18","target":"2259","data":{}},{"id":"edge-0.8250164743283999","source":"18","target":"2260","data":{}},{"id":"edge-0.3773230270762593","source":"18","target":"2261","data":{}},{"id":"edge-0.2945879664152802","source":"18","target":"2262","data":{}},{"id":"edge-0.8503730233064606","source":"18","target":"2263","data":{}},{"id":"edge-0.28753362375496017","source":"18","target":"2266","data":{}},{"id":"edge-0.5035446960278054","source":"18","target":"2268","data":{}},{"id":"edge-0.20260619869458885","source":"18","target":"2269","data":{}},{"id":"edge-0.44448277493296295","source":"18","target":"2270","data":{}},{"id":"edge-0.2877657468184611","source":"18","target":"2271","data":{}},{"id":"edge-0.8104740339799601","source":"18","target":"2272","data":{}},{"id":"edge-0.5464178385199483","source":"18","target":"2273","data":{}},{"id":"edge-0.12301234709716735","source":"18","target":"2276","data":{}},{"id":"edge-0.3364855957844908","source":"18","target":"2279","data":{}},{"id":"edge-0.07637922224948013","source":"18","target":"2280","data":{}},{"id":"edge-0.5770592494308764","source":"18","target":"2282","data":{}},{"id":"edge-0.014951767349089984","source":"18","target":"2286","data":{}},{"id":"edge-0.010333844832897787","source":"18","target":"2287","data":{}},{"id":"edge-0.3774642207856853","source":"18","target":"2288","data":{}},{"id":"edge-0.5193626763948571","source":"18","target":"2292","data":{}},{"id":"edge-0.3678743515501739","source":"18","target":"2293","data":{}},{"id":"edge-0.8995809837132194","source":"18","target":"2294","data":{}},{"id":"edge-0.16980178054574058","source":"18","target":"2295","data":{}},{"id":"edge-0.4060842594036884","source":"18","target":"2296","data":{}},{"id":"edge-0.6563731303998983","source":"18","target":"2297","data":{}},{"id":"edge-0.7993834034299516","source":"18","target":"2298","data":{}},{"id":"edge-0.9468367802030748","source":"18","target":"2299","data":{}},{"id":"edge-0.24082446255706058","source":"18","target":"2300","data":{}},{"id":"edge-0.7590233150594148","source":"18","target":"2301","data":{}},{"id":"edge-0.8326579531432936","source":"18","target":"2302","data":{}},{"id":"edge-0.38021069308751354","source":"18","target":"2303","data":{}},{"id":"edge-0.578752055919131","source":"18","target":"2307","data":{}},{"id":"edge-0.43140239783040357","source":"18","target":"2308","data":{}},{"id":"edge-0.2000243409671456","source":"18","target":"2309","data":{}},{"id":"edge-0.7566936746919395","source":"18","target":"2310","data":{}},{"id":"edge-0.9684501911656711","source":"18","target":"2311","data":{}},{"id":"edge-0.5000382318838581","source":"18","target":"2312","data":{}},{"id":"edge-0.33588720954563867","source":"18","target":"2313","data":{}},{"id":"edge-0.9583587798576865","source":"18","target":"2315","data":{}},{"id":"edge-0.5751507522489876","source":"18","target":"2316","data":{}},{"id":"edge-0.5431542309925199","source":"18","target":"2320","data":{}},{"id":"edge-0.1335436376372594","source":"18","target":"2324","data":{}},{"id":"edge-0.9222104871703729","source":"18","target":"2325","data":{}},{"id":"edge-0.7503933972397601","source":"18","target":"2326","data":{}},{"id":"edge-0.7763318916287107","source":"18","target":"2329","data":{}},{"id":"edge-0.6298532074332277","source":"18","target":"2330","data":{}},{"id":"edge-0.5493592180775622","source":"18","target":"2331","data":{}},{"id":"edge-0.9574008109893399","source":"18","target":"2332","data":{}},{"id":"edge-0.22546067836265182","source":"18","target":"2333","data":{}},{"id":"edge-0.31183141632160916","source":"18","target":"2334","data":{}},{"id":"edge-0.7054449035710428","source":"18","target":"2335","data":{}},{"id":"edge-0.5135224425365548","source":"18","target":"2336","data":{}},{"id":"edge-0.04989149941609705","source":"18","target":"2337","data":{}},{"id":"edge-0.18352671027304335","source":"18","target":"2338","data":{}},{"id":"edge-0.9358644251096118","source":"18","target":"2339","data":{}},{"id":"edge-0.4683545485770624","source":"18","target":"2340","data":{}},{"id":"edge-0.7216408405509083","source":"18","target":"2341","data":{}},{"id":"edge-0.925823227665709","source":"18","target":"2342","data":{}},{"id":"edge-0.16076820930086977","source":"18","target":"2343","data":{}},{"id":"edge-0.07092390489317091","source":"18","target":"2344","data":{}},{"id":"edge-0.9665916918067643","source":"18","target":"2345","data":{}},{"id":"edge-0.7671377813563458","source":"18","target":"2346","data":{}},{"id":"edge-0.984098289621087","source":"18","target":"2347","data":{}},{"id":"edge-0.22555828382762488","source":"18","target":"2348","data":{}},{"id":"edge-0.20311164188856412","source":"18","target":"2349","data":{}},{"id":"edge-0.2504537451833806","source":"18","target":"2350","data":{}},{"id":"edge-0.6405113712427748","source":"18","target":"2351","data":{}},{"id":"edge-0.14208862545396084","source":"18","target":"2352","data":{}},{"id":"edge-0.338399507582809","source":"18","target":"2353","data":{}},{"id":"edge-0.13538209364729337","source":"18","target":"2354","data":{}},{"id":"edge-0.5626237262060751","source":"18","target":"2355","data":{}},{"id":"edge-0.028733457429946707","source":"18","target":"2356","data":{}},{"id":"edge-0.5495420824691537","source":"18","target":"2357","data":{}},{"id":"edge-0.9490830269688106","source":"18","target":"2358","data":{}},{"id":"edge-0.15990010961622736","source":"18","target":"2359","data":{}},{"id":"edge-0.709330491515967","source":"18","target":"2360","data":{}},{"id":"edge-0.007725550101183698","source":"18","target":"2361","data":{}},{"id":"edge-0.6512632457698397","source":"18","target":"2362","data":{}},{"id":"edge-0.41507718572632535","source":"18","target":"2363","data":{}},{"id":"edge-0.6922536482100066","source":"18","target":"2364","data":{}},{"id":"edge-0.8554557569054633","source":"18","target":"2365","data":{}},{"id":"edge-0.2288728139245928","source":"18","target":"2366","data":{}},{"id":"edge-0.9831119905084382","source":"18","target":"2367","data":{}},{"id":"edge-0.2030630050028166","source":"18","target":"2368","data":{}},{"id":"edge-0.776369578478991","source":"18","target":"2376","data":{}},{"id":"edge-0.35716494095063944","source":"18","target":"2377","data":{}},{"id":"edge-0.1540226613893263","source":"18","target":"2380","data":{}},{"id":"edge-0.4176294910299989","source":"18","target":"2381","data":{}},{"id":"edge-0.565668209121698","source":"18","target":"2382","data":{}},{"id":"edge-0.6462719884367238","source":"18","target":"2383","data":{}},{"id":"edge-0.8881469773481736","source":"18","target":"2384","data":{}},{"id":"edge-0.4358620837938816","source":"18","target":"2385","data":{}},{"id":"edge-0.9245292397181775","source":"18","target":"2386","data":{}},{"id":"edge-0.12931318680728365","source":"18","target":"2392","data":{}},{"id":"edge-0.6251532350383224","source":"18","target":"2393","data":{}},{"id":"edge-0.6439806398903687","source":"18","target":"2394","data":{}},{"id":"edge-0.5702298382156525","source":"18","target":"2395","data":{}},{"id":"edge-0.4190482340779582","source":"18","target":"2396","data":{}},{"id":"edge-0.48995358115973775","source":"18","target":"2397","data":{}},{"id":"edge-0.7036498347466276","source":"18","target":"2398","data":{}},{"id":"edge-0.7624989796836048","source":"18","target":"2401","data":{}},{"id":"edge-0.6451197649438234","source":"18","target":"2404","data":{}},{"id":"edge-0.6036626084753707","source":"18","target":"2411","data":{}},{"id":"edge-0.410671036018492","source":"18","target":"2413","data":{}},{"id":"edge-0.03934907621194417","source":"18","target":"2420","data":{}},{"id":"edge-0.8895885350927539","source":"18","target":"2421","data":{}},{"id":"edge-0.2322444705550859","source":"18","target":"2422","data":{}},{"id":"edge-0.7167510314409218","source":"18","target":"2424","data":{}},{"id":"edge-0.44891059346840234","source":"18","target":"2425","data":{}},{"id":"edge-0.034994221005379744","source":"18","target":"2426","data":{}},{"id":"edge-0.9046899563021049","source":"18","target":"2432","data":{}},{"id":"edge-0.998848813446632","source":"18","target":"2433","data":{}},{"id":"edge-0.581351822704574","source":"18","target":"2434","data":{}},{"id":"edge-0.5109453097294154","source":"18","target":"2435","data":{}},{"id":"edge-0.9101234669285823","source":"18","target":"2436","data":{}},{"id":"edge-0.4217864283319914","source":"18","target":"2438","data":{}},{"id":"edge-0.9550438483609762","source":"18","target":"2439","data":{}},{"id":"edge-0.6866985784377522","source":"18","target":"2440","data":{}},{"id":"edge-0.3946577602743915","source":"18","target":"2442","data":{}},{"id":"edge-0.274541801094603","source":"18","target":"2443","data":{}},{"id":"edge-0.7209385166923559","source":"18","target":"2444","data":{}},{"id":"edge-0.19803020938223148","source":"18","target":"2448","data":{}},{"id":"edge-0.7889232951198666","source":"18","target":"2449","data":{}},{"id":"edge-0.7362439964180822","source":"18","target":"2455","data":{}},{"id":"edge-0.26653244426391964","source":"18","target":"2456","data":{}},{"id":"edge-0.7705652997878802","source":"18","target":"2460","data":{}},{"id":"edge-0.0889207831269212","source":"18","target":"2461","data":{}},{"id":"edge-0.2395511785636535","source":"18","target":"2463","data":{}},{"id":"edge-0.9295032948198434","source":"18","target":"2464","data":{}},{"id":"edge-0.6531960329000897","source":"18","target":"2466","data":{}},{"id":"edge-0.7638096256652405","source":"18","target":"2467","data":{}},{"id":"edge-0.4346785601118732","source":"18","target":"2468","data":{}},{"id":"edge-0.9896673343985174","source":"18","target":"2469","data":{}},{"id":"edge-0.7375424126259122","source":"18","target":"2470","data":{}},{"id":"edge-0.41055073242154294","source":"18","target":"2471","data":{}},{"id":"edge-0.47812338903974894","source":"18","target":"2472","data":{}},{"id":"edge-0.8783787431365602","source":"18","target":"2473","data":{}},{"id":"edge-0.4203631808768493","source":"18","target":"2474","data":{}},{"id":"edge-0.6899760048318611","source":"18","target":"2475","data":{}},{"id":"edge-0.6738589367537797","source":"18","target":"2485","data":{}},{"id":"edge-0.9554543386783041","source":"18","target":"2500","data":{}},{"id":"edge-0.6982302566279432","source":"18","target":"2503","data":{}},{"id":"edge-0.10836855955444591","source":"18","target":"2504","data":{}},{"id":"edge-0.3726170018248496","source":"18","target":"2507","data":{}},{"id":"edge-0.958378397637164","source":"18","target":"2509","data":{}},{"id":"edge-0.12819129736984336","source":"18","target":"2510","data":{}},{"id":"edge-0.9352581775239257","source":"18","target":"2512","data":{}},{"id":"edge-0.30147057891278095","source":"18","target":"2515","data":{}},{"id":"edge-0.5267479590122266","source":"18","target":"2526","data":{}},{"id":"edge-0.93203164889585","source":"19","target":"2527","data":{}},{"id":"edge-0.0819751605107717","source":"19","target":"2528","data":{}},{"id":"edge-0.5102125969583926","source":"19","target":"2529","data":{}},{"id":"edge-0.43575739577608563","source":"19","target":"2530","data":{}},{"id":"edge-0.38890022720079664","source":"19","target":"2532","data":{}},{"id":"edge-0.7755700100842331","source":"19","target":"2534","data":{}},{"id":"edge-0.19303376434218267","source":"19","target":"2535","data":{}},{"id":"edge-0.8710155678490072","source":"19","target":"2536","data":{}},{"id":"edge-0.004936091054811298","source":"19","target":"2537","data":{}},{"id":"edge-0.4103999988693319","source":"19","target":"2538","data":{}},{"id":"edge-0.06851416536406751","source":"19","target":"2539","data":{}},{"id":"edge-0.4586722915672521","source":"19","target":"2540","data":{}},{"id":"edge-0.504103886861069","source":"19","target":"2541","data":{}},{"id":"edge-0.09024714095978936","source":"19","target":"2542","data":{}},{"id":"edge-0.24823911935219423","source":"19","target":"2543","data":{}},{"id":"edge-0.829240916703861","source":"19","target":"2544","data":{}},{"id":"edge-0.3484112857635615","source":"19","target":"2545","data":{}},{"id":"edge-0.4785697422841497","source":"19","target":"2546","data":{}},{"id":"edge-0.38599982922099074","source":"19","target":"2547","data":{}},{"id":"edge-0.07676661571462717","source":"19","target":"2548","data":{}},{"id":"edge-0.8666368334921333","source":"19","target":"2549","data":{}},{"id":"edge-0.5466546144106899","source":"19","target":"2550","data":{}},{"id":"edge-0.6276469186545557","source":"19","target":"2551","data":{}},{"id":"edge-0.8067242977442046","source":"19","target":"2552","data":{}},{"id":"edge-0.38899183913010726","source":"19","target":"2553","data":{}},{"id":"edge-0.6014120441304782","source":"19","target":"2554","data":{}},{"id":"edge-0.08475983928151654","source":"19","target":"2555","data":{}},{"id":"edge-0.4298302989007823","source":"19","target":"2556","data":{}},{"id":"edge-0.3076631079760992","source":"19","target":"2557","data":{}},{"id":"edge-0.8222163853762099","source":"19","target":"2558","data":{}},{"id":"edge-0.5720492670340886","source":"19","target":"2560","data":{}},{"id":"edge-0.18770485371416057","source":"19","target":"2561","data":{}},{"id":"edge-0.09097203109762564","source":"19","target":"2562","data":{}},{"id":"edge-0.34124749159571466","source":"19","target":"2563","data":{}},{"id":"edge-0.5147683340291285","source":"19","target":"2564","data":{}},{"id":"edge-0.681025681456944","source":"19","target":"2565","data":{}},{"id":"edge-0.055444972418369876","source":"19","target":"2566","data":{}},{"id":"edge-0.9971306767069039","source":"19","target":"2567","data":{}},{"id":"edge-0.5371151533659637","source":"19","target":"2568","data":{}},{"id":"edge-0.14771811062284468","source":"19","target":"2569","data":{}},{"id":"edge-0.4661764926417771","source":"19","target":"2572","data":{}},{"id":"edge-0.9932453244745649","source":"19","target":"2573","data":{}},{"id":"edge-0.8626966875962192","source":"19","target":"2574","data":{}},{"id":"edge-0.9557515188077099","source":"19","target":"2575","data":{}},{"id":"edge-0.3576337639104272","source":"19","target":"2576","data":{}},{"id":"edge-0.1910047083005959","source":"19","target":"2577","data":{}},{"id":"edge-0.679653737034996","source":"19","target":"2579","data":{}},{"id":"edge-0.7248591354736387","source":"19","target":"2580","data":{}},{"id":"edge-0.32955780634162113","source":"19","target":"2581","data":{}},{"id":"edge-0.2834578330466644","source":"19","target":"2583","data":{}},{"id":"edge-0.044759999830131125","source":"19","target":"2584","data":{}},{"id":"edge-0.5267791474453467","source":"19","target":"2585","data":{}},{"id":"edge-0.9422131164960608","source":"20","target":"2586","data":{}},{"id":"edge-0.4860553795006457","source":"20","target":"2587","data":{}},{"id":"edge-0.6776874215109536","source":"20","target":"2589","data":{}},{"id":"edge-0.6176706920615402","source":"20","target":"2595","data":{}},{"id":"edge-0.042260912106508064","source":"20","target":"2597","data":{}},{"id":"edge-0.6292362463934529","source":"20","target":"2601","data":{}},{"id":"edge-0.9861711672017426","source":"20","target":"2602","data":{}},{"id":"edge-0.6546077704777511","source":"20","target":"2603","data":{}},{"id":"edge-0.9570822338038443","source":"20","target":"2604","data":{}},{"id":"edge-0.15511375159742036","source":"20","target":"2605","data":{}},{"id":"edge-0.9892199260852033","source":"20","target":"2608","data":{}},{"id":"edge-0.4793277532978133","source":"20","target":"2611","data":{}},{"id":"edge-0.8621217437266497","source":"20","target":"2612","data":{}},{"id":"edge-0.6255872278253831","source":"20","target":"2623","data":{}},{"id":"edge-0.926091261917591","source":"20","target":"2624","data":{}},{"id":"edge-0.6376290237707019","source":"20","target":"2629","data":{}},{"id":"edge-0.0014329321897530445","source":"20","target":"2638","data":{}},{"id":"edge-0.6576620392635624","source":"20","target":"2640","data":{}},{"id":"edge-0.5251218296749938","source":"20","target":"2641","data":{}},{"id":"edge-0.9667997181874224","source":"20","target":"2642","data":{}},{"id":"edge-0.6667212076723144","source":"20","target":"2643","data":{}},{"id":"edge-0.9730156232721039","source":"20","target":"2647","data":{}},{"id":"edge-0.21754972824567043","source":"20","target":"2661","data":{}},{"id":"edge-0.021291708497097384","source":"20","target":"2675","data":{}},{"id":"edge-0.4026770991473012","source":"20","target":"2676","data":{}},{"id":"edge-0.868303505790361","source":"20","target":"2677","data":{}},{"id":"edge-0.5650794701462807","source":"20","target":"2678","data":{}},{"id":"edge-0.4877324338231126","source":"4299","target":"4300","data":{}},{"id":"edge-0.6310403710207206","source":"4299","target":"4301","data":{}},{"id":"edge-0.8931684763829966","source":"4299","target":"4304","data":{}},{"id":"edge-0.8163936835815335","source":"4299","target":"4307","data":{}},{"id":"edge-0.8754784857280591","source":"4299","target":"4309","data":{}},{"id":"edge-0.3080564133063475","source":"4299","target":"4311","data":{}},{"id":"edge-0.5381764355227745","source":"4299","target":"4313","data":{}},{"id":"edge-0.08816454630998805","source":"4299","target":"4314","data":{}},{"id":"edge-0.7409191294440376","source":"4299","target":"4315","data":{}},{"id":"edge-0.24069661956137245","source":"4299","target":"4316","data":{}},{"id":"edge-0.047177062674222725","source":"4299","target":"4317","data":{}},{"id":"edge-0.5239450046053982","source":"4299","target":"4318","data":{}},{"id":"edge-0.11610503101067104","source":"4299","target":"4319","data":{}},{"id":"edge-0.28993032203447733","source":"4299","target":"4320","data":{}},{"id":"edge-0.5501200982058727","source":"4299","target":"4324","data":{}},{"id":"edge-0.317659210293715","source":"4299","target":"4325","data":{}},{"id":"edge-0.7122775818298421","source":"4299","target":"4326","data":{}},{"id":"edge-0.4081470442359836","source":"4299","target":"4328","data":{}},{"id":"edge-0.7020674262046078","source":"4299","target":"4330","data":{}},{"id":"edge-0.21165727726774586","source":"4299","target":"4331","data":{}},{"id":"edge-0.8090852846906906","source":"4299","target":"4332","data":{}},{"id":"edge-0.45553702747829217","source":"4299","target":"4333","data":{}},{"id":"edge-0.9999077638050036","source":"4299","target":"4334","data":{}},{"id":"edge-0.18311150629556971","source":"4299","target":"4335","data":{}},{"id":"edge-0.46641440992077343","source":"4299","target":"4336","data":{}},{"id":"edge-0.2529580710824668","source":"4299","target":"4337","data":{}},{"id":"edge-0.37933830485320685","source":"4299","target":"4338","data":{}},{"id":"edge-0.2978066717634156","source":"4299","target":"4339","data":{}},{"id":"edge-0.2833213087414366","source":"4299","target":"4340","data":{}},{"id":"edge-0.4961847643121804","source":"4299","target":"4342","data":{}},{"id":"edge-0.724741405827366","source":"4299","target":"4343","data":{}},{"id":"edge-0.6861452353951187","source":"4299","target":"4344","data":{}},{"id":"edge-0.09802151435072592","source":"4299","target":"4345","data":{}},{"id":"edge-0.3958383593220858","source":"4299","target":"4346","data":{}},{"id":"edge-0.4440028732211345","source":"4299","target":"4349","data":{}},{"id":"edge-0.10788739443715478","source":"4299","target":"4350","data":{}},{"id":"edge-0.8659102579564464","source":"4299","target":"4351","data":{}},{"id":"edge-0.4898973383738163","source":"4299","target":"4352","data":{}},{"id":"edge-0.182743377077198","source":"4299","target":"4353","data":{}},{"id":"edge-0.7872403385864608","source":"4299","target":"169","data":{}},{"id":"edge-0.8465304672547216","source":"4299","target":"4355","data":{}},{"id":"edge-0.6235514351277869","source":"4299","target":"4356","data":{}},{"id":"edge-0.4814560694353438","source":"4299","target":"4357","data":{}},{"id":"edge-0.4658017847088882","source":"4299","target":"4358","data":{}},{"id":"edge-0.8188379844089493","source":"4299","target":"4359","data":{}},{"id":"edge-0.9196917180982878","source":"4299","target":"4360","data":{}},{"id":"edge-0.8535141798498505","source":"4299","target":"4361","data":{}},{"id":"edge-0.6783248915629003","source":"4299","target":"4362","data":{}},{"id":"edge-0.5678804995149203","source":"21","target":"2679","data":{}},{"id":"edge-0.7723214595769949","source":"21","target":"2680","data":{}},{"id":"edge-0.7247004422017349","source":"21","target":"2681","data":{}},{"id":"edge-0.5192201104228638","source":"21","target":"2682","data":{}},{"id":"edge-0.3396719003118165","source":"21","target":"2683","data":{}},{"id":"edge-0.3160906447812921","source":"21","target":"2684","data":{}},{"id":"edge-0.9741272923993818","source":"21","target":"2685","data":{}},{"id":"edge-0.8069148543774729","source":"21","target":"2686","data":{}},{"id":"edge-0.31180327764708715","source":"21","target":"2687","data":{}},{"id":"edge-0.2686624254654433","source":"21","target":"2688","data":{}},{"id":"edge-0.12399614819772453","source":"21","target":"2689","data":{}},{"id":"edge-0.9584369278255398","source":"21","target":"2690","data":{}},{"id":"edge-0.9114522951252597","source":"21","target":"2691","data":{}},{"id":"edge-0.6996346335283776","source":"21","target":"2692","data":{}},{"id":"edge-0.1729457928044036","source":"21","target":"2693","data":{}},{"id":"edge-0.9312812617087114","source":"21","target":"2694","data":{}},{"id":"edge-0.028211208567701762","source":"21","target":"2695","data":{}},{"id":"edge-0.5129663245772709","source":"21","target":"2696","data":{}},{"id":"edge-0.5956425797582017","source":"21","target":"2698","data":{}},{"id":"edge-0.6232813022263195","source":"21","target":"2699","data":{}},{"id":"edge-0.8433235660620204","source":"21","target":"2700","data":{}},{"id":"edge-0.43229855911416504","source":"21","target":"2701","data":{}},{"id":"edge-0.0819021080256308","source":"21","target":"2702","data":{}},{"id":"edge-0.2077441585462525","source":"21","target":"2703","data":{}},{"id":"edge-0.9026667805374775","source":"21","target":"2705","data":{}},{"id":"edge-0.6117216714814095","source":"21","target":"2721","data":{}},{"id":"edge-0.9626272487953","source":"22","target":"2723","data":{}},{"id":"edge-0.052201214750279945","source":"22","target":"2724","data":{}},{"id":"edge-0.7120147112097419","source":"22","target":"2725","data":{}},{"id":"edge-0.8589091752559379","source":"22","target":"2726","data":{}},{"id":"edge-0.6302368403137644","source":"22","target":"2728","data":{}},{"id":"edge-0.8146408396900957","source":"22","target":"2729","data":{}},{"id":"edge-0.0012791685450319612","source":"22","target":"2730","data":{}},{"id":"edge-0.6543934901012931","source":"22","target":"2732","data":{}},{"id":"edge-0.23326285015138337","source":"22","target":"2733","data":{}},{"id":"edge-0.2989196557118161","source":"22","target":"2735","data":{}},{"id":"edge-0.20081451737915468","source":"22","target":"2737","data":{}},{"id":"edge-0.8360333041838679","source":"22","target":"2738","data":{}},{"id":"edge-0.029008970602266926","source":"22","target":"2739","data":{}},{"id":"edge-0.13925086837661915","source":"22","target":"2740","data":{}},{"id":"edge-0.07664206220592096","source":"22","target":"2741","data":{}},{"id":"edge-0.2674471681463293","source":"22","target":"2746","data":{}},{"id":"edge-0.5941718592988889","source":"22","target":"2747","data":{}},{"id":"edge-0.06346008755334487","source":"22","target":"2748","data":{}},{"id":"edge-0.006933991745249557","source":"22","target":"2749","data":{}},{"id":"edge-0.9343369001439721","source":"22","target":"2750","data":{}},{"id":"edge-0.6089677163761795","source":"22","target":"2751","data":{}},{"id":"edge-0.14500252240968314","source":"23","target":"2752","data":{}},{"id":"edge-0.9603330246819841","source":"23","target":"2753","data":{}},{"id":"edge-0.6234480512150848","source":"2753","target":"2754","data":{}},{"id":"edge-0.16207340510977652","source":"2753","target":"2755","data":{}},{"id":"edge-0.8471338070129926","source":"2753","target":"2756","data":{}},{"id":"edge-0.11974763080042816","source":"2753","target":"2757","data":{}},{"id":"edge-0.8294981802529839","source":"2753","target":"2758","data":{}},{"id":"edge-0.757256393855319","source":"2753","target":"2759","data":{}},{"id":"edge-0.628562058051185","source":"2753","target":"2760","data":{}},{"id":"edge-0.6823050750413437","source":"2753","target":"2761","data":{}},{"id":"edge-0.3262975652664952","source":"23","target":"2762","data":{}},{"id":"edge-0.3490469029510088","source":"2762","target":"2763","data":{}},{"id":"edge-0.22269382505587676","source":"2762","target":"2765","data":{}},{"id":"edge-0.21081058200578884","source":"2762","target":"2766","data":{}},{"id":"edge-0.44032496041652003","source":"2762","target":"2767","data":{}},{"id":"edge-0.9832691843497057","source":"23","target":"2764","data":{}},{"id":"edge-0.5907865894026401","source":"23","target":"2768","data":{}},{"id":"edge-0.22479299689885246","source":"23","target":"2769","data":{}},{"id":"edge-0.6090047607834326","source":"2769","target":"2770","data":{}},{"id":"edge-0.909671579742005","source":"2769","target":"2771","data":{}},{"id":"edge-0.6522426409626896","source":"2769","target":"2772","data":{}},{"id":"edge-0.0706533622270813","source":"2769","target":"2773","data":{}},{"id":"edge-0.31966720764994716","source":"2769","target":"2774","data":{}},{"id":"edge-0.6554356683216389","source":"23","target":"2775","data":{}},{"id":"edge-0.05619763978319847","source":"2775","target":"2776","data":{}},{"id":"edge-0.5097978316082299","source":"2775","target":"2777","data":{}},{"id":"edge-0.31045279074436705","source":"2775","target":"2778","data":{}},{"id":"edge-0.5155675774577988","source":"2775","target":"2779","data":{}},{"id":"edge-0.43918976044223257","source":"2775","target":"2780","data":{}},{"id":"edge-0.9779015824992294","source":"2775","target":"2782","data":{}},{"id":"edge-0.5791106365970964","source":"23","target":"2783","data":{}},{"id":"edge-0.48847807343471406","source":"23","target":"4364","data":{}},{"id":"edge-0.0119414228295045","source":"23","target":"2784","data":{}},{"id":"edge-0.21985951359050993","source":"23","target":"2785","data":{}},{"id":"edge-0.05836024401388751","source":"23","target":"2786","data":{}},{"id":"edge-0.7092524185601314","source":"23","target":"2787","data":{}},{"id":"edge-0.8745375147569676","source":"4364","target":"2788","data":{}},{"id":"edge-0.3178645647995402","source":"4364","target":"2789","data":{}},{"id":"edge-0.5751058000683413","source":"4364","target":"2790","data":{}},{"id":"edge-0.6201020911591106","source":"4364","target":"2791","data":{}},{"id":"edge-0.9496810429762774","source":"4364","target":"2792","data":{}},{"id":"edge-0.14577308713362824","source":"4364","target":"2793","data":{}},{"id":"edge-0.796471490369729","source":"4364","target":"2794","data":{}},{"id":"edge-0.08921287647283505","source":"4364","target":"2795","data":{}},{"id":"edge-0.5006349499901661","source":"4364","target":"2796","data":{}},{"id":"edge-0.08109039172478094","source":"4364","target":"2797","data":{}},{"id":"edge-0.5346490276083669","source":"4364","target":"2798","data":{}},{"id":"edge-0.4223616048752272","source":"4364","target":"2799","data":{}},{"id":"edge-0.9593083939188283","source":"4364","target":"2800","data":{}},{"id":"edge-0.18063243837876763","source":"4364","target":"2801","data":{}},{"id":"edge-0.9256088991460911","source":"4364","target":"2802","data":{}},{"id":"edge-0.19246386901880697","source":"4364","target":"2803","data":{}},{"id":"edge-0.5346348683456337","source":"4364","target":"2804","data":{}},{"id":"edge-0.46533796876727407","source":"4364","target":"2805","data":{}},{"id":"edge-0.8451550191418604","source":"4364","target":"2806","data":{}},{"id":"edge-0.8231208910077372","source":"4364","target":"2807","data":{}},{"id":"edge-0.42272286434954665","source":"4364","target":"2808","data":{}},{"id":"edge-0.5641867140680659","source":"4364","target":"2809","data":{}},{"id":"edge-0.031392568868251924","source":"4364","target":"2810","data":{}},{"id":"edge-0.5703601885555938","source":"23","target":"2811","data":{}},{"id":"edge-0.23117323272903145","source":"23","target":"2812","data":{}},{"id":"edge-0.12963921209546103","source":"2811","target":"2813","data":{}},{"id":"edge-0.1410596659449308","source":"2811","target":"2814","data":{}},{"id":"edge-0.6280785379453186","source":"2811","target":"2815","data":{}},{"id":"edge-0.25919339366283345","source":"2811","target":"2816","data":{}},{"id":"edge-0.005330191835343667","source":"2811","target":"2817","data":{}},{"id":"edge-0.7561727178172559","source":"2811","target":"2818","data":{}},{"id":"edge-0.5696957489093122","source":"2811","target":"2819","data":{}},{"id":"edge-0.9128955276404498","source":"2811","target":"2820","data":{}},{"id":"edge-0.5233492840163345","source":"2811","target":"2821","data":{}},{"id":"edge-0.5029036910124156","source":"2811","target":"2822","data":{}},{"id":"edge-0.2963339456345311","source":"2811","target":"2823","data":{}},{"id":"edge-0.2923387893025895","source":"2811","target":"2826","data":{}},{"id":"edge-0.1539582192853235","source":"2811","target":"2827","data":{}},{"id":"edge-0.18467620153705222","source":"2811","target":"2831","data":{}},{"id":"edge-0.9113749123078425","source":"491","target":"2833","data":{}},{"id":"edge-0.10848162965747399","source":"491","target":"2834","data":{}},{"id":"edge-0.40160639037908696","source":"4365","target":"2812","data":{}},{"id":"edge-0.7277422879264002","source":"491","target":"2835","data":{}},{"id":"edge-0.32413489300247855","source":"2811","target":"1847","data":{}},{"id":"edge-0.1239148336740441","source":"1611","target":"1847","data":{}},{"id":"edge-0.5579353289624565","source":"23","target":"1278","data":{}},{"id":"edge-0.564934612229983","source":"23","target":"237","data":{}},{"id":"edge-0.5110193028111902","source":"237","target":"2840","data":{}},{"id":"edge-0.6592089806440902","source":"237","target":"2841","data":{}},{"id":"edge-0.6811640879369802","source":"2811","target":"2842","data":{}},{"id":"edge-0.6094991688897706","source":"2811","target":"2843","data":{}},{"id":"edge-0.3953731466896464","source":"23","target":"2847","data":{}},{"id":"edge-0.7795036131046755","source":"23","target":"2849","data":{}},{"id":"edge-0.13656252637010424","source":"23","target":"2850","data":{}},{"id":"edge-0.9572445230838291","source":"2847","target":"2851","data":{}},{"id":"edge-0.5535221520330134","source":"2847","target":"2852","data":{}},{"id":"edge-0.865323858909929","source":"23","target":"2853","data":{}},{"id":"edge-0.7628681154401913","source":"23","target":"2854","data":{}},{"id":"edge-0.47574000387358195","source":"2847","target":"2855","data":{}},{"id":"edge-0.17424244717802817","source":"2847","target":"2856","data":{}},{"id":"edge-0.5113760045362377","source":"2847","target":"2857","data":{}},{"id":"edge-0.07748052368557179","source":"2847","target":"2858","data":{}},{"id":"edge-0.3714723354874949","source":"2847","target":"2859","data":{}},{"id":"edge-0.6761265852756773","source":"23","target":"2860","data":{}},{"id":"edge-0.384004183230092","source":"23","target":"2861","data":{}},{"id":"edge-0.5496833640515022","source":"23","target":"2862","data":{}},{"id":"edge-0.4506951112246309","source":"23","target":"2863","data":{}},{"id":"edge-0.30418070500032823","source":"2863","target":"2864","data":{}},{"id":"edge-0.2379161130338976","source":"2863","target":"2865","data":{}},{"id":"edge-0.16262261224484043","source":"2863","target":"2866","data":{}},{"id":"edge-0.48497085712499755","source":"2863","target":"2867","data":{}},{"id":"edge-0.5577539658355852","source":"2863","target":"2868","data":{}},{"id":"edge-0.7858061593727588","source":"2863","target":"2869","data":{}},{"id":"edge-0.7176345513810765","source":"2863","target":"2870","data":{}},{"id":"edge-0.34490301033631976","source":"23","target":"2871","data":{}},{"id":"edge-0.4255616083039033","source":"23","target":"2872","data":{}},{"id":"edge-0.6297515135037495","source":"2872","target":"2873","data":{}},{"id":"edge-0.619909325361677","source":"2872","target":"2874","data":{}},{"id":"edge-0.15987778800054464","source":"2872","target":"2875","data":{}},{"id":"edge-0.8706900369042037","source":"2872","target":"2876","data":{}},{"id":"edge-0.6279883788882428","source":"2872","target":"2877","data":{}},{"id":"edge-0.645227415043244","source":"2872","target":"2878","data":{}},{"id":"edge-0.4120691328191206","source":"23","target":"2879","data":{}},{"id":"edge-0.9932815069752736","source":"23","target":"389","data":{}},{"id":"edge-0.8324715207099842","source":"23","target":"2880","data":{}},{"id":"edge-0.4900446339323552","source":"23","target":"2881","data":{}},{"id":"edge-0.6121214874381196","source":"23","target":"2882","data":{}},{"id":"edge-0.5062892885693113","source":"23","target":"2883","data":{}},{"id":"edge-0.3553207255200772","source":"23","target":"2884","data":{}},{"id":"edge-0.35316640185749937","source":"23","target":"2885","data":{}},{"id":"edge-0.5851978758889158","source":"23","target":"2886","data":{}},{"id":"edge-0.5596006218820644","source":"23","target":"2887","data":{}},{"id":"edge-0.5836094095886595","source":"23","target":"2888","data":{}},{"id":"edge-0.8483887627200855","source":"23","target":"2889","data":{}},{"id":"edge-0.9211338346797773","source":"23","target":"2890","data":{}},{"id":"edge-0.8444062372808812","source":"23","target":"2891","data":{}},{"id":"edge-0.6157046176861343","source":"23","target":"2892","data":{}},{"id":"edge-0.8737548115233782","source":"23","target":"2893","data":{}},{"id":"edge-0.9999577690863235","source":"23","target":"2894","data":{}},{"id":"edge-0.2327388654367184","source":"23","target":"2895","data":{}},{"id":"edge-0.9476239937337361","source":"23","target":"2896","data":{}},{"id":"edge-0.13115524154407288","source":"23","target":"2897","data":{}},{"id":"edge-0.2024694535966769","source":"23","target":"2898","data":{}},{"id":"edge-0.5997399742753668","source":"23","target":"2899","data":{}},{"id":"edge-0.5512489263264055","source":"23","target":"2900","data":{}},{"id":"edge-0.11347783059091743","source":"23","target":"2901","data":{}},{"id":"edge-0.7468290548463019","source":"23","target":"2902","data":{}},{"id":"edge-0.069498503562756","source":"23","target":"2903","data":{}},{"id":"edge-0.8940332281156089","source":"23","target":"2904","data":{}},{"id":"edge-0.9434968254581924","source":"23","target":"2905","data":{}},{"id":"edge-0.7240587082010088","source":"23","target":"2906","data":{}},{"id":"edge-0.6000867864595896","source":"23","target":"2907","data":{}},{"id":"edge-0.7542885401594324","source":"23","target":"2908","data":{}},{"id":"edge-0.13704246076553428","source":"23","target":"2909","data":{}},{"id":"edge-0.07730113797569405","source":"23","target":"2910","data":{}},{"id":"edge-0.9633811444492362","source":"23","target":"2911","data":{}},{"id":"edge-0.6445681156623975","source":"23","target":"2912","data":{}},{"id":"edge-0.25086022336113567","source":"23","target":"2913","data":{}},{"id":"edge-0.9483797661732467","source":"23","target":"2914","data":{}},{"id":"edge-0.6352341251613993","source":"23","target":"2915","data":{}},{"id":"edge-0.16680484772246706","source":"23","target":"2917","data":{}},{"id":"edge-0.5423681749779006","source":"23","target":"2918","data":{}},{"id":"edge-0.43511090382549944","source":"23","target":"2919","data":{}},{"id":"edge-0.9670989597952333","source":"23","target":"2920","data":{}},{"id":"edge-0.3722914195360576","source":"23","target":"2921","data":{}},{"id":"edge-0.3602863498497031","source":"23","target":"2922","data":{}},{"id":"edge-0.21194913481219846","source":"23","target":"2923","data":{}},{"id":"edge-0.3853139918541091","source":"23","target":"2925","data":{}},{"id":"edge-0.6644986863193758","source":"23","target":"2926","data":{}},{"id":"edge-0.8297008410304985","source":"23","target":"2927","data":{}},{"id":"edge-0.7823555125862613","source":"23","target":"2928","data":{}},{"id":"edge-0.6009894041149726","source":"23","target":"2929","data":{}},{"id":"edge-0.9577266745031476","source":"23","target":"2930","data":{}},{"id":"edge-0.00774507832148319","source":"23","target":"2931","data":{}},{"id":"edge-0.8057828222257906","source":"23","target":"2932","data":{}},{"id":"edge-0.17269242524211825","source":"23","target":"2933","data":{}},{"id":"edge-0.14662355475040645","source":"2933","target":"2934","data":{}},{"id":"edge-0.2919526412185949","source":"2933","target":"2935","data":{}},{"id":"edge-0.037822413540160804","source":"23","target":"2936","data":{}},{"id":"edge-0.8633546373298271","source":"2936","target":"2937","data":{}},{"id":"edge-0.6163618906357087","source":"2936","target":"2938","data":{}},{"id":"edge-0.8872382212121057","source":"23","target":"2939","data":{}},{"id":"edge-0.3321044649621625","source":"23","target":"2940","data":{}},{"id":"edge-0.5397851746706721","source":"23","target":"2941","data":{}},{"id":"edge-0.5751904603463416","source":"23","target":"2942","data":{}},{"id":"edge-0.9411092894087545","source":"23","target":"2944","data":{}},{"id":"edge-0.19594613554829876","source":"23","target":"2945","data":{}},{"id":"edge-0.6895369823324768","source":"23","target":"2946","data":{}},{"id":"edge-0.19107207016827732","source":"23","target":"2947","data":{}},{"id":"edge-0.9332310476004109","source":"23","target":"2948","data":{}},{"id":"edge-0.805364020252644","source":"23","target":"2949","data":{}},{"id":"edge-0.4167343724609951","source":"23","target":"2950","data":{}},{"id":"edge-0.759418177844311","source":"23","target":"2951","data":{}},{"id":"edge-0.34457897438579654","source":"23","target":"2952","data":{}},{"id":"edge-0.9979806417332842","source":"23","target":"2953","data":{}},{"id":"edge-0.7366386781685783","source":"23","target":"2954","data":{}},{"id":"edge-0.9754895839550692","source":"23","target":"2955","data":{}},{"id":"edge-0.370107067549738","source":"23","target":"2956","data":{}},{"id":"edge-0.5281872899247628","source":"23","target":"2957","data":{}},{"id":"edge-0.9034936720330429","source":"23","target":"2958","data":{}},{"id":"edge-0.7580383580405614","source":"23","target":"2959","data":{}},{"id":"edge-0.5326609225484513","source":"23","target":"2960","data":{}},{"id":"edge-0.7618718786845164","source":"23","target":"2985","data":{}},{"id":"edge-0.1461265600498154","source":"23","target":"2986","data":{}},{"id":"edge-0.037099591975995994","source":"23","target":"2987","data":{}},{"id":"edge-0.47215382232539316","source":"23","target":"2988","data":{}},{"id":"edge-0.9610635673892793","source":"23","target":"2989","data":{}},{"id":"edge-0.33248542053267194","source":"23","target":"2990","data":{}},{"id":"edge-0.11829039331785185","source":"23","target":"2991","data":{}},{"id":"edge-0.047042045450012226","source":"23","target":"2992","data":{}},{"id":"edge-0.2624446532812388","source":"23","target":"2993","data":{}},{"id":"edge-0.7451078824708779","source":"23","target":"497","data":{}},{"id":"edge-0.7997856369153151","source":"23","target":"498","data":{}},{"id":"edge-0.7210620392981975","source":"23","target":"2994","data":{}},{"id":"edge-0.027899557282716758","source":"23","target":"2997","data":{}},{"id":"edge-0.2768801419627731","source":"23","target":"2998","data":{}},{"id":"edge-0.6640035995404943","source":"23","target":"3000","data":{}},{"id":"edge-0.4364846351686289","source":"23","target":"3001","data":{}},{"id":"edge-0.45251747481434634","source":"23","target":"3002","data":{}},{"id":"edge-0.3049530174834194","source":"23","target":"3003","data":{}},{"id":"edge-0.8968294674410411","source":"23","target":"3004","data":{}},{"id":"edge-0.9340285382273832","source":"23","target":"3005","data":{}},{"id":"edge-0.3195020385319718","source":"23","target":"3006","data":{}},{"id":"edge-0.41525051957268677","source":"23","target":"3007","data":{}},{"id":"edge-0.22163689286769817","source":"23","target":"3008","data":{}},{"id":"edge-0.1684321732875429","source":"23","target":"3009","data":{}},{"id":"edge-0.77141080370399","source":"23","target":"3010","data":{}},{"id":"edge-0.9709758865444971","source":"23","target":"3011","data":{}},{"id":"edge-0.506661502815875","source":"23","target":"3012","data":{}},{"id":"edge-0.30973436983104485","source":"23","target":"3013","data":{}},{"id":"edge-0.2395095767829616","source":"23","target":"3014","data":{}},{"id":"edge-0.9390401255776164","source":"23","target":"3015","data":{}},{"id":"edge-0.6821037995008261","source":"23","target":"3016","data":{}},{"id":"edge-0.5927000982950048","source":"23","target":"3017","data":{}},{"id":"edge-0.2636899327123463","source":"23","target":"3018","data":{}},{"id":"edge-0.7666163521254055","source":"23","target":"3019","data":{}},{"id":"edge-0.14660830902274036","source":"23","target":"3020","data":{}},{"id":"edge-0.4915762674634627","source":"23","target":"3021","data":{}},{"id":"edge-0.5708353270265565","source":"23","target":"3022","data":{}},{"id":"edge-0.3536585345909713","source":"23","target":"3023","data":{}},{"id":"edge-0.2620483957046964","source":"23","target":"3024","data":{}},{"id":"edge-0.23155714704557573","source":"23","target":"3025","data":{}},{"id":"edge-0.9245159127747353","source":"23","target":"3026","data":{}},{"id":"edge-0.7599425415423051","source":"23","target":"3027","data":{}},{"id":"edge-0.013686320581530742","source":"23","target":"3028","data":{}},{"id":"edge-0.47659227021172157","source":"23","target":"3029","data":{}},{"id":"edge-0.13682798786263994","source":"23","target":"3030","data":{}},{"id":"edge-0.0006626067581405604","source":"24","target":"3031","data":{}},{"id":"edge-0.3126537143949082","source":"24","target":"3037","data":{}},{"id":"edge-0.028222839858777382","source":"24","target":"3038","data":{}},{"id":"edge-0.738417615290544","source":"24","target":"3039","data":{}},{"id":"edge-0.6823825931670511","source":"24","target":"3040","data":{}},{"id":"edge-0.4814847004505711","source":"24","target":"3042","data":{}},{"id":"edge-0.16218328311249675","source":"24","target":"3045","data":{}},{"id":"edge-0.6037480571709595","source":"24","target":"3047","data":{}},{"id":"edge-0.5812945551079842","source":"24","target":"3048","data":{}},{"id":"edge-0.5029693313447137","source":"24","target":"3052","data":{}},{"id":"edge-0.605937309133185","source":"24","target":"3053","data":{}},{"id":"edge-0.03120459435950762","source":"24","target":"3054","data":{}},{"id":"edge-0.32853231251883663","source":"24","target":"3055","data":{}},{"id":"edge-0.09569839182983375","source":"24","target":"3056","data":{}},{"id":"edge-0.6016998097435973","source":"3056","target":"3057","data":{}},{"id":"edge-0.5839222776937734","source":"24","target":"3058","data":{}},{"id":"edge-0.4193242062679219","source":"3058","target":"3059","data":{}},{"id":"edge-0.5476078326232925","source":"24","target":"3060","data":{}},{"id":"edge-0.8697785408029388","source":"24","target":"3061","data":{}},{"id":"edge-0.7377405084069877","source":"24","target":"3062","data":{}},{"id":"edge-0.4315842446107938","source":"24","target":"3063","data":{}},{"id":"edge-0.8418933177144545","source":"24","target":"3069","data":{}},{"id":"edge-0.7035250728376408","source":"24","target":"3072","data":{}},{"id":"edge-0.42818272765948895","source":"24","target":"3073","data":{}},{"id":"edge-0.9060619168241901","source":"24","target":"3074","data":{}},{"id":"edge-0.5877002608559487","source":"24","target":"3075","data":{}},{"id":"edge-0.5651377295958993","source":"4368","target":"4369","data":{}},{"id":"edge-0.641333417474399","source":"4367","target":"4370","data":{}},{"id":"edge-0.12502897740941954","source":"4370","target":"4371","data":{}},{"id":"edge-0.6495866935667407","source":"4370","target":"4372","data":{}},{"id":"edge-0.9334880601161877","source":"4370","target":"4373","data":{}},{"id":"edge-0.7247471740618114","source":"4370","target":"4374","data":{}},{"id":"edge-0.5191679986165738","source":"4370","target":"4375","data":{}},{"id":"edge-0.8592179895287948","source":"4370","target":"4376","data":{}},{"id":"edge-0.6295964709435122","source":"4370","target":"4377","data":{}},{"id":"edge-0.30918147693994835","source":"4370","target":"4378","data":{}},{"id":"edge-0.27347751336009063","source":"4370","target":"4379","data":{}},{"id":"edge-0.29542175052640984","source":"4370","target":"4380","data":{}},{"id":"edge-0.012409932240352584","source":"4370","target":"4381","data":{}},{"id":"edge-0.23525994490106106","source":"4370","target":"4382","data":{}},{"id":"edge-0.8224762592460639","source":"4370","target":"4383","data":{}},{"id":"edge-0.7839754996945918","source":"4370","target":"4384","data":{}},{"id":"edge-0.6614547611284809","source":"4370","target":"4385","data":{}},{"id":"edge-0.5099938974767766","source":"4370","target":"4386","data":{}},{"id":"edge-0.6203151592471841","source":"4370","target":"4387","data":{}},{"id":"edge-0.5601113527690667","source":"4370","target":"4388","data":{}},{"id":"edge-0.8300926411456486","source":"4370","target":"4389","data":{}},{"id":"edge-0.5823049316864295","source":"4370","target":"4390","data":{}},{"id":"edge-0.41750409241774844","source":"4370","target":"4391","data":{}},{"id":"edge-0.20681879436972195","source":"4370","target":"4392","data":{}},{"id":"edge-0.05022410433011526","source":"4370","target":"4393","data":{}},{"id":"edge-0.04772319836573957","source":"4370","target":"4394","data":{}},{"id":"edge-0.7119693414705766","source":"4370","target":"4395","data":{}},{"id":"edge-0.3208343872509527","source":"4370","target":"4396","data":{}},{"id":"edge-0.6753375867905478","source":"4370","target":"4397","data":{}},{"id":"edge-0.5605494311322083","source":"4370","target":"4398","data":{}},{"id":"edge-0.19816360270414202","source":"4370","target":"4399","data":{}},{"id":"edge-0.10538971970396305","source":"4370","target":"4400","data":{}},{"id":"edge-0.09950556663021182","source":"4370","target":"4401","data":{}},{"id":"edge-0.6835480544230059","source":"4370","target":"4402","data":{}},{"id":"edge-0.49855336926220595","source":"4370","target":"4403","data":{}},{"id":"edge-0.3088050625838239","source":"4370","target":"4404","data":{}},{"id":"edge-0.9954668052852855","source":"4370","target":"4405","data":{}},{"id":"edge-0.2610236345955852","source":"4370","target":"4406","data":{}},{"id":"edge-0.877823992046308","source":"4370","target":"4407","data":{}},{"id":"edge-0.35074293409976764","source":"4370","target":"4408","data":{}},{"id":"edge-0.3342224270975167","source":"4370","target":"4409","data":{}},{"id":"edge-0.46071284716266026","source":"4370","target":"4410","data":{}},{"id":"edge-0.7002131432525698","source":"4370","target":"4411","data":{}},{"id":"edge-0.49362894563542037","source":"4370","target":"4412","data":{}},{"id":"edge-0.8265700482391123","source":"4370","target":"4413","data":{}},{"id":"edge-0.20217938629183596","source":"4370","target":"4415","data":{}},{"id":"edge-0.0824696967698968","source":"4370","target":"4416","data":{}},{"id":"edge-0.883487554708283","source":"4370","target":"4417","data":{}},{"id":"edge-0.7590644608188886","source":"4370","target":"4418","data":{}},{"id":"edge-0.28906588744957573","source":"4370","target":"4419","data":{}},{"id":"edge-0.7477568645236865","source":"4370","target":"4420","data":{}},{"id":"edge-0.5443647495553765","source":"4370","target":"4422","data":{}},{"id":"edge-0.832947955022145","source":"4370","target":"4423","data":{}},{"id":"edge-0.7178692713515027","source":"4370","target":"4424","data":{}},{"id":"edge-0.7993956424167272","source":"4370","target":"4425","data":{}},{"id":"edge-0.7398031679930916","source":"4370","target":"4426","data":{}},{"id":"edge-0.4951232741710925","source":"4370","target":"4427","data":{}},{"id":"edge-0.25678664544738683","source":"4370","target":"4428","data":{}},{"id":"edge-0.09398867536783206","source":"4370","target":"4429","data":{}},{"id":"edge-0.6602132249117179","source":"4370","target":"4430","data":{}},{"id":"edge-0.7070673723030227","source":"4370","target":"4431","data":{}},{"id":"edge-0.218803303320936","source":"4370","target":"4432","data":{}},{"id":"edge-0.5941614010872689","source":"4370","target":"4433","data":{}},{"id":"edge-0.2887660162328529","source":"4370","target":"4434","data":{}},{"id":"edge-0.9352417283699836","source":"4370","target":"4435","data":{}},{"id":"edge-0.11008748164468063","source":"4370","target":"4436","data":{}},{"id":"edge-0.08255444764018716","source":"4370","target":"4437","data":{}},{"id":"edge-0.7364354978998713","source":"4370","target":"4438","data":{}},{"id":"edge-0.26646947002566534","source":"4370","target":"4439","data":{}},{"id":"edge-0.7036056875652035","source":"4370","target":"4440","data":{}},{"id":"edge-0.8195781865639391","source":"4370","target":"4441","data":{}},{"id":"edge-0.09240358437739982","source":"4370","target":"4442","data":{}},{"id":"edge-0.0747492114505961","source":"4370","target":"4443","data":{}},{"id":"edge-0.8260962776803966","source":"4370","target":"4444","data":{}},{"id":"edge-0.5848048133419517","source":"4370","target":"4445","data":{}},{"id":"edge-0.875578004363071","source":"4370","target":"4446","data":{}},{"id":"edge-0.9605411889317002","source":"4370","target":"4447","data":{}},{"id":"edge-0.5827234391739577","source":"4370","target":"4448","data":{}},{"id":"edge-0.41632032876181535","source":"4448","target":"4449","data":{}},{"id":"edge-0.877295627798339","source":"4448","target":"4450","data":{}},{"id":"edge-0.470592492488215","source":"4448","target":"4451","data":{}},{"id":"edge-0.8003751430876711","source":"4448","target":"4452","data":{}},{"id":"edge-0.8279870038012687","source":"4448","target":"4453","data":{}},{"id":"edge-0.6956959576540989","source":"4448","target":"4454","data":{}},{"id":"edge-0.603150961702317","source":"4448","target":"4455","data":{}},{"id":"edge-0.5663838053872876","source":"4367","target":"4456","data":{}},{"id":"edge-0.09451139841892897","source":"4367","target":"4457","data":{}},{"id":"edge-0.806751403157987","source":"4367","target":"4458","data":{}},{"id":"edge-0.028481342822959554","source":"4367","target":"4459","data":{}},{"id":"edge-0.09368406152866582","source":"4367","target":"4460","data":{}},{"id":"edge-0.7448926782242402","source":"4367","target":"4461","data":{}},{"id":"edge-0.9362356992925589","source":"4367","target":"4462","data":{}},{"id":"edge-0.8430946500907937","source":"4367","target":"4463","data":{}},{"id":"edge-0.3647219413658096","source":"4367","target":"4464","data":{}},{"id":"edge-0.193922591438634","source":"4367","target":"4465","data":{}},{"id":"edge-0.11598207127333793","source":"4367","target":"4466","data":{}},{"id":"edge-0.2247365813776221","source":"4367","target":"4467","data":{}},{"id":"edge-0.5664322028041444","source":"4367","target":"4469","data":{}},{"id":"edge-0.07826337055417087","source":"4367","target":"4470","data":{}},{"id":"edge-0.2495795166697823","source":"4367","target":"4471","data":{}},{"id":"edge-0.6661676770973126","source":"4367","target":"4472","data":{}},{"id":"edge-0.44595502655982333","source":"4367","target":"4473","data":{}},{"id":"edge-0.921943093024246","source":"4367","target":"4474","data":{}},{"id":"edge-0.13131234035891692","source":"4367","target":"4475","data":{}},{"id":"edge-0.05986055861781603","source":"4367","target":"4476","data":{}},{"id":"edge-0.6542785808859473","source":"4367","target":"4477","data":{}},{"id":"edge-0.4859794174639731","source":"4367","target":"4478","data":{}},{"id":"edge-0.2112562567988827","source":"4367","target":"4479","data":{}},{"id":"edge-0.07192520428421245","source":"4367","target":"4480","data":{}},{"id":"edge-0.029576675935623076","source":"4480","target":"4481","data":{}},{"id":"edge-0.48430829402113895","source":"4480","target":"4482","data":{}},{"id":"edge-0.9447638456290666","source":"4480","target":"4483","data":{}},{"id":"edge-0.9225517986555198","source":"4480","target":"4484","data":{}},{"id":"edge-0.4657387038659646","source":"4480","target":"4485","data":{}},{"id":"edge-0.13189384100675006","source":"4480","target":"4486","data":{}},{"id":"edge-0.5468679503661591","source":"4480","target":"4487","data":{}},{"id":"edge-0.4080342959077288","source":"4480","target":"4488","data":{}},{"id":"edge-0.27542145784732","source":"4480","target":"4489","data":{}},{"id":"edge-0.3032988772356715","source":"4480","target":"4490","data":{}},{"id":"edge-0.5700599675939004","source":"4480","target":"4491","data":{}},{"id":"edge-0.4220924006183151","source":"4480","target":"4492","data":{}},{"id":"edge-0.317932805288776","source":"4480","target":"4493","data":{}},{"id":"edge-0.4060616915112558","source":"4480","target":"4494","data":{}},{"id":"edge-0.7687278922474075","source":"4480","target":"4495","data":{}},{"id":"edge-0.39705798337893894","source":"4480","target":"4496","data":{}},{"id":"edge-0.35698771199728574","source":"4480","target":"4497","data":{}},{"id":"edge-0.7262241277782095","source":"4480","target":"4498","data":{}},{"id":"edge-0.6525909032681845","source":"4480","target":"4500","data":{}},{"id":"edge-0.8482107854756105","source":"4480","target":"4501","data":{}},{"id":"edge-0.17646364266854087","source":"4480","target":"4502","data":{}},{"id":"edge-0.8313570175583136","source":"4480","target":"4503","data":{}},{"id":"edge-0.7216569489129843","source":"4480","target":"4504","data":{}},{"id":"edge-0.7221613920755021","source":"4480","target":"4505","data":{}},{"id":"edge-0.7733087267672312","source":"4480","target":"4506","data":{}},{"id":"edge-0.7694412143068372","source":"4480","target":"4507","data":{}},{"id":"edge-0.9821569893451121","source":"4480","target":"4508","data":{}},{"id":"edge-0.889917476228254","source":"4480","target":"4509","data":{}},{"id":"edge-0.7857361815859998","source":"4480","target":"4510","data":{}},{"id":"edge-0.4882952384493817","source":"4480","target":"4511","data":{}},{"id":"edge-0.7377545875420783","source":"4480","target":"4512","data":{}},{"id":"edge-0.7030575806973232","source":"4480","target":"4513","data":{}},{"id":"edge-0.4040203580135511","source":"4480","target":"4514","data":{}},{"id":"edge-0.671216427935694","source":"4480","target":"4515","data":{}},{"id":"edge-0.030076717510921336","source":"4480","target":"4516","data":{}},{"id":"edge-0.2704456939181237","source":"4480","target":"4517","data":{}},{"id":"edge-0.5212337709513448","source":"4480","target":"4518","data":{}},{"id":"edge-0.1124770476587138","source":"4480","target":"4519","data":{}},{"id":"edge-0.6027653235546557","source":"4367","target":"4520","data":{}},{"id":"edge-0.4879935953812915","source":"4520","target":"4521","data":{}},{"id":"edge-0.7419538923189892","source":"4520","target":"4522","data":{}},{"id":"edge-0.84048176845708","source":"4367","target":"4523","data":{}},{"id":"edge-0.11913734145967081","source":"4523","target":"4524","data":{}},{"id":"edge-0.19206857331502358","source":"4523","target":"4525","data":{}},{"id":"edge-0.6345861615273352","source":"4523","target":"4526","data":{}},{"id":"edge-0.3733416557302216","source":"4523","target":"4527","data":{}},{"id":"edge-0.538122588836732","source":"4523","target":"4528","data":{}},{"id":"edge-0.8483653140704375","source":"4523","target":"4529","data":{}},{"id":"edge-0.14055281276422926","source":"4523","target":"4530","data":{}},{"id":"edge-0.9011140613068942","source":"4367","target":"4531","data":{}},{"id":"edge-0.5637723292826007","source":"4531","target":"4532","data":{}},{"id":"edge-0.9432024394800982","source":"4531","target":"4533","data":{}},{"id":"edge-0.9505462136296119","source":"4367","target":"4534","data":{}},{"id":"edge-0.3288351698097618","source":"4534","target":"4535","data":{}},{"id":"edge-0.6420730367076439","source":"4534","target":"4536","data":{}},{"id":"edge-0.38413841377576996","source":"4367","target":"4537","data":{}},{"id":"edge-0.5154191581439327","source":"326","target":"4538","data":{}},{"id":"edge-0.35721990225798206","source":"326","target":"4539","data":{}},{"id":"edge-0.40252169945509886","source":"326","target":"4540","data":{}},{"id":"edge-0.23268664251405458","source":"326","target":"4541","data":{}},{"id":"edge-0.4676790438298708","source":"326","target":"4542","data":{}},{"id":"edge-0.7737484621990038","source":"326","target":"4543","data":{}},{"id":"edge-0.7936103914542323","source":"326","target":"4544","data":{}},{"id":"edge-0.9963313276857282","source":"326","target":"4545","data":{}},{"id":"edge-0.7716163330135462","source":"326","target":"4546","data":{}},{"id":"edge-0.36082797071152384","source":"4546","target":"4547","data":{}},{"id":"edge-0.05094821232547253","source":"4546","target":"4548","data":{}},{"id":"edge-0.9529627126771347","source":"4546","target":"4549","data":{}},{"id":"edge-0.22278115524384123","source":"4546","target":"4550","data":{}},{"id":"edge-0.967380313834239","source":"4546","target":"4551","data":{}},{"id":"edge-0.03084204033660165","source":"4546","target":"4552","data":{}},{"id":"edge-0.25366219165703296","source":"4546","target":"4553","data":{}},{"id":"edge-0.09460131783757086","source":"4546","target":"4554","data":{}},{"id":"edge-0.7924974645265663","source":"4546","target":"4555","data":{}},{"id":"edge-0.7197530765970588","source":"4546","target":"4556","data":{}},{"id":"edge-0.3583710385113139","source":"326","target":"4557","data":{}},{"id":"edge-0.7038771322962969","source":"326","target":"4558","data":{}},{"id":"edge-0.6472431767009788","source":"326","target":"4559","data":{}},{"id":"edge-0.6830403503759304","source":"326","target":"4560","data":{}},{"id":"edge-0.12038982926579211","source":"326","target":"4561","data":{}},{"id":"edge-0.9289900501470918","source":"326","target":"4562","data":{}},{"id":"edge-0.3626710995375677","source":"326","target":"4563","data":{}},{"id":"edge-0.20422870165615215","source":"326","target":"4564","data":{}},{"id":"edge-0.21336023419033734","source":"326","target":"4565","data":{}},{"id":"edge-0.40466110653014264","source":"326","target":"4566","data":{}},{"id":"edge-0.9351516656736973","source":"326","target":"4567","data":{}},{"id":"edge-0.5465712561810672","source":"326","target":"4568","data":{}},{"id":"edge-0.9715274107806389","source":"326","target":"4569","data":{}},{"id":"edge-0.19901099878238537","source":"326","target":"4570","data":{}},{"id":"edge-0.123841981374605","source":"326","target":"4571","data":{}},{"id":"edge-0.33078103973911843","source":"326","target":"4572","data":{}},{"id":"edge-0.020568526513360608","source":"326","target":"4573","data":{}},{"id":"edge-0.24831681628065105","source":"326","target":"4574","data":{}},{"id":"edge-0.4707497667138343","source":"326","target":"4575","data":{}},{"id":"edge-0.36442400251776497","source":"326","target":"4576","data":{}},{"id":"edge-0.10972335649270937","source":"326","target":"4577","data":{}},{"id":"edge-0.33118272832590456","source":"326","target":"4578","data":{}},{"id":"edge-0.23572974862756824","source":"326","target":"4579","data":{}},{"id":"edge-0.047356175518986854","source":"326","target":"4580","data":{}},{"id":"edge-0.9077819400176685","source":"326","target":"4581","data":{}},{"id":"edge-0.18616685821915913","source":"326","target":"4582","data":{}},{"id":"edge-0.8604813942295519","source":"326","target":"4583","data":{}},{"id":"edge-0.6064496527543688","source":"326","target":"4584","data":{}},{"id":"edge-0.31324804910752424","source":"326","target":"4585","data":{}},{"id":"edge-0.6060544626512434","source":"326","target":"4586","data":{}},{"id":"edge-0.3069250013316076","source":"326","target":"4587","data":{}},{"id":"edge-0.9510848702901111","source":"326","target":"4588","data":{}},{"id":"edge-0.9981974672435785","source":"326","target":"4589","data":{}},{"id":"edge-0.3727648647583248","source":"326","target":"4590","data":{}},{"id":"edge-0.6127407831238416","source":"326","target":"4591","data":{}},{"id":"edge-0.02757868391578211","source":"326","target":"4592","data":{}},{"id":"edge-0.6489808847838985","source":"326","target":"4593","data":{}},{"id":"edge-0.05298980173407175","source":"326","target":"4594","data":{}},{"id":"edge-0.5577573773423321","source":"326","target":"4595","data":{}},{"id":"edge-0.03991339704316177","source":"326","target":"4596","data":{}},{"id":"edge-0.7491147793977173","source":"326","target":"4597","data":{}},{"id":"edge-0.8572686233229789","source":"326","target":"4598","data":{}},{"id":"edge-0.22218267448042517","source":"326","target":"4599","data":{}},{"id":"edge-0.6652732239347983","source":"326","target":"4600","data":{}},{"id":"edge-0.8509787672489448","source":"326","target":"4601","data":{}},{"id":"edge-0.09361867810681579","source":"326","target":"4602","data":{}},{"id":"edge-0.8027057663141284","source":"326","target":"4603","data":{}},{"id":"edge-0.055715898419834264","source":"326","target":"4604","data":{}},{"id":"edge-0.41936619971000777","source":"326","target":"4605","data":{}},{"id":"edge-0.26278437970373236","source":"326","target":"4606","data":{}},{"id":"edge-0.11114170608493201","source":"326","target":"4607","data":{}},{"id":"edge-0.6765049631237356","source":"326","target":"4608","data":{}},{"id":"edge-0.29654037706300307","source":"326","target":"4609","data":{}},{"id":"edge-0.23918376676404884","source":"326","target":"4610","data":{}},{"id":"edge-0.004637058822338114","source":"326","target":"4611","data":{}},{"id":"edge-0.06833209722191946","source":"326","target":"4612","data":{}},{"id":"edge-0.4190059281284164","source":"326","target":"4613","data":{}},{"id":"edge-0.5371578874744378","source":"326","target":"4614","data":{}},{"id":"edge-0.40790421267738886","source":"326","target":"4615","data":{}},{"id":"edge-0.058680407198336226","source":"326","target":"4616","data":{}},{"id":"edge-0.6933790253983632","source":"326","target":"4617","data":{}},{"id":"edge-0.8925277418312139","source":"326","target":"4618","data":{}},{"id":"edge-0.840992392372917","source":"326","target":"4619","data":{}},{"id":"edge-0.13953948792038928","source":"326","target":"4620","data":{}},{"id":"edge-0.26319560016264787","source":"326","target":"4621","data":{}},{"id":"edge-0.20297864972654311","source":"326","target":"4622","data":{}},{"id":"edge-0.20151630183689684","source":"326","target":"4623","data":{}},{"id":"edge-0.9407488036451068","source":"326","target":"4624","data":{}},{"id":"edge-0.06545458152637695","source":"326","target":"4625","data":{}},{"id":"edge-0.5863489462350246","source":"326","target":"4626","data":{}},{"id":"edge-0.46826171177403264","source":"326","target":"4627","data":{}},{"id":"edge-0.4297236873665533","source":"326","target":"4628","data":{}},{"id":"edge-0.44353728384525115","source":"326","target":"4629","data":{}},{"id":"edge-0.4594561355608189","source":"326","target":"4630","data":{}},{"id":"edge-0.7722367949974083","source":"326","target":"4631","data":{}},{"id":"edge-0.40509925391854185","source":"326","target":"4632","data":{}},{"id":"edge-0.18341369039575395","source":"326","target":"4633","data":{}},{"id":"edge-0.6690304139721224","source":"326","target":"4634","data":{}},{"id":"edge-0.6757003261215038","source":"326","target":"4635","data":{}},{"id":"edge-0.530550778110519","source":"326","target":"4636","data":{}},{"id":"edge-0.9713159592368132","source":"326","target":"4637","data":{}},{"id":"edge-0.9841133973475291","source":"326","target":"4638","data":{}},{"id":"edge-0.9132180114071735","source":"326","target":"4639","data":{}},{"id":"edge-0.3741402988705247","source":"326","target":"4640","data":{}},{"id":"edge-0.017333948229259155","source":"326","target":"4641","data":{}},{"id":"edge-0.83611256519182","source":"326","target":"4642","data":{}},{"id":"edge-0.9540437638513111","source":"326","target":"4643","data":{}},{"id":"edge-0.33775895286817526","source":"326","target":"4644","data":{}},{"id":"edge-0.8369855229095113","source":"326","target":"4645","data":{}},{"id":"edge-0.06602818557536971","source":"326","target":"4646","data":{}},{"id":"edge-0.6742617386619136","source":"326","target":"4647","data":{}},{"id":"edge-0.1748876053577728","source":"326","target":"4648","data":{}},{"id":"edge-0.547105794929662","source":"326","target":"4649","data":{}},{"id":"edge-0.3797933766331665","source":"326","target":"4650","data":{}},{"id":"edge-0.9599865791185149","source":"326","target":"4651","data":{}},{"id":"edge-0.2181001469410737","source":"326","target":"4652","data":{}},{"id":"edge-0.6343099328051145","source":"326","target":"4653","data":{}},{"id":"edge-0.7050391592973937","source":"326","target":"4654","data":{}},{"id":"edge-0.09689963553900127","source":"326","target":"4655","data":{}},{"id":"edge-0.48756799864724787","source":"326","target":"4656","data":{}},{"id":"edge-0.11579733795222569","source":"326","target":"4657","data":{}},{"id":"edge-0.393188479293868","source":"326","target":"4658","data":{}},{"id":"edge-0.012925752729408657","source":"326","target":"4659","data":{}},{"id":"edge-0.6430783613614286","source":"326","target":"4660","data":{}},{"id":"edge-0.5230120578992168","source":"326","target":"4661","data":{}},{"id":"edge-0.488335413987975","source":"326","target":"4662","data":{}},{"id":"edge-0.6195363283586655","source":"326","target":"4663","data":{}},{"id":"edge-0.26317615842993436","source":"326","target":"4664","data":{}},{"id":"edge-0.7632444047594564","source":"326","target":"4665","data":{}},{"id":"edge-0.39166616111473185","source":"326","target":"4666","data":{}},{"id":"edge-0.142802657401514","source":"326","target":"4667","data":{}},{"id":"edge-0.9170029955168526","source":"25","target":"4669","data":{}},{"id":"edge-0.6368729384930671","source":"25","target":"4670","data":{}},{"id":"edge-0.09114830131868223","source":"25","target":"4671","data":{}},{"id":"edge-0.9528165197497653","source":"25","target":"4672","data":{}},{"id":"edge-0.8874040877311582","source":"25","target":"4673","data":{}},{"id":"edge-0.9453025912961486","source":"25","target":"4674","data":{}},{"id":"edge-0.49828212585419074","source":"25","target":"4675","data":{}},{"id":"edge-0.4524797190201877","source":"25","target":"4676","data":{}},{"id":"edge-0.0846134545061199","source":"25","target":"4677","data":{}},{"id":"edge-0.7360080304055803","source":"4677","target":"4678","data":{}},{"id":"edge-0.34601997646433813","source":"4677","target":"4679","data":{}},{"id":"edge-0.862132217871521","source":"25","target":"4681","data":{}},{"id":"edge-0.6642326331549804","source":"25","target":"4682","data":{}},{"id":"edge-0.3681839895414287","source":"25","target":"4683","data":{}},{"id":"edge-0.5937576798215991","source":"25","target":"4685","data":{}},{"id":"edge-0.04761395344712649","source":"25","target":"4686","data":{}},{"id":"edge-0.491053451560294","source":"25","target":"4687","data":{}},{"id":"edge-0.8793965059555384","source":"25","target":"4688","data":{}},{"id":"edge-0.29835448458691705","source":"25","target":"1439","data":{}},{"id":"edge-0.861904078114526","source":"25","target":"4691","data":{}},{"id":"edge-0.9872395305405475","source":"25","target":"4692","data":{}},{"id":"edge-0.3975775567117843","source":"25","target":"4693","data":{}},{"id":"edge-0.5584498753501126","source":"25","target":"4694","data":{}},{"id":"edge-0.6116623243517973","source":"25","target":"4695","data":{}},{"id":"edge-0.8550883273208871","source":"25","target":"4696","data":{}},{"id":"edge-0.5565283037912527","source":"25","target":"4697","data":{}},{"id":"edge-0.1322067330035317","source":"25","target":"4698","data":{}},{"id":"edge-0.833312687906544","source":"25","target":"4699","data":{}},{"id":"edge-0.9963377767784498","source":"25","target":"4700","data":{}},{"id":"edge-0.25684564356324646","source":"25","target":"4701","data":{}},{"id":"edge-0.1177594218942839","source":"25","target":"4702","data":{}},{"id":"edge-0.25311340352706924","source":"25","target":"4703","data":{}},{"id":"edge-0.7736376043835886","source":"25","target":"4704","data":{}},{"id":"edge-0.09097094160196284","source":"25","target":"4705","data":{}},{"id":"edge-0.9754212093277976","source":"4705","target":"4706","data":{}},{"id":"edge-0.14127561954637446","source":"4705","target":"4707","data":{}},{"id":"edge-0.5755088696231894","source":"4705","target":"4708","data":{}},{"id":"edge-0.3197524429510803","source":"4705","target":"4709","data":{}},{"id":"edge-0.43785508843009335","source":"4705","target":"4710","data":{}},{"id":"edge-0.050357720421971175","source":"4705","target":"4711","data":{}},{"id":"edge-0.20255760064462325","source":"25","target":"4712","data":{}},{"id":"edge-0.5213591727828808","source":"25","target":"3121","data":{}},{"id":"edge-0.08101566231961388","source":"25","target":"3122","data":{}},{"id":"edge-0.048818780905221404","source":"25","target":"4715","data":{}},{"id":"edge-0.5932973097665908","source":"25","target":"4716","data":{}},{"id":"edge-0.5814948153013391","source":"25","target":"4717","data":{}},{"id":"edge-0.8755465611418278","source":"25","target":"4718","data":{}},{"id":"edge-0.0786562417013339","source":"28","target":"3299","data":{}},{"id":"edge-0.1817073647492058","source":"28","target":"3300","data":{}},{"id":"edge-0.6571896758887805","source":"28","target":"3301","data":{}},{"id":"edge-0.1494732652689139","source":"28","target":"3302","data":{}},{"id":"edge-0.6758301423342847","source":"28","target":"3303","data":{}},{"id":"edge-0.8134762474790749","source":"28","target":"3304","data":{}},{"id":"edge-0.1335328068012478","source":"28","target":"3305","data":{}},{"id":"edge-0.3262174881861759","source":"28","target":"3306","data":{}},{"id":"edge-0.2286676370573495","source":"28","target":"3307","data":{}},{"id":"edge-0.7613838593442064","source":"3305","target":"3309","data":{}},{"id":"edge-0.8057129635139069","source":"28","target":"4722","data":{}},{"id":"edge-0.20093157880454982","source":"28","target":"3352","data":{}},{"id":"edge-0.294161762338532","source":"30","target":"3352","data":{}},{"id":"edge-0.6382186242191825","source":"28","target":"3310","data":{}},{"id":"edge-0.07203089928325612","source":"28","target":"3311","data":{}},{"id":"edge-0.18325777351030537","source":"28","target":"3312","data":{}},{"id":"edge-0.1893365443122872","source":"28","target":"3313","data":{}},{"id":"edge-0.0134569545630423","source":"28","target":"3314","data":{}},{"id":"edge-0.8936670831443652","source":"28","target":"3315","data":{}},{"id":"edge-0.9367142955202779","source":"28","target":"3316","data":{}},{"id":"edge-0.2026595142281482","source":"28","target":"3317","data":{}},{"id":"edge-0.43555077336682113","source":"28","target":"3318","data":{}},{"id":"edge-0.8686390529586576","source":"28","target":"3319","data":{}},{"id":"edge-0.04461773983196182","source":"28","target":"3320","data":{}},{"id":"edge-0.004691818729279262","source":"28","target":"3321","data":{}},{"id":"edge-0.35992745611903376","source":"28","target":"3322","data":{}},{"id":"edge-0.8597866897718702","source":"28","target":"3323","data":{}},{"id":"edge-0.7686987244378474","source":"28","target":"3324","data":{}},{"id":"edge-0.32781556771123554","source":"28","target":"3325","data":{}},{"id":"edge-0.6986171183999788","source":"28","target":"3326","data":{}},{"id":"edge-0.658096109188868","source":"28","target":"3327","data":{}},{"id":"edge-0.9934561126633554","source":"28","target":"3328","data":{}},{"id":"edge-0.2248026652512085","source":"28","target":"3329","data":{}},{"id":"edge-0.5781915578331103","source":"28","target":"3330","data":{}},{"id":"edge-0.3802894115542941","source":"28","target":"3331","data":{}},{"id":"edge-0.8770336014490967","source":"28","target":"3332","data":{}},{"id":"edge-0.7369166898882973","source":"28","target":"3333","data":{}},{"id":"edge-0.87784239491473","source":"28","target":"3334","data":{}},{"id":"edge-0.030718965342725113","source":"28","target":"3335","data":{}},{"id":"edge-0.12780449158309137","source":"28","target":"3336","data":{}},{"id":"edge-0.29200690130912466","source":"28","target":"3337","data":{}},{"id":"edge-0.3425803472133566","source":"28","target":"3338","data":{}},{"id":"edge-0.17385508955775042","source":"28","target":"3339","data":{}},{"id":"edge-0.5595674459135465","source":"28","target":"3340","data":{}},{"id":"edge-0.5143349320081696","source":"28","target":"3341","data":{}},{"id":"edge-0.8275701847435248","source":"28","target":"3342","data":{}},{"id":"edge-0.9404224906165317","source":"28","target":"3343","data":{}},{"id":"edge-0.6817817156789545","source":"28","target":"3344","data":{}},{"id":"edge-0.14001995228829545","source":"28","target":"3345","data":{}},{"id":"edge-0.3250198207776902","source":"28","target":"3346","data":{}},{"id":"edge-0.08425955730143575","source":"28","target":"3347","data":{}},{"id":"edge-0.36310697827639205","source":"28","target":"3348","data":{}},{"id":"edge-0.6166751183206141","source":"28","target":"3349","data":{}},{"id":"edge-0.8828817769791997","source":"28","target":"3350","data":{}},{"id":"edge-0.8274540510298705","source":"28","target":"3351","data":{}},{"id":"edge-0.9974123009141944","source":"28","target":"3355","data":{}},{"id":"edge-0.03529729207234977","source":"28","target":"3356","data":{}},{"id":"edge-0.2556047100522645","source":"28","target":"3357","data":{}},{"id":"edge-0.3115363156658548","source":"28","target":"3358","data":{}},{"id":"edge-0.4379337423961036","source":"28","target":"3359","data":{}},{"id":"edge-0.5923742840413717","source":"28","target":"3360","data":{}},{"id":"edge-0.43575138235734734","source":"28","target":"3361","data":{}},{"id":"edge-0.7784405050027501","source":"28","target":"3364","data":{}},{"id":"edge-0.7864400602974368","source":"28","target":"4724","data":{}},{"id":"edge-0.8124578902188091","source":"28","target":"3367","data":{}},{"id":"edge-0.7545201515334246","source":"28","target":"3368","data":{}},{"id":"edge-0.03517985708559013","source":"28","target":"3370","data":{}},{"id":"edge-0.48086818456794544","source":"28","target":"3371","data":{}},{"id":"edge-0.08388428733980424","source":"28","target":"3372","data":{}},{"id":"edge-0.5302461282651569","source":"28","target":"3373","data":{}},{"id":"edge-0.9974276337605268","source":"28","target":"3374","data":{}},{"id":"edge-0.9317574009451477","source":"28","target":"3375","data":{}},{"id":"edge-0.6270069214726495","source":"28","target":"3376","data":{}},{"id":"edge-0.9745091644621422","source":"28","target":"3377","data":{}},{"id":"edge-0.5759581078513731","source":"31","target":"3417","data":{}},{"id":"edge-0.7579241581551581","source":"31","target":"3418","data":{}},{"id":"edge-0.6426155520402377","source":"31","target":"3419","data":{}},{"id":"edge-0.7657877963788065","source":"31","target":"3420","data":{}},{"id":"edge-0.31695213246563525","source":"31","target":"3421","data":{}},{"id":"edge-0.8940374189815348","source":"31","target":"3422","data":{}},{"id":"edge-0.7057523733529809","source":"31","target":"3423","data":{}},{"id":"edge-0.11642900749200469","source":"31","target":"3424","data":{}},{"id":"edge-0.9574672414432581","source":"31","target":"3425","data":{}},{"id":"edge-0.46348853337533513","source":"31","target":"3426","data":{}},{"id":"edge-0.2049593589104799","source":"31","target":"3427","data":{}},{"id":"edge-0.6300923691933558","source":"31","target":"3428","data":{}},{"id":"edge-0.5335463423465976","source":"31","target":"3429","data":{}},{"id":"edge-0.3031182756003117","source":"31","target":"3430","data":{}},{"id":"edge-0.44129618535223636","source":"31","target":"3431","data":{}},{"id":"edge-0.6347752361932506","source":"31","target":"3432","data":{}},{"id":"edge-0.9302848858626989","source":"31","target":"3433","data":{}},{"id":"edge-0.8599619346238543","source":"31","target":"3434","data":{}},{"id":"edge-0.18009449360377738","source":"31","target":"3435","data":{}},{"id":"edge-0.5301479648540299","source":"31","target":"3436","data":{}},{"id":"edge-0.02979370115952995","source":"31","target":"3438","data":{}},{"id":"edge-0.7834798435308923","source":"31","target":"3439","data":{}},{"id":"edge-0.20718466966496552","source":"31","target":"3440","data":{}},{"id":"edge-0.17876563237908272","source":"31","target":"3441","data":{}},{"id":"edge-0.9829242096338928","source":"31","target":"1658","data":{}},{"id":"edge-0.011580089379981118","source":"31","target":"3444","data":{}},{"id":"edge-0.0635348451718234","source":"31","target":"3445","data":{}},{"id":"edge-0.779137710925401","source":"31","target":"3446","data":{}},{"id":"edge-0.5166265161088393","source":"31","target":"3447","data":{}},{"id":"edge-0.005117566549303287","source":"31","target":"3448","data":{}},{"id":"edge-0.9889754616378661","source":"31","target":"3449","data":{}},{"id":"edge-0.26773640183134995","source":"31","target":"3450","data":{}},{"id":"edge-0.13041539153637727","source":"31","target":"3451","data":{}},{"id":"edge-0.4874819634189047","source":"31","target":"3453","data":{}},{"id":"edge-0.18122630743447954","source":"31","target":"3380","data":{}},{"id":"edge-0.9636276532530896","source":"31","target":"3381","data":{}},{"id":"edge-0.03848478992377369","source":"31","target":"3382","data":{}},{"id":"edge-0.5529362498330934","source":"31","target":"3383","data":{}},{"id":"edge-0.6224612123601607","source":"31","target":"3384","data":{}},{"id":"edge-0.5790380867828913","source":"31","target":"3385","data":{}},{"id":"edge-0.14244665907823828","source":"31","target":"3386","data":{}},{"id":"edge-0.5361067324168334","source":"3453","target":"3454","data":{}},{"id":"edge-0.9038060056457924","source":"3453","target":"3455","data":{}},{"id":"edge-0.693632468552638","source":"31","target":"3457","data":{}},{"id":"edge-0.1208243705919112","source":"31","target":"3458","data":{}},{"id":"edge-0.7507826608136858","source":"31","target":"3459","data":{}},{"id":"edge-0.6669189279897407","source":"31","target":"3460","data":{}},{"id":"edge-0.16879001340862376","source":"31","target":"3461","data":{}},{"id":"edge-0.18158551303125114","source":"31","target":"3462","data":{}},{"id":"edge-0.8883705018771246","source":"31","target":"3463","data":{}},{"id":"edge-0.931136743774462","source":"31","target":"3464","data":{}},{"id":"edge-0.32980505813038685","source":"31","target":"3465","data":{}},{"id":"edge-0.2429900784120842","source":"31","target":"3466","data":{}},{"id":"edge-0.06207268206577732","source":"31","target":"3467","data":{}},{"id":"edge-0.49400178325886435","source":"1805","target":"3468","data":{}},{"id":"edge-0.5498284089056644","source":"1805","target":"3469","data":{}},{"id":"edge-0.9301958217224788","source":"31","target":"3470","data":{}},{"id":"edge-0.5225112322435113","source":"31","target":"3476","data":{}},{"id":"edge-0.578623533137075","source":"31","target":"3477","data":{}},{"id":"edge-0.20358123164270592","source":"3477","target":"3479","data":{}},{"id":"edge-0.3214189943202985","source":"3477","target":"148","data":{}},{"id":"edge-0.26430048327237077","source":"4","target":"163","data":{}},{"id":"edge-0.0770557760027768","source":"3477","target":"3482","data":{}},{"id":"edge-0.5097392283702697","source":"3477","target":"3483","data":{}},{"id":"edge-0.6827346379874581","source":"3477","target":"3484","data":{}},{"id":"edge-0.9960609461490473","source":"3477","target":"3486","data":{}},{"id":"edge-0.05496863935001706","source":"3477","target":"3487","data":{}},{"id":"edge-0.9974830223741367","source":"3477","target":"3488","data":{}},{"id":"edge-0.231027220575027","source":"3477","target":"3490","data":{}},{"id":"edge-0.7491576055603935","source":"3477","target":"4250","data":{}},{"id":"edge-0.5622097305038889","source":"3477","target":"1805","data":{}},{"id":"edge-0.8507550852068348","source":"32","target":"3503","data":{}},{"id":"edge-0.39585545074269035","source":"32","target":"3504","data":{}},{"id":"edge-0.36075328326808265","source":"32","target":"3505","data":{}},{"id":"edge-0.046319746803613615","source":"32","target":"3508","data":{}},{"id":"edge-0.8680613682238447","source":"4172","target":"2847","data":{}},{"id":"edge-0.3073585756605901","source":"33","target":"3510","data":{}},{"id":"edge-0.17390259917534223","source":"3510","target":"3511","data":{}},{"id":"edge-0.07151859271988092","source":"3510","target":"3512","data":{}},{"id":"edge-0.5246828462011985","source":"3510","target":"3513","data":{}},{"id":"edge-0.3767433112605141","source":"3510","target":"3514","data":{}},{"id":"edge-0.23534355783459748","source":"3510","target":"3516","data":{}},{"id":"edge-0.4343614818048427","source":"3510","target":"3517","data":{}},{"id":"edge-0.5941129676553618","source":"3510","target":"3518","data":{}},{"id":"edge-0.1824185669376699","source":"3510","target":"3519","data":{}},{"id":"edge-0.1434016907888942","source":"3510","target":"3520","data":{}},{"id":"edge-0.20789089763878987","source":"3510","target":"3521","data":{}},{"id":"edge-0.3564191212425314","source":"3510","target":"3522","data":{}},{"id":"edge-0.7023640711705088","source":"3510","target":"3523","data":{}},{"id":"edge-0.6871471736103412","source":"3510","target":"3524","data":{}},{"id":"edge-0.9273360899008687","source":"3510","target":"112","data":{}},{"id":"edge-0.7119185872387559","source":"3510","target":"3526","data":{}},{"id":"edge-0.24067513957812614","source":"3510","target":"3528","data":{}},{"id":"edge-0.22734543026242893","source":"33","target":"4725","data":{}},{"id":"edge-0.35608057516167535","source":"33","target":"3529","data":{}},{"id":"edge-0.7929898100447166","source":"33","target":"3530","data":{}},{"id":"edge-0.3791866233722072","source":"3530","target":"3531","data":{}},{"id":"edge-0.4369374242529187","source":"3530","target":"3532","data":{}},{"id":"edge-0.28998163573355096","source":"3530","target":"3533","data":{}},{"id":"edge-0.6686744162747187","source":"3530","target":"3534","data":{}},{"id":"edge-0.7910583222123888","source":"3530","target":"3535","data":{}},{"id":"edge-0.44746769365518113","source":"3530","target":"3537","data":{}},{"id":"edge-0.35134993586279717","source":"3530","target":"3538","data":{}},{"id":"edge-0.5416093626296503","source":"33","target":"3539","data":{}},{"id":"edge-0.5195943519078385","source":"3539","target":"3540","data":{}},{"id":"edge-0.6005238993550619","source":"3539","target":"3541","data":{}},{"id":"edge-0.4802484988728337","source":"3539","target":"3542","data":{}},{"id":"edge-0.64061895045885","source":"3539","target":"3543","data":{}},{"id":"edge-0.6898409619880979","source":"3539","target":"3544","data":{}},{"id":"edge-0.5571250459056993","source":"3539","target":"3545","data":{}},{"id":"edge-0.7872470578000668","source":"3539","target":"3546","data":{}},{"id":"edge-0.9982363845246176","source":"3539","target":"3547","data":{}},{"id":"edge-0.6372402408875966","source":"3539","target":"3548","data":{}},{"id":"edge-0.27473915879663524","source":"3539","target":"3549","data":{}},{"id":"edge-0.1423670952303424","source":"3539","target":"2860","data":{}},{"id":"edge-0.21315614353478907","source":"33","target":"3550","data":{}},{"id":"edge-0.6486390479520965","source":"3550","target":"3551","data":{}},{"id":"edge-0.43385076501872066","source":"3550","target":"3552","data":{}},{"id":"edge-0.48451813547017797","source":"3550","target":"3553","data":{}},{"id":"edge-0.7640758531702447","source":"33","target":"3993","data":{}},{"id":"edge-0.08933861986885727","source":"33","target":"3554","data":{}},{"id":"edge-0.26469583368439564","source":"3554","target":"3555","data":{}},{"id":"edge-0.16444021417751808","source":"3554","target":"3556","data":{}},{"id":"edge-0.757438857218264","source":"3554","target":"3557","data":{}},{"id":"edge-0.8825820731286771","source":"3554","target":"3558","data":{}},{"id":"edge-0.025276678818025422","source":"3554","target":"3559","data":{}},{"id":"edge-0.030526257402465173","source":"3554","target":"3560","data":{}},{"id":"edge-0.6153856798274493","source":"33","target":"3561","data":{}},{"id":"edge-0.5017356994375664","source":"4728","target":"3561","data":{}},{"id":"edge-0.7291909043349694","source":"33","target":"3562","data":{}},{"id":"edge-0.8858724646653793","source":"33","target":"3563","data":{}},{"id":"edge-0.10773042027878743","source":"33","target":"3564","data":{}},{"id":"edge-0.6680624868511786","source":"33","target":"3565","data":{}},{"id":"edge-0.4075606878752889","source":"33","target":"3566","data":{}},{"id":"edge-0.44387038934449485","source":"33","target":"3567","data":{}},{"id":"edge-0.5255133656257771","source":"33","target":"3569","data":{}},{"id":"edge-0.07424102917224307","source":"33","target":"3571","data":{}},{"id":"edge-0.5992498457804072","source":"33","target":"3572","data":{}},{"id":"edge-0.515335206648635","source":"33","target":"3573","data":{}},{"id":"edge-0.8809397197332813","source":"33","target":"3574","data":{}},{"id":"edge-0.14423540538141122","source":"33","target":"3575","data":{}},{"id":"edge-0.30531019496529277","source":"33","target":"3576","data":{}},{"id":"edge-0.94875116280535","source":"33","target":"3577","data":{}},{"id":"edge-0.4031096529142515","source":"33","target":"3578","data":{}},{"id":"edge-0.2537649670368711","source":"33","target":"3579","data":{}},{"id":"edge-0.9734166706717411","source":"33","target":"3580","data":{}},{"id":"edge-0.05497237659733134","source":"33","target":"3581","data":{}},{"id":"edge-0.07400642606274155","source":"33","target":"3582","data":{}},{"id":"edge-0.6349874429547075","source":"3582","target":"3583","data":{}},{"id":"edge-0.825940416682104","source":"3582","target":"3584","data":{}},{"id":"edge-0.2718855386559589","source":"3582","target":"3585","data":{}},{"id":"edge-0.19402797857950205","source":"3582","target":"3586","data":{}},{"id":"edge-0.4119985239978876","source":"3582","target":"3587","data":{}},{"id":"edge-0.13770764860157625","source":"3582","target":"3588","data":{}},{"id":"edge-0.11096064298133568","source":"3582","target":"3589","data":{}},{"id":"edge-0.8259549049380159","source":"33","target":"3590","data":{}},{"id":"edge-0.10637674675271125","source":"33","target":"3591","data":{}},{"id":"edge-0.14232551127011228","source":"33","target":"3593","data":{}},{"id":"edge-0.815062396204681","source":"33","target":"3594","data":{}},{"id":"edge-0.24999806807177372","source":"33","target":"3595","data":{}},{"id":"edge-0.309497788729421","source":"33","target":"3596","data":{}},{"id":"edge-0.5138410270734344","source":"33","target":"3597","data":{}},{"id":"edge-0.8581074583865056","source":"33","target":"3598","data":{}},{"id":"edge-0.12618440036437373","source":"33","target":"3599","data":{}},{"id":"edge-0.7431505051755611","source":"33","target":"3601","data":{}},{"id":"edge-0.032877753533059106","source":"33","target":"3602","data":{}},{"id":"edge-0.22455102911368074","source":"33","target":"3603","data":{}},{"id":"edge-0.7384123262564775","source":"33","target":"3604","data":{}},{"id":"edge-0.5364707769528965","source":"33","target":"3605","data":{}},{"id":"edge-0.9311483921502963","source":"33","target":"3606","data":{}},{"id":"edge-0.8025295336178377","source":"33","target":"3607","data":{}},{"id":"edge-0.9271021850794259","source":"33","target":"3608","data":{}},{"id":"edge-0.6753452479742916","source":"33","target":"3609","data":{}},{"id":"edge-0.6840132394256788","source":"33","target":"3610","data":{}},{"id":"edge-0.11155535255776639","source":"33","target":"3611","data":{}},{"id":"edge-0.41850684243857184","source":"33","target":"1520","data":{}},{"id":"edge-0.26875033386987557","source":"33","target":"3613","data":{}},{"id":"edge-0.9061258770968523","source":"33","target":"3614","data":{}},{"id":"edge-0.7710478782396037","source":"33","target":"3615","data":{}},{"id":"edge-0.07677342798663922","source":"33","target":"3618","data":{}},{"id":"edge-0.597168124347045","source":"33","target":"3619","data":{}},{"id":"edge-0.905430844310982","source":"33","target":"3620","data":{}},{"id":"edge-0.8118557562114186","source":"33","target":"3621","data":{}},{"id":"edge-0.5749861873587814","source":"33","target":"3622","data":{}},{"id":"edge-0.8808837818910094","source":"33","target":"3623","data":{}},{"id":"edge-0.09239487586611705","source":"33","target":"3624","data":{}},{"id":"edge-0.1706923086106762","source":"33","target":"3625","data":{}},{"id":"edge-0.1662476168028728","source":"33","target":"3626","data":{}},{"id":"edge-0.6294922382133894","source":"33","target":"3627","data":{}},{"id":"edge-0.0016626770482268682","source":"33","target":"3628","data":{}},{"id":"edge-0.7166779147910283","source":"33","target":"3629","data":{}},{"id":"edge-0.5254489238536411","source":"33","target":"3630","data":{}},{"id":"edge-0.5662494455723932","source":"33","target":"3631","data":{}},{"id":"edge-0.6013522816435377","source":"33","target":"3632","data":{}},{"id":"edge-0.5359479785918777","source":"33","target":"3633","data":{}},{"id":"edge-0.8756222654648533","source":"33","target":"3634","data":{}},{"id":"edge-0.5954503945331431","source":"33","target":"3616","data":{}},{"id":"edge-0.3637515480391349","source":"33","target":"3635","data":{}},{"id":"edge-0.3796346952992897","source":"33","target":"3636","data":{}},{"id":"edge-0.21843541220382479","source":"33","target":"3637","data":{}},{"id":"edge-0.8280661726472631","source":"33","target":"3638","data":{}},{"id":"edge-0.39935273033334884","source":"4733","target":"3638","data":{}},{"id":"edge-0.4888778668257414","source":"33","target":"3640","data":{}},{"id":"edge-0.20754804380193081","source":"33","target":"3641","data":{}},{"id":"edge-0.13631086558535133","source":"4368","target":"3641","data":{}},{"id":"edge-0.6481279964485083","source":"33","target":"3642","data":{}},{"id":"edge-0.5048980742279814","source":"3642","target":"3643","data":{}},{"id":"edge-0.09725692696418786","source":"3642","target":"3644","data":{}},{"id":"edge-0.23338385024467723","source":"3642","target":"3645","data":{}},{"id":"edge-0.4850985256300939","source":"3642","target":"3646","data":{}},{"id":"edge-0.650712237237385","source":"3642","target":"3647","data":{}},{"id":"edge-0.048637490154914254","source":"3642","target":"3648","data":{}},{"id":"edge-0.8984482646455056","source":"3642","target":"3649","data":{}},{"id":"edge-0.15559372941741612","source":"3642","target":"3650","data":{}},{"id":"edge-0.8128471457219586","source":"3642","target":"3651","data":{}},{"id":"edge-0.2827502189322151","source":"3642","target":"3652","data":{}},{"id":"edge-0.7950241956612687","source":"3642","target":"3653","data":{}},{"id":"edge-0.6544081142127305","source":"3642","target":"3654","data":{}},{"id":"edge-0.6818060588759582","source":"3642","target":"3655","data":{}},{"id":"edge-0.3713366193741463","source":"3642","target":"3656","data":{}},{"id":"edge-0.4248454111074036","source":"3642","target":"3657","data":{}},{"id":"edge-0.3211867073333867","source":"3642","target":"3658","data":{}},{"id":"edge-0.9338922285977644","source":"3642","target":"3659","data":{}},{"id":"edge-0.7340694697366086","source":"3642","target":"3660","data":{}},{"id":"edge-0.8866777075546719","source":"3642","target":"3661","data":{}},{"id":"edge-0.6264604298797574","source":"3642","target":"3662","data":{}},{"id":"edge-0.28912592337101684","source":"3642","target":"3663","data":{}},{"id":"edge-0.4819682320697749","source":"3642","target":"3664","data":{}},{"id":"edge-0.451298029595258","source":"3642","target":"3665","data":{}},{"id":"edge-0.11141026971637213","source":"3642","target":"3666","data":{}},{"id":"edge-0.18923763906958557","source":"3642","target":"3667","data":{}},{"id":"edge-0.38828698525744065","source":"3642","target":"3668","data":{}},{"id":"edge-0.2705474003843704","source":"3642","target":"3669","data":{}},{"id":"edge-0.574500525934545","source":"3642","target":"3670","data":{}},{"id":"edge-0.43634351803610527","source":"3642","target":"3671","data":{}},{"id":"edge-0.34560235071575884","source":"3642","target":"3672","data":{}},{"id":"edge-0.8087958063705842","source":"3642","target":"3673","data":{}},{"id":"edge-0.4993491063965285","source":"3642","target":"3674","data":{}},{"id":"edge-0.9234236910657281","source":"3642","target":"3675","data":{}},{"id":"edge-0.35545954541707014","source":"3642","target":"3676","data":{}},{"id":"edge-0.12911565210374465","source":"3642","target":"3677","data":{}},{"id":"edge-0.9860072767334618","source":"3642","target":"3678","data":{}},{"id":"edge-0.030933124268053502","source":"3642","target":"3679","data":{}},{"id":"edge-0.19493934996390938","source":"3642","target":"3680","data":{}},{"id":"edge-0.6196204016811924","source":"3642","target":"3681","data":{}},{"id":"edge-0.6122623923103505","source":"3642","target":"3682","data":{}},{"id":"edge-0.06817818588463442","source":"3642","target":"3683","data":{}},{"id":"edge-0.4143112785406047","source":"3642","target":"3684","data":{}},{"id":"edge-0.08265607724867574","source":"3642","target":"3685","data":{}},{"id":"edge-0.6656007568168372","source":"3642","target":"3686","data":{}},{"id":"edge-0.7159524001268303","source":"3642","target":"3687","data":{}},{"id":"edge-0.8261714942410705","source":"3642","target":"3688","data":{}},{"id":"edge-0.43637741147732134","source":"3642","target":"3689","data":{}},{"id":"edge-0.6523077609971164","source":"3642","target":"3690","data":{}},{"id":"edge-0.25847701914842625","source":"3642","target":"3691","data":{}},{"id":"edge-0.1578400171184713","source":"3642","target":"3692","data":{}},{"id":"edge-0.2559656108596451","source":"3642","target":"3693","data":{}},{"id":"edge-0.7497207922920457","source":"3642","target":"3694","data":{}},{"id":"edge-0.8650404378285019","source":"3642","target":"3695","data":{}},{"id":"edge-0.07912736706106549","source":"3642","target":"3696","data":{}},{"id":"edge-0.2894352093188899","source":"3642","target":"3697","data":{}},{"id":"edge-0.9428711753461381","source":"3642","target":"3698","data":{}},{"id":"edge-0.07519956315893617","source":"3642","target":"3699","data":{}},{"id":"edge-0.7603986414784127","source":"3642","target":"3700","data":{}},{"id":"edge-0.728873541342459","source":"3642","target":"3701","data":{}},{"id":"edge-0.5017147028382518","source":"3642","target":"3702","data":{}},{"id":"edge-0.41118887981539","source":"3642","target":"3703","data":{}},{"id":"edge-0.5138201018456883","source":"3642","target":"3704","data":{}},{"id":"edge-0.0339889388870982","source":"3642","target":"3705","data":{}},{"id":"edge-0.08027084158343945","source":"3642","target":"3706","data":{}},{"id":"edge-0.9552422653451997","source":"3642","target":"3707","data":{}},{"id":"edge-0.8136749492460971","source":"3642","target":"3708","data":{}},{"id":"edge-0.817764992648961","source":"3642","target":"3709","data":{}},{"id":"edge-0.7678556169960638","source":"3642","target":"3710","data":{}},{"id":"edge-0.494514157681496","source":"3642","target":"3711","data":{}},{"id":"edge-0.7327865369696713","source":"3642","target":"3712","data":{}},{"id":"edge-0.09573601072379567","source":"3642","target":"3713","data":{}},{"id":"edge-0.6016911534206759","source":"3642","target":"3714","data":{}},{"id":"edge-0.6427769838028388","source":"3642","target":"3715","data":{}},{"id":"edge-0.9609329455903062","source":"3642","target":"3716","data":{}},{"id":"edge-0.047763391064420624","source":"3642","target":"3717","data":{}},{"id":"edge-0.7072888970525733","source":"3642","target":"3718","data":{}},{"id":"edge-0.8852006624038335","source":"3642","target":"3719","data":{}},{"id":"edge-0.12671655043269836","source":"3642","target":"3720","data":{}},{"id":"edge-0.9310900181143855","source":"3642","target":"3721","data":{}},{"id":"edge-0.5976244615560034","source":"3642","target":"3722","data":{}},{"id":"edge-0.02341895706367847","source":"3642","target":"3723","data":{}},{"id":"edge-0.1445339582919709","source":"3642","target":"3724","data":{}},{"id":"edge-0.4698826487671064","source":"3642","target":"3725","data":{}},{"id":"edge-0.446574113842126","source":"3642","target":"3726","data":{}},{"id":"edge-0.8535063045127511","source":"3642","target":"3727","data":{}},{"id":"edge-0.08309408901594839","source":"3642","target":"3728","data":{}},{"id":"edge-0.15590356701415375","source":"3642","target":"3729","data":{}},{"id":"edge-0.9406618785065066","source":"3642","target":"3730","data":{}},{"id":"edge-0.40843042715450295","source":"3642","target":"3731","data":{}},{"id":"edge-0.9795266848593371","source":"3642","target":"3732","data":{}},{"id":"edge-0.9916630310786905","source":"3642","target":"3733","data":{}},{"id":"edge-0.7149761543101703","source":"3642","target":"3734","data":{}},{"id":"edge-0.6882172799562982","source":"3642","target":"3735","data":{}},{"id":"edge-0.18056299217061755","source":"3642","target":"3736","data":{}},{"id":"edge-0.09496766624559183","source":"3642","target":"3737","data":{}},{"id":"edge-0.7749288008036324","source":"3642","target":"3738","data":{}},{"id":"edge-0.8126136130475445","source":"3642","target":"3739","data":{}},{"id":"edge-0.013579616845552867","source":"3642","target":"3740","data":{}},{"id":"edge-0.9302243280067297","source":"3642","target":"3741","data":{}},{"id":"edge-0.20156954170786512","source":"3642","target":"3742","data":{}},{"id":"edge-0.02721272190347168","source":"3642","target":"3743","data":{}},{"id":"edge-0.6201932037538989","source":"3642","target":"3744","data":{}},{"id":"edge-0.08583206580585845","source":"3642","target":"3745","data":{}},{"id":"edge-0.9182157964343749","source":"3642","target":"3746","data":{}},{"id":"edge-0.39640302750185885","source":"3642","target":"3747","data":{}},{"id":"edge-0.39025627707639643","source":"3642","target":"3748","data":{}},{"id":"edge-0.5942623162353478","source":"3642","target":"3749","data":{}},{"id":"edge-0.9561675856846052","source":"3642","target":"3750","data":{}},{"id":"edge-0.7647938352006647","source":"3642","target":"3751","data":{}},{"id":"edge-0.2671994508306459","source":"3642","target":"3752","data":{}},{"id":"edge-0.6082000863351187","source":"3642","target":"3753","data":{}},{"id":"edge-0.2272660611094668","source":"3642","target":"3754","data":{}},{"id":"edge-0.15581964688344496","source":"3642","target":"3755","data":{}},{"id":"edge-0.5946800991077072","source":"3642","target":"3756","data":{}},{"id":"edge-0.030036416106832275","source":"3642","target":"3757","data":{}},{"id":"edge-0.9328052332868861","source":"3642","target":"3758","data":{}},{"id":"edge-0.17879626374956525","source":"3642","target":"3759","data":{}},{"id":"edge-0.10419414641696756","source":"3642","target":"3760","data":{}},{"id":"edge-0.3804132146964969","source":"3642","target":"3761","data":{}},{"id":"edge-0.06537645098076572","source":"3642","target":"3762","data":{}},{"id":"edge-0.6291465539575767","source":"3642","target":"3763","data":{}},{"id":"edge-0.8646125108432112","source":"3642","target":"3764","data":{}},{"id":"edge-0.48343062754909316","source":"3642","target":"3765","data":{}},{"id":"edge-0.9067255624292663","source":"3642","target":"3766","data":{}},{"id":"edge-0.4513161034920792","source":"3642","target":"3767","data":{}},{"id":"edge-0.3941698071982631","source":"3642","target":"3768","data":{}},{"id":"edge-0.1429183725112746","source":"3642","target":"3769","data":{}},{"id":"edge-0.9650059600617364","source":"3642","target":"3770","data":{}},{"id":"edge-0.43846269121345727","source":"3642","target":"3771","data":{}},{"id":"edge-0.44356810614471165","source":"3642","target":"3772","data":{}},{"id":"edge-0.9616374930472311","source":"3642","target":"3773","data":{}},{"id":"edge-0.5783088298853569","source":"3642","target":"3774","data":{}},{"id":"edge-0.28269602847131137","source":"3642","target":"3775","data":{}},{"id":"edge-0.0695795778252788","source":"3642","target":"3776","data":{}},{"id":"edge-0.4842199247301071","source":"3642","target":"3777","data":{}},{"id":"edge-0.6675606672057863","source":"3642","target":"3778","data":{}},{"id":"edge-0.5070392269948183","source":"3642","target":"3779","data":{}},{"id":"edge-0.5329085156640176","source":"3642","target":"3780","data":{}},{"id":"edge-0.14864244296865992","source":"3642","target":"3781","data":{}},{"id":"edge-0.019635399525863573","source":"3642","target":"3782","data":{}},{"id":"edge-0.9316487077361093","source":"3642","target":"3783","data":{}},{"id":"edge-0.584713756183062","source":"3642","target":"3788","data":{}},{"id":"edge-0.01203518744257881","source":"3642","target":"3789","data":{}},{"id":"edge-0.1600284270473662","source":"33","target":"3790","data":{}},{"id":"edge-0.04121722347554302","source":"33","target":"3791","data":{}},{"id":"edge-0.49197737850865564","source":"33","target":"3792","data":{}},{"id":"edge-0.5732444402512056","source":"33","target":"3793","data":{}},{"id":"edge-0.99374473901917","source":"33","target":"3794","data":{}},{"id":"edge-0.8537984742808142","source":"33","target":"3795","data":{}},{"id":"edge-0.4683946758089208","source":"4172","target":"3139","data":{}},{"id":"edge-0.5281878906775661","source":"4172","target":"3136","data":{}},{"id":"edge-0.3241043845903133","source":"4172","target":"3137","data":{}},{"id":"edge-0.14829587201721495","source":"4172","target":"3138","data":{}},{"id":"edge-0.16157166581762938","source":"4172","target":"3140","data":{}},{"id":"edge-0.10562003759623306","source":"4172","target":"3141","data":{}},{"id":"edge-0.8962739515827995","source":"4172","target":"3142","data":{}},{"id":"edge-0.7828232301921709","source":"4172","target":"3143","data":{}},{"id":"edge-0.08121075940837152","source":"4172","target":"4736","data":{}},{"id":"edge-0.18647598618131878","source":"4172","target":"4738","data":{}},{"id":"edge-0.8913116303051225","source":"4738","target":"4739","data":{}},{"id":"edge-0.783101679715654","source":"4738","target":"4740","data":{}},{"id":"edge-0.44589094744943547","source":"4738","target":"4741","data":{}},{"id":"edge-0.5835690718234319","source":"4738","target":"4742","data":{}},{"id":"edge-0.345335930190658","source":"4738","target":"4743","data":{}},{"id":"edge-0.9645964186284726","source":"4738","target":"4744","data":{}},{"id":"edge-0.8733234932193636","source":"4738","target":"4745","data":{}},{"id":"edge-0.12055423466036386","source":"4738","target":"4746","data":{}},{"id":"edge-0.3429862961694923","source":"4738","target":"4747","data":{}},{"id":"edge-0.7969965362399649","source":"4738","target":"4748","data":{}},{"id":"edge-0.8471808746300087","source":"4738","target":"4749","data":{}},{"id":"edge-0.5743423141234185","source":"4738","target":"4750","data":{}},{"id":"edge-0.03243044188588473","source":"4738","target":"4751","data":{}},{"id":"edge-0.2940624728847008","source":"4738","target":"4752","data":{}},{"id":"edge-0.4559910556727462","source":"4738","target":"4753","data":{}},{"id":"edge-0.29556983166196993","source":"4738","target":"4754","data":{}},{"id":"edge-0.42774395019135425","source":"4738","target":"4755","data":{}},{"id":"edge-0.6996017987707006","source":"4172","target":"4756","data":{}},{"id":"edge-0.8171367969653494","source":"4756","target":"4757","data":{}},{"id":"edge-0.7665934143765054","source":"4757","target":"4758","data":{}},{"id":"edge-0.1517575028283964","source":"4757","target":"4759","data":{}},{"id":"edge-0.39798361389844206","source":"4756","target":"4760","data":{}},{"id":"edge-0.6447733520547638","source":"4760","target":"4761","data":{}},{"id":"edge-0.8371521339911872","source":"4760","target":"4762","data":{}},{"id":"edge-0.699838608694122","source":"4760","target":"4763","data":{}},{"id":"edge-0.9960164556356972","source":"4760","target":"4764","data":{}},{"id":"edge-0.34848655243010485","source":"4756","target":"4765","data":{}},{"id":"edge-0.5555727677252855","source":"4765","target":"4766","data":{}},{"id":"edge-0.9456765824504143","source":"4765","target":"4767","data":{}},{"id":"edge-0.25226750817361876","source":"4765","target":"4768","data":{}},{"id":"edge-0.08679874461709969","source":"4765","target":"4769","data":{}},{"id":"edge-0.24285917380033117","source":"4765","target":"4770","data":{}},{"id":"edge-0.3702419357656299","source":"4765","target":"4771","data":{}},{"id":"edge-0.26204313521402933","source":"4765","target":"4772","data":{}},{"id":"edge-0.12925019711094987","source":"4765","target":"4773","data":{}},{"id":"edge-0.7435468269303309","source":"4765","target":"4774","data":{}},{"id":"edge-0.6036323335874147","source":"4765","target":"4775","data":{}},{"id":"edge-0.5208006657441098","source":"4765","target":"4776","data":{}},{"id":"edge-0.2725444259447172","source":"4756","target":"4777","data":{}},{"id":"edge-0.44495185534188963","source":"4777","target":"4778","data":{}},{"id":"edge-0.9660200790388582","source":"4777","target":"4779","data":{}},{"id":"edge-0.11215336344887361","source":"4777","target":"4780","data":{}},{"id":"edge-0.3762790615012672","source":"4777","target":"4781","data":{}},{"id":"edge-0.1664605543352371","source":"4777","target":"4782","data":{}},{"id":"edge-0.23064010672877222","source":"4777","target":"4783","data":{}},{"id":"edge-0.765848855300086","source":"4777","target":"4784","data":{}},{"id":"edge-0.8590936832633722","source":"4777","target":"4785","data":{}},{"id":"edge-0.43820577105626746","source":"4172","target":"4786","data":{}},{"id":"edge-0.28075968293041376","source":"4786","target":"4787","data":{}},{"id":"edge-0.41874186543859304","source":"4787","target":"4788","data":{}},{"id":"edge-0.7953073864121247","source":"4787","target":"4789","data":{}},{"id":"edge-0.33170866419347766","source":"4787","target":"4772","data":{}},{"id":"edge-0.6802700987718275","source":"4787","target":"4774","data":{}},{"id":"edge-0.04657983087269546","source":"4787","target":"4766","data":{}},{"id":"edge-0.8795891128940803","source":"4787","target":"4793","data":{}},{"id":"edge-0.9061461748663089","source":"4787","target":"4794","data":{}},{"id":"edge-0.20195558173632588","source":"4787","target":"4795","data":{}},{"id":"edge-0.8343346127602469","source":"4787","target":"4796","data":{}},{"id":"edge-0.15128776460017535","source":"4786","target":"4797","data":{}},{"id":"edge-0.6811595397525609","source":"4797","target":"4798","data":{}},{"id":"edge-0.12997873575066987","source":"4786","target":"4799","data":{}},{"id":"edge-0.24588223631932538","source":"4799","target":"4800","data":{}},{"id":"edge-0.9042274918448787","source":"4799","target":"4801","data":{}},{"id":"edge-0.7386328450488024","source":"4799","target":"4743","data":{}},{"id":"edge-0.5265940263098627","source":"4799","target":"4803","data":{}},{"id":"edge-0.5167504248966832","source":"4172","target":"3145","data":{}},{"id":"edge-0.45896237714910115","source":"4172","target":"3146","data":{}},{"id":"edge-0.07278798687375465","source":"4172","target":"3147","data":{}},{"id":"edge-0.19517032344112129","source":"4172","target":"3148","data":{}},{"id":"edge-0.346378741772712","source":"4172","target":"3149","data":{}},{"id":"edge-0.25061454318821097","source":"4172","target":"3150","data":{}},{"id":"edge-0.6304875285780831","source":"4172","target":"3151","data":{}},{"id":"edge-0.4230498732129653","source":"4172","target":"4807","data":{}},{"id":"edge-0.24512266550188855","source":"3847","target":"4807","data":{}},{"id":"edge-0.4069614683433951","source":"4172","target":"4804","data":{}},{"id":"edge-0.6897920251229066","source":"4172","target":"4805","data":{}},{"id":"edge-0.14135014852124206","source":"4172","target":"4806","data":{}},{"id":"edge-0.49955438606265323","source":"4172","target":"4808","data":{}},{"id":"edge-0.08142486916973213","source":"4172","target":"4809","data":{}},{"id":"edge-0.2933817059414179","source":"4172","target":"4810","data":{}},{"id":"edge-0.5127044750914007","source":"4172","target":"3153","data":{}},{"id":"edge-0.24863078684326134","source":"4172","target":"3154","data":{}},{"id":"edge-0.9324645986057964","source":"3154","target":"3155","data":{}},{"id":"edge-0.49682637217449943","source":"3154","target":"3156","data":{}},{"id":"edge-0.537402879487731","source":"3154","target":"3157","data":{}},{"id":"edge-0.8335721659381672","source":"3154","target":"3158","data":{}},{"id":"edge-0.6756410524269671","source":"3154","target":"3159","data":{}},{"id":"edge-0.32512464125705565","source":"3154","target":"3160","data":{}},{"id":"edge-0.6913321387088078","source":"3154","target":"3161","data":{}},{"id":"edge-0.1791375643151596","source":"3154","target":"3162","data":{}},{"id":"edge-0.020064543937086343","source":"3154","target":"3163","data":{}},{"id":"edge-0.3298975809252067","source":"3154","target":"3164","data":{}},{"id":"edge-0.9174574294748652","source":"3154","target":"3165","data":{}},{"id":"edge-0.22788685792468688","source":"3154","target":"3166","data":{}},{"id":"edge-0.048050267981775585","source":"3154","target":"3167","data":{}},{"id":"edge-0.3178560022585617","source":"3154","target":"3168","data":{}},{"id":"edge-0.6960830609902344","source":"3154","target":"3169","data":{}},{"id":"edge-0.6311359717495579","source":"3154","target":"3181","data":{}},{"id":"edge-0.16303255879909395","source":"3154","target":"4811","data":{}},{"id":"edge-0.055404010228939704","source":"3154","target":"3170","data":{}},{"id":"edge-0.8973171422930277","source":"4172","target":"3171","data":{}},{"id":"edge-0.6405216792503119","source":"4172","target":"3172","data":{}},{"id":"edge-0.9730105099019779","source":"4172","target":"4813","data":{}},{"id":"edge-0.8680378817254824","source":"4172","target":"4814","data":{}},{"id":"edge-0.008193629430746752","source":"4172","target":"3229","data":{}},{"id":"edge-0.32322091542610765","source":"4172","target":"3230","data":{}},{"id":"edge-0.6080522290704273","source":"4172","target":"3231","data":{}},{"id":"edge-0.5197545644351942","source":"4172","target":"4816","data":{}},{"id":"edge-0.5263937229290099","source":"34","target":"4817","data":{}},{"id":"edge-0.7760772432154814","source":"34","target":"3796","data":{}},{"id":"edge-0.06347922243968251","source":"34","target":"3797","data":{}},{"id":"edge-0.8360636238448673","source":"34","target":"3798","data":{}},{"id":"edge-0.49564918534240654","source":"34","target":"4818","data":{}},{"id":"edge-0.9638630591024908","source":"34","target":"4819","data":{}},{"id":"edge-0.6525193673271694","source":"34","target":"4820","data":{}},{"id":"edge-0.33719933400904334","source":"34","target":"4821","data":{}},{"id":"edge-0.37744373920111074","source":"34","target":"4822","data":{}},{"id":"edge-0.13528944007858268","source":"34","target":"4823","data":{}},{"id":"edge-0.5491856106477797","source":"34","target":"4824","data":{}},{"id":"edge-0.31160388977181186","source":"34","target":"4825","data":{}},{"id":"edge-0.5256660309392303","source":"34","target":"4826","data":{}},{"id":"edge-0.7290450874527261","source":"34","target":"4827","data":{}},{"id":"edge-0.2829968278581041","source":"34","target":"4828","data":{}},{"id":"edge-0.5324692105047539","source":"34","target":"4829","data":{}},{"id":"edge-0.047275876698632535","source":"34","target":"4830","data":{}},{"id":"edge-0.9527868590016031","source":"34","target":"4831","data":{}},{"id":"edge-0.5236352058111056","source":"34","target":"4832","data":{}},{"id":"edge-0.34819950758266716","source":"34","target":"4833","data":{}},{"id":"edge-0.9526692837482886","source":"34","target":"4834","data":{}},{"id":"edge-0.3141307805984941","source":"34","target":"4835","data":{}},{"id":"edge-0.12206992354064283","source":"34","target":"4836","data":{}},{"id":"edge-0.6908656356564566","source":"34","target":"4837","data":{}},{"id":"edge-0.5414694722248972","source":"34","target":"4838","data":{}},{"id":"edge-0.5962291522360768","source":"34","target":"4839","data":{}},{"id":"edge-0.19538535188445705","source":"34","target":"4840","data":{}},{"id":"edge-0.41154334134635806","source":"34","target":"4841","data":{}},{"id":"edge-0.5781370174932328","source":"34","target":"4842","data":{}},{"id":"edge-0.09896694312866816","source":"34","target":"4843","data":{}},{"id":"edge-0.7427001239065205","source":"34","target":"4844","data":{}},{"id":"edge-0.7011120412648357","source":"34","target":"4845","data":{}},{"id":"edge-0.9462044236278842","source":"34","target":"4846","data":{}},{"id":"edge-0.3942694839363341","source":"35","target":"3800","data":{}},{"id":"edge-0.701899307538586","source":"35","target":"3801","data":{}},{"id":"edge-0.6659981595580962","source":"35","target":"3802","data":{}},{"id":"edge-0.15477302591590125","source":"35","target":"3039","data":{}},{"id":"edge-0.4365968695931939","source":"35","target":"3386","data":{}},{"id":"edge-0.19951380241546035","source":"35","target":"3807","data":{}},{"id":"edge-0.41049697518226824","source":"35","target":"3808","data":{}},{"id":"edge-0.6882151263634066","source":"35","target":"3809","data":{}},{"id":"edge-0.8671290896687154","source":"35","target":"3810","data":{}},{"id":"edge-0.5638614881536268","source":"35","target":"3811","data":{}},{"id":"edge-0.17700402483218447","source":"35","target":"3812","data":{}},{"id":"edge-0.45465872130766716","source":"35","target":"3813","data":{}},{"id":"edge-0.9647101982331103","source":"35","target":"3814","data":{}},{"id":"edge-0.8673057987257167","source":"35","target":"3815","data":{}},{"id":"edge-0.098754309916542","source":"35","target":"3816","data":{}},{"id":"edge-0.9913494859524763","source":"35","target":"3817","data":{}},{"id":"edge-0.24085937121416978","source":"35","target":"3818","data":{}},{"id":"edge-0.07514605827830922","source":"35","target":"3819","data":{}},{"id":"edge-0.36552482239346573","source":"35","target":"3820","data":{}},{"id":"edge-0.20816618013039756","source":"35","target":"3821","data":{}},{"id":"edge-0.9897638064439132","source":"35","target":"3823","data":{}},{"id":"edge-0.7240721515698216","source":"35","target":"3824","data":{}},{"id":"edge-0.07989434167067588","source":"35","target":"3825","data":{}},{"id":"edge-0.6981535104957353","source":"35","target":"3826","data":{}},{"id":"edge-0.4356657011928622","source":"35","target":"3828","data":{}},{"id":"edge-0.5880185718232676","source":"35","target":"3829","data":{}},{"id":"edge-0.03579484678276579","source":"35","target":"3830","data":{}},{"id":"edge-0.11557179792710048","source":"35","target":"3831","data":{}},{"id":"edge-0.9904483450551098","source":"35","target":"3832","data":{}},{"id":"edge-0.013552890800121453","source":"36","target":"3833","data":{}},{"id":"edge-0.721329006539789","source":"36","target":"3834","data":{}},{"id":"edge-0.28688811633052613","source":"36","target":"3835","data":{}},{"id":"edge-0.4574289940102474","source":"36","target":"3836","data":{}},{"id":"edge-0.19702554405959094","source":"36","target":"3837","data":{}},{"id":"edge-0.9417602673588998","source":"36","target":"3838","data":{}},{"id":"edge-0.8987158711336796","source":"36","target":"3839","data":{}},{"id":"edge-0.6455161209552072","source":"36","target":"3840","data":{}},{"id":"edge-0.7948347964136226","source":"36","target":"3841","data":{}},{"id":"edge-0.2447544711518359","source":"36","target":"3842","data":{}},{"id":"edge-0.1773345287506407","source":"36","target":"3843","data":{}},{"id":"edge-0.8973610356707344","source":"36","target":"3844","data":{}},{"id":"edge-0.34500093038723745","source":"36","target":"3845","data":{}},{"id":"edge-0.9568490130420224","source":"36","target":"3846","data":{}},{"id":"edge-0.9730135601472045","source":"3847","target":"36","data":{}},{"id":"edge-0.9223425248596953","source":"27","target":"4855","data":{}},{"id":"edge-0.05073417441810957","source":"27","target":"4856","data":{}},{"id":"edge-0.6733463166789668","source":"27","target":"4857","data":{}},{"id":"edge-0.5102627436795226","source":"27","target":"4858","data":{}},{"id":"edge-0.8448456481694566","source":"27","target":"4859","data":{}},{"id":"edge-0.07943478911080915","source":"27","target":"4860","data":{}},{"id":"edge-0.5760474649244269","source":"27","target":"4861","data":{}},{"id":"edge-0.8314793500932836","source":"27","target":"3278","data":{}},{"id":"edge-0.7906393473012434","source":"27","target":"4867","data":{}},{"id":"edge-0.9688103081416493","source":"27","target":"4871","data":{}},{"id":"edge-0.2931854098179596","source":"27","target":"4875","data":{}},{"id":"edge-0.654876957028339","source":"27","target":"4876","data":{}},{"id":"edge-0.8796154323612961","source":"27","target":"4877","data":{}},{"id":"edge-0.5945343816333302","source":"3507","target":"4922","data":{}},{"id":"edge-0.4939774309321976","source":"3848","target":"30","data":{}},{"id":"edge-0.3526690881969894","source":"3848","target":"429","data":{}},{"id":"edge-0.37898102645931386","source":"3848","target":"428","data":{}},{"id":"edge-0.9618693354740331","source":"3848","target":"149","data":{}},{"id":"edge-0.9974614867826288","source":"8","target":"166","data":{}},{"id":"edge-0.9127695415226356","source":"163","target":"166","data":{}},{"id":"edge-0.4700658836606417","source":"9","target":"166","data":{}},{"id":"edge-0.42821776698583847","source":"166","target":"3481","data":{}},{"id":"edge-0.14964416042232442","source":"4299","target":"168","data":{}},{"id":"edge-0.17498712572598185","source":"170","target":"32","data":{}},{"id":"edge-0.04783216134227808","source":"170","target":"4940","data":{}},{"id":"edge-0.3458516679241961","source":"23","target":"4940","data":{}},{"id":"edge-0.5570554557125671","source":"9","target":"4174","data":{}},{"id":"edge-0.2782288273610447","source":"163","target":"4943","data":{}},{"id":"edge-0.4949592012361508","source":"4817","target":"1521","data":{}},{"id":"edge-0.9649085768242502","source":"5911","target":"5946","data":{}},{"id":"edge-0.6302597713245905","source":"5490","target":"8002","data":{}},{"id":"edge-0.5360742655476076","source":"8023","target":"8024","data":{}},{"id":"edge-0.21439458361073882","source":"326","target":"1873","data":{}},{"id":"edge-0.9660756925847731","source":"6051","target":"1873","data":{}},{"id":"edge-0.6621748694270095","source":"4926","target":"1873","data":{}},{"id":"edge-0.4082572713220245","source":"8020","target":"6265","data":{}},{"id":"edge-0.2883537452838367","source":"5091","target":"6265","data":{}},{"id":"edge-0.9379758617383116","source":"4926","target":"6265","data":{}},{"id":"edge-0.8365185781893465","source":"8003","target":"8002","data":{}},{"id":"edge-0.6350466630742868","source":"8197","target":"8005","data":{}},{"id":"edge-0.38789416475865957","source":"8006","target":"8005","data":{}},{"id":"edge-0.9939589796906294","source":"8197","target":"5975","data":{}},{"id":"edge-0.013499691292805815","source":"5974","target":"5975","data":{}},{"id":"edge-0.1900409225606008","source":"8007","target":"8008","data":{}},{"id":"edge-0.3667120254594749","source":"8009","target":"8010","data":{}},{"id":"edge-0.46141303859132954","source":"5269","target":"5688","data":{}},{"id":"edge-0.2106397292001616","source":"5826","target":"5688","data":{}},{"id":"edge-0.8011491964196784","source":"471","target":"5497","data":{}},{"id":"edge-0.38226671198235596","source":"471","target":"6","data":{}},{"id":"edge-0.8145665508984525","source":"6383","target":"6384","data":{}},{"id":"edge-0.885144034291002","source":"4960","target":"6352","data":{}},{"id":"edge-0.9365448792793587","source":"8025","target":"8200","data":{}},{"id":"edge-0.2631911403620042","source":"8011","target":"8199","data":{}},{"id":"edge-0.8861784108409692","source":"8013","target":"8014","data":{}},{"id":"edge-0.004766062143755967","source":"6106","target":"6107","data":{}},{"id":"edge-0.697201170782993","source":"8015","target":"8016","data":{}},{"id":"edge-0.5715406095036581","source":"8017","target":"8018","data":{}},{"id":"edge-0.8433201274755875","source":"4926","target":"4116","data":{}},{"id":"edge-0.3902418791938731","source":"8019","target":"8018","data":{}},{"id":"edge-0.10803695753045073","source":"5911","target":"5945","data":{}},{"id":"edge-0.6687942535946729","source":"4972","target":"5938","data":{}},{"id":"edge-0.8191570496024407","source":"5777","target":"4972","data":{}},{"id":"edge-0.26617291505961593","source":"7997","target":"7998","data":{}},{"id":"edge-0.5170136773029288","source":"4993","target":"8031","data":{}},{"id":"edge-0.6553587204491331","source":"5753","target":"6657","data":{}},{"id":"edge-0.8945359916520665","source":"8034","target":"8202","data":{}},{"id":"edge-0.5481396683446285","source":"8036","target":"8202","data":{}},{"id":"edge-0.9578125012952343","source":"5772","target":"5773","data":{}},{"id":"edge-0.27831950707715913","source":"6733","target":"6734","data":{}},{"id":"edge-0.22117656961858678","source":"5010","target":"6241","data":{}},{"id":"edge-0.1531565601863889","source":"6754","target":"315","data":{}},{"id":"edge-0.8289515728181975","source":"4817","target":"315","data":{}},{"id":"edge-0.644754330652235","source":"4116","target":"6754","data":{}},{"id":"edge-0.4397784479331188","source":"5091","target":"6754","data":{}},{"id":"edge-0.7727701739929838","source":"1314","target":"6501","data":{}},{"id":"edge-0.01976522072454978","source":"166","target":"6501","data":{}},{"id":"edge-0.3512179372812205","source":"5304","target":"6501","data":{}},{"id":"edge-0.887793749396929","source":"1314","target":"1315","data":{}},{"id":"edge-0.9907909962553252","source":"8043","target":"8044","data":{}},{"id":"edge-0.4854695064236443","source":"9","target":"6502","data":{}},{"id":"edge-0.148393468987009","source":"4810","target":"6502","data":{}},{"id":"edge-0.7652759078547746","source":"8047","target":"8048","data":{}},{"id":"edge-0.7392813392616229","source":"9","target":"8048","data":{}},{"id":"edge-0.2771383786350763","source":"8049","target":"8048","data":{}},{"id":"edge-0.6431267704184171","source":"4","target":"8","data":{}},{"id":"edge-0.20958970112886544","source":"4","target":"4174","data":{}},{"id":"edge-0.848021063990011","source":"4","target":"166","data":{}},{"id":"edge-0.2848400642896116","source":"6870","target":"6871","data":{}},{"id":"edge-0.742376341512661","source":"6870","target":"8053","data":{}},{"id":"edge-0.37027662415448526","source":"4817","target":"6871","data":{}},{"id":"edge-0.9801212671142749","source":"2812","target":"8203","data":{}},{"id":"edge-0.7200752629246434","source":"8055","target":"8203","data":{}},{"id":"edge-0.8445833448956555","source":"6923","target":"5539","data":{}},{"id":"edge-0.03622787126788185","source":"5901","target":"8059","data":{}},{"id":"edge-0.7149781465850649","source":"8060","target":"8061","data":{}},{"id":"edge-0.4765317177867743","source":"8062","target":"8061","data":{}},{"id":"edge-0.034430834532313215","source":"5644","target":"6950","data":{}},{"id":"edge-0.009222680444256337","source":"5644","target":"6948","data":{}},{"id":"edge-0.8498825817914446","source":"5644","target":"7755","data":{}},{"id":"edge-0.11551055609010841","source":"5146","target":"5747","data":{}},{"id":"edge-0.5173616709404076","source":"5735","target":"6976","data":{}},{"id":"edge-0.21505721608713557","source":"5735","target":"6977","data":{}},{"id":"edge-0.6217749325165882","source":"5735","target":"6979","data":{}},{"id":"edge-0.410945743822031","source":"8066","target":"8067","data":{}},{"id":"edge-0.8967593999357526","source":"6266","target":"6267","data":{}},{"id":"edge-0.6875053926517558","source":"6268","target":"6267","data":{}},{"id":"edge-0.4264536168164368","source":"5914","target":"8071","data":{}},{"id":"edge-0.5455974743242831","source":"5914","target":"7012","data":{}},{"id":"edge-0.9476016853407399","source":"8076","target":"6443","data":{}},{"id":"edge-0.25157096672870916","source":"6210","target":"5554","data":{}},{"id":"edge-0.8429271454128437","source":"8080","target":"8081","data":{}},{"id":"edge-0.6754079141158311","source":"6381","target":"8082","data":{}},{"id":"edge-0.21585146171797187","source":"6612","target":"6613","data":{}},{"id":"edge-0.8721052729079426","source":"8084","target":"7106","data":{}},{"id":"edge-0.5941179320655632","source":"8086","target":"8087","data":{}},{"id":"edge-0.6225721650891267","source":"6289","target":"6290","data":{}},{"id":"edge-0.4365871440328426","source":"8090","target":"8091","data":{}},{"id":"edge-0.5984572663742964","source":"8092","target":"8091","data":{}},{"id":"edge-0.7714257480329338","source":"8206","target":"8094","data":{}},{"id":"edge-0.7559030790774102","source":"5633","target":"8096","data":{}},{"id":"edge-0.4869583213435069","source":"8097","target":"8098","data":{}},{"id":"edge-0.8158021485208422","source":"6721","target":"8099","data":{}},{"id":"edge-0.9623781862594041","source":"5589","target":"5590","data":{}},{"id":"edge-0.6458992380061521","source":"6817","target":"6560","data":{}},{"id":"edge-0.27334166643842783","source":"6434","target":"7154","data":{}},{"id":"edge-0.6549554201979495","source":"5036","target":"7209","data":{}},{"id":"edge-0.24164913574047442","source":"8208","target":"8103","data":{}},{"id":"edge-0.6775753754232483","source":"5386","target":"5997","data":{}},{"id":"edge-0.8939992731689674","source":"5997","target":"5998","data":{}},{"id":"edge-0.7125113009527806","source":"5322","target":"8107","data":{}},{"id":"edge-0.7849910977802588","source":"8108","target":"8109","data":{}},{"id":"edge-0.07376556677716484","source":"8110","target":"8109","data":{}},{"id":"edge-0.07780871260235811","source":"8110","target":"8111","data":{}},{"id":"edge-0.8649964167151327","source":"5036","target":"6528","data":{}},{"id":"edge-0.636352231952966","source":"6691","target":"5751","data":{}},{"id":"edge-0.009867487971962907","source":"8115","target":"6308","data":{}},{"id":"edge-0.7563728549296287","source":"8117","target":"8118","data":{}},{"id":"edge-0.47613283748203306","source":"6691","target":"8118","data":{}},{"id":"edge-0.21946960707467533","source":"8119","target":"8209","data":{}},{"id":"edge-0.04104450871314236","source":"8121","target":"8122","data":{}},{"id":"edge-0.16513289181047908","source":"6090","target":"6091","data":{}},{"id":"edge-0.6185253553858252","source":"5410","target":"8124","data":{}},{"id":"edge-0.012358750784415173","source":"7349","target":"8126","data":{}},{"id":"edge-0.5657591883419477","source":"4817","target":"5040","data":{}},{"id":"edge-0.971078088224562","source":"6123","target":"7192","data":{}},{"id":"edge-0.9231281895756627","source":"5386","target":"8212","data":{}},{"id":"edge-0.006312380237500692","source":"5386","target":"7479","data":{}},{"id":"edge-0.5897096969289435","source":"5386","target":"7519","data":{}},{"id":"edge-0.5709056878916758","source":"5386","target":"7367","data":{}},{"id":"edge-0.46695857651374917","source":"7097","target":"7098","data":{}},{"id":"edge-0.03657828874062807","source":"5355","target":"7098","data":{}},{"id":"edge-0.27037158416445184","source":"4933","target":"5953","data":{}},{"id":"edge-0.9724454701721255","source":"5953","target":"5777","data":{}},{"id":"edge-0.7988363605148694","source":"5951","target":"5777","data":{}},{"id":"edge-0.44124272676702314","source":"8135","target":"5777","data":{}},{"id":"edge-0.4198769140213099","source":"5070","target":"5777","data":{}},{"id":"edge-0.6003294597166613","source":"8136","target":"8213","data":{}},{"id":"edge-0.8486548865097894","source":"8138","target":"8214","data":{}},{"id":"edge-0.5409588564982961","source":"8138","target":"8140","data":{}},{"id":"edge-0.302873148910324","source":"8141","target":"8214","data":{}},{"id":"edge-0.19074153487113432","source":"8141","target":"8140","data":{}},{"id":"edge-0.9775628480652363","source":"8143","target":"8144","data":{}},{"id":"edge-0.6149065904301183","source":"8145","target":"8144","data":{}},{"id":"edge-0.8998133546866929","source":"5660","target":"7576","data":{}},{"id":"edge-0.2502445257861472","source":"5842","target":"5843","data":{}},{"id":"edge-0.40367755345704204","source":"5353","target":"5842","data":{}},{"id":"edge-0.5269089497832982","source":"5070","target":"7232","data":{}},{"id":"edge-0.8724830443672165","source":"5824","target":"7239","data":{}},{"id":"edge-0.4529245096682466","source":"5070","target":"7239","data":{}},{"id":"edge-0.5810306333440427","source":"8217","target":"8154","data":{}},{"id":"edge-0.7713575522565455","source":"8155","target":"8154","data":{}},{"id":"edge-0.8897726172614817","source":"5070","target":"8156","data":{}},{"id":"edge-0.908434963873687","source":"8218","target":"7146","data":{}},{"id":"edge-0.7045869525042583","source":"8158","target":"5879","data":{}},{"id":"edge-0.9966531563340615","source":"4116","target":"5879","data":{}},{"id":"edge-0.5447669923571128","source":"4116","target":"6643","data":{}},{"id":"edge-0.8382740778768858","source":"8159","target":"8160","data":{}},{"id":"edge-0.3568154604664928","source":"7609","target":"8160","data":{}},{"id":"edge-0.39241777812339085","source":"8162","target":"8160","data":{}},{"id":"edge-0.7821974712773547","source":"4","target":"6336","data":{}},{"id":"edge-0.4572846709555136","source":"4941","target":"6336","data":{}},{"id":"edge-0.6610014532229156","source":"5256","target":"6643","data":{}},{"id":"edge-0.6111262144210423","source":"5297","target":"6643","data":{}},{"id":"edge-0.18159927205295","source":"8164","target":"6643","data":{}},{"id":"edge-0.0215867420363538","source":"8165","target":"8166","data":{}},{"id":"edge-0.9619145233808488","source":"8167","target":"7657","data":{}},{"id":"edge-0.7293094738612182","source":"5327","target":"8169","data":{}},{"id":"edge-0.4908652535477749","source":"5327","target":"7582","data":{}},{"id":"edge-0.5288503470355996","source":"8170","target":"8171","data":{}},{"id":"edge-0.33102186697625036","source":"8172","target":"8171","data":{}},{"id":"edge-0.062084181342837","source":"5308","target":"7678","data":{}},{"id":"edge-0.8121412492786702","source":"5705","target":"5485","data":{}},{"id":"edge-0.16102610957321017","source":"5001","target":"5485","data":{}},{"id":"edge-0.5204332340109896","source":"6617","target":"8175","data":{}},{"id":"edge-0.3298696244312307","source":"6617","target":"6072","data":{}},{"id":"edge-0.3418392570672959","source":"8177","target":"5324","data":{}},{"id":"edge-0.779578658000706","source":"5259","target":"5786","data":{}},{"id":"edge-0.14934321780245208","source":"8179","target":"8180","data":{}},{"id":"edge-0.8505705856216699","source":"8181","target":"8180","data":{}},{"id":"edge-0.7466315332110611","source":"5641","target":"6443","data":{}},{"id":"edge-0.36237659787234033","source":"5947","target":"5948","data":{}},{"id":"edge-0.9248396228753324","source":"170","target":"4942","data":{}},{"id":"edge-0.11732574462015344","source":"5645","target":"8188","data":{}},{"id":"edge-0.12054907348546329","source":"8189","target":"5649","data":{}},{"id":"edge-0.9621493772613761","source":"5355","target":"8191","data":{}},{"id":"edge-0.17535349933431932","source":"6536","target":"6537","data":{}},{"id":"edge-0.28976518684609753","source":"6569","target":"8219","data":{}},{"id":"edge-0.012869286130233082","source":"8194","target":"8195","data":{}},{"id":"edge-0.007234964867917748","source":"5905","target":"5906","data":{}},{"id":"edge-0.8502049274798553","source":"5676","target":"5677","data":{}},{"id":"edge-0.47535760784424785","source":"5678","target":"5679","data":{}},{"id":"edge-0.2141841159948099","source":"5680","target":"5681","data":{}},{"id":"edge-0.054749996113879096","source":"5269","target":"5682","data":{}},{"id":"edge-0.5356385343754555","source":"5269","target":"5683","data":{}},{"id":"edge-0.20066126634862602","source":"4817","target":"5683","data":{}},{"id":"edge-0.5756495190372237","source":"5269","target":"5684","data":{}},{"id":"edge-0.8843996942019348","source":"5269","target":"5685","data":{}},{"id":"edge-0.3597187263518966","source":"5269","target":"5686","data":{}},{"id":"edge-0.24028426594594765","source":"5269","target":"5687","data":{}},{"id":"edge-0.7510884561682349","source":"5269","target":"5689","data":{}},{"id":"edge-0.1383952939244264","source":"5269","target":"5690","data":{}},{"id":"edge-0.4551476946479929","source":"5269","target":"5691","data":{}},{"id":"edge-0.8482123086233342","source":"5692","target":"5693","data":{}},{"id":"edge-0.3453243923277485","source":"5694","target":"5695","data":{}},{"id":"edge-0.889814780344711","source":"5273","target":"5696","data":{}},{"id":"edge-0.49572786934290947","source":"5273","target":"5697","data":{}},{"id":"edge-0.9254448943745013","source":"5698","target":"5699","data":{}},{"id":"edge-0.6185813007666658","source":"5700","target":"5701","data":{}},{"id":"edge-0.2284683328151904","source":"5702","target":"5701","data":{}},{"id":"edge-0.6250346918344192","source":"5703","target":"5704","data":{}},{"id":"edge-0.17825886228219812","source":"5705","target":"5706","data":{}},{"id":"edge-0.05138605857789513","source":"1315","target":"5707","data":{}},{"id":"edge-0.7829111706981988","source":"5503","target":"5708","data":{}},{"id":"edge-0.4504906787047329","source":"5263","target":"5709","data":{}},{"id":"edge-0.13751275467042512","source":"5070","target":"5710","data":{}},{"id":"edge-0.5349879081251019","source":"5711","target":"152","data":{}},{"id":"edge-0.9614979465915352","source":"5712","target":"5713","data":{}},{"id":"edge-0.024725850911839986","source":"5714","target":"5715","data":{}},{"id":"edge-0.9292783874945789","source":"5716","target":"5717","data":{}},{"id":"edge-0.21143768614624436","source":"5718","target":"5719","data":{}},{"id":"edge-0.07445773891632235","source":"5488","target":"5721","data":{}},{"id":"edge-0.4356837620280498","source":"5633","target":"5634","data":{}},{"id":"edge-0.1382647007162623","source":"4817","target":"5722","data":{}},{"id":"edge-0.0942007698759324","source":"5723","target":"5724","data":{}},{"id":"edge-0.2529472688800165","source":"5355","target":"5726","data":{}},{"id":"edge-0.9083715306324596","source":"5154","target":"5727","data":{}},{"id":"edge-0.9370775556565931","source":"5727","target":"5729","data":{}},{"id":"edge-0.41132610204647846","source":"3486","target":"309","data":{}},{"id":"edge-0.8568602045771287","source":"3847","target":"5731","data":{}},{"id":"edge-0.7914091910025267","source":"3847","target":"5666","data":{}},{"id":"edge-0.8143719144725245","source":"5213","target":"5529","data":{}},{"id":"edge-0.4735701549080811","source":"5733","target":"5734","data":{}},{"id":"edge-0.6762589236574565","source":"5735","target":"5736","data":{}},{"id":"edge-0.045376404990813635","source":"5737","target":"5738","data":{}},{"id":"edge-0.5735022073274549","source":"5739","target":"5740","data":{}},{"id":"edge-0.8564937422336514","source":"5743","target":"5744","data":{}},{"id":"edge-0.26438701629533057","source":"5745","target":"5746","data":{}},{"id":"edge-0.1399178184730765","source":"5748","target":"5749","data":{}},{"id":"edge-0.8281887418040996","source":"8","target":"5750","data":{}},{"id":"edge-0.19442710562731436","source":"5751","target":"5752","data":{}},{"id":"edge-0.31185861401230386","source":"5753","target":"5754","data":{}},{"id":"edge-0.11914674963980332","source":"5755","target":"5754","data":{}},{"id":"edge-0.5024450802984901","source":"5756","target":"5568","data":{}},{"id":"edge-0.9881489737149463","source":"33","target":"5568","data":{}},{"id":"edge-0.8338111234551357","source":"5757","target":"5758","data":{}},{"id":"edge-0.99296353370527","source":"4172","target":"5666","data":{}},{"id":"edge-0.3933966532127895","source":"5760","target":"5761","data":{}},{"id":"edge-0.22451289184140788","source":"5762","target":"5763","data":{}},{"id":"edge-0.4479035359798431","source":"5529","target":"5764","data":{}},{"id":"edge-0.30746758235628757","source":"5765","target":"5766","data":{}},{"id":"edge-0.9652621499345304","source":"5767","target":"5768","data":{}},{"id":"edge-0.8425107514554899","source":"5769","target":"5770","data":{}},{"id":"edge-0.6350845704461401","source":"3847","target":"5771","data":{}},{"id":"edge-0.7954222851455914","source":"5774","target":"5775","data":{}},{"id":"edge-0.6116905164156436","source":"5733","target":"5776","data":{}},{"id":"edge-0.9645363846148343","source":"5778","target":"5779","data":{}},{"id":"edge-0.8113958415559841","source":"5780","target":"5781","data":{}},{"id":"edge-0.741840543554926","source":"5782","target":"5783","data":{}},{"id":"edge-0.0035241184381051838","source":"5784","target":"5785","data":{}},{"id":"edge-0.1320938602421955","source":"4817","target":"5787","data":{}},{"id":"edge-0.9030144767278039","source":"5259","target":"5788","data":{}},{"id":"edge-0.18053628950273803","source":"3920","target":"5789","data":{}},{"id":"edge-0.5239227186029654","source":"5790","target":"5791","data":{}},{"id":"edge-0.5214294406257425","source":"4669","target":"5792","data":{}},{"id":"edge-0.29529288829504985","source":"5793","target":"5794","data":{}},{"id":"edge-0.827668441936606","source":"5795","target":"5796","data":{}},{"id":"edge-0.8751772010902266","source":"5797","target":"5798","data":{}},{"id":"edge-0.3552467120332765","source":"5799","target":"5707","data":{}},{"id":"edge-0.8392444160454855","source":"5800","target":"5801","data":{}},{"id":"edge-0.3364559235205149","source":"5802","target":"5803","data":{}},{"id":"edge-0.20954903464735541","source":"5804","target":"5805","data":{}},{"id":"edge-0.19191125903638584","source":"5806","target":"5807","data":{}},{"id":"edge-0.5831647598212344","source":"5213","target":"310","data":{}},{"id":"edge-0.7137630073451624","source":"310","target":"5808","data":{}},{"id":"edge-0.2729659555814983","source":"5809","target":"5810","data":{}},{"id":"edge-0.597358276929679","source":"5790","target":"5812","data":{}},{"id":"edge-0.739303037669689","source":"5590","target":"5813","data":{}},{"id":"edge-0.2464211111581054","source":"5308","target":"5813","data":{}},{"id":"edge-0.2521444274376159","source":"5813","target":"5814","data":{}},{"id":"edge-0.08928554191272098","source":"5815","target":"5816","data":{}},{"id":"edge-0.6194663982652309","source":"5817","target":"5818","data":{}},{"id":"edge-0.40809570262810624","source":"4954","target":"5819","data":{}},{"id":"edge-0.13425574670556673","source":"5308","target":"5819","data":{}},{"id":"edge-0.9608237444750645","source":"5279","target":"5819","data":{}},{"id":"edge-0.6381019898632574","source":"4954","target":"5821","data":{}},{"id":"edge-0.3280556226844942","source":"5822","target":"5823","data":{}},{"id":"edge-0.584011840227322","source":"5824","target":"5825","data":{}},{"id":"edge-0.739597377914117","source":"1879","target":"5827","data":{}},{"id":"edge-0.6649734391470152","source":"1267","target":"5828","data":{}},{"id":"edge-0.7783454433890553","source":"5829","target":"5634","data":{}},{"id":"edge-0.32306531062619337","source":"1879","target":"5634","data":{}},{"id":"edge-0.4500667931317037","source":"5297","target":"5831","data":{}},{"id":"edge-0.10815229740584509","source":"5832","target":"5833","data":{}},{"id":"edge-0.8929881509441693","source":"5834","target":"5835","data":{}},{"id":"edge-0.4138606296760079","source":"5836","target":"5837","data":{}},{"id":"edge-0.42930601563173343","source":"5838","target":"5839","data":{}},{"id":"edge-0.39170841887829666","source":"5822","target":"5840","data":{}},{"id":"edge-0.3463203092279159","source":"5822","target":"5841","data":{}},{"id":"edge-0.8515598648532416","source":"5844","target":"5845","data":{}},{"id":"edge-0.6294107588308981","source":"5846","target":"5847","data":{}},{"id":"edge-0.10702710026975404","source":"5848","target":"5849","data":{}},{"id":"edge-0.401434881850961","source":"5316","target":"5850","data":{}},{"id":"edge-0.040001686487793675","source":"5577","target":"5851","data":{}},{"id":"edge-0.6122943089695012","source":"3479","target":"5852","data":{}},{"id":"edge-0.30534933165797784","source":"3024","target":"5854","data":{}},{"id":"edge-0.16164803316795662","source":"5855","target":"5856","data":{}},{"id":"edge-0.03712087068276437","source":"5316","target":"5857","data":{}},{"id":"edge-0.4624876186799578","source":"5858","target":"5859","data":{}},{"id":"edge-0.29779567748710156","source":"4984","target":"5861","data":{}},{"id":"edge-0.04324819952954018","source":"5862","target":"5863","data":{}},{"id":"edge-0.628879178228291","source":"5864","target":"5865","data":{}},{"id":"edge-0.5312608647737576","source":"5866","target":"5867","data":{}},{"id":"edge-0.208166970734893","source":"5868","target":"5869","data":{}},{"id":"edge-0.303772084674216","source":"5870","target":"5871","data":{}},{"id":"edge-0.0390207103684006","source":"170","target":"5066","data":{}},{"id":"edge-0.4322524268963639","source":"5872","target":"5873","data":{}},{"id":"edge-0.6574518452901728","source":"5874","target":"5875","data":{}},{"id":"edge-0.08249805307456759","source":"5876","target":"5877","data":{}},{"id":"edge-0.7947230889166297","source":"5337","target":"5398","data":{}},{"id":"edge-0.23653517797641777","source":"5880","target":"5881","data":{}},{"id":"edge-0.35781415384309057","source":"5882","target":"5883","data":{}},{"id":"edge-0.5458502679407562","source":"5535","target":"5884","data":{}},{"id":"edge-0.40318080367400344","source":"5885","target":"5886","data":{}},{"id":"edge-0.8624083028638589","source":"5887","target":"5888","data":{}},{"id":"edge-0.6187401929624219","source":"5889","target":"5890","data":{}},{"id":"edge-0.1908992198089483","source":"5891","target":"5892","data":{}},{"id":"edge-0.05748875441491008","source":"5893","target":"5894","data":{}},{"id":"edge-0.8799227323248908","source":"5895","target":"5896","data":{}},{"id":"edge-0.23724696938240153","source":"5897","target":"5898","data":{}},{"id":"edge-0.8264943428437657","source":"5899","target":"5900","data":{}},{"id":"edge-0.714747351508412","source":"5901","target":"5902","data":{}},{"id":"edge-0.15646628168646726","source":"5903","target":"5904","data":{}},{"id":"edge-0.9095650269565403","source":"5907","target":"5908","data":{}},{"id":"edge-0.7101775953074052","source":"5909","target":"5910","data":{}},{"id":"edge-0.5365143810892976","source":"5911","target":"5912","data":{}},{"id":"edge-0.23806214351231714","source":"5913","target":"5914","data":{}},{"id":"edge-0.24860400429404006","source":"3020","target":"5916","data":{}},{"id":"edge-0.9742116901048323","source":"5917","target":"5918","data":{}},{"id":"edge-0.6379304405098156","source":"5919","target":"5920","data":{}},{"id":"edge-0.5651384343041426","source":"335","target":"5921","data":{}},{"id":"edge-0.8770754129720555","source":"5922","target":"5923","data":{}},{"id":"edge-0.16402892481913978","source":"5924","target":"5925","data":{}},{"id":"edge-0.667442248975628","source":"5924","target":"5926","data":{}},{"id":"edge-0.6629774768809369","source":"5927","target":"5928","data":{}},{"id":"edge-0.9055333010412365","source":"5929","target":"5930","data":{}},{"id":"edge-0.9995123974691746","source":"5931","target":"5932","data":{}},{"id":"edge-0.8130942322749284","source":"5933","target":"5934","data":{}},{"id":"edge-0.3563082762737635","source":"5893","target":"5936","data":{}},{"id":"edge-0.1448660707178655","source":"5937","target":"5936","data":{}},{"id":"edge-0.7473215765544208","source":"4972","target":"4975","data":{}},{"id":"edge-0.22844775032404074","source":"5036","target":"5940","data":{}},{"id":"edge-0.5971930165726205","source":"5941","target":"5942","data":{}},{"id":"edge-0.5477305867869566","source":"5646","target":"5941","data":{}},{"id":"edge-0.0718003542719865","source":"5949","target":"5950","data":{}},{"id":"edge-0.24288399538723282","source":"5951","target":"5952","data":{}},{"id":"edge-0.270520736021195","source":"5951","target":"5954","data":{}},{"id":"edge-0.545677535637465","source":"5951","target":"5955","data":{}},{"id":"edge-0.685405538198258","source":"5951","target":"5956","data":{}},{"id":"edge-0.7398741960920343","source":"5951","target":"5958","data":{}},{"id":"edge-0.36269954535089455","source":"5959","target":"5960","data":{}},{"id":"edge-0.44249624803815557","source":"5961","target":"5962","data":{}},{"id":"edge-0.5057071060448108","source":"5490","target":"5963","data":{}},{"id":"edge-0.6401789578737214","source":"5490","target":"5965","data":{}},{"id":"edge-0.8227676079626851","source":"5966","target":"5490","data":{}},{"id":"edge-0.277150299256929","source":"4819","target":"5967","data":{}},{"id":"edge-0.8783572262909256","source":"4819","target":"5968","data":{}},{"id":"edge-0.45660195630051725","source":"5969","target":"5970","data":{}},{"id":"edge-0.5575691585023141","source":"5308","target":"5971","data":{}},{"id":"edge-0.24002978539997644","source":"5972","target":"5971","data":{}},{"id":"edge-0.7149270795259948","source":"3024","target":"5973","data":{}},{"id":"edge-0.24178132022420562","source":"5976","target":"5977","data":{}},{"id":"edge-0.4949283545498555","source":"5978","target":"5979","data":{}},{"id":"edge-0.29514170104942483","source":"5980","target":"5981","data":{}},{"id":"edge-0.7774624760389384","source":"4658","target":"5983","data":{}},{"id":"edge-0.9588039489422431","source":"5984","target":"5985","data":{}},{"id":"edge-0.3773820786444637","source":"5986","target":"5987","data":{}},{"id":"edge-0.6546170946613106","source":"5070","target":"5988","data":{}},{"id":"edge-0.07551095837729882","source":"5378","target":"5989","data":{}},{"id":"edge-0.5211198561157018","source":"5705","target":"5378","data":{}},{"id":"edge-0.2043838065265482","source":"5689","target":"5993","data":{}},{"id":"edge-0.3273932798368864","source":"5386","target":"5689","data":{}},{"id":"edge-0.044084838030155504","source":"5689","target":"5994","data":{}},{"id":"edge-0.0065327106078987285","source":"5995","target":"5996","data":{}},{"id":"edge-0.5984041187112028","source":"3","target":"4842","data":{}},{"id":"edge-0.10996347886247504","source":"3","target":"5999","data":{}},{"id":"edge-0.8990263208711893","source":"6000","target":"5999","data":{}},{"id":"edge-0.44156152524072834","source":"6001","target":"6002","data":{}},{"id":"edge-0.8771926721733698","source":"3","target":"6003","data":{}},{"id":"edge-0.6336562366511165","source":"3","target":"6005","data":{}},{"id":"edge-0.5197516671319615","source":"3","target":"6006","data":{}},{"id":"edge-0.6006244118246733","source":"5997","target":"6007","data":{}},{"id":"edge-0.154555348381185","source":"6008","target":"6009","data":{}},{"id":"edge-0.8445144176370354","source":"6008","target":"6010","data":{}},{"id":"edge-0.3209797952025326","source":"6011","target":"6012","data":{}},{"id":"edge-0.9908168873513032","source":"5997","target":"6013","data":{}},{"id":"edge-0.7830915935145448","source":"5997","target":"6014","data":{}},{"id":"edge-0.5612424288175613","source":"6008","target":"6015","data":{}},{"id":"edge-0.8775946681836133","source":"5711","target":"324","data":{}},{"id":"edge-0.48850763684003784","source":"5711","target":"6016","data":{}},{"id":"edge-0.6111079462953173","source":"5711","target":"6017","data":{}},{"id":"edge-0.4760450835476855","source":"6018","target":"6019","data":{}},{"id":"edge-0.0726076323655751","source":"5997","target":"6020","data":{}},{"id":"edge-0.4449751501118675","source":"4","target":"4935","data":{}},{"id":"edge-0.6292714785819553","source":"6022","target":"6023","data":{}},{"id":"edge-0.3609291969837114","source":"6024","target":"6025","data":{}},{"id":"edge-0.6863073495980854","source":"6024","target":"6026","data":{}},{"id":"edge-0.24697051054137287","source":"6024","target":"6027","data":{}},{"id":"edge-0.21603043739229277","source":"6028","target":"6029","data":{}},{"id":"edge-0.9731919697218174","source":"5487","target":"6030","data":{}},{"id":"edge-0.7263709863724108","source":"5144","target":"6032","data":{}},{"id":"edge-0.5876132057703165","source":"6024","target":"6033","data":{}},{"id":"edge-0.6558794418688458","source":"6034","target":"5575","data":{}},{"id":"edge-0.932598575579916","source":"5362","target":"6035","data":{}},{"id":"edge-0.2109561559489972","source":"6036","target":"6037","data":{}},{"id":"edge-0.09407648475273733","source":"6038","target":"6039","data":{}},{"id":"edge-0.11421015260687328","source":"6040","target":"6041","data":{}},{"id":"edge-0.41856544374352933","source":"6042","target":"6043","data":{}},{"id":"edge-0.4971922679619618","source":"6044","target":"6045","data":{}},{"id":"edge-0.6800505791164082","source":"6046","target":"6047","data":{}},{"id":"edge-0.24363373921114984","source":"6024","target":"6048","data":{}},{"id":"edge-0.2602045325721116","source":"6052","target":"6053","data":{}},{"id":"edge-0.5541037251742289","source":"5349","target":"6054","data":{}},{"id":"edge-0.34643359105898885","source":"5349","target":"6055","data":{}},{"id":"edge-0.5566622447065783","source":"6056","target":"6057","data":{}},{"id":"edge-0.6676481351098738","source":"4999","target":"6058","data":{}},{"id":"edge-0.631119671267778","source":"6059","target":"6060","data":{}},{"id":"edge-0.7020630504731646","source":"5381","target":"6062","data":{}},{"id":"edge-0.5308212739337705","source":"5381","target":"6063","data":{}},{"id":"edge-0.2143690598777419","source":"5381","target":"6064","data":{}},{"id":"edge-0.38907382758233666","source":"6065","target":"6066","data":{}},{"id":"edge-0.2276936095162927","source":"6067","target":"6068","data":{}},{"id":"edge-0.786652393963484","source":"3","target":"6069","data":{}},{"id":"edge-0.5660732256992034","source":"6070","target":"6071","data":{}},{"id":"edge-0.8600067522518915","source":"5952","target":"6072","data":{}},{"id":"edge-0.9674485602478804","source":"6073","target":"6074","data":{}},{"id":"edge-0.9989015852256966","source":"6073","target":"6075","data":{}},{"id":"edge-0.14975859889118714","source":"6073","target":"6076","data":{}},{"id":"edge-0.08366832720220829","source":"6077","target":"6078","data":{}},{"id":"edge-0.3165578107367153","source":"6080","target":"6081","data":{}},{"id":"edge-0.11249915914637953","source":"5388","target":"6082","data":{}},{"id":"edge-0.3151867526855956","source":"5388","target":"6083","data":{}},{"id":"edge-0.8323401927058538","source":"5646","target":"6084","data":{}},{"id":"edge-0.9562151960252339","source":"5646","target":"6085","data":{}},{"id":"edge-0.9256614209854106","source":"5819","target":"445","data":{}},{"id":"edge-0.4736116384377851","source":"5398","target":"6087","data":{}},{"id":"edge-0.6536401745725424","source":"6088","target":"5070","data":{}},{"id":"edge-0.20677195979263563","source":"6092","target":"6093","data":{}},{"id":"edge-0.4395031795010711","source":"6094","target":"6095","data":{}},{"id":"edge-0.9285354213063457","source":"6096","target":"6097","data":{}},{"id":"edge-0.7121366464887187","source":"6098","target":"6099","data":{}},{"id":"edge-0.4007163333874122","source":"5675","target":"6101","data":{}},{"id":"edge-0.08715674587484878","source":"6102","target":"6103","data":{}},{"id":"edge-0.24196657066063376","source":"6104","target":"6105","data":{}},{"id":"edge-0.13821912759252197","source":"6108","target":"6109","data":{}},{"id":"edge-0.7620187837173356","source":"4823","target":"1890","data":{}},{"id":"edge-0.0467899942520964","source":"6111","target":"6112","data":{}},{"id":"edge-0.6463811907753776","source":"6114","target":"320","data":{}},{"id":"edge-0.5426333120140197","source":"6115","target":"320","data":{}},{"id":"edge-0.7270764809554771","source":"5404","target":"6116","data":{}},{"id":"edge-0.4572838870139835","source":"5404","target":"6118","data":{}},{"id":"edge-0.4215795569432814","source":"6119","target":"6120","data":{}},{"id":"edge-0.7578511075092045","source":"6120","target":"6122","data":{}},{"id":"edge-0.06059916616707617","source":"6123","target":"6124","data":{}},{"id":"edge-0.9390499880029799","source":"6125","target":"6126","data":{}},{"id":"edge-0.33609863087629077","source":"5383","target":"5384","data":{}},{"id":"edge-0.8894926634866529","source":"5384","target":"6127","data":{}},{"id":"edge-0.9627248364454155","source":"6128","target":"6129","data":{}},{"id":"edge-0.9393433210064976","source":"6130","target":"6131","data":{}},{"id":"edge-0.44205063169618053","source":"5279","target":"6132","data":{}},{"id":"edge-0.13685496261014984","source":"6133","target":"6134","data":{}},{"id":"edge-0.5680086330030263","source":"5848","target":"6135","data":{}},{"id":"edge-0.27198445413059047","source":"6136","target":"6137","data":{}},{"id":"edge-0.5916898565798234","source":"4817","target":"6138","data":{}},{"id":"edge-0.4750502907058194","source":"6139","target":"6140","data":{}},{"id":"edge-0.6408686986753065","source":"6141","target":"6142","data":{}},{"id":"edge-0.08692786648240292","source":"6143","target":"6032","data":{}},{"id":"edge-0.6148500662122165","source":"6145","target":"6146","data":{}},{"id":"edge-0.40505157997364183","source":"5612","target":"6148","data":{}},{"id":"edge-0.6213127848923408","source":"6149","target":"5612","data":{}},{"id":"edge-0.4477619575915559","source":"5612","target":"6150","data":{}},{"id":"edge-0.7225099007351028","source":"5353","target":"6151","data":{}},{"id":"edge-0.5151366337840113","source":"6152","target":"6153","data":{}},{"id":"edge-0.42933086620390615","source":"6154","target":"6155","data":{}},{"id":"edge-0.18912778718643963","source":"5411","target":"5508","data":{}},{"id":"edge-0.24793903668396733","source":"6156","target":"6157","data":{}},{"id":"edge-0.653563458642876","source":"6158","target":"6157","data":{}},{"id":"edge-0.010662031618171586","source":"6159","target":"6160","data":{}},{"id":"edge-0.46139023635016385","source":"6161","target":"6162","data":{}},{"id":"edge-0.9330782417548129","source":"6163","target":"6164","data":{}},{"id":"edge-0.7835820095406547","source":"6165","target":"6166","data":{}},{"id":"edge-0.3026136659298566","source":"5907","target":"6168","data":{}},{"id":"edge-0.021641075805331145","source":"6169","target":"6170","data":{}},{"id":"edge-0.9475779209278758","source":"6163","target":"6172","data":{}},{"id":"edge-0.21506807211149415","source":"6163","target":"6173","data":{}},{"id":"edge-0.1515507564593146","source":"6174","target":"6175","data":{}},{"id":"edge-0.1721236993670403","source":"6176","target":"6177","data":{}},{"id":"edge-0.21683314320067826","source":"5353","target":"6177","data":{}},{"id":"edge-0.4701539742784675","source":"5469","target":"6178","data":{}},{"id":"edge-0.5914895351554532","source":"6179","target":"6180","data":{}},{"id":"edge-0.8145271836319004","source":"5688","target":"6182","data":{}},{"id":"edge-0.45328238042829416","source":"6183","target":"6184","data":{}},{"id":"edge-0.7077868067414981","source":"6185","target":"6186","data":{}},{"id":"edge-0.4714369445785245","source":"6187","target":"6188","data":{}},{"id":"edge-0.34881849065617576","source":"6163","target":"6189","data":{}},{"id":"edge-0.01264526078117667","source":"4667","target":"6190","data":{}},{"id":"edge-0.3009332527749995","source":"6163","target":"6191","data":{}},{"id":"edge-0.5456249441985712","source":"6192","target":"6193","data":{}},{"id":"edge-0.2503358752901892","source":"6194","target":"6195","data":{}},{"id":"edge-0.5434317889852152","source":"6090","target":"6123","data":{}},{"id":"edge-0.006986116411850096","source":"3994","target":"6197","data":{}},{"id":"edge-0.11356611166662356","source":"6198","target":"6199","data":{}},{"id":"edge-0.683850968161392","source":"5353","target":"6200","data":{}},{"id":"edge-0.6226788970630766","source":"5893","target":"6200","data":{}},{"id":"edge-0.8763193861256475","source":"6201","target":"6202","data":{}},{"id":"edge-0.7403707218932556","source":"6203","target":"6204","data":{}},{"id":"edge-0.8480034492831117","source":"167","target":"5414","data":{}},{"id":"edge-0.03292579831096254","source":"5893","target":"5414","data":{}},{"id":"edge-0.1013478538793986","source":"5893","target":"6205","data":{}},{"id":"edge-0.3260478092923593","source":"6206","target":"6207","data":{}},{"id":"edge-0.630638232439344","source":"6208","target":"6209","data":{}},{"id":"edge-0.2670969620345507","source":"6210","target":"6211","data":{}},{"id":"edge-0.24725769197860048","source":"5320","target":"6212","data":{}},{"id":"edge-0.8324093437782529","source":"4922","target":"5110","data":{}},{"id":"edge-0.36124571700643027","source":"6213","target":"6214","data":{}},{"id":"edge-0.8256231966626055","source":"6213","target":"6215","data":{}},{"id":"edge-0.7065919916019683","source":"5028","target":"6216","data":{}},{"id":"edge-0.6419005114232212","source":"6217","target":"6218","data":{}},{"id":"edge-0.8334580389440023","source":"5842","target":"6219","data":{}},{"id":"edge-0.6282540344899352","source":"6220","target":"6221","data":{}},{"id":"edge-0.010389621893623913","source":"6213","target":"6222","data":{}},{"id":"edge-0.22800095013315946","source":"6213","target":"6223","data":{}},{"id":"edge-0.4495268221408908","source":"6224","target":"6225","data":{}},{"id":"edge-0.23846321751214772","source":"6226","target":"320","data":{}},{"id":"edge-0.645449271025105","source":"5459","target":"6229","data":{}},{"id":"edge-0.6453724191536128","source":"5459","target":"6230","data":{}},{"id":"edge-0.22624912572882705","source":"5110","target":"6232","data":{}},{"id":"edge-0.7317463343781734","source":"6213","target":"6233","data":{}},{"id":"edge-0.633338228149974","source":"6213","target":"6234","data":{}},{"id":"edge-0.3077345302853174","source":"6235","target":"6236","data":{}},{"id":"edge-0.8460681682670304","source":"6237","target":"6238","data":{}},{"id":"edge-0.8895559859991464","source":"6213","target":"6239","data":{}},{"id":"edge-0.8207481993350496","source":"6051","target":"6240","data":{}},{"id":"edge-0.08309032249972548","source":"6242","target":"6243","data":{}},{"id":"edge-0.6573776523880561","source":"5459","target":"6243","data":{}},{"id":"edge-0.013153999263289862","source":"6244","target":"6243","data":{}},{"id":"edge-0.6721615824016292","source":"6245","target":"6246","data":{}},{"id":"edge-0.11111625435033257","source":"5607","target":"6247","data":{}},{"id":"edge-0.9498081520545003","source":"5620","target":"6248","data":{}},{"id":"edge-0.2176382359537694","source":"6213","target":"5114","data":{}},{"id":"edge-0.01324639095034974","source":"6250","target":"6251","data":{}},{"id":"edge-0.7126068485636332","source":"6213","target":"6252","data":{}},{"id":"edge-0.4405133453189738","source":"6253","target":"6224","data":{}},{"id":"edge-0.23917734416822745","source":"6254","target":"6255","data":{}},{"id":"edge-0.8450134497491719","source":"5503","target":"6256","data":{}},{"id":"edge-0.1198067645375549","source":"5441","target":"6258","data":{}},{"id":"edge-0.5753152769736192","source":"5441","target":"6259","data":{}},{"id":"edge-0.07926661970654947","source":"5441","target":"6261","data":{}},{"id":"edge-0.19423552914694708","source":"5441","target":"6262","data":{}},{"id":"edge-0.31572955340389974","source":"6263","target":"6264","data":{}},{"id":"edge-0.7935092050058077","source":"5","target":"6269","data":{}},{"id":"edge-0.5252862114169281","source":"5","target":"6271","data":{}},{"id":"edge-0.2664951129761728","source":"5","target":"6272","data":{}},{"id":"edge-0.9366475555733391","source":"5213","target":"6273","data":{}},{"id":"edge-0.25621568150774254","source":"6274","target":"6275","data":{}},{"id":"edge-0.8758992321777594","source":"6276","target":"6277","data":{}},{"id":"edge-0.48855171945682296","source":"6278","target":"6279","data":{}},{"id":"edge-0.15530547262642957","source":"5694","target":"6280","data":{}},{"id":"edge-0.9171254262823167","source":"6281","target":"6282","data":{}},{"id":"edge-0.3889283754870969","source":"6283","target":"6284","data":{}},{"id":"edge-0.6030382007457338","source":"6285","target":"6286","data":{}},{"id":"edge-0.37017770446973164","source":"6287","target":"6288","data":{}},{"id":"edge-0.76448643537561","source":"6291","target":"6292","data":{}},{"id":"edge-0.7689699352157324","source":"6291","target":"6293","data":{}},{"id":"edge-0.6910755296776494","source":"6291","target":"6294","data":{}},{"id":"edge-0.21896020147796547","source":"6291","target":"6296","data":{}},{"id":"edge-0.894807270709459","source":"5714","target":"6298","data":{}},{"id":"edge-0.4840488019201652","source":"6291","target":"6299","data":{}},{"id":"edge-0.9673051132586474","source":"6300","target":"6301","data":{}},{"id":"edge-0.5112565824131365","source":"6300","target":"6302","data":{}},{"id":"edge-0.04216474273480264","source":"6303","target":"6304","data":{}},{"id":"edge-0.2399909697040341","source":"5293","target":"6306","data":{}},{"id":"edge-0.9227762611602888","source":"443","target":"6308","data":{}},{"id":"edge-0.04538105187637487","source":"6309","target":"6310","data":{}},{"id":"edge-0.9195951283034194","source":"6311","target":"6312","data":{}},{"id":"edge-0.39618832133493864","source":"6313","target":"6314","data":{}},{"id":"edge-0.11972922861033308","source":"6313","target":"6315","data":{}},{"id":"edge-0.3232481670753742","source":"6316","target":"6317","data":{}},{"id":"edge-0.4183044617253777","source":"6316","target":"6319","data":{}},{"id":"edge-0.665977546792375","source":"6316","target":"6320","data":{}},{"id":"edge-0.606697362955666","source":"6321","target":"6322","data":{}},{"id":"edge-0.7533661061634458","source":"5306","target":"6323","data":{}},{"id":"edge-0.3872400786169323","source":"5822","target":"6324","data":{}},{"id":"edge-0.587995792491754","source":"6324","target":"6325","data":{}},{"id":"edge-0.15757082307069448","source":"6324","target":"6326","data":{}},{"id":"edge-0.8581727023138261","source":"6324","target":"6328","data":{}},{"id":"edge-0.9649573587242963","source":"5411","target":"6329","data":{}},{"id":"edge-0.5062737079232986","source":"4368","target":"6331","data":{}},{"id":"edge-0.022381001688109192","source":"6332","target":"6333","data":{}},{"id":"edge-0.3586664050529298","source":"6334","target":"6335","data":{}},{"id":"edge-0.6291090247217106","source":"6337","target":"6338","data":{}},{"id":"edge-0.7959680785864647","source":"4299","target":"163","data":{}},{"id":"edge-0.15008620016647223","source":"5549","target":"5285","data":{}},{"id":"edge-0.4946199148971786","source":"5092","target":"6341","data":{}},{"id":"edge-0.6693946065756238","source":"5191","target":"6342","data":{}},{"id":"edge-0.03998409211288623","source":"315","target":"4659","data":{}},{"id":"edge-0.10869011035965737","source":"4962","target":"6344","data":{}},{"id":"edge-0.7060482079703223","source":"4962","target":"6345","data":{}},{"id":"edge-0.679744244290089","source":"4962","target":"6346","data":{}},{"id":"edge-0.3220155578232682","source":"4962","target":"6347","data":{}},{"id":"edge-0.8182543726093521","source":"4962","target":"4965","data":{}},{"id":"edge-0.4120218653342862","source":"4962","target":"6348","data":{}},{"id":"edge-0.811117704794764","source":"4962","target":"6349","data":{}},{"id":"edge-0.0580085106318875","source":"4962","target":"5294","data":{}},{"id":"edge-0.40543635502035813","source":"5308","target":"6350","data":{}},{"id":"edge-0.9020056202915296","source":"5353","target":"5310","data":{}},{"id":"edge-0.20609029656304445","source":"5310","target":"6351","data":{}},{"id":"edge-0.6773986216905254","source":"6303","target":"6353","data":{}},{"id":"edge-0.749373930734003","source":"6354","target":"6355","data":{}},{"id":"edge-0.42307156275163904","source":"6356","target":"6357","data":{}},{"id":"edge-0.0541356644883908","source":"5947","target":"6358","data":{}},{"id":"edge-0.08613377418319157","source":"6359","target":"6360","data":{}},{"id":"edge-0.8897598944900642","source":"6359","target":"6361","data":{}},{"id":"edge-0.6102777020728571","source":"6359","target":"6362","data":{}},{"id":"edge-0.9915472875187701","source":"6136","target":"5832","data":{}},{"id":"edge-0.8751377472146096","source":"6363","target":"6364","data":{}},{"id":"edge-0.9668514627784432","source":"6365","target":"6366","data":{}},{"id":"edge-0.7908155759659832","source":"6367","target":"6368","data":{}},{"id":"edge-0.19136751305649624","source":"6369","target":"6370","data":{}},{"id":"edge-0.7496619547713435","source":"6371","target":"6372","data":{}},{"id":"edge-0.3497347639001773","source":"5070","target":"6373","data":{}},{"id":"edge-0.7944748611246861","source":"5451","target":"6375","data":{}},{"id":"edge-0.9954647329796871","source":"5355","target":"6376","data":{}},{"id":"edge-0.5543144607579866","source":"6377","target":"6378","data":{}},{"id":"edge-0.44340026504480123","source":"6379","target":"6380","data":{}},{"id":"edge-0.31608434606410185","source":"6206","target":"6381","data":{}},{"id":"edge-0.17644286726685632","source":"6377","target":"6382","data":{}},{"id":"edge-0.8440281924917974","source":"6385","target":"5883","data":{}},{"id":"edge-0.04139900190058654","source":"6386","target":"5883","data":{}},{"id":"edge-0.8588093562605357","source":"5883","target":"6387","data":{}},{"id":"edge-0.14835333299176456","source":"5955","target":"6389","data":{}},{"id":"edge-0.8271615718844509","source":"5438","target":"6390","data":{}},{"id":"edge-0.05839097163773066","source":"6391","target":"6392","data":{}},{"id":"edge-0.9316178799136119","source":"6393","target":"6394","data":{}},{"id":"edge-0.48210532772468784","source":"6395","target":"6396","data":{}},{"id":"edge-0.2645229095591697","source":"6397","target":"6398","data":{}},{"id":"edge-0.9753937729069266","source":"6399","target":"6400","data":{}},{"id":"edge-0.5861649718319242","source":"5066","target":"5065","data":{}},{"id":"edge-0.44544066382117076","source":"6401","target":"6402","data":{}},{"id":"edge-0.6615013244424608","source":"5066","target":"5064","data":{}},{"id":"edge-0.9345728401386231","source":"6401","target":"4659","data":{}},{"id":"edge-0.49891701044027803","source":"6404","target":"6405","data":{}},{"id":"edge-0.698260561665508","source":"6406","target":"6407","data":{}},{"id":"edge-0.9174481814947548","source":"6408","target":"6409","data":{}},{"id":"edge-0.9666051489468073","source":"6410","target":"6411","data":{}},{"id":"edge-0.6877052400449246","source":"6123","target":"6412","data":{}},{"id":"edge-0.5379000673091101","source":"6413","target":"6414","data":{}},{"id":"edge-0.08500411197822455","source":"3","target":"6415","data":{}},{"id":"edge-0.02895612786392676","source":"5213","target":"6416","data":{}},{"id":"edge-0.7474407767644022","source":"6417","target":"6418","data":{}},{"id":"edge-0.42267225124953667","source":"6419","target":"6420","data":{}},{"id":"edge-0.07149121217877652","source":"4647","target":"6422","data":{}},{"id":"edge-0.8162153579946951","source":"5431","target":"6423","data":{}},{"id":"edge-0.046215866421207785","source":"5518","target":"6424","data":{}},{"id":"edge-0.26075739874638093","source":"5651","target":"6425","data":{}},{"id":"edge-0.9617087539056488","source":"6426","target":"6427","data":{}},{"id":"edge-0.6913605947323447","source":"5213","target":"6428","data":{}},{"id":"edge-0.4287255010847162","source":"6429","target":"6430","data":{}},{"id":"edge-0.7158815164468282","source":"6431","target":"6432","data":{}},{"id":"edge-0.6139052247972314","source":"3154","target":"6308","data":{}},{"id":"edge-0.13446951285080888","source":"6434","target":"6435","data":{}},{"id":"edge-0.010367005079915836","source":"6436","target":"6437","data":{}},{"id":"edge-0.412562285241276","source":"6438","target":"6439","data":{}},{"id":"edge-0.5730453699541982","source":"6440","target":"6441","data":{}},{"id":"edge-0.2629772091690059","source":"6440","target":"6442","data":{}},{"id":"edge-0.1231121785918956","source":"5606","target":"5565","data":{}},{"id":"edge-0.31587625110720263","source":"6443","target":"6444","data":{}},{"id":"edge-0.1722045407163717","source":"6445","target":"163","data":{}},{"id":"edge-0.6492818421679019","source":"4958","target":"6448","data":{}},{"id":"edge-0.4927403871091913","source":"6449","target":"6450","data":{}},{"id":"edge-0.43740197639739","source":"6450","target":"6451","data":{}},{"id":"edge-0.013155707397432881","source":"6450","target":"6452","data":{}},{"id":"edge-0.6401343119657561","source":"6453","target":"5314","data":{}},{"id":"edge-0.13408225906207472","source":"5688","target":"6455","data":{}},{"id":"edge-0.25614270573386344","source":"5297","target":"6456","data":{}},{"id":"edge-0.9003785279321794","source":"5319","target":"6458","data":{}},{"id":"edge-0.01590843684860488","source":"5319","target":"6459","data":{}},{"id":"edge-0.2226351325285434","source":"6460","target":"6461","data":{}},{"id":"edge-0.6014184528514743","source":"6244","target":"6463","data":{}},{"id":"edge-0.33447372385185536","source":"6464","target":"6465","data":{}},{"id":"edge-0.03179654686602662","source":"6464","target":"16","data":{}},{"id":"edge-0.04797021381847344","source":"6467","target":"6468","data":{}},{"id":"edge-0.14997352752970516","source":"6469","target":"6470","data":{}},{"id":"edge-0.17164254273619384","source":"6471","target":"6472","data":{}},{"id":"edge-0.6989452538445844","source":"6473","target":"6474","data":{}},{"id":"edge-0.593130595418101","source":"6475","target":"6476","data":{}},{"id":"edge-0.06399502854142503","source":"6477","target":"6478","data":{}},{"id":"edge-0.7760184114448887","source":"5385","target":"6479","data":{}},{"id":"edge-0.6362662856316583","source":"6480","target":"1875","data":{}},{"id":"edge-0.03279524118632593","source":"6481","target":"6482","data":{}},{"id":"edge-0.6107994573432272","source":"6483","target":"6484","data":{}},{"id":"edge-0.49501072359511045","source":"6485","target":"6484","data":{}},{"id":"edge-0.34054526211155944","source":"4817","target":"5284","data":{}},{"id":"edge-0.8470350435302514","source":"5274","target":"6486","data":{}},{"id":"edge-0.8953662415957493","source":"5010","target":"6487","data":{}},{"id":"edge-0.568094810731556","source":"6488","target":"6489","data":{}},{"id":"edge-0.1352247403815252","source":"6490","target":"6491","data":{}},{"id":"edge-0.5809725705957496","source":"6492","target":"6493","data":{}},{"id":"edge-0.5110159166891017","source":"6494","target":"6495","data":{}},{"id":"edge-0.6161165631795937","source":"6496","target":"6497","data":{}},{"id":"edge-0.12074266881053752","source":"5118","target":"6498","data":{}},{"id":"edge-0.025468411776201405","source":"5118","target":"6500","data":{}},{"id":"edge-0.09240282317181636","source":"5712","target":"6504","data":{}},{"id":"edge-0.2148720203613108","source":"6505","target":"6506","data":{}},{"id":"edge-0.7276138788485811","source":"3847","target":"6507","data":{}},{"id":"edge-0.7938802570548054","source":"5493","target":"6508","data":{}},{"id":"edge-0.5457614635968664","source":"6509","target":"5741","data":{}},{"id":"edge-0.956800425651227","source":"5741","target":"6510","data":{}},{"id":"edge-0.1511859120582506","source":"5741","target":"6511","data":{}},{"id":"edge-0.7478586943889394","source":"5741","target":"6512","data":{}},{"id":"edge-0.12097722629486651","source":"5741","target":"6513","data":{}},{"id":"edge-0.9586075939822203","source":"5741","target":"6514","data":{}},{"id":"edge-0.5315145717726222","source":"5741","target":"6515","data":{}},{"id":"edge-0.024530944970237556","source":"6516","target":"6517","data":{}},{"id":"edge-0.7005951688853242","source":"6518","target":"6519","data":{}},{"id":"edge-0.6109204485411401","source":"5502","target":"6521","data":{}},{"id":"edge-0.8912871829598856","source":"6522","target":"6523","data":{}},{"id":"edge-0.6652610087778219","source":"6524","target":"6525","data":{}},{"id":"edge-0.08816949695676324","source":"6526","target":"6527","data":{}},{"id":"edge-0.35191069859549406","source":"6531","target":"6532","data":{}},{"id":"edge-0.26871753125690545","source":"6533","target":"6534","data":{}},{"id":"edge-0.04458714542558462","source":"5242","target":"6535","data":{}},{"id":"edge-0.3046700965465441","source":"6538","target":"6539","data":{}},{"id":"edge-0.33156658078476164","source":"6540","target":"6541","data":{}},{"id":"edge-0.5070175644154598","source":"6542","target":"6543","data":{}},{"id":"edge-0.11216053814232074","source":"5430","target":"6544","data":{}},{"id":"edge-0.9377673181818462","source":"6545","target":"6546","data":{}},{"id":"edge-0.5006930141427544","source":"6545","target":"6547","data":{}},{"id":"edge-0.9121437788682487","source":"6548","target":"6545","data":{}},{"id":"edge-0.4427311536743104","source":"6545","target":"6550","data":{}},{"id":"edge-0.9187623802006013","source":"4826","target":"6551","data":{}},{"id":"edge-0.7426755598233368","source":"4826","target":"6552","data":{}},{"id":"edge-0.1982661969564592","source":"6553","target":"6554","data":{}},{"id":"edge-0.8937036283749236","source":"6550","target":"6555","data":{}},{"id":"edge-0.28082890153083895","source":"6556","target":"6557","data":{}},{"id":"edge-0.43443796602269846","source":"6558","target":"6559","data":{}},{"id":"edge-0.7085878391319791","source":"6560","target":"6561","data":{}},{"id":"edge-0.9010820672782376","source":"6562","target":"6563","data":{}},{"id":"edge-0.8646732040511118","source":"6564","target":"6565","data":{}},{"id":"edge-0.7754607188742519","source":"4817","target":"5406","data":{}},{"id":"edge-0.6520785974302914","source":"6566","target":"6567","data":{}},{"id":"edge-0.832360471365376","source":"6244","target":"6568","data":{}},{"id":"edge-0.4829887190682298","source":"6569","target":"6570","data":{}},{"id":"edge-0.3345137811599257","source":"6571","target":"4653","data":{}},{"id":"edge-0.30651728829327984","source":"4653","target":"6574","data":{}},{"id":"edge-0.8258114795848381","source":"4653","target":"6575","data":{}},{"id":"edge-0.5712841819630223","source":"6576","target":"6577","data":{}},{"id":"edge-0.4921535536016781","source":"6578","target":"6579","data":{}},{"id":"edge-0.18201085988104704","source":"6580","target":"6581","data":{}},{"id":"edge-0.6620904179788858","source":"6580","target":"6582","data":{}},{"id":"edge-0.4311640157939285","source":"6580","target":"6583","data":{}},{"id":"edge-0.7057339491813885","source":"5377","target":"3638","data":{}},{"id":"edge-0.32075959855701375","source":"3897","target":"4199","data":{}},{"id":"edge-0.26423652706357315","source":"4922","target":"6584","data":{}},{"id":"edge-0.9122637473962625","source":"4922","target":"3641","data":{}},{"id":"edge-0.016936502642656004","source":"4922","target":"6586","data":{}},{"id":"edge-0.3986333067647174","source":"4922","target":"6587","data":{}},{"id":"edge-0.5319274563616052","source":"6588","target":"6589","data":{}},{"id":"edge-0.5654302234194051","source":"6590","target":"6591","data":{}},{"id":"edge-0.61314791632164","source":"5329","target":"6593","data":{}},{"id":"edge-0.29058805402876864","source":"6594","target":"6595","data":{}},{"id":"edge-0.02664659185141338","source":"6596","target":"6597","data":{}},{"id":"edge-0.733054037717001","source":"6598","target":"6599","data":{}},{"id":"edge-0.1562199075212254","source":"6443","target":"6600","data":{}},{"id":"edge-0.8648240755653342","source":"5743","target":"6601","data":{}},{"id":"edge-0.7540823498582971","source":"4993","target":"6602","data":{}},{"id":"edge-0.48810331551577857","source":"5070","target":"6605","data":{}},{"id":"edge-0.410583476020278","source":"5452","target":"6606","data":{}},{"id":"edge-0.059510124301011214","source":"6179","target":"6607","data":{}},{"id":"edge-0.42418194314986546","source":"6608","target":"3479","data":{}},{"id":"edge-0.8033645963337412","source":"6609","target":"6610","data":{}},{"id":"edge-0.19107896919854817","source":"6611","target":"5529","data":{}},{"id":"edge-0.2078357676346574","source":"5087","target":"5529","data":{}},{"id":"edge-0.32998768316637195","source":"6614","target":"6615","data":{}},{"id":"edge-0.4272362049992011","source":"6609","target":"6616","data":{}},{"id":"edge-0.4020246713448794","source":"6617","target":"6618","data":{}},{"id":"edge-0.8598204663312059","source":"6619","target":"6620","data":{}},{"id":"edge-0.20225817393164847","source":"6621","target":"6622","data":{}},{"id":"edge-0.05156646804427534","source":"6623","target":"6624","data":{}},{"id":"edge-0.5163244879105153","source":"5629","target":"6625","data":{}},{"id":"edge-0.07520802056787912","source":"5337","target":"6626","data":{}},{"id":"edge-0.6642885493994977","source":"6627","target":"6628","data":{}},{"id":"edge-0.45319900535560254","source":"6629","target":"3486","data":{}},{"id":"edge-0.8745552310296956","source":"6630","target":"6631","data":{}},{"id":"edge-0.7757057461184367","source":"6139","target":"6632","data":{}},{"id":"edge-0.0873792242055933","source":"5297","target":"6633","data":{}},{"id":"edge-0.6609101863502524","source":"5297","target":"6634","data":{}},{"id":"edge-0.5488956216343515","source":"5297","target":"6635","data":{}},{"id":"edge-0.7675360300493967","source":"5297","target":"6636","data":{}},{"id":"edge-0.002016339679027146","source":"5297","target":"6637","data":{}},{"id":"edge-0.559597885106468","source":"5297","target":"6638","data":{}},{"id":"edge-0.20532235285950184","source":"5297","target":"6639","data":{}},{"id":"edge-0.6722113004790924","source":"5297","target":"6640","data":{}},{"id":"edge-0.810531537966608","source":"5297","target":"6641","data":{}},{"id":"edge-0.15912214472518516","source":"5297","target":"6642","data":{}},{"id":"edge-0.7731858651044772","source":"5297","target":"5210","data":{}},{"id":"edge-0.5108284277783395","source":"5297","target":"6644","data":{}},{"id":"edge-0.8931983278646556","source":"5297","target":"6645","data":{}},{"id":"edge-0.9548193896229953","source":"5297","target":"5276","data":{}},{"id":"edge-0.9079829420483618","source":"5297","target":"6646","data":{}},{"id":"edge-0.2941257168227358","source":"5297","target":"6647","data":{}},{"id":"edge-0.1383274199097273","source":"5297","target":"6648","data":{}},{"id":"edge-0.3692771450923391","source":"5297","target":"6649","data":{}},{"id":"edge-0.7942559377806537","source":"5297","target":"6650","data":{}},{"id":"edge-0.7526605527141288","source":"5297","target":"6651","data":{}},{"id":"edge-0.34496394717561896","source":"5297","target":"6652","data":{}},{"id":"edge-0.7526935750231079","source":"5335","target":"6653","data":{}},{"id":"edge-0.9225706406047229","source":"5335","target":"6057","data":{}},{"id":"edge-0.9402688574781704","source":"6654","target":"6655","data":{}},{"id":"edge-0.4395396020796054","source":"5809","target":"6656","data":{}},{"id":"edge-0.1621517733189548","source":"5428","target":"5042","data":{}},{"id":"edge-0.10067406332114714","source":"4824","target":"6659","data":{}},{"id":"edge-0.6031839447920975","source":"6660","target":"6661","data":{}},{"id":"edge-0.6267104315918202","source":"4823","target":"5827","data":{}},{"id":"edge-0.11867608338758706","source":"4823","target":"6663","data":{}},{"id":"edge-0.8223751096937082","source":"4823","target":"6664","data":{}},{"id":"edge-0.47994955919283","source":"4823","target":"6665","data":{}},{"id":"edge-0.10133405852598454","source":"4823","target":"6666","data":{}},{"id":"edge-0.5705826213770455","source":"4823","target":"6667","data":{}},{"id":"edge-0.9114404184308111","source":"4823","target":"6668","data":{}},{"id":"edge-0.6739221623930622","source":"4823","target":"6669","data":{}},{"id":"edge-0.31564487009786646","source":"4823","target":"6670","data":{}},{"id":"edge-0.4687894006689868","source":"4823","target":"6671","data":{}},{"id":"edge-0.08887472657969742","source":"4823","target":"5692","data":{}},{"id":"edge-0.2754618117004828","source":"4823","target":"4847","data":{}},{"id":"edge-0.6278494526600438","source":"4823","target":"6675","data":{}},{"id":"edge-0.4128974152513478","source":"4823","target":"6676","data":{}},{"id":"edge-0.2778137198475199","source":"4823","target":"6677","data":{}},{"id":"edge-0.943177318316023","source":"6678","target":"6677","data":{}},{"id":"edge-0.7080928102060706","source":"4823","target":"6679","data":{}},{"id":"edge-0.5624987836022954","source":"6680","target":"5956","data":{}},{"id":"edge-0.14336754290315534","source":"6682","target":"6683","data":{}},{"id":"edge-0.5354789655414454","source":"6244","target":"6684","data":{}},{"id":"edge-0.9568514047768575","source":"6684","target":"6685","data":{}},{"id":"edge-0.25482132884433106","source":"5800","target":"6686","data":{}},{"id":"edge-0.5082707665016835","source":"5800","target":"6687","data":{}},{"id":"edge-0.07940981883736264","source":"5800","target":"6689","data":{}},{"id":"edge-0.8650579802888418","source":"5800","target":"6690","data":{}},{"id":"edge-0.79407000653745","source":"6693","target":"6694","data":{}},{"id":"edge-0.21062793016587","source":"6695","target":"6696","data":{}},{"id":"edge-0.8541563917135258","source":"6697","target":"6698","data":{}},{"id":"edge-0.5664117924214009","source":"6700","target":"6699","data":{}},{"id":"edge-0.7410339071027654","source":"6700","target":"4166","data":{}},{"id":"edge-0.618919098177372","source":"6701","target":"6702","data":{}},{"id":"edge-0.9478992006853197","source":"6703","target":"6704","data":{}},{"id":"edge-0.9749605158864065","source":"6705","target":"6706","data":{}},{"id":"edge-0.15924312359615134","source":"5757","target":"6707","data":{}},{"id":"edge-0.01901755740452682","source":"7012","target":"6709","data":{}},{"id":"edge-0.12019946559859918","source":"6253","target":"6710","data":{}},{"id":"edge-0.3720393502858619","source":"6711","target":"6712","data":{}},{"id":"edge-0.6366354092064466","source":"6713","target":"6714","data":{}},{"id":"edge-0.5405167898138743","source":"8","target":"6715","data":{}},{"id":"edge-0.08865502387887947","source":"6716","target":"6717","data":{}},{"id":"edge-0.2905107544282919","source":"6718","target":"6719","data":{}},{"id":"edge-0.6210721442808604","source":"5347","target":"6720","data":{}},{"id":"edge-0.761724959885203","source":"6721","target":"6722","data":{}},{"id":"edge-0.8311454696724954","source":"5279","target":"6723","data":{}},{"id":"edge-0.0389067075163525","source":"6724","target":"5347","data":{}},{"id":"edge-0.48766668229642773","source":"6725","target":"6726","data":{}},{"id":"edge-0.24460164259016448","source":"6727","target":"6728","data":{}},{"id":"edge-0.3926280917565399","source":"5382","target":"6729","data":{}},{"id":"edge-0.6186037977487064","source":"5382","target":"6730","data":{}},{"id":"edge-0.44390816031248614","source":"6731","target":"6732","data":{}},{"id":"edge-0.46910293023472827","source":"5587","target":"6736","data":{}},{"id":"edge-0.16244341439089793","source":"6727","target":"6737","data":{}},{"id":"edge-0.12628930147652717","source":"6738","target":"6739","data":{}},{"id":"edge-0.35099641238679813","source":"6740","target":"6741","data":{}},{"id":"edge-0.8559793991441027","source":"6742","target":"6743","data":{}},{"id":"edge-0.9641227071032166","source":"5308","target":"6744","data":{}},{"id":"edge-0.7109136097418538","source":"6536","target":"6745","data":{}},{"id":"edge-0.7808224581186451","source":"6746","target":"6747","data":{}},{"id":"edge-0.05267578334591838","source":"6748","target":"6749","data":{}},{"id":"edge-0.16763804874407717","source":"3897","target":"6750","data":{}},{"id":"edge-0.8169249252961568","source":"6740","target":"6751","data":{}},{"id":"edge-0.4193784671800873","source":"6752","target":"6753","data":{}},{"id":"edge-0.5835123281518952","source":"6755","target":"6756","data":{}},{"id":"edge-0.9572198443080446","source":"6757","target":"6758","data":{}},{"id":"edge-0.025099086578112884","source":"6759","target":"6760","data":{}},{"id":"edge-0.09243487044488052","source":"5001","target":"6761","data":{}},{"id":"edge-0.34244087638051757","source":"6008","target":"1894","data":{}},{"id":"edge-0.4339456777466568","source":"5001","target":"6104","data":{}},{"id":"edge-0.7027189188381406","source":"5723","target":"6764","data":{}},{"id":"edge-0.5383094946095901","source":"5001","target":"6765","data":{}},{"id":"edge-0.39413921479278846","source":"6475","target":"6766","data":{}},{"id":"edge-0.8506868132062873","source":"6767","target":"6768","data":{}},{"id":"edge-0.4309248716774321","source":"6475","target":"6770","data":{}},{"id":"edge-0.7259967393715385","source":"4817","target":"6770","data":{}},{"id":"edge-0.9296759639195082","source":"6366","target":"6771","data":{}},{"id":"edge-0.7458742758397361","source":"6772","target":"6773","data":{}},{"id":"edge-0.3952284111350819","source":"5383","target":"6775","data":{}},{"id":"edge-0.8211551950871179","source":"6776","target":"6777","data":{}},{"id":"edge-0.270857593279789","source":"6778","target":"6779","data":{}},{"id":"edge-0.12460007434938514","source":"3303","target":"6780","data":{}},{"id":"edge-0.7580195184538809","source":"6781","target":"6782","data":{}},{"id":"edge-0.8217928481921155","source":"6783","target":"6784","data":{}},{"id":"edge-0.7443178514495261","source":"6785","target":"6786","data":{}},{"id":"edge-0.8279902632885152","source":"6787","target":"6788","data":{}},{"id":"edge-0.6742446133426594","source":"6660","target":"6789","data":{}},{"id":"edge-0.8080349796059494","source":"5829","target":"6790","data":{}},{"id":"edge-0.47718418781123084","source":"6197","target":"6791","data":{}},{"id":"edge-0.700577024214917","source":"5154","target":"6792","data":{}},{"id":"edge-0.8428526067672135","source":"3910","target":"6794","data":{}},{"id":"edge-0.674806449729856","source":"6795","target":"6796","data":{}},{"id":"edge-0.5423378878398912","source":"6797","target":"6798","data":{}},{"id":"edge-0.7100262138172757","source":"1953","target":"313","data":{}},{"id":"edge-0.19394624918011139","source":"6799","target":"313","data":{}},{"id":"edge-0.08593530283116113","source":"6438","target":"6800","data":{}},{"id":"edge-0.30941205258591076","source":"6801","target":"6802","data":{}},{"id":"edge-0.5167764269301871","source":"6803","target":"6804","data":{}},{"id":"edge-0.1559390931309903","source":"6038","target":"6805","data":{}},{"id":"edge-0.2199618350420034","source":"177","target":"6806","data":{}},{"id":"edge-0.7093261080783462","source":"6123","target":"6807","data":{}},{"id":"edge-0.6899282025522868","source":"6808","target":"6809","data":{}},{"id":"edge-0.44945078623721746","source":"6810","target":"6490","data":{}},{"id":"edge-0.7272354931272793","source":"6811","target":"6812","data":{}},{"id":"edge-0.31549818529896045","source":"6172","target":"6813","data":{}},{"id":"edge-0.4102582353784614","source":"6814","target":"6815","data":{}},{"id":"edge-0.3241750501327665","source":"6560","target":"6816","data":{}},{"id":"edge-0.8096415944150679","source":"6560","target":"6818","data":{}},{"id":"edge-0.16081150834218305","source":"6560","target":"6819","data":{}},{"id":"edge-0.23021064535939217","source":"5590","target":"6820","data":{}},{"id":"edge-0.02246154380173282","source":"5590","target":"6821","data":{}},{"id":"edge-0.4105011626263224","source":"5590","target":"6822","data":{}},{"id":"edge-0.2991669328195221","source":"6823","target":"6824","data":{}},{"id":"edge-0.5012052831266476","source":"6825","target":"6310","data":{}},{"id":"edge-0.6954337949270959","source":"6826","target":"6827","data":{}},{"id":"edge-0.8786141661217719","source":"5391","target":"6828","data":{}},{"id":"edge-0.1058510886251618","source":"6829","target":"6830","data":{}},{"id":"edge-0.9327044585662696","source":"6829","target":"6831","data":{}},{"id":"edge-0.9688147370924471","source":"5584","target":"6833","data":{}},{"id":"edge-0.9126236435845283","source":"6834","target":"6835","data":{}},{"id":"edge-0.3781774572375547","source":"5308","target":"6836","data":{}},{"id":"edge-0.7228224503254512","source":"6837","target":"6838","data":{}},{"id":"edge-0.525389596654996","source":"5308","target":"6839","data":{}},{"id":"edge-0.44828490061600124","source":"5308","target":"6840","data":{}},{"id":"edge-0.351121625568817","source":"5308","target":"6841","data":{}},{"id":"edge-0.14778006773332453","source":"5308","target":"6843","data":{}},{"id":"edge-0.4865939620188109","source":"5308","target":"6844","data":{}},{"id":"edge-0.3913138198705528","source":"5308","target":"6845","data":{}},{"id":"edge-0.0641671460198705","source":"5308","target":"6846","data":{}},{"id":"edge-0.8808240393372229","source":"6810","target":"6848","data":{}},{"id":"edge-0.10859631507698242","source":"6810","target":"6849","data":{}},{"id":"edge-0.995216490918492","source":"6850","target":"5613","data":{}},{"id":"edge-0.4427725767373849","source":"6852","target":"6853","data":{}},{"id":"edge-0.7535348308609173","source":"5822","target":"6854","data":{}},{"id":"edge-0.68627084701627","source":"5733","target":"6855","data":{}},{"id":"edge-0.9683098311866878","source":"6856","target":"6857","data":{}},{"id":"edge-0.791223236712328","source":"3303","target":"6858","data":{}},{"id":"edge-0.9570291980953627","source":"5995","target":"6859","data":{}},{"id":"edge-0.9404384860295789","source":"6860","target":"5906","data":{}},{"id":"edge-0.030321123071958","source":"6861","target":"6862","data":{}},{"id":"edge-0.6639183009779446","source":"6778","target":"6864","data":{}},{"id":"edge-0.7041301850478854","source":"6865","target":"154","data":{}},{"id":"edge-0.35100737420177763","source":"6867","target":"154","data":{}},{"id":"edge-0.47786362087809153","source":"154","target":"6869","data":{}},{"id":"edge-0.023627382295937194","source":"6871","target":"6872","data":{}},{"id":"edge-0.3900771157418106","source":"5126","target":"5127","data":{}},{"id":"edge-0.8564961844004857","source":"4166","target":"6874","data":{}},{"id":"edge-0.6200835882388935","source":"5877","target":"6875","data":{}},{"id":"edge-0.9847094686325633","source":"4842","target":"5877","data":{}},{"id":"edge-0.5265991559265728","source":"6876","target":"5877","data":{}},{"id":"edge-0.7716529068164741","source":"6877","target":"6878","data":{}},{"id":"edge-0.29986155756275834","source":"6879","target":"6880","data":{}},{"id":"edge-0.7759396209931941","source":"6879","target":"5046","data":{}},{"id":"edge-0.9563936585149369","source":"6882","target":"6072","data":{}},{"id":"edge-0.3483690523342182","source":"6072","target":"6883","data":{}},{"id":"edge-0.9717617431846748","source":"6072","target":"6884","data":{}},{"id":"edge-0.9807063764384623","source":"6438","target":"6886","data":{}},{"id":"edge-0.49612158387595584","source":"6742","target":"6887","data":{}},{"id":"edge-0.5528883978333443","source":"6742","target":"6888","data":{}},{"id":"edge-0.5470491044704562","source":"6889","target":"6890","data":{}},{"id":"edge-0.6473826934737819","source":"5414","target":"6892","data":{}},{"id":"edge-0.9848307174042852","source":"5129","target":"6893","data":{}},{"id":"edge-0.6488881109883802","source":"6894","target":"6895","data":{}},{"id":"edge-0.6513109191950583","source":"6731","target":"6896","data":{}},{"id":"edge-0.5713700740098442","source":"5131","target":"6897","data":{}},{"id":"edge-0.9938648690385254","source":"6898","target":"5131","data":{}},{"id":"edge-0.7319030572933456","source":"6899","target":"6900","data":{}},{"id":"edge-0.2928381039660093","source":"6899","target":"6901","data":{}},{"id":"edge-0.3004445718890454","source":"6899","target":"6903","data":{}},{"id":"edge-0.6787895764495826","source":"6526","target":"6905","data":{}},{"id":"edge-0.30723353453939084","source":"6526","target":"6907","data":{}},{"id":"edge-0.6662505017246276","source":"6526","target":"6908","data":{}},{"id":"edge-0.4935316566586234","source":"6909","target":"6910","data":{}},{"id":"edge-0.834584952070641","source":"5866","target":"6911","data":{}},{"id":"edge-0.010815937646467377","source":"14","target":"6914","data":{}},{"id":"edge-0.9684609326339784","source":"14","target":"6916","data":{}},{"id":"edge-0.011944408600188527","source":"6917","target":"6918","data":{}},{"id":"edge-0.46350234853829053","source":"5535","target":"6919","data":{}},{"id":"edge-0.5691860784150571","source":"4817","target":"6920","data":{}},{"id":"edge-0.9253076370782725","source":"6921","target":"6922","data":{}},{"id":"edge-0.02437776113853629","source":"5539","target":"6924","data":{}},{"id":"edge-0.3877149269034461","source":"6925","target":"6926","data":{}},{"id":"edge-0.6809952013015192","source":"5322","target":"6654","data":{}},{"id":"edge-0.32812697863253293","source":"6927","target":"6928","data":{}},{"id":"edge-0.7067894109746433","source":"5058","target":"6930","data":{}},{"id":"edge-0.18985328842664972","source":"6931","target":"6932","data":{}},{"id":"edge-0.6287820509705944","source":"6933","target":"6934","data":{}},{"id":"edge-0.7671034727487249","source":"6934","target":"6936","data":{}},{"id":"edge-0.11348682344113858","source":"6937","target":"6938","data":{}},{"id":"edge-0.9158419608601103","source":"6939","target":"6940","data":{}},{"id":"edge-0.5003256161813565","source":"6941","target":"6942","data":{}},{"id":"edge-0.44548917953654876","source":"5541","target":"6946","data":{}},{"id":"edge-0.7776808985666124","source":"5644","target":"6949","data":{}},{"id":"edge-0.9830154547147492","source":"5644","target":"6951","data":{}},{"id":"edge-0.8043982914494694","source":"5644","target":"6952","data":{}},{"id":"edge-0.06473674199037394","source":"5308","target":"6953","data":{}},{"id":"edge-0.010085090956839737","source":"6953","target":"6955","data":{}},{"id":"edge-0.9133023003966869","source":"6953","target":"6956","data":{}},{"id":"edge-0.8788683468723362","source":"6957","target":"6953","data":{}},{"id":"edge-0.6605779678358061","source":"6958","target":"6959","data":{}},{"id":"edge-0.5831132962501484","source":"6960","target":"6961","data":{}},{"id":"edge-0.5967226795028588","source":"6274","target":"6963","data":{}},{"id":"edge-0.37288753080372805","source":"6274","target":"6964","data":{}},{"id":"edge-0.6697721987749004","source":"6274","target":"6965","data":{}},{"id":"edge-0.11610292351394591","source":"6274","target":"6966","data":{}},{"id":"edge-0.8565543207981015","source":"6274","target":"6967","data":{}},{"id":"edge-0.11451457239945695","source":"6274","target":"6968","data":{}},{"id":"edge-0.4551895496276259","source":"6274","target":"6970","data":{}},{"id":"edge-0.305815307514383","source":"6274","target":"6971","data":{}},{"id":"edge-0.7886194318316313","source":"6972","target":"6476","data":{}},{"id":"edge-0.06213385251496817","source":"432","target":"6973","data":{}},{"id":"edge-0.5218669490778189","source":"6972","target":"6974","data":{}},{"id":"edge-0.65507199511122","source":"5735","target":"6981","data":{}},{"id":"edge-0.4006072602460151","source":"6982","target":"6983","data":{}},{"id":"edge-0.7233988605661681","source":"3506","target":"4923","data":{}},{"id":"edge-0.36887413347811937","source":"6985","target":"6986","data":{}},{"id":"edge-0.14449843933750928","source":"6985","target":"6987","data":{}},{"id":"edge-0.18303016772641034","source":"5136","target":"5171","data":{}},{"id":"edge-0.6702246226870687","source":"5144","target":"5544","data":{}},{"id":"edge-0.8907585596903518","source":"5144","target":"6988","data":{}},{"id":"edge-0.7451960972359442","source":"6806","target":"6989","data":{}},{"id":"edge-0.8965058025435231","source":"5327","target":"6990","data":{}},{"id":"edge-0.006827754425271504","source":"6991","target":"6992","data":{}},{"id":"edge-0.6949586075910295","source":"5438","target":"5440","data":{}},{"id":"edge-0.041550008094229485","source":"6993","target":"6994","data":{}},{"id":"edge-0.9911098810607011","source":"6995","target":"6996","data":{}},{"id":"edge-0.35602875624076846","source":"6531","target":"6553","data":{}},{"id":"edge-0.5800847048484379","source":"408","target":"6999","data":{}},{"id":"edge-0.8392452120251404","source":"7000","target":"7001","data":{}},{"id":"edge-0.40986730657022785","source":"7002","target":"7003","data":{}},{"id":"edge-0.08054109414637045","source":"7004","target":"5088","data":{}},{"id":"edge-0.5926206017729989","source":"6556","target":"7005","data":{}},{"id":"edge-0.5764275867171524","source":"7006","target":"6195","data":{}},{"id":"edge-0.165721795655412","source":"7007","target":"7008","data":{}},{"id":"edge-0.44761273796506695","source":"7009","target":"7010","data":{}},{"id":"edge-0.2932325694335385","source":"6032","target":"7012","data":{}},{"id":"edge-0.3918018777818151","source":"7013","target":"7014","data":{}},{"id":"edge-0.9658354335051669","source":"7015","target":"7016","data":{}},{"id":"edge-0.6521519673969667","source":"6556","target":"7017","data":{}},{"id":"edge-0.4625190681910949","source":"7018","target":"7019","data":{}},{"id":"edge-0.13086985846905153","source":"7020","target":"7021","data":{}},{"id":"edge-0.21102051524635046","source":"7022","target":"7023","data":{}},{"id":"edge-0.24231888798619194","source":"5659","target":"7024","data":{}},{"id":"edge-0.6287808013042862","source":"5308","target":"7025","data":{}},{"id":"edge-0.8146800168065822","source":"3045","target":"6693","data":{}},{"id":"edge-0.30868425941446076","source":"6483","target":"7027","data":{}},{"id":"edge-0.8426519968551647","source":"6485","target":"7027","data":{}},{"id":"edge-0.7827216763359539","source":"6780","target":"7028","data":{}},{"id":"edge-0.9917667965566619","source":"6780","target":"7029","data":{}},{"id":"edge-0.20839583914024895","source":"7030","target":"7031","data":{}},{"id":"edge-0.9925707833107962","source":"6740","target":"7032","data":{}},{"id":"edge-0.5422072715847253","source":"6740","target":"7033","data":{}},{"id":"edge-0.023367100010306174","source":"6740","target":"7034","data":{}},{"id":"edge-0.572070850652393","source":"7035","target":"7036","data":{}},{"id":"edge-0.011118123920298206","source":"5157","target":"5475","data":{}},{"id":"edge-0.28028331297436826","source":"5316","target":"7038","data":{}},{"id":"edge-0.3639060371512397","source":"5316","target":"7039","data":{}},{"id":"edge-0.6100787551954876","source":"5334","target":"7040","data":{}},{"id":"edge-0.14782308266369393","source":"5151","target":"7041","data":{}},{"id":"edge-0.9745664896996167","source":"5875","target":"7043","data":{}},{"id":"edge-0.27312023623710546","source":"5875","target":"2020","data":{}},{"id":"edge-0.43805501456157314","source":"7045","target":"7046","data":{}},{"id":"edge-0.8691251183364237","source":"13","target":"7048","data":{}},{"id":"edge-0.8700479794670577","source":"7049","target":"7050","data":{}},{"id":"edge-0.746955245729567","source":"7051","target":"7052","data":{}},{"id":"edge-0.34045579594964503","source":"7053","target":"7054","data":{}},{"id":"edge-0.7688185184985579","source":"7055","target":"7056","data":{}},{"id":"edge-0.7610502621049544","source":"7057","target":"7058","data":{}},{"id":"edge-0.8281892323890105","source":"5832","target":"7059","data":{}},{"id":"edge-0.5686185989779013","source":"5829","target":"321","data":{}},{"id":"edge-0.7246072277979587","source":"6467","target":"7060","data":{}},{"id":"edge-0.3997173675976611","source":"7061","target":"7062","data":{}},{"id":"edge-0.10473384670260533","source":"7063","target":"7064","data":{}},{"id":"edge-0.48037825093975206","source":"5357","target":"7066","data":{}},{"id":"edge-0.14689532187021448","source":"6467","target":"7068","data":{}},{"id":"edge-0.7276502722663261","source":"6008","target":"7069","data":{}},{"id":"edge-0.47651492344636837","source":"6008","target":"7070","data":{}},{"id":"edge-0.5126984422022165","source":"7071","target":"7072","data":{}},{"id":"edge-0.7878316878704816","source":"7073","target":"7074","data":{}},{"id":"edge-0.21183436961565394","source":"7076","target":"7077","data":{}},{"id":"edge-0.6469020070775422","source":"6381","target":"7078","data":{}},{"id":"edge-0.4935974990907426","source":"5165","target":"7079","data":{}},{"id":"edge-0.3336712786334568","source":"7080","target":"7081","data":{}},{"id":"edge-0.7571591040507755","source":"7082","target":"5251","data":{}},{"id":"edge-0.4352586249934185","source":"7084","target":"7085","data":{}},{"id":"edge-0.956248802345455","source":"5070","target":"7086","data":{}},{"id":"edge-0.8369529609979209","source":"5146","target":"5371","data":{}},{"id":"edge-0.009233013179689165","source":"5842","target":"7088","data":{}},{"id":"edge-0.059337121986184904","source":"7089","target":"7090","data":{}},{"id":"edge-0.7064568669155888","source":"439","target":"7091","data":{}},{"id":"edge-0.5037044561913107","source":"5324","target":"7092","data":{}},{"id":"edge-0.26049559867409644","source":"5562","target":"7094","data":{}},{"id":"edge-0.5003474067411071","source":"7095","target":"7096","data":{}},{"id":"edge-0.8519102449931291","source":"4817","target":"6154","data":{}},{"id":"edge-0.31968439176663965","source":"5111","target":"7099","data":{}},{"id":"edge-0.0578991794357282","source":"7082","target":"1871","data":{}},{"id":"edge-0.5318640280397573","source":"7100","target":"7101","data":{}},{"id":"edge-0.22767838682037578","source":"7102","target":"7103","data":{}},{"id":"edge-0.6586113101721327","source":"5191","target":"4831","data":{}},{"id":"edge-0.8328563309728061","source":"7106","target":"7107","data":{}},{"id":"edge-0.9648632456913566","source":"7106","target":"7108","data":{}},{"id":"edge-0.45758549453437114","source":"7109","target":"7110","data":{}},{"id":"edge-0.8048524019242944","source":"321","target":"7112","data":{}},{"id":"edge-0.8418036013293977","source":"7113","target":"7114","data":{}},{"id":"edge-0.7817876123181766","source":"6244","target":"7115","data":{}},{"id":"edge-0.9425886789944773","source":"7116","target":"7117","data":{}},{"id":"edge-0.04363968329132151","source":"5722","target":"7119","data":{}},{"id":"edge-0.8083266264448445","source":"5705","target":"7120","data":{}},{"id":"edge-0.9338298043196327","source":"7121","target":"7122","data":{}},{"id":"edge-0.072618389251208","source":"7123","target":"7124","data":{}},{"id":"edge-0.06347381214397618","source":"5913","target":"7125","data":{}},{"id":"edge-0.03232276948711621","source":"5171","target":"7126","data":{}},{"id":"edge-0.8910322172509668","source":"7127","target":"7128","data":{}},{"id":"edge-0.8611335978782193","source":"5668","target":"7129","data":{}},{"id":"edge-0.33217757073070153","source":"7130","target":"7131","data":{}},{"id":"edge-0.8233541677432514","source":"5353","target":"7132","data":{}},{"id":"edge-0.03461307989144746","source":"5177","target":"7134","data":{}},{"id":"edge-0.13567125453850304","source":"5177","target":"7135","data":{}},{"id":"edge-0.18541455504691728","source":"7136","target":"5180","data":{}},{"id":"edge-0.3353823833596552","source":"7137","target":"7138","data":{}},{"id":"edge-0.4414415413896784","source":"7139","target":"7140","data":{}},{"id":"edge-0.5691691289772345","source":"7141","target":"7142","data":{}},{"id":"edge-0.06514703487170603","source":"7143","target":"7144","data":{}},{"id":"edge-0.9202958841354616","source":"7145","target":"7146","data":{}},{"id":"edge-0.14140807046867931","source":"7147","target":"6744","data":{}},{"id":"edge-0.5412568175897421","source":"6721","target":"7149","data":{}},{"id":"edge-0.9738663844537347","source":"7150","target":"7151","data":{}},{"id":"edge-0.490475780475065","source":"6165","target":"7152","data":{}},{"id":"edge-0.8035809143760015","source":"6465","target":"7153","data":{}},{"id":"edge-0.7263827369548088","source":"170","target":"5357","data":{}},{"id":"edge-0.07374482165966079","source":"5256","target":"5114","data":{}},{"id":"edge-0.4465460596917046","source":"7154","target":"7156","data":{}},{"id":"edge-0.7367707324103101","source":"7154","target":"7158","data":{}},{"id":"edge-0.1313608807639397","source":"3904","target":"3881","data":{}},{"id":"edge-0.20131393461791203","source":"7159","target":"7160","data":{}},{"id":"edge-0.7575858625800593","source":"7161","target":"7162","data":{}},{"id":"edge-0.19726195039344852","source":"5589","target":"7164","data":{}},{"id":"edge-0.28375556474926156","source":"5589","target":"7166","data":{}},{"id":"edge-0.4832234389309864","source":"7167","target":"7168","data":{}},{"id":"edge-0.9277182661141146","source":"6903","target":"7169","data":{}},{"id":"edge-0.45204948142726065","source":"7170","target":"7171","data":{}},{"id":"edge-0.7420336171978141","source":"7172","target":"7173","data":{}},{"id":"edge-0.6447480224346287","source":"5577","target":"7174","data":{}},{"id":"edge-0.1913075633389849","source":"5070","target":"7175","data":{}},{"id":"edge-0.3886678174754763","source":"5421","target":"7176","data":{}},{"id":"edge-0.5113432190291416","source":"7177","target":"7178","data":{}},{"id":"edge-0.7578101309035281","source":"5308","target":"7179","data":{}},{"id":"edge-0.7350006099739348","source":"5308","target":"7180","data":{}},{"id":"edge-0.8590057670095645","source":"5829","target":"7182","data":{}},{"id":"edge-0.6512843079209523","source":"5338","target":"7183","data":{}},{"id":"edge-0.0974945303314918","source":"7184","target":"7185","data":{}},{"id":"edge-0.8640143142540826","source":"5666","target":"7186","data":{}},{"id":"edge-0.12171362104266881","source":"7187","target":"7188","data":{}},{"id":"edge-0.9610868934855579","source":"7189","target":"7190","data":{}},{"id":"edge-0.32862731675011525","source":"4817","target":"5956","data":{}},{"id":"edge-0.38802895019157946","source":"5593","target":"7191","data":{}},{"id":"edge-0.8472428245327883","source":"5594","target":"7193","data":{}},{"id":"edge-0.9984083493015363","source":"5594","target":"7194","data":{}},{"id":"edge-0.7386338237636201","source":"7195","target":"7196","data":{}},{"id":"edge-0.5303853476796074","source":"7195","target":"7197","data":{}},{"id":"edge-0.2037241528580005","source":"7195","target":"7198","data":{}},{"id":"edge-0.8405105344936219","source":"5469","target":"7199","data":{}},{"id":"edge-0.15100512171331748","source":"5469","target":"7200","data":{}},{"id":"edge-0.1158922818296042","source":"5469","target":"7201","data":{}},{"id":"edge-0.9114115025459344","source":"5469","target":"7202","data":{}},{"id":"edge-0.5188822076530843","source":"6599","target":"5469","data":{}},{"id":"edge-0.30051519042458974","source":"5469","target":"7203","data":{}},{"id":"edge-0.544803293079384","source":"7204","target":"7205","data":{}},{"id":"edge-0.640223430679554","source":"6434","target":"7206","data":{}},{"id":"edge-0.23768044461962745","source":"7207","target":"7208","data":{}},{"id":"edge-0.9097642264588301","source":"7209","target":"7210","data":{}},{"id":"edge-0.7983223313356036","source":"5822","target":"7211","data":{}},{"id":"edge-0.4903812823779816","source":"5198","target":"7212","data":{}},{"id":"edge-0.13888854642767479","source":"5386","target":"5198","data":{}},{"id":"edge-0.2162806286243486","source":"6473","target":"7213","data":{}},{"id":"edge-0.5200761044173325","source":"23","target":"5971","data":{}},{"id":"edge-0.21656006809960981","source":"326","target":"4829","data":{}},{"id":"edge-0.5746498263030679","source":"326","target":"7217","data":{}},{"id":"edge-0.08733161642013143","source":"326","target":"7218","data":{}},{"id":"edge-0.19838663542424873","source":"2568","target":"7220","data":{}},{"id":"edge-0.7749534710044481","source":"5714","target":"7221","data":{}},{"id":"edge-0.453659355890194","source":"7222","target":"7223","data":{}},{"id":"edge-0.015009605136005133","source":"7224","target":"7225","data":{}},{"id":"edge-0.7152400915173025","source":"7226","target":"7227","data":{}},{"id":"edge-0.24992555901752467","source":"7227","target":"7229","data":{}},{"id":"edge-0.9897728513522139","source":"5087","target":"5359","data":{}},{"id":"edge-0.7217798802815769","source":"7230","target":"7231","data":{}},{"id":"edge-0.2572529336833249","source":"5070","target":"7233","data":{}},{"id":"edge-0.6141206492515796","source":"5070","target":"7234","data":{}},{"id":"edge-0.6532269100823127","source":"5070","target":"7235","data":{}},{"id":"edge-0.9463065603337846","source":"5070","target":"7236","data":{}},{"id":"edge-0.46162320828466097","source":"5070","target":"7237","data":{}},{"id":"edge-0.2500030717012893","source":"5070","target":"7238","data":{}},{"id":"edge-0.5123114236813509","source":"5070","target":"7240","data":{}},{"id":"edge-0.869127287226813","source":"5070","target":"7241","data":{}},{"id":"edge-0.6461471282823099","source":"5070","target":"7242","data":{}},{"id":"edge-0.6519169648872762","source":"7243","target":"5070","data":{}},{"id":"edge-0.7799955327648871","source":"5428","target":"5070","data":{}},{"id":"edge-0.5133473734081617","source":"7244","target":"7245","data":{}},{"id":"edge-0.7130572732089313","source":"7246","target":"7247","data":{}},{"id":"edge-0.8872141477127569","source":"7248","target":"7249","data":{}},{"id":"edge-0.9287251539799433","source":"7250","target":"7251","data":{}},{"id":"edge-0.18601502547642856","source":"5897","target":"7253","data":{}},{"id":"edge-0.21626269305645018","source":"7254","target":"7255","data":{}},{"id":"edge-0.8314226624102214","source":"7256","target":"7257","data":{}},{"id":"edge-0.4723232516239242","source":"7258","target":"7259","data":{}},{"id":"edge-0.37683818316521345","source":"6148","target":"7260","data":{}},{"id":"edge-0.18874039163913392","source":"6148","target":"7261","data":{}},{"id":"edge-0.8892215134347956","source":"321","target":"5361","data":{}},{"id":"edge-0.43380114295122163","source":"6161","target":"7262","data":{}},{"id":"edge-0.46226238971399614","source":"6161","target":"7264","data":{}},{"id":"edge-0.6692912215619582","source":"7265","target":"7266","data":{}},{"id":"edge-0.4365144608300351","source":"7265","target":"7267","data":{}},{"id":"edge-0.6795927775391044","source":"5842","target":"7268","data":{}},{"id":"edge-0.16399013052707834","source":"4933","target":"7269","data":{}},{"id":"edge-0.23542853830396715","source":"4366","target":"7271","data":{}},{"id":"edge-0.9162787195227617","source":"5201","target":"7272","data":{}},{"id":"edge-0.8390685320363207","source":"5797","target":"7274","data":{}},{"id":"edge-0.49900224985786235","source":"5575","target":"7275","data":{}},{"id":"edge-0.07590505206730791","source":"6377","target":"7276","data":{}},{"id":"edge-0.4140268588335201","source":"6244","target":"7278","data":{}},{"id":"edge-0.11803917803039266","source":"7279","target":"7280","data":{}},{"id":"edge-0.39317632626163146","source":"5889","target":"7281","data":{}},{"id":"edge-0.7988949669901957","source":"7282","target":"7283","data":{}},{"id":"edge-0.9150902341941383","source":"5308","target":"5206","data":{}},{"id":"edge-0.4565780545333671","source":"5210","target":"7286","data":{}},{"id":"edge-0.7391846345752608","source":"5210","target":"7287","data":{}},{"id":"edge-0.08560918094627534","source":"7288","target":"7289","data":{}},{"id":"edge-0.8430935735921239","source":"5320","target":"7290","data":{}},{"id":"edge-0.7365972393586344","source":"5320","target":"7291","data":{}},{"id":"edge-0.6465202340754392","source":"5320","target":"7292","data":{}},{"id":"edge-0.15970196665476255","source":"7293","target":"7294","data":{}},{"id":"edge-0.8514219916377208","source":"7295","target":"7296","data":{}},{"id":"edge-0.5992001781444758","source":"6475","target":"7297","data":{}},{"id":"edge-0.8032558621815229","source":"5829","target":"7297","data":{}},{"id":"edge-0.8233187822664587","source":"5997","target":"7298","data":{}},{"id":"edge-0.3850540509261109","source":"7299","target":"7300","data":{}},{"id":"edge-0.31679509641026016","source":"7301","target":"7302","data":{}},{"id":"edge-0.3273401708703727","source":"5669","target":"7303","data":{}},{"id":"edge-0.6459075992749574","source":"5955","target":"7304","data":{}},{"id":"edge-0.5484262085291227","source":"5036","target":"7305","data":{}},{"id":"edge-0.4537135796146978","source":"5036","target":"7306","data":{}},{"id":"edge-0.34270700065987936","source":"5036","target":"7307","data":{}},{"id":"edge-0.9636442461856345","source":"5036","target":"7308","data":{}},{"id":"edge-0.28507708475872273","source":"5036","target":"7309","data":{}},{"id":"edge-0.18182212894332683","source":"5036","target":"7310","data":{}},{"id":"edge-0.022313760490327184","source":"5036","target":"7311","data":{}},{"id":"edge-0.22561515261668563","source":"5036","target":"7312","data":{}},{"id":"edge-0.6353324199199897","source":"5609","target":"7313","data":{}},{"id":"edge-0.016762569164823438","source":"5609","target":"7314","data":{}},{"id":"edge-0.27365039330112984","source":"5609","target":"7315","data":{}},{"id":"edge-0.6642774233065019","source":"7316","target":"7317","data":{}},{"id":"edge-0.7318972756003075","source":"5442","target":"5613","data":{}},{"id":"edge-0.3941275429497826","source":"5682","target":"7318","data":{}},{"id":"edge-0.4083851236857108","source":"7319","target":"5613","data":{}},{"id":"edge-0.9524751900372075","source":"5733","target":"7320","data":{}},{"id":"edge-0.5355755175800363","source":"7321","target":"7322","data":{}},{"id":"edge-0.980443775741972","source":"5503","target":"84","data":{}},{"id":"edge-0.5644712314900826","source":"7248","target":"7325","data":{}},{"id":"edge-0.5216956063860607","source":"7326","target":"7327","data":{}},{"id":"edge-0.40396922193477525","source":"6203","target":"7329","data":{}},{"id":"edge-0.6422195763145797","source":"7331","target":"7332","data":{}},{"id":"edge-0.34033698781096366","source":"5154","target":"7333","data":{}},{"id":"edge-0.28723439329879863","source":"7334","target":"7335","data":{}},{"id":"edge-0.8001718617579971","source":"7336","target":"7337","data":{}},{"id":"edge-0.8845514674220121","source":"7338","target":"7339","data":{}},{"id":"edge-0.631507820921906","source":"5410","target":"7340","data":{}},{"id":"edge-0.36297918819694464","source":"5410","target":"7341","data":{}},{"id":"edge-0.6360743490876157","source":"7342","target":"7343","data":{}},{"id":"edge-0.6694177786839155","source":"4817","target":"7343","data":{}},{"id":"edge-0.3144892868757003","source":"5387","target":"7344","data":{}},{"id":"edge-0.09716366371755303","source":"7345","target":"7346","data":{}},{"id":"edge-0.20663684454470133","source":"5317","target":"6267","data":{}},{"id":"edge-0.7699547899579142","source":"7347","target":"7348","data":{}},{"id":"edge-0.1462623870700972","source":"7349","target":"7350","data":{}},{"id":"edge-0.30456682181617434","source":"7351","target":"7352","data":{}},{"id":"edge-0.3534165858015026","source":"7353","target":"7354","data":{}},{"id":"edge-0.722920618283394","source":"7355","target":"7356","data":{}},{"id":"edge-0.40442639816477066","source":"7357","target":"7358","data":{}},{"id":"edge-0.7102565072893854","source":"7359","target":"7360","data":{}},{"id":"edge-0.6187451240791564","source":"7361","target":"7362","data":{}},{"id":"edge-0.033713357094142804","source":"7363","target":"7364","data":{}},{"id":"edge-0.4139423366854107","source":"5862","target":"7366","data":{}},{"id":"edge-0.07512288651582755","source":"7368","target":"7369","data":{}},{"id":"edge-0.3992267981827258","source":"7370","target":"7371","data":{}},{"id":"edge-0.22622112039494513","source":"7372","target":"7373","data":{}},{"id":"edge-0.8126092627009907","source":"7375","target":"7376","data":{}},{"id":"edge-0.2211564562517827","source":"7377","target":"7378","data":{}},{"id":"edge-0.31946500824890856","source":"7379","target":"7380","data":{}},{"id":"edge-0.39770055404051474","source":"7381","target":"4243","data":{}},{"id":"edge-0.06745030231052751","source":"5829","target":"4243","data":{}},{"id":"edge-0.3649614052373966","source":"1879","target":"1890","data":{}},{"id":"edge-0.36773074513220805","source":"1879","target":"7382","data":{}},{"id":"edge-0.6848597135966699","source":"1879","target":"1891","data":{}},{"id":"edge-0.8043830676999275","source":"1879","target":"7383","data":{}},{"id":"edge-0.6427718131789941","source":"5829","target":"7048","data":{}},{"id":"edge-0.41812360399250825","source":"5829","target":"7384","data":{}},{"id":"edge-0.9488251495072586","source":"7385","target":"7386","data":{}},{"id":"edge-0.7102374044448034","source":"5561","target":"7387","data":{}},{"id":"edge-0.6968982169999156","source":"5026","target":"5027","data":{}},{"id":"edge-0.2723841974785639","source":"5026","target":"7388","data":{}},{"id":"edge-0.268287623044841","source":"7389","target":"7390","data":{}},{"id":"edge-0.8833246097002012","source":"7391","target":"7392","data":{}},{"id":"edge-0.920077955826125","source":"5389","target":"7393","data":{}},{"id":"edge-0.93692468406876","source":"5610","target":"7394","data":{}},{"id":"edge-0.13965274745756795","source":"7395","target":"7396","data":{}},{"id":"edge-0.9418494985573742","source":"7397","target":"7398","data":{}},{"id":"edge-0.13447236302075183","source":"7397","target":"7399","data":{}},{"id":"edge-0.3802787895116444","source":"7400","target":"7401","data":{}},{"id":"edge-0.9355975001640526","source":"7402","target":"7403","data":{}},{"id":"edge-0.8267822700779974","source":"7404","target":"7405","data":{}},{"id":"edge-0.2874659848095089","source":"7404","target":"7406","data":{}},{"id":"edge-0.16006251553841522","source":"7407","target":"7408","data":{}},{"id":"edge-0.7068650525101148","source":"7409","target":"7410","data":{}},{"id":"edge-0.7380019579454471","source":"7409","target":"7411","data":{}},{"id":"edge-0.8967168245427932","source":"7329","target":"7412","data":{}},{"id":"edge-0.42734792270500654","source":"7329","target":"7413","data":{}},{"id":"edge-0.5272892779134803","source":"5360","target":"7414","data":{}},{"id":"edge-0.5155053624814576","source":"5359","target":"5360","data":{}},{"id":"edge-0.23830368743298957","source":"7415","target":"6884","data":{}},{"id":"edge-0.10349603208255043","source":"5812","target":"6069","data":{}},{"id":"edge-0.37240880362869033","source":"7418","target":"7419","data":{}},{"id":"edge-0.09680144392633494","source":"7420","target":"7421","data":{}},{"id":"edge-0.495885518095164","source":"7422","target":"7423","data":{}},{"id":"edge-0.5703053436192542","source":"7424","target":"7425","data":{}},{"id":"edge-0.6055591646732439","source":"7425","target":"7427","data":{}},{"id":"edge-0.11750544092268767","source":"7428","target":"7429","data":{}},{"id":"edge-0.30969712620065937","source":"7430","target":"7431","data":{}},{"id":"edge-0.32233634723422666","source":"6230","target":"7432","data":{}},{"id":"edge-0.45495291218146594","source":"6230","target":"7433","data":{}},{"id":"edge-0.165859943500825","source":"6230","target":"7434","data":{}},{"id":"edge-0.5376393607013197","source":"6230","target":"7435","data":{}},{"id":"edge-0.4487387916154677","source":"23","target":"6693","data":{}},{"id":"edge-0.6119355447108565","source":"5070","target":"7436","data":{}},{"id":"edge-0.2732429111857557","source":"5111","target":"5423","data":{}},{"id":"edge-0.9345929874505237","source":"7437","target":"7438","data":{}},{"id":"edge-0.29410575422040774","source":"4150","target":"7439","data":{}},{"id":"edge-0.20850987053434689","source":"6098","target":"7440","data":{}},{"id":"edge-0.35476149850727046","source":"7441","target":"7442","data":{}},{"id":"edge-0.4107263118861131","source":"7359","target":"7444","data":{}},{"id":"edge-0.1948465118577305","source":"7445","target":"7446","data":{}},{"id":"edge-0.37642755759867486","source":"5070","target":"7447","data":{}},{"id":"edge-0.3466768306734638","source":"5208","target":"5650","data":{}},{"id":"edge-0.9031706898612393","source":"7449","target":"7450","data":{}},{"id":"edge-0.08930011528332926","source":"17","target":"7451","data":{}},{"id":"edge-0.8798031885250894","source":"31","target":"7451","data":{}},{"id":"edge-0.6902335022273873","source":"7452","target":"7453","data":{}},{"id":"edge-0.7787193762267421","source":"6366","target":"7455","data":{}},{"id":"edge-0.31519402905853267","source":"6314","target":"7456","data":{}},{"id":"edge-0.8528942231744459","source":"7457","target":"7458","data":{}},{"id":"edge-0.1273433763965297","source":"7459","target":"7460","data":{}},{"id":"edge-0.9373936751937928","source":"7461","target":"3881","data":{}},{"id":"edge-0.6966800080724769","source":"3881","target":"4937","data":{}},{"id":"edge-0.48606886053990483","source":"5428","target":"7463","data":{}},{"id":"edge-0.7096508124911287","source":"7464","target":"7465","data":{}},{"id":"edge-0.8627784350460836","source":"7466","target":"7467","data":{}},{"id":"edge-0.0014791977962751446","source":"7468","target":"7469","data":{}},{"id":"edge-0.07173965074267996","source":"7470","target":"7471","data":{}},{"id":"edge-0.14745202265126678","source":"5029","target":"7472","data":{}},{"id":"edge-0.3067336647744623","source":"7473","target":"6709","data":{}},{"id":"edge-0.3355061108504558","source":"5108","target":"5506","data":{}},{"id":"edge-0.9728890519671645","source":"6123","target":"7474","data":{}},{"id":"edge-0.6524187381879178","source":"6123","target":"7475","data":{}},{"id":"edge-0.896100012318666","source":"5386","target":"7476","data":{}},{"id":"edge-0.6099860511204711","source":"5386","target":"7478","data":{}},{"id":"edge-0.5566816291763503","source":"5386","target":"7480","data":{}},{"id":"edge-0.9757944249559283","source":"5386","target":"7481","data":{}},{"id":"edge-0.5247757365442443","source":"5386","target":"7482","data":{}},{"id":"edge-0.9779195216302328","source":"5386","target":"7483","data":{}},{"id":"edge-0.7431382845119097","source":"5442","target":"7484","data":{}},{"id":"edge-0.32447100778161597","source":"5442","target":"7485","data":{}},{"id":"edge-0.1779221001251916","source":"5442","target":"7486","data":{}},{"id":"edge-0.5621833733598935","source":"5442","target":"7487","data":{}},{"id":"edge-0.30295383181011926","source":"7488","target":"7489","data":{}},{"id":"edge-0.10935137868236677","source":"7490","target":"7491","data":{}},{"id":"edge-0.5208729296715897","source":"5028","target":"7492","data":{}},{"id":"edge-0.7578113523017993","source":"7493","target":"7494","data":{}},{"id":"edge-0.20957427521088046","source":"5777","target":"7495","data":{}},{"id":"edge-0.7982217334237875","source":"7496","target":"7497","data":{}},{"id":"edge-0.9391974255298143","source":"7498","target":"6197","data":{}},{"id":"edge-0.3055725628753594","source":"5660","target":"7499","data":{}},{"id":"edge-0.8791709389847244","source":"7500","target":"7501","data":{}},{"id":"edge-0.8643686112123778","source":"6550","target":"7502","data":{}},{"id":"edge-0.7538191064601116","source":"7503","target":"7504","data":{}},{"id":"edge-0.29032806676688483","source":"7505","target":"7506","data":{}},{"id":"edge-0.9532374733528493","source":"7507","target":"7508","data":{}},{"id":"edge-0.5192735468643632","source":"7509","target":"7510","data":{}},{"id":"edge-0.5710545642520735","source":"7509","target":"7511","data":{}},{"id":"edge-0.06791556241908081","source":"3487","target":"7512","data":{}},{"id":"edge-0.08013970769754963","source":"7513","target":"4094","data":{}},{"id":"edge-0.4486815292514963","source":"5751","target":"7515","data":{}},{"id":"edge-0.6668051243383204","source":"7516","target":"7517","data":{}},{"id":"edge-0.8996442504585798","source":"5757","target":"7518","data":{}},{"id":"edge-0.04267413724559499","source":"5017","target":"7521","data":{}},{"id":"edge-0.792831915585074","source":"7522","target":"7523","data":{}},{"id":"edge-0.8059477872616394","source":"7524","target":"7525","data":{}},{"id":"edge-0.4908232060315978","source":"7524","target":"7526","data":{}},{"id":"edge-0.9297181805419945","source":"7524","target":"5542","data":{}},{"id":"edge-0.8170683693892409","source":"7524","target":"7527","data":{}},{"id":"edge-0.1965845886045905","source":"5542","target":"7529","data":{}},{"id":"edge-0.18262801213312718","source":"7530","target":"7531","data":{}},{"id":"edge-0.2666870769289704","source":"5338","target":"6719","data":{}},{"id":"edge-0.21173803354290577","source":"5420","target":"7532","data":{}},{"id":"edge-0.9185108660355044","source":"7533","target":"4838","data":{}},{"id":"edge-0.05044744256429534","source":"5435","target":"7534","data":{}},{"id":"edge-0.24888084479480277","source":"6443","target":"7293","data":{}},{"id":"edge-0.9129651612105647","source":"7535","target":"7536","data":{}},{"id":"edge-0.46646387940009837","source":"6250","target":"7537","data":{}},{"id":"edge-0.7888461757168355","source":"7538","target":"7539","data":{}},{"id":"edge-0.07056327748398261","source":"7540","target":"7541","data":{}},{"id":"edge-0.23338268714570454","source":"7542","target":"7543","data":{}},{"id":"edge-0.4432245906676182","source":"6253","target":"7544","data":{}},{"id":"edge-0.2871989027119499","source":"7545","target":"5832","data":{}},{"id":"edge-0.3047583657140378","source":"7547","target":"7548","data":{}},{"id":"edge-0.7622686348139545","source":"7549","target":"3488","data":{}},{"id":"edge-0.20511862339171705","source":"3488","target":"7550","data":{}},{"id":"edge-0.5979950943453927","source":"7551","target":"7552","data":{}},{"id":"edge-0.6491850668757828","source":"5905","target":"7554","data":{}},{"id":"edge-0.16363979445777477","source":"7555","target":"7556","data":{}},{"id":"edge-0.9911599691992963","source":"7326","target":"7558","data":{}},{"id":"edge-0.2860208290515507","source":"7326","target":"7559","data":{}},{"id":"edge-0.25444173331070186","source":"7326","target":"7560","data":{}},{"id":"edge-0.31659321165348664","source":"5438","target":"7562","data":{}},{"id":"edge-0.9158625576431565","source":"5438","target":"7563","data":{}},{"id":"edge-0.8207239403329543","source":"7564","target":"7565","data":{}},{"id":"edge-0.21313846809632664","source":"7564","target":"7566","data":{}},{"id":"edge-0.17107222194653882","source":"7362","target":"7568","data":{}},{"id":"edge-0.13507154575085667","source":"7569","target":"7570","data":{}},{"id":"edge-0.5523794313045747","source":"5893","target":"7571","data":{}},{"id":"edge-0.9842235241284527","source":"7571","target":"7573","data":{}},{"id":"edge-0.16839222494550943","source":"5446","target":"7574","data":{}},{"id":"edge-0.21989404068020035","source":"4964","target":"7575","data":{}},{"id":"edge-0.6083189886630567","source":"5660","target":"7577","data":{}},{"id":"edge-0.39328036055376403","source":"7578","target":"7579","data":{}},{"id":"edge-0.015704152672007643","source":"7580","target":"7581","data":{}},{"id":"edge-0.24544601072300454","source":"5327","target":"7583","data":{}},{"id":"edge-0.45463637202137397","source":"5327","target":"5068","data":{}},{"id":"edge-0.8547549920178614","source":"5327","target":"7584","data":{}},{"id":"edge-0.42043110964594166","source":"6633","target":"7585","data":{}},{"id":"edge-0.7561868954895268","source":"7586","target":"7587","data":{}},{"id":"edge-0.04269738535057144","source":"7589","target":"7590","data":{}},{"id":"edge-0.6828750845375198","source":"7353","target":"7592","data":{}},{"id":"edge-0.24755437456993357","source":"5451","target":"7593","data":{}},{"id":"edge-0.06001408343219361","source":"326","target":"7594","data":{}},{"id":"edge-0.10192753844120506","source":"321","target":"7595","data":{}},{"id":"edge-0.3191284262440295","source":"33","target":"7596","data":{}},{"id":"edge-0.3036217718027321","source":"7248","target":"5461","data":{}},{"id":"edge-0.6873962525013719","source":"6883","target":"7598","data":{}},{"id":"edge-0.6532345141623275","source":"352","target":"7599","data":{}},{"id":"edge-0.9507262686413207","source":"7600","target":"7601","data":{}},{"id":"edge-0.6414197610803607","source":"7601","target":"7602","data":{}},{"id":"edge-0.07014623593556091","source":"7603","target":"7604","data":{}},{"id":"edge-0.22732824829923404","source":"7605","target":"7606","data":{}},{"id":"edge-0.833353995610306","source":"7605","target":"6822","data":{}},{"id":"edge-0.5826081606814566","source":"7605","target":"5954","data":{}},{"id":"edge-0.5213324749007213","source":"7605","target":"7607","data":{}},{"id":"edge-0.08345518164083199","source":"7605","target":"7608","data":{}},{"id":"edge-0.4605340096648334","source":"7609","target":"7610","data":{}},{"id":"edge-0.0516518864349218","source":"7611","target":"7612","data":{}},{"id":"edge-0.7850889787790389","source":"7522","target":"7613","data":{}},{"id":"edge-0.42913206298796225","source":"7614","target":"7615","data":{}},{"id":"edge-0.7231259477531786","source":"6390","target":"7616","data":{}},{"id":"edge-0.03911004903448112","source":"7617","target":"7618","data":{}},{"id":"edge-0.3429279200928743","source":"7612","target":"7619","data":{}},{"id":"edge-0.9043805274638426","source":"7620","target":"7621","data":{}},{"id":"edge-0.15359492186464885","source":"6213","target":"7622","data":{}},{"id":"edge-0.18961726891238473","source":"7184","target":"7623","data":{}},{"id":"edge-0.32452777252084974","source":"6921","target":"7624","data":{}},{"id":"edge-0.3521960050406161","source":"7625","target":"7626","data":{}},{"id":"edge-0.5923832201436687","source":"5564","target":"7627","data":{}},{"id":"edge-0.5066938755212447","source":"5669","target":"7629","data":{}},{"id":"edge-0.7992507044899015","source":"5669","target":"7630","data":{}},{"id":"edge-0.554926605492341","source":"5669","target":"7631","data":{}},{"id":"edge-0.5830757430817992","source":"5669","target":"7632","data":{}},{"id":"edge-0.6373628044418698","source":"7633","target":"7634","data":{}},{"id":"edge-0.5302431219322346","source":"7635","target":"7636","data":{}},{"id":"edge-0.0015299492231419798","source":"5086","target":"5832","data":{}},{"id":"edge-0.010322752173179461","source":"7637","target":"5086","data":{}},{"id":"edge-0.6526981172355548","source":"7637","target":"5484","data":{}},{"id":"edge-0.09074946610908663","source":"5303","target":"7638","data":{}},{"id":"edge-0.9195033736917291","source":"7639","target":"7640","data":{}},{"id":"edge-0.29661270589253275","source":"5472","target":"7641","data":{}},{"id":"edge-0.25659035199699276","source":"5472","target":"7642","data":{}},{"id":"edge-0.440908727524014","source":"5472","target":"7643","data":{}},{"id":"edge-0.2669973918990214","source":"5470","target":"7644","data":{}},{"id":"edge-0.7012367877229","source":"5091","target":"7645","data":{}},{"id":"edge-0.13793847922742608","source":"5091","target":"5475","data":{}},{"id":"edge-0.16147634089683804","source":"5095","target":"7646","data":{}},{"id":"edge-0.3419579703257183","source":"7439","target":"7647","data":{}},{"id":"edge-0.8718727389045848","source":"7648","target":"5607","data":{}},{"id":"edge-0.641729018159124","source":"7650","target":"7651","data":{}},{"id":"edge-0.3434505670284893","source":"7212","target":"7652","data":{}},{"id":"edge-0.47471863503490974","source":"7212","target":"7653","data":{}},{"id":"edge-0.3546373195183359","source":"4172","target":"7654","data":{}},{"id":"edge-0.5954732574725001","source":"5364","target":"7655","data":{}},{"id":"edge-0.1635380887395086","source":"5502","target":"7656","data":{}},{"id":"edge-0.12177690049033973","source":"7657","target":"7658","data":{}},{"id":"edge-0.029917024705096384","source":"7659","target":"7660","data":{}},{"id":"edge-0.21353425745885435","source":"7661","target":"7662","data":{}},{"id":"edge-0.5908758222380042","source":"7661","target":"7663","data":{}},{"id":"edge-0.15068692317202292","source":"6898","target":"7664","data":{}},{"id":"edge-0.7316752721663042","source":"6898","target":"5530","data":{}},{"id":"edge-0.05319733184729336","source":"7666","target":"7667","data":{}},{"id":"edge-0.0275593632236395","source":"6359","target":"7668","data":{}},{"id":"edge-0.1363588759997565","source":"7669","target":"7670","data":{}},{"id":"edge-0.2987900272052648","source":"6197","target":"7671","data":{}},{"id":"edge-0.9085060982143234","source":"7672","target":"7673","data":{}},{"id":"edge-0.47158108481289784","source":"7672","target":"7674","data":{}},{"id":"edge-0.8520738231229086","source":"7672","target":"7675","data":{}},{"id":"edge-0.39027640290713217","source":"7676","target":"7677","data":{}},{"id":"edge-0.5196191355593922","source":"7679","target":"7680","data":{}},{"id":"edge-0.22879431978586995","source":"5459","target":"7681","data":{}},{"id":"edge-0.25080835802356183","source":"7682","target":"7683","data":{}},{"id":"edge-0.5564258046641506","source":"3847","target":"7684","data":{}},{"id":"edge-0.5387653446122413","source":"3847","target":"7685","data":{}},{"id":"edge-0.8387529631835176","source":"3847","target":"7686","data":{}},{"id":"edge-0.1883855384915194","source":"7687","target":"7688","data":{}},{"id":"edge-0.9267574603382096","source":"6003","target":"7689","data":{}},{"id":"edge-0.397966351775743","source":"7690","target":"7691","data":{}},{"id":"edge-0.4660420415751141","source":"7690","target":"7692","data":{}},{"id":"edge-0.0628192058981425","source":"28","target":"6269","data":{}},{"id":"edge-0.48465978473008664","source":"30","target":"6269","data":{}},{"id":"edge-0.5575104815642742","source":"7048","target":"7695","data":{}},{"id":"edge-0.010185472755116276","source":"7048","target":"7696","data":{}},{"id":"edge-0.778825675726428","source":"6000","target":"5361","data":{}},{"id":"edge-0.7018505885908248","source":"5750","target":"7697","data":{}},{"id":"edge-0.20995345779167485","source":"7698","target":"7699","data":{}},{"id":"edge-0.711655162385249","source":"6590","target":"7700","data":{}},{"id":"edge-0.7049792073254324","source":"5487","target":"7701","data":{}},{"id":"edge-0.8090860608332275","source":"5487","target":"7702","data":{}},{"id":"edge-0.7945810184761728","source":"4817","target":"5494","data":{}},{"id":"edge-0.7373158598954006","source":"7703","target":"7704","data":{}},{"id":"edge-0.14412716929778413","source":"6870","target":"7705","data":{}},{"id":"edge-0.8665932742814935","source":"5842","target":"7709","data":{}},{"id":"edge-0.8593620223761089","source":"5842","target":"7710","data":{}},{"id":"edge-0.14874793598292269","source":"5610","target":"7711","data":{}},{"id":"edge-0.5501493742878416","source":"1873","target":"7712","data":{}},{"id":"edge-0.8752949586229266","source":"1873","target":"7713","data":{}},{"id":"edge-0.1286361572196646","source":"1873","target":"7714","data":{}},{"id":"edge-0.7302718730904909","source":"1873","target":"7715","data":{}},{"id":"edge-0.129218188597237","source":"5324","target":"7717","data":{}},{"id":"edge-0.819579874239657","source":"7718","target":"7719","data":{}},{"id":"edge-0.963917973496121","source":"6752","target":"7720","data":{}},{"id":"edge-0.16611290608644835","source":"6752","target":"7721","data":{}},{"id":"edge-0.3784162684364194","source":"7722","target":"7723","data":{}},{"id":"edge-0.6930035330315976","source":"7359","target":"7724","data":{}},{"id":"edge-0.3205241578306859","source":"7725","target":"7726","data":{}},{"id":"edge-0.2093677329760124","source":"4817","target":"7727","data":{}},{"id":"edge-0.3565434500680813","source":"6244","target":"7728","data":{}},{"id":"edge-0.5518513785671602","source":"7729","target":"5668","data":{}},{"id":"edge-0.004066329002577529","source":"7730","target":"7731","data":{}},{"id":"edge-0.6906733794674138","source":"7732","target":"7733","data":{}},{"id":"edge-0.006429635163857972","source":"7734","target":"7735","data":{}},{"id":"edge-0.17465777595612453","source":"7734","target":"7736","data":{}},{"id":"edge-0.9946752580292431","source":"6426","target":"7737","data":{}},{"id":"edge-0.3347594177611528","source":"7738","target":"7739","data":{}},{"id":"edge-0.8601289350208379","source":"7740","target":"7741","data":{}},{"id":"edge-0.7971728171985688","source":"7742","target":"7743","data":{}},{"id":"edge-0.7281547385696077","source":"7744","target":"7745","data":{}},{"id":"edge-0.34931185054192726","source":"6705","target":"7747","data":{}},{"id":"edge-0.7485239937012418","source":"7748","target":"7749","data":{}},{"id":"edge-0.04653131081942097","source":"7750","target":"7751","data":{}},{"id":"edge-0.9826658144476976","source":"7752","target":"7753","data":{}},{"id":"edge-0.25729402234895926","source":"7449","target":"7754","data":{}},{"id":"edge-0.9906152821082677","source":"7666","target":"7756","data":{}},{"id":"edge-0.027033177519175666","source":"5842","target":"7757","data":{}},{"id":"edge-0.7144403818942837","source":"7758","target":"7759","data":{}},{"id":"edge-0.9179282611934627","source":"1888","target":"7760","data":{}},{"id":"edge-0.06164173217103097","source":"1888","target":"7761","data":{}},{"id":"edge-0.8356725204872142","source":"7012","target":"1888","data":{}},{"id":"edge-0.8591392048865876","source":"3906","target":"7762","data":{}},{"id":"edge-0.598287891231482","source":"5334","target":"7763","data":{}},{"id":"edge-0.019934806863111776","source":"5428","target":"7764","data":{}},{"id":"edge-0.025570822284113115","source":"5428","target":"7765","data":{}},{"id":"edge-0.5393479510731352","source":"6972","target":"6518","data":{}},{"id":"edge-0.009130902034224508","source":"7766","target":"7767","data":{}},{"id":"edge-0.49128365027779175","source":"7770","target":"7771","data":{}},{"id":"edge-0.5488055888201782","source":"7772","target":"7773","data":{}},{"id":"edge-0.05365526491078065","source":"7774","target":"7775","data":{}},{"id":"edge-0.222119417562322","source":"7776","target":"7777","data":{}},{"id":"edge-0.9497976034281075","source":"6244","target":"7778","data":{}},{"id":"edge-0.42796095016730673","source":"6244","target":"7779","data":{}},{"id":"edge-0.9964255549689887","source":"7780","target":"7781","data":{}},{"id":"edge-0.15482541416995987","source":"7782","target":"7783","data":{}},{"id":"edge-0.7468422110127617","source":"7784","target":"7785","data":{}},{"id":"edge-0.07018392641830795","source":"7786","target":"7787","data":{}},{"id":"edge-0.35777425268656393","source":"7788","target":"7789","data":{}},{"id":"edge-0.37878253059037426","source":"5001","target":"7790","data":{}},{"id":"edge-0.04933240625884472","source":"5705","target":"7791","data":{}},{"id":"edge-0.9860933498244093","source":"6154","target":"7793","data":{}},{"id":"edge-0.05973231774161203","source":"7794","target":"7795","data":{}},{"id":"edge-0.3294342343864687","source":"7796","target":"7797","data":{}},{"id":"edge-0.024205132004138097","source":"7798","target":"7796","data":{}},{"id":"edge-0.805085493480419","source":"7796","target":"7800","data":{}},{"id":"edge-0.850305088573176","source":"7801","target":"7802","data":{}},{"id":"edge-0.10017109572679961","source":"7803","target":"7804","data":{}},{"id":"edge-0.8246581643286681","source":"5191","target":"5276","data":{}},{"id":"edge-0.5302204252311624","source":"6693","target":"7805","data":{}},{"id":"edge-0.05399088256348583","source":"6693","target":"7806","data":{}},{"id":"edge-0.8058367092849861","source":"7807","target":"7808","data":{}},{"id":"edge-0.4262696126123202","source":"5966","target":"7809","data":{}},{"id":"edge-0.4505918995473468","source":"7810","target":"7811","data":{}},{"id":"edge-0.1729039187677992","source":"32","target":"3507","data":{}},{"id":"edge-0.8861256529409987","source":"7814","target":"7815","data":{}},{"id":"edge-0.8996519040479016","source":"3507","target":"7815","data":{}},{"id":"edge-0.3136970199862499","source":"3506","target":"7816","data":{}},{"id":"edge-0.0838195846673433","source":"3507","target":"3506","data":{}},{"id":"edge-0.569188336167264","source":"3507","target":"5638","data":{}},{"id":"edge-0.5660818909120486","source":"7814","target":"7819","data":{}},{"id":"edge-0.15839125673069065","source":"30","target":"7820","data":{}},{"id":"edge-0.37564144670022825","source":"7821","target":"7822","data":{}},{"id":"edge-0.3250744471414293","source":"7823","target":"7824","data":{}},{"id":"edge-0.02710452204762559","source":"7147","target":"7826","data":{}},{"id":"edge-0.9639465376046699","source":"5338","target":"7827","data":{}},{"id":"edge-0.8524925904529066","source":"5070","target":"7828","data":{}},{"id":"edge-0.5961520319774123","source":"7829","target":"7830","data":{}},{"id":"edge-0.13399641258758188","source":"6706","target":"6705","data":{}},{"id":"edge-0.8351775925231242","source":"6590","target":"7833","data":{}},{"id":"edge-0.058469411662415594","source":"7834","target":"7835","data":{}},{"id":"edge-0.4357455618237782","source":"7834","target":"7836","data":{}},{"id":"edge-0.4151157193117154","source":"3903","target":"7837","data":{}},{"id":"edge-0.42313628345920984","source":"7838","target":"7839","data":{}},{"id":"edge-0.4221886890066102","source":"7840","target":"7841","data":{}},{"id":"edge-0.24877467747424653","source":"5246","target":"7842","data":{}},{"id":"edge-0.36974394932007737","source":"7786","target":"7844","data":{}},{"id":"edge-0.8858041184940357","source":"7786","target":"7845","data":{}},{"id":"edge-0.06632657935753827","source":"7846","target":"7847","data":{}},{"id":"edge-0.26085110799171307","source":"5365","target":"7848","data":{}},{"id":"edge-0.09900537663935172","source":"3154","target":"7466","data":{}},{"id":"edge-0.9536296947598499","source":"7849","target":"7850","data":{}},{"id":"edge-0.10699748532556885","source":"4172","target":"7851","data":{}},{"id":"edge-0.623281292984927","source":"7852","target":"7853","data":{}},{"id":"edge-0.714542054584024","source":"7854","target":"7855","data":{}},{"id":"edge-0.8371953960470213","source":"7856","target":"7857","data":{}},{"id":"edge-0.06402605066687572","source":"6244","target":"7859","data":{}},{"id":"edge-0.5393975135593407","source":"7860","target":"7861","data":{}},{"id":"edge-0.8267517433700671","source":"7862","target":"7863","data":{}},{"id":"edge-0.28937340697979685","source":"5649","target":"7865","data":{}},{"id":"edge-0.8233678692378199","source":"5642","target":"7866","data":{}},{"id":"edge-0.3125613671001408","source":"5642","target":"7867","data":{}},{"id":"edge-0.5306224846764882","source":"5236","target":"5642","data":{}},{"id":"edge-0.10506889839466127","source":"5757","target":"7869","data":{}},{"id":"edge-0.5712701152327146","source":"5757","target":"7870","data":{}},{"id":"edge-0.5314905647329182","source":"5757","target":"7872","data":{}},{"id":"edge-0.0035565024447739013","source":"5757","target":"6817","data":{}},{"id":"edge-0.41834555752238245","source":"5252","target":"7875","data":{}},{"id":"edge-0.2497249041269407","source":"7876","target":"3184","data":{}},{"id":"edge-0.6193098772754733","source":"5389","target":"7878","data":{}},{"id":"edge-0.0012756857870157567","source":"7879","target":"7880","data":{}},{"id":"edge-0.7416427076693839","source":"5249","target":"7881","data":{}},{"id":"edge-0.5637341951358872","source":"5249","target":"7882","data":{}},{"id":"edge-0.24576521823251674","source":"4941","target":"5249","data":{}},{"id":"edge-0.3854887243754681","source":"5822","target":"5249","data":{}},{"id":"edge-0.8532076506797106","source":"4817","target":"5249","data":{}},{"id":"edge-0.7682446820822422","source":"5249","target":"7883","data":{}},{"id":"edge-0.2885213303906655","source":"5249","target":"6802","data":{}},{"id":"edge-0.5233110229034346","source":"7884","target":"7885","data":{}},{"id":"edge-0.9031659565493644","source":"7886","target":"7887","data":{}},{"id":"edge-0.16356578986795633","source":"7888","target":"7889","data":{}},{"id":"edge-0.45094463117843553","source":"5653","target":"7890","data":{}},{"id":"edge-0.7772591842007273","source":"7891","target":"7892","data":{}},{"id":"edge-0.9042975092511232","source":"6299","target":"7893","data":{}},{"id":"edge-0.7999062453105292","source":"5859","target":"7894","data":{}},{"id":"edge-0.6617565761232094","source":"7895","target":"5626","data":{}},{"id":"edge-0.7199584086797983","source":"5929","target":"7897","data":{}},{"id":"edge-0.49598901712848575","source":"5929","target":"7898","data":{}},{"id":"edge-0.2742940786089543","source":"5929","target":"7899","data":{}},{"id":"edge-0.8327233707173494","source":"7620","target":"7900","data":{}},{"id":"edge-0.5784429344383242","source":"5862","target":"7901","data":{}},{"id":"edge-0.5994156414142313","source":"5862","target":"7902","data":{}},{"id":"edge-0.9712139320452362","source":"7903","target":"7904","data":{}},{"id":"edge-0.19231490088265102","source":"7905","target":"7906","data":{}},{"id":"edge-0.8574284399419387","source":"5664","target":"7907","data":{}},{"id":"edge-0.904176122398908","source":"5087","target":"5665","data":{}},{"id":"edge-0.025463369901686628","source":"7908","target":"6380","data":{}},{"id":"edge-0.010829792927547377","source":"7909","target":"7910","data":{}},{"id":"edge-0.9285176889719526","source":"5338","target":"7911","data":{}},{"id":"edge-0.2732258637056386","source":"7912","target":"7913","data":{}},{"id":"edge-0.274427047934249","source":"4817","target":"5668","data":{}},{"id":"edge-0.8422540222219148","source":"5668","target":"7914","data":{}},{"id":"edge-0.7367212983165312","source":"5668","target":"7915","data":{}},{"id":"edge-0.9420322897731481","source":"5668","target":"7916","data":{}},{"id":"edge-0.4137652089637083","source":"5668","target":"7917","data":{}},{"id":"edge-0.5205190319201394","source":"5654","target":"7919","data":{}},{"id":"edge-0.7941366619793675","source":"5654","target":"7920","data":{}},{"id":"edge-0.9486984893773511","source":"5308","target":"7921","data":{}},{"id":"edge-0.8587922911551544","source":"4242","target":"7922","data":{}},{"id":"edge-0.9584245515860892","source":"7923","target":"7924","data":{}},{"id":"edge-0.5332862911889455","source":"7498","target":"7925","data":{}},{"id":"edge-0.5989869705103383","source":"7926","target":"7927","data":{}},{"id":"edge-0.9834314482584972","source":"7928","target":"7929","data":{}},{"id":"edge-0.3380261902308277","source":"5733","target":"7132","data":{}},{"id":"edge-0.8627840809458001","source":"7930","target":"7931","data":{}},{"id":"edge-0.37866960962071694","source":"4817","target":"7932","data":{}},{"id":"edge-0.08076568344090451","source":"7933","target":"7934","data":{}},{"id":"edge-0.230639733065773","source":"5355","target":"7935","data":{}},{"id":"edge-0.04756094680277778","source":"5256","target":"7936","data":{}},{"id":"edge-0.8047478167066566","source":"7937","target":"7938","data":{}},{"id":"edge-0.9347083779983534","source":"7939","target":"7940","data":{}},{"id":"edge-0.5137863917287748","source":"5263","target":"7942","data":{}},{"id":"edge-0.5845657556358408","source":"1980","target":"7943","data":{}},{"id":"edge-0.47563152755071303","source":"317","target":"1980","data":{}},{"id":"edge-0.49731452167283496","source":"7945","target":"7946","data":{}},{"id":"edge-0.1204667204366856","source":"7947","target":"7948","data":{}},{"id":"edge-0.06635599652222757","source":"5455","target":"7949","data":{}},{"id":"edge-0.1087230546383886","source":"7950","target":"7951","data":{}},{"id":"edge-0.7840877489944578","source":"36","target":"7952","data":{}},{"id":"edge-0.8374166512151513","source":"36","target":"7953","data":{}},{"id":"edge-0.5599711618911267","source":"7954","target":"7955","data":{}},{"id":"edge-0.8536654131954191","source":"7956","target":"7957","data":{}},{"id":"edge-0.9078894544960541","source":"5273","target":"5274","data":{}},{"id":"edge-0.8616236366540655","source":"5275","target":"5276","data":{}},{"id":"edge-0.6364989541870618","source":"4946","target":"5284","data":{}},{"id":"edge-0.16926770576657457","source":"4950","target":"5087","data":{}},{"id":"edge-0.028085059756288944","source":"4954","target":"4955","data":{}},{"id":"edge-0.3331230250809014","source":"5296","target":"5297","data":{}},{"id":"edge-0.9914049728459389","source":"4972","target":"5316","data":{}},{"id":"edge-0.5288107618312916","source":"4972","target":"5318","data":{}},{"id":"edge-0.9156872708241885","source":"4977","target":"4993","data":{}},{"id":"edge-0.4297070517407189","source":"5326","target":"5327","data":{}},{"id":"edge-0.9848088587007167","source":"3","target":"30","data":{}},{"id":"edge-0.4099186635230736","source":"4987","target":"5346","data":{}},{"id":"edge-0.24747868427682973","source":"5349","target":"5350","data":{}},{"id":"edge-0.862423604087428","source":"4999","target":"4364","data":{}},{"id":"edge-0.6324068617397189","source":"4","target":"4938","data":{}},{"id":"edge-0.5408424098681817","source":"4","target":"5015","data":{}},{"id":"edge-0.7982029802057957","source":"4","target":"4934","data":{}},{"id":"edge-0.002808007694565129","source":"4","target":"289","data":{}},{"id":"edge-0.9803991569571575","source":"3887","target":"4934","data":{}},{"id":"edge-0.6756216691401371","source":"3887","target":"4935","data":{}},{"id":"edge-0.677311775934158","source":"3897","target":"4194","data":{}},{"id":"edge-0.6519354169522198","source":"3872","target":"140","data":{}},{"id":"edge-0.15042688558438777","source":"5306","target":"5307","data":{}},{"id":"edge-0.20490583222209757","source":"4962","target":"5295","data":{}},{"id":"edge-0.2929214649088503","source":"4962","target":"4964","data":{}},{"id":"edge-0.8625336449029943","source":"4960","target":"4961","data":{}},{"id":"edge-0.24850352559270683","source":"4960","target":"5070","data":{}},{"id":"edge-0.8757076279671145","source":"5307","target":"5297","data":{}},{"id":"edge-0.06769178011720922","source":"6","target":"5313","data":{}},{"id":"edge-0.5958905713458758","source":"6","target":"475","data":{}},{"id":"edge-0.16349275410649078","source":"6","target":"476","data":{}},{"id":"edge-0.49432883404901884","source":"5319","target":"5320","data":{}},{"id":"edge-0.8776465319017888","source":"5323","target":"5324","data":{}},{"id":"edge-0.17102393038171249","source":"4993","target":"5256","data":{}},{"id":"edge-0.31297977058122606","source":"4984","target":"5339","data":{}},{"id":"edge-0.9620702926136511","source":"5335","target":"5336","data":{}},{"id":"edge-0.6616555523203056","source":"4173","target":"4987","data":{}},{"id":"edge-0.5363485619426673","source":"4173","target":"5340","data":{}},{"id":"edge-0.09784283913958758","source":"4173","target":"4917","data":{}},{"id":"edge-0.5266885862643123","source":"8","target":"5348","data":{}},{"id":"edge-0.035830091199931635","source":"8","target":"4937","data":{}},{"id":"edge-0.06871087776101881","source":"8","target":"170","data":{}},{"id":"edge-0.035429247499965344","source":"8","target":"1284","data":{}},{"id":"edge-0.9644502319294226","source":"8","target":"30","data":{}},{"id":"edge-0.9585872937792896","source":"5001","target":"5378","data":{}},{"id":"edge-0.26662806037793074","source":"5004","target":"5390","data":{}},{"id":"edge-0.03867777844942144","source":"4174","target":"5304","data":{}},{"id":"edge-0.3673231693386969","source":"4174","target":"29","data":{}},{"id":"edge-0.7093520026939006","source":"5397","target":"4926","data":{}},{"id":"edge-0.48145885058401294","source":"5397","target":"5064","data":{}},{"id":"edge-0.9035014107708843","source":"5017","target":"5405","data":{}},{"id":"edge-0.44551395532881033","source":"5408","target":"5289","data":{}},{"id":"edge-0.518245705369559","source":"5116","target":"5511","data":{}},{"id":"edge-0.7723496198272877","source":"5120","target":"4129","data":{}},{"id":"edge-0.13255541072511945","source":"5512","target":"5516","data":{}},{"id":"edge-0.15677521212918388","source":"5519","target":"5521","data":{}},{"id":"edge-0.30208304738352765","source":"5519","target":"5506","data":{}},{"id":"edge-0.5005054349714331","source":"2812","target":"5529","data":{}},{"id":"edge-0.29145354400789936","source":"5129","target":"3880","data":{}},{"id":"edge-0.29678636848979445","source":"5129","target":"5515","data":{}},{"id":"edge-0.9606522268364817","source":"5533","target":"5534","data":{}},{"id":"edge-0.7784201471689098","source":"5532","target":"5303","data":{}},{"id":"edge-0.3988870776786997","source":"5134","target":"5536","data":{}},{"id":"edge-0.7011218155513801","source":"5322","target":"5531","data":{}},{"id":"edge-0.45658178697919505","source":"3897","target":"3504","data":{}},{"id":"edge-0.30833572588977365","source":"5539","target":"5540","data":{}},{"id":"edge-0.588653741998348","source":"5537","target":"5538","data":{}},{"id":"edge-0.005510504094736746","source":"5143","target":"5017","data":{}},{"id":"edge-0.070411506045438","source":"5141","target":"5142","data":{}},{"id":"edge-0.35401645759615086","source":"5157","target":"3479","data":{}},{"id":"edge-0.17797021808291236","source":"5148","target":"4823","data":{}},{"id":"edge-0.6177784097547208","source":"5148","target":"5549","data":{}},{"id":"edge-0.7312070171355385","source":"5146","target":"5163","data":{}},{"id":"edge-0.06545343522025626","source":"1854","target":"5561","data":{}},{"id":"edge-0.7334113196436762","source":"5160","target":"5565","data":{}},{"id":"edge-0.22635693240503052","source":"5169","target":"5566","data":{}},{"id":"edge-0.08203024734019393","source":"1243","target":"3220","data":{}},{"id":"edge-0.10247543045019025","source":"5177","target":"5564","data":{}},{"id":"edge-0.3521359362087575","source":"16","target":"1985","data":{}},{"id":"edge-0.5740074901482861","source":"16","target":"1986","data":{}},{"id":"edge-0.5001170974291811","source":"16","target":"5076","data":{}},{"id":"edge-0.4344263662407184","source":"5571","target":"5573","data":{}},{"id":"edge-0.6175429155810053","source":"5571","target":"5572","data":{}},{"id":"edge-0.08008502686028418","source":"3904","target":"36","data":{}},{"id":"edge-0.25277302141108704","source":"5569","target":"5068","data":{}},{"id":"edge-0.21809522988215635","source":"5175","target":"5176","data":{}},{"id":"edge-0.10810833275248077","source":"5186","target":"3791","data":{}},{"id":"edge-0.15858388174280091","source":"5186","target":"3678","data":{}},{"id":"edge-0.8127363786250932","source":"5186","target":"3645","data":{}},{"id":"edge-0.6275912934182131","source":"5577","target":"5578","data":{}},{"id":"edge-0.700712533564815","source":"3506","target":"5638","data":{}},{"id":"edge-0.09359216887531074","source":"3506","target":"32","data":{}},{"id":"edge-0.9772643291978615","source":"3904","target":"5327","data":{}},{"id":"edge-0.010493390013960768","source":"5308","target":"5585","data":{}},{"id":"edge-0.32684691770929275","source":"5308","target":"5586","data":{}},{"id":"edge-0.8648030219485392","source":"5114","target":"5113","data":{}},{"id":"edge-0.7979412388706464","source":"5114","target":"5197","data":{}},{"id":"edge-0.4577502478083342","source":"5114","target":"5588","data":{}},{"id":"edge-0.7014019540032943","source":"5114","target":"5368","data":{}},{"id":"edge-0.953908467001737","source":"5592","target":"316","data":{}},{"id":"edge-0.9090714077547715","source":"5194","target":"5028","data":{}},{"id":"edge-0.831070277975789","source":"5594","target":"4748","data":{}},{"id":"edge-0.8763896059880201","source":"5469","target":"166","data":{}},{"id":"edge-0.4237119373327467","source":"5198","target":"5199","data":{}},{"id":"edge-0.5606684701720965","source":"170","target":"3848","data":{}},{"id":"edge-0.44436926499068563","source":"170","target":"5015","data":{}},{"id":"edge-0.08320449806578112","source":"170","target":"3635","data":{}},{"id":"edge-0.7961693626698427","source":"170","target":"5208","data":{}},{"id":"edge-0.7362440092969194","source":"170","target":"5087","data":{}},{"id":"edge-0.8181514324857713","source":"170","target":"5604","data":{}},{"id":"edge-0.05533938255881288","source":"170","target":"30","data":{}},{"id":"edge-0.68387048705093","source":"170","target":"289","data":{}},{"id":"edge-0.45632062382656513","source":"5611","target":"5380","data":{}},{"id":"edge-0.35124486785217135","source":"5225","target":"5068","data":{}},{"id":"edge-0.07006564588941688","source":"5613","target":"5614","data":{}},{"id":"edge-0.3458017187707536","source":"5617","target":"5618","data":{}},{"id":"edge-0.6108490028584108","source":"5615","target":"5616","data":{}},{"id":"edge-0.3654422282326302","source":"5620","target":"5621","data":{}},{"id":"edge-0.9458389523495476","source":"5503","target":"5504","data":{}},{"id":"edge-0.2648432163469705","source":"5318","target":"3889","data":{}},{"id":"edge-0.5348735121140404","source":"4817","target":"5499","data":{}},{"id":"edge-0.3934688193758209","source":"5401","target":"5403","data":{}},{"id":"edge-0.3369979532766252","source":"5401","target":"5402","data":{}},{"id":"edge-0.8154092888609092","source":"5087","target":"337","data":{}},{"id":"edge-0.7238884268651127","source":"5023","target":"5068","data":{}},{"id":"edge-0.04457621394071243","source":"5029","target":"390","data":{}},{"id":"edge-0.4405262186184169","source":"5037","target":"5419","data":{}},{"id":"edge-0.6806150477277635","source":"5040","target":"5371","data":{}},{"id":"edge-0.4883441496620706","source":"5040","target":"5428","data":{}},{"id":"edge-0.9057647235905293","source":"5028","target":"5372","data":{}},{"id":"edge-0.2586278048587649","source":"5047","target":"5431","data":{}},{"id":"edge-0.38891675993198627","source":"5338","target":"5210","data":{}},{"id":"edge-0.5326591329524846","source":"5435","target":"5436","data":{}},{"id":"edge-0.19591031685386429","source":"1812","target":"182","data":{}},{"id":"edge-0.7106188608162809","source":"5060","target":"5412","data":{}},{"id":"edge-0.9064055009625969","source":"5064","target":"5066","data":{}},{"id":"edge-0.6711838199766182","source":"5352","target":"5354","data":{}},{"id":"edge-0.004996926814502256","source":"5062","target":"5355","data":{}},{"id":"edge-0.6283350038848723","source":"5070","target":"5455","data":{}},{"id":"edge-0.3189068959297541","source":"5076","target":"1953","data":{}},{"id":"edge-0.06471954374953692","source":"5459","target":"5460","data":{}},{"id":"edge-0.11076848088468694","source":"5068","target":"5299","data":{}},{"id":"edge-0.5299047880943564","source":"5068","target":"5362","data":{}},{"id":"edge-0.65237036207229","source":"5462","target":"5463","data":{}},{"id":"edge-0.9598891535373661","source":"5465","target":"5466","data":{}},{"id":"edge-0.5750330395812937","source":"5086","target":"5464","data":{}},{"id":"edge-0.5119085188531081","source":"5082","target":"5468","data":{}},{"id":"edge-0.5256024108764119","source":"5470","target":"5186","data":{}},{"id":"edge-0.10035897613974654","source":"5472","target":"5473","data":{}},{"id":"edge-0.8025817062178942","source":"5091","target":"4927","data":{}},{"id":"edge-0.9279768733746374","source":"5091","target":"4930","data":{}},{"id":"edge-0.4095107653114951","source":"5476","target":"5477","data":{}},{"id":"edge-0.4056644302391672","source":"5093","target":"5163","data":{}},{"id":"edge-0.03532934469594373","source":"5364","target":"5365","data":{}},{"id":"edge-0.32139649828237427","source":"5369","target":"5370","data":{}},{"id":"edge-0.877623049497918","source":"27","target":"5478","data":{}},{"id":"edge-0.7615925595656465","source":"5485","target":"5484","data":{}},{"id":"edge-0.9250116118087353","source":"5479","target":"5480","data":{}},{"id":"edge-0.27723364939977935","source":"5479","target":"5210","data":{}},{"id":"edge-0.22540588095058478","source":"5092","target":"326","data":{}},{"id":"edge-0.27536955159003296","source":"5101","target":"5246","data":{}},{"id":"edge-0.3439227527737849","source":"5491","target":"5492","data":{}},{"id":"edge-0.9528384122985811","source":"5324","target":"5502","data":{}},{"id":"edge-0.5151322075280691","source":"5629","target":"5065","data":{}},{"id":"edge-0.8195887365767116","source":"5632","target":"5634","data":{}},{"id":"edge-0.13958316375775404","source":"5238","target":"5171","data":{}},{"id":"edge-0.5892924539231097","source":"5636","target":"5637","data":{}},{"id":"edge-0.7262965499224849","source":"4920","target":"4018","data":{}},{"id":"edge-0.31495577077597825","source":"4920","target":"4150","data":{}},{"id":"edge-0.9376807330514678","source":"4942","target":"4004","data":{}},{"id":"edge-0.0480775446152959","source":"32","target":"3920","data":{}},{"id":"edge-0.24004146513143199","source":"32","target":"303","data":{}},{"id":"edge-0.4417410195610272","source":"32","target":"3506","data":{}},{"id":"edge-0.4546159766745983","source":"5252","target":"5151","data":{}},{"id":"edge-0.43337826967334436","source":"5252","target":"5152","data":{}},{"id":"edge-0.568638151049746","source":"5249","target":"5646","data":{}},{"id":"edge-0.14805207891441707","source":"33","target":"5186","data":{}},{"id":"edge-0.6347031696046395","source":"33","target":"3533","data":{}},{"id":"edge-0.4539428891886217","source":"33","target":"4916","data":{}},{"id":"edge-0.5443468527306143","source":"5659","target":"5660","data":{}},{"id":"edge-0.4683157841431995","source":"5664","target":"5665","data":{}},{"id":"edge-0.1992164618686476","source":"5667","target":"5318","data":{}},{"id":"edge-0.9328351820917742","source":"5282","target":"5598","data":{}},{"id":"edge-0.6519246673369004","source":"4735","target":"3790","data":{}},{"id":"edge-0.4453180107133925","source":"4735","target":"5661","data":{}},{"id":"edge-0.48243721546486773","source":"4733","target":"5262","data":{}},{"id":"edge-0.3200608903695983","source":"5259","target":"5656","data":{}},{"id":"edge-0.7257681580475144","source":"5256","target":"5375","data":{}},{"id":"edge-0.016974440070785857","source":"5256","target":"5358","data":{}},{"id":"edge-0.4981164643965008","source":"5256","target":"5672","data":{}},{"id":"edge-0.11815648055083283","source":"5256","target":"5267","data":{}},{"id":"edge-0.4453196617455979","source":"5455","target":"5509","data":{}},{"id":"edge-0.03613858180993734","source":"4954","target":"5431","data":{}},{"id":"edge-0.8855678560006941","source":"5490","target":"5489","data":{}},{"id":"edge-0.27381557290026226","source":"3","target":"5118","data":{}},{"id":"edge-0.9407801048916025","source":"3","target":"5110","data":{}},{"id":"edge-0.7451981343531691","source":"163","target":"5213","data":{}},{"id":"edge-0.1722038248664357","source":"3889","target":"5093","data":{}},{"id":"edge-0.7011737978621961","source":"3889","target":"5013","data":{}},{"id":"edge-0.7350047993179851","source":"4173","target":"5461","data":{}},{"id":"edge-0.19395401983565463","source":"4823","target":"5484","data":{}},{"id":"edge-0.2445702194597712","source":"8","target":"5304","data":{}},{"id":"edge-0.16036559930831196","source":"5655","target":"5654","data":{}},{"id":"edge-0.33641663266270716","source":"5409","target":"5023","data":{}},{"id":"edge-0.6007659318150516","source":"5430","target":"5028","data":{}},{"id":"edge-0.12363121679391842","source":"5430","target":"5487","data":{}},{"id":"edge-0.7796167442451594","source":"15","target":"317","data":{}},{"id":"edge-0.2202564330371557","source":"5590","target":"5589","data":{}},{"id":"edge-0.4720358285729256","source":"5308","target":"5393","data":{}},{"id":"edge-0.5421911228782441","source":"5308","target":"5496","data":{}},{"id":"edge-0.25315924865785755","source":"5308","target":"3487","data":{}},{"id":"edge-0.3758214312687378","source":"5308","target":"5447","data":{}},{"id":"edge-0.9697494323985572","source":"5114","target":"5097","data":{}},{"id":"edge-0.5793067273799932","source":"5469","target":"5088","data":{}},{"id":"edge-0.28021349557123076","source":"5407","target":"5406","data":{}},{"id":"edge-0.47118564482405345","source":"170","target":"5213","data":{}},{"id":"edge-0.8202513376462499","source":"170","target":"5650","data":{}},{"id":"edge-0.010150155047123688","source":"5396","target":"5311","data":{}},{"id":"edge-0.03385387164600595","source":"5496","target":"5106","data":{}},{"id":"edge-0.2140502021510251","source":"5087","target":"5129","data":{}},{"id":"edge-0.2867150860973602","source":"5087","target":"5418","data":{}},{"id":"edge-0.9883304250812466","source":"5087","target":"5040","data":{}},{"id":"edge-0.1410394387755982","source":"5023","target":"5225","data":{}},{"id":"edge-0.25107593525717364","source":"5647","target":"33","data":{}},{"id":"edge-0.47117413429673194","source":"5345","target":"4823","data":{}},{"id":"edge-0.5148657239451213","source":"5236","target":"3906","data":{}},{"id":"edge-0.6266986556580352","source":"5386","target":"5385","data":{}},{"id":"edge-0.20881141295436167","source":"4924","target":"33","data":{}},{"id":"edge-0.38454401093403545","source":"5623","target":"5622","data":{}},{"id":"edge-0.21391098284066312","source":"25","target":"3487","data":{}},{"id":"edge-0.5866301965996354","source":"5444","target":"5443","data":{}},{"id":"edge-0.8445327844759154","source":"5501","target":"5324","data":{}},{"id":"edge-0.6039655006087932","source":"5013","target":"5093","data":{}},{"id":"edge-0.8054905592484203","source":"5279","target":"5496","data":{}},{"id":"edge-0.6722195114696428","source":"30","target":"5292","data":{}},{"id":"edge-0.9643851019281084","source":"30","target":"5242","data":{}},{"id":"edge-0.7078595085786805","source":"5439","target":"5438","data":{}},{"id":"edge-0.9190622160972337","source":"5256","target":"5113","data":{}},{"id":"edge-0.5591107389484489","source":"3897","target":"8279","data":{}},{"id":"edge-0.2757587595812838","source":"3897","target":"8278","data":{}},{"id":"edge-0.3501291946080587","source":"3897","target":"8277","data":{}},{"id":"edge-0.9830614200688439","source":"5129","target":"5130","data":{}},{"id":"edge-0.01766987450112789","source":"5129","target":"8274","data":{}},{"id":"edge-0.7665546215493562","source":"5129","target":"8273","data":{}},{"id":"edge-0.7466824648947441","source":"5126","target":"8272","data":{}},{"id":"edge-0.7263755513885901","source":"5520","target":"8271","data":{}},{"id":"edge-0.6361456681322113","source":"5120","target":"8270","data":{}},{"id":"edge-0.40705412026262566","source":"5120","target":"5122","data":{}},{"id":"edge-0.6042046920693904","source":"5120","target":"5121","data":{}},{"id":"edge-0.5318710183224897","source":"8264","target":"7257","data":{}},{"id":"edge-0.8700842616240483","source":"5397","target":"8268","data":{}},{"id":"edge-0.6181052665513924","source":"5397","target":"8267","data":{}},{"id":"edge-0.4383222091495329","source":"5397","target":"8265","data":{}},{"id":"edge-0.4010914008328965","source":"5397","target":"8264","data":{}},{"id":"edge-0.6220033809724526","source":"8227","target":"1266","data":{}},{"id":"edge-0.8772888300009984","source":"5349","target":"8228","data":{}},{"id":"edge-0.0943758969745403","source":"8229","target":"8230","data":{}},{"id":"edge-0.12412046244051145","source":"5646","target":"8231","data":{}},{"id":"edge-0.19559229119444654","source":"4","target":"5242","data":{}},{"id":"edge-0.9168197705939236","source":"3889","target":"5096","data":{}},{"id":"edge-0.6490553014718177","source":"4958","target":"4966","data":{}},{"id":"edge-0.8697105134955401","source":"4958","target":"8232","data":{}},{"id":"edge-0.6787012616155437","source":"4958","target":"8233","data":{}},{"id":"edge-0.2754960309772887","source":"4958","target":"5311","data":{}},{"id":"edge-0.4088687317314401","source":"6","target":"3796","data":{}},{"id":"edge-0.9798432388240725","source":"6","target":"8234","data":{}},{"id":"edge-0.8712827327848713","source":"6","target":"8235","data":{}},{"id":"edge-0.670972055813102","source":"6","target":"8236","data":{}},{"id":"edge-0.29978873974778053","source":"6","target":"8237","data":{}},{"id":"edge-0.23914955289128725","source":"6","target":"4","data":{}},{"id":"edge-0.9374004148400146","source":"6","target":"4950","data":{}},{"id":"edge-0.3991745360867378","source":"4987","target":"8226","data":{}},{"id":"edge-0.28652545836083587","source":"4977","target":"4977","data":{}},{"id":"edge-0.2071259144865214","source":"4972","target":"8225","data":{}},{"id":"edge-0.19371489332295533","source":"4972","target":"4974","data":{}},{"id":"edge-0.9418221663404083","source":"4972","target":"8223","data":{}},{"id":"edge-0.014751525265954024","source":"4972","target":"8222","data":{}},{"id":"edge-0.8613351799386872","source":"4972","target":"4973","data":{}},{"id":"edge-0.7200950864334921","source":"4972","target":"5777","data":{}},{"id":"edge-0.6091215606848064","source":"4972","target":"8221","data":{}},{"id":"edge-0.05396582857043031","source":"8220","target":"5242","data":{}},{"id":"edge-0.5626451998070414","source":"6","target":"491","data":{}},{"id":"edge-0.5120592260776577","source":"6","target":"8240","data":{}},{"id":"edge-0.06042136084599026","source":"6","target":"8241","data":{}},{"id":"edge-0.7281160606144137","source":"6","target":"8242","data":{}},{"id":"edge-0.346608272595611","source":"6","target":"8243","data":{}},{"id":"edge-0.8784172544274382","source":"8244","target":"3487","data":{}},{"id":"edge-0.25317644733299094","source":"5335","target":"8229","data":{}},{"id":"edge-0.7905562419590182","source":"5335","target":"8247","data":{}},{"id":"edge-0.5784738206554496","source":"5335","target":"8248","data":{}},{"id":"edge-0.15567093793125508","source":"4173","target":"8227","data":{}},{"id":"edge-0.3888405339230623","source":"8249","target":"3487","data":{}},{"id":"edge-0.6013873655568236","source":"5705","target":"7790","data":{}},{"id":"edge-0.26739928035330585","source":"5705","target":"5003","data":{}},{"id":"edge-0.19117676347441503","source":"8","target":"8250","data":{}},{"id":"edge-0.5851902818750372","source":"8","target":"8251","data":{}},{"id":"edge-0.6310576222374398","source":"8","target":"1294","data":{}},{"id":"edge-0.7240999402083534","source":"8","target":"1283","data":{}},{"id":"edge-0.8635831800086666","source":"8","target":"8252","data":{}},{"id":"edge-0.7143769053145741","source":"8","target":"8254","data":{}},{"id":"edge-0.3290051518910495","source":"8","target":"4951","data":{}},{"id":"edge-0.46561915702916346","source":"4977","target":"8258","data":{}},{"id":"edge-0.8378884743228037","source":"4977","target":"310","data":{}},{"id":"edge-0.12605148602178895","source":"4977","target":"4997","data":{}},{"id":"edge-0.03959166822076554","source":"5001","target":"8261","data":{}},{"id":"edge-0.7911549661938582","source":"5001","target":"8262","data":{}},{"id":"edge-0.13797448760606978","source":"5001","target":"5003","data":{}},{"id":"edge-0.5131335754552295","source":"5433","target":"8263","data":{}},{"id":"edge-0.8092723410279341","source":"5004","target":"5008","data":{}},{"id":"edge-0.19168597338047966","source":"5397","target":"7257","data":{}},{"id":"edge-0.3724859512393439","source":"3897","target":"8284","data":{}},{"id":"edge-0.8381466534221571","source":"3897","target":"4193","data":{}},{"id":"edge-0.15999086259142548","source":"3897","target":"8286","data":{}},{"id":"edge-0.6463733143703629","source":"3897","target":"8287","data":{}},{"id":"edge-0.9822383481044876","source":"3897","target":"8290","data":{}},{"id":"edge-0.3151520558869938","source":"3897","target":"4196","data":{}},{"id":"edge-0.9973959124385319","source":"3897","target":"8296","data":{}},{"id":"edge-0.9220493156238088","source":"3897","target":"4192","data":{}},{"id":"edge-0.4464363311846389","source":"5141","target":"8301","data":{}},{"id":"edge-0.03562695875800381","source":"5141","target":"8302","data":{}},{"id":"edge-0.945648257273684","source":"8303","target":"3906","data":{}},{"id":"edge-0.20825741363113148","source":"8304","target":"289","data":{}},{"id":"edge-0.7695747537305753","source":"337","target":"8305","data":{}},{"id":"edge-0.7399504544516267","source":"337","target":"5418","data":{}},{"id":"edge-0.12608985237771653","source":"5146","target":"5144","data":{}},{"id":"edge-0.728922981625068","source":"5146","target":"5147","data":{}},{"id":"edge-0.0020248416569794703","source":"7092","target":"8306","data":{}},{"id":"edge-0.06678410387871114","source":"4831","target":"5191","data":{}},{"id":"edge-0.7368653627332686","source":"4831","target":"8307","data":{}},{"id":"edge-0.24240369522439553","source":"4831","target":"8308","data":{}},{"id":"edge-0.1888478635610955","source":"4831","target":"8309","data":{}},{"id":"edge-0.5769106884946662","source":"4831","target":"8310","data":{}},{"id":"edge-0.02853162803096687","source":"4831","target":"8311","data":{}},{"id":"edge-0.9973586107064196","source":"4831","target":"8312","data":{}},{"id":"edge-0.6283739026446049","source":"4831","target":"4824","data":{}},{"id":"edge-0.5717367892257248","source":"4831","target":"150","data":{}},{"id":"edge-0.2233842665735064","source":"4831","target":"8313","data":{}},{"id":"edge-0.5591492822111124","source":"4831","target":"8314","data":{}},{"id":"edge-0.6406887853803152","source":"4831","target":"8315","data":{}},{"id":"edge-0.030232688697705123","source":"4831","target":"5128","data":{}},{"id":"edge-0.33345830016456746","source":"4831","target":"8316","data":{}},{"id":"edge-0.747075429944154","source":"4831","target":"8317","data":{}},{"id":"edge-0.4324975631417096","source":"4831","target":"8318","data":{}},{"id":"edge-0.3920553576420598","source":"4831","target":"8319","data":{}},{"id":"edge-0.7630692467738569","source":"5165","target":"8320","data":{}},{"id":"edge-0.6997692678732745","source":"5158","target":"8321","data":{}},{"id":"edge-0.18188755164103343","source":"5158","target":"8322","data":{}},{"id":"edge-0.9371047552311653","source":"5158","target":"8323","data":{}},{"id":"edge-0.7983787120699244","source":"5158","target":"8324","data":{}},{"id":"edge-0.6824856461969664","source":"8313","target":"4831","data":{}},{"id":"edge-0.0991038659322121","source":"8325","target":"5561","data":{}},{"id":"edge-0.9850100631601502","source":"8325","target":"8326","data":{}},{"id":"edge-0.8812065147248156","source":"1854","target":"8325","data":{}},{"id":"edge-0.13670149410891952","source":"1854","target":"8327","data":{}},{"id":"edge-0.7971292806193291","source":"5008","target":"5004","data":{}},{"id":"edge-0.7295687590577098","source":"5177","target":"8328","data":{}},{"id":"edge-0.6961266719168753","source":"5177","target":"5178","data":{}},{"id":"edge-0.3418944326517688","source":"3904","target":"8330","data":{}},{"id":"edge-0.9017838255531669","source":"5186","target":"5254","data":{}},{"id":"edge-0.7341144134763782","source":"5186","target":"8331","data":{}},{"id":"edge-0.8634627462568689","source":"5186","target":"5253","data":{}},{"id":"edge-0.7845214224423602","source":"5186","target":"8332","data":{}},{"id":"edge-0.28348259502645745","source":"5191","target":"8333","data":{}},{"id":"edge-0.1527604644056353","source":"5191","target":"5193","data":{}},{"id":"edge-0.9713849533100576","source":"5191","target":"8334","data":{}},{"id":"edge-0.5443882145528474","source":"5191","target":"5192","data":{}},{"id":"edge-0.6033998623206112","source":"5191","target":"8335","data":{}},{"id":"edge-0.9030367089581981","source":"5191","target":"6950","data":{}},{"id":"edge-0.9119767640412526","source":"5191","target":"8337","data":{}},{"id":"edge-0.6449892126331811","source":"5191","target":"5128","data":{}},{"id":"edge-0.6859952080777392","source":"3904","target":"5189","data":{}},{"id":"edge-0.1146638504469295","source":"5207","target":"5206","data":{}},{"id":"edge-0.5844061557945732","source":"5592","target":"8340","data":{}},{"id":"edge-0.8098599051946185","source":"5194","target":"5195","data":{}},{"id":"edge-0.8272180003368454","source":"5469","target":"3479","data":{}},{"id":"edge-0.33309796910102873","source":"5469","target":"8341","data":{}},{"id":"edge-0.06497211295055627","source":"5198","target":"8342","data":{}},{"id":"edge-0.5709829143236709","source":"5206","target":"8343","data":{}},{"id":"edge-0.4617677874626056","source":"5206","target":"8344","data":{}},{"id":"edge-0.5816773702194573","source":"5206","target":"8345","data":{}},{"id":"edge-0.16595659062107737","source":"5210","target":"5212","data":{}},{"id":"edge-0.005256026890075427","source":"5213","target":"312","data":{}},{"id":"edge-0.10120215397207555","source":"5208","target":"8347","data":{}},{"id":"edge-0.2245731511170206","source":"5208","target":"8348","data":{}},{"id":"edge-0.2976707725937666","source":"5208","target":"8349","data":{}},{"id":"edge-0.44198203292762717","source":"5208","target":"8350","data":{}},{"id":"edge-0.4203751891760912","source":"5208","target":"8351","data":{}},{"id":"edge-0.6529499347887127","source":"170","target":"8352","data":{}},{"id":"edge-0.5562076879901505","source":"170","target":"8353","data":{}},{"id":"edge-0.8527234732320887","source":"170","target":"5218","data":{}},{"id":"edge-0.8190860177855959","source":"170","target":"1297","data":{}},{"id":"edge-0.6506260248950357","source":"170","target":"8304","data":{}},{"id":"edge-0.28348138914399756","source":"170","target":"8355","data":{}},{"id":"edge-0.9007334748955469","source":"170","target":"1294","data":{}},{"id":"edge-0.8814336432291283","source":"170","target":"8263","data":{}},{"id":"edge-0.6969495664099004","source":"5606","target":"8358","data":{}},{"id":"edge-0.8620341491778669","source":"5606","target":"8359","data":{}},{"id":"edge-0.14787558238839216","source":"5606","target":"8360","data":{}},{"id":"edge-0.5239552852380864","source":"5606","target":"8361","data":{}},{"id":"edge-0.14691824019062039","source":"5606","target":"8362","data":{}},{"id":"edge-0.25971721194403496","source":"7582","target":"5327","data":{}},{"id":"edge-0.5683728411685163","source":"5362","target":"8363","data":{}},{"id":"edge-0.018731575095076947","source":"8284","target":"8364","data":{}},{"id":"edge-0.06564075012086268","source":"7240","target":"8366","data":{}},{"id":"edge-0.5003470871906155","source":"7240","target":"5071","data":{}},{"id":"edge-0.6942854083164474","source":"5497","target":"8367","data":{}},{"id":"edge-0.36754613357623556","source":"5106","target":"8368","data":{}},{"id":"edge-0.06100688884432226","source":"5106","target":"8369","data":{}},{"id":"edge-0.054722472813916845","source":"5106","target":"8370","data":{}},{"id":"edge-0.836546879137132","source":"4817","target":"3507","data":{}},{"id":"edge-0.897045044929593","source":"1879","target":"3398","data":{}},{"id":"edge-0.9909193283814068","source":"1879","target":"1880","data":{}},{"id":"edge-0.19719161579899613","source":"5561","target":"8371","data":{}},{"id":"edge-0.3735590653781389","source":"5026","target":"8372","data":{}},{"id":"edge-0.18434646861684478","source":"5037","target":"5038","data":{}},{"id":"edge-0.09600119665894047","source":"5037","target":"8373","data":{}},{"id":"edge-0.21815431140238317","source":"5037","target":"8374","data":{}},{"id":"edge-0.7477405742402279","source":"5037","target":"8375","data":{}},{"id":"edge-0.7679673787986145","source":"5037","target":"8377","data":{}},{"id":"edge-0.6336350263003805","source":"5037","target":"8378","data":{}},{"id":"edge-0.618073936825124","source":"5037","target":"8379","data":{}},{"id":"edge-0.10488511940307998","source":"5037","target":"8380","data":{}},{"id":"edge-0.8744688458948919","source":"8381","target":"5242","data":{}},{"id":"edge-0.5537250380812029","source":"23","target":"289","data":{}},{"id":"edge-0.503550627714991","source":"5040","target":"8383","data":{}},{"id":"edge-0.8819289118660858","source":"5040","target":"8384","data":{}},{"id":"edge-0.4363541671091211","source":"5040","target":"8385","data":{}},{"id":"edge-0.9858464533805744","source":"5028","target":"8386","data":{}},{"id":"edge-0.001344749494691877","source":"5028","target":"5046","data":{}},{"id":"edge-0.8868404772361762","source":"5028","target":"8387","data":{}},{"id":"edge-0.23734019678881557","source":"5028","target":"8388","data":{}},{"id":"edge-0.15831601212746804","source":"5028","target":"5045","data":{}},{"id":"edge-0.06118894924139995","source":"5028","target":"8389","data":{}},{"id":"edge-0.14112424992682038","source":"8387","target":"8390","data":{}},{"id":"edge-0.8961050281897824","source":"5513","target":"8391","data":{}},{"id":"edge-0.256250322269608","source":"5047","target":"5050","data":{}},{"id":"edge-0.4523181725343288","source":"5047","target":"8393","data":{}},{"id":"edge-0.8995061908291304","source":"5047","target":"8394","data":{}},{"id":"edge-0.920780359863997","source":"5623","target":"8395","data":{}},{"id":"edge-0.7507047419501449","source":"5432","target":"8396","data":{}},{"id":"edge-0.017263792449957904","source":"3487","target":"8397","data":{}},{"id":"edge-0.7987672128823102","source":"3487","target":"4523","data":{}},{"id":"edge-0.6645724038651983","source":"3487","target":"8398","data":{}},{"id":"edge-0.5275651073677214","source":"5338","target":"8399","data":{}},{"id":"edge-0.6535368610089778","source":"8335","target":"5191","data":{}},{"id":"edge-0.9739079294134243","source":"1812","target":"8400","data":{}},{"id":"edge-0.8643965140600938","source":"5438","target":"8401","data":{}},{"id":"edge-0.14939367871130949","source":"5438","target":"8402","data":{}},{"id":"edge-0.12356756852727435","source":"5438","target":"8403","data":{}},{"id":"edge-0.20770431155816804","source":"5438","target":"8404","data":{}},{"id":"edge-0.3401110558323035","source":"5438","target":"8405","data":{}},{"id":"edge-0.19922750736066863","source":"5438","target":"8406","data":{}},{"id":"edge-0.7985525915807237","source":"5327","target":"5189","data":{}},{"id":"edge-0.8383488850433054","source":"485","target":"8407","data":{}},{"id":"edge-0.9213814666369704","source":"5084","target":"8408","data":{}},{"id":"edge-0.27763801548822076","source":"5564","target":"5179","data":{}},{"id":"edge-0.52548040928624","source":"5086","target":"5087","data":{}},{"id":"edge-0.9165729485435754","source":"5082","target":"5083","data":{}},{"id":"edge-0.5910549142537167","source":"5082","target":"8409","data":{}},{"id":"edge-0.7833414922405815","source":"5091","target":"8411","data":{}},{"id":"edge-0.6746623457598464","source":"5091","target":"8412","data":{}},{"id":"edge-0.7787675426275766","source":"5091","target":"8015","data":{}},{"id":"edge-0.015692524582375134","source":"3602","target":"8414","data":{}},{"id":"edge-0.6299014548285053","source":"27","target":"8420","data":{}},{"id":"edge-0.8893739315299463","source":"27","target":"3296","data":{}},{"id":"edge-0.3100225989232903","source":"5536","target":"5134","data":{}},{"id":"edge-0.5000000209328208","source":"3303","target":"3305","data":{}},{"id":"edge-0.4875831248063822","source":"5479","target":"8427","data":{}},{"id":"edge-0.7043509820980052","source":"5487","target":"1294","data":{}},{"id":"edge-0.45356818876286464","source":"5501","target":"7092","data":{}},{"id":"edge-0.46853205176834023","source":"5324","target":"8428","data":{}},{"id":"edge-0.09641219454856143","source":"5411","target":"8430","data":{}},{"id":"edge-0.1662642088771411","source":"5411","target":"8431","data":{}},{"id":"edge-0.515098535403615","source":"5411","target":"8432","data":{}},{"id":"edge-0.4524910275851173","source":"5411","target":"8433","data":{}},{"id":"edge-0.325371699060238","source":"163","target":"1294","data":{}},{"id":"edge-0.10686674517355388","source":"163","target":"275","data":{}},{"id":"edge-0.3875351153068707","source":"163","target":"289","data":{}},{"id":"edge-0.38550700008400596","source":"8353","target":"8435","data":{}},{"id":"edge-0.67601653027394","source":"8353","target":"312","data":{}},{"id":"edge-0.8727469522632612","source":"8353","target":"8436","data":{}},{"id":"edge-0.7423039434446244","source":"5013","target":"8437","data":{}},{"id":"edge-0.15535906268330035","source":"8437","target":"5096","data":{}},{"id":"edge-0.12519094059634406","source":"8320","target":"8438","data":{}},{"id":"edge-0.87526606388647","source":"8320","target":"8439","data":{}},{"id":"edge-0.5543824797233445","source":"335","target":"222","data":{}},{"id":"edge-0.3373759070584581","source":"5334","target":"8442","data":{}},{"id":"edge-0.9993626048746009","source":"5238","target":"5239","data":{}},{"id":"edge-0.6639987232410416","source":"7770","target":"6972","data":{}},{"id":"edge-0.5482681814875061","source":"5604","target":"3906","data":{}},{"id":"edge-0.7049982034846947","source":"8443","target":"3305","data":{}},{"id":"edge-0.36243634154597526","source":"3506","target":"8444","data":{}},{"id":"edge-0.7430700466716262","source":"3506","target":"5237","data":{}},{"id":"edge-0.8664437826924234","source":"3506","target":"8446","data":{}},{"id":"edge-0.001961635174977827","source":"3506","target":"8447","data":{}},{"id":"edge-0.596295985352246","source":"3506","target":"8448","data":{}},{"id":"edge-0.6620110503273942","source":"3506","target":"8449","data":{}},{"id":"edge-0.07813789223942802","source":"3506","target":"8450","data":{}},{"id":"edge-0.37416015690903714","source":"3506","target":"8451","data":{}},{"id":"edge-0.08288387907652428","source":"3506","target":"8452","data":{}},{"id":"edge-0.7642684622408713","source":"3506","target":"5241","data":{}},{"id":"edge-0.22557865790275167","source":"3506","target":"8453","data":{}},{"id":"edge-0.5705354698411405","source":"3506","target":"8454","data":{}},{"id":"edge-0.3703466604897947","source":"3506","target":"8455","data":{}},{"id":"edge-0.2689624466498397","source":"3507","target":"7816","data":{}},{"id":"edge-0.9894465093273095","source":"3507","target":"8451","data":{}},{"id":"edge-0.0954105416211306","source":"30","target":"8456","data":{}},{"id":"edge-0.1083514683925264","source":"5242","target":"8458","data":{}},{"id":"edge-0.3291480949032317","source":"5208","target":"8459","data":{}},{"id":"edge-0.7817409671259674","source":"8273","target":"8460","data":{}},{"id":"edge-0.8667427606446063","source":"8461","target":"8462","data":{}},{"id":"edge-0.047865402655740796","source":"5640","target":"5243","data":{}},{"id":"edge-0.00017926919444555267","source":"5640","target":"8464","data":{}},{"id":"edge-0.7785908929561893","source":"289","target":"4967","data":{}},{"id":"edge-0.4045164554005629","source":"4942","target":"8467","data":{}},{"id":"edge-0.7794597859488861","source":"4942","target":"8464","data":{}},{"id":"edge-0.265288339894036","source":"4942","target":"8468","data":{}},{"id":"edge-0.5770789495881201","source":"4942","target":"8469","data":{}},{"id":"edge-0.3454838433014298","source":"4942","target":"5243","data":{}},{"id":"edge-0.17363117994978694","source":"4942","target":"8470","data":{}},{"id":"edge-0.2054432931279444","source":"4942","target":"8471","data":{}},{"id":"edge-0.888340471106309","source":"4942","target":"8472","data":{}},{"id":"edge-0.7193636222909021","source":"4942","target":"8473","data":{}},{"id":"edge-0.7654717679682332","source":"4942","target":"8474","data":{}},{"id":"edge-0.8315211157376965","source":"4942","target":"8475","data":{}},{"id":"edge-0.3910031855114593","source":"4942","target":"8476","data":{}},{"id":"edge-0.6908702850830775","source":"4942","target":"8477","data":{}},{"id":"edge-0.9905921413213787","source":"4942","target":"8478","data":{}},{"id":"edge-0.584666829976509","source":"4942","target":"8479","data":{}},{"id":"edge-0.6281454306842724","source":"4942","target":"8480","data":{}},{"id":"edge-0.8901898667717991","source":"4942","target":"335","data":{}},{"id":"edge-0.7890790147583608","source":"4942","target":"265","data":{}},{"id":"edge-0.06321432897796364","source":"4942","target":"8482","data":{}},{"id":"edge-0.8754411014729158","source":"4942","target":"329","data":{}},{"id":"edge-0.7324866409007789","source":"4942","target":"282","data":{}},{"id":"edge-0.35591518903260777","source":"4942","target":"8483","data":{}},{"id":"edge-0.9798746231246935","source":"4942","target":"5640","data":{}},{"id":"edge-0.052749594799008204","source":"3136","target":"3305","data":{}},{"id":"edge-0.7030464730402051","source":"32","target":"5240","data":{}},{"id":"edge-0.5423299319451804","source":"8484","target":"4967","data":{}},{"id":"edge-0.8720228551247231","source":"33","target":"4922","data":{}},{"id":"edge-0.7279311342633343","source":"33","target":"3895","data":{}},{"id":"edge-0.2622056186565427","source":"5431","target":"8485","data":{}},{"id":"edge-0.8473397650184848","source":"5065","target":"8486","data":{}},{"id":"edge-0.9479227556729986","source":"4845","target":"8318","data":{}},{"id":"edge-0.458913251399403","source":"4845","target":"8315","data":{}},{"id":"edge-0.013285579492123833","source":"4845","target":"6693","data":{}},{"id":"edge-0.18596665259656242","source":"4845","target":"8487","data":{}},{"id":"edge-0.3064128619374247","source":"4845","target":"4831","data":{}},{"id":"edge-0.6205186840105583","source":"8279","target":"4216","data":{}},{"id":"edge-0.574423344642794","source":"8279","target":"4220","data":{}},{"id":"edge-0.7541515588658438","source":"8332","target":"8492","data":{}},{"id":"edge-0.5571284128866807","source":"8332","target":"8493","data":{}},{"id":"edge-0.5808427162662073","source":"8307","target":"4831","data":{}},{"id":"edge-0.3692827544376889","source":"1880","target":"8495","data":{}},{"id":"edge-0.6071987530636886","source":"5455","target":"7240","data":{}},{"id":"edge-0.013229224180914434","source":"5108","target":"5109","data":{}},{"id":"edge-0.954878261489682","source":"5146","target":"8496","data":{}},{"id":"edge-0.6900880670764054","source":"5146","target":"8497","data":{}}] +} as GraphData; diff --git a/packages/g6/tests/intergration/demo/data3d.ts b/packages/g6/tests/intergration/demo/data3d.ts new file mode 100644 index 0000000000..7b9b219277 --- /dev/null +++ b/packages/g6/tests/intergration/demo/data3d.ts @@ -0,0 +1,75047 @@ +export default { + nodes: [ + { + id: '1', + data: { + label: 'Advance Publications', + x: -420.8716673501208, + y: -3316.2357652855753, + z: 577.6602824570112, + }, + }, + { + id: '2', + data: { + label: 'A.H. Belo', + x: 5735.898327313096, + y: 1831.2732198380784, + z: -3843.2195438290637, + }, + }, + { + id: '3', + data: { + label: 'America Online (AOL)', + x: 3169.772784329724, + y: 762.9854475881219, + z: 1301.7229541491647, + }, + }, + { + id: '4', + data: { + label: 'AT&T', + x: 1922.1903740934756, + y: -141.42767913595782, + z: 1046.0102542888699, + }, + }, + { + id: '5', + data: { + label: 'Bertelsmann', + x: 1994.0757193647855, + y: 3400.7772999033104, + z: -119.09560125570775, + }, + }, + { + id: '6', + data: { + label: 'Cablevision', + x: 2351.273856298058, + y: 1349.1252722182267, + z: 2070.366580326831, + }, + }, + { + id: '7', + data: { + label: 'CNHI', + x: -2660.999884593241, + y: 1451.1260889428945, + z: -546.723157578788, + }, + }, + { + id: '8', + data: { + label: 'Comcast', + x: 1697.9299731127696, + y: -170.27546233650156, + z: 1585.5314561145544, + }, + }, + { + id: '9', + data: { + label: 'Cox Enterprises', + x: 704.9503785871441, + y: 1075.617773378531, + z: 335.7909422073192, + }, + }, + { + id: '10', + data: { + label: 'Disney', + x: 431.158086926529, + y: 1598.6965892298813, + z: 2777.102043950563, + }, + }, + { + id: '11', + data: { + label: 'Dow-Jones &', + x: -1189.1497510298416, + y: -1519.4510213890496, + z: 656.2656439238821, + }, + }, + { + id: '12', + data: { + label: 'E.W. Scripps', + x: 6525.7639977862, + y: -3071.6163885942397, + z: 1549.465026344939, + }, + }, + { + id: '13', + data: { + label: 'Gannett', + x: 1796.366106039707, + y: -3892.573598902204, + z: -1493.8870624959065, + }, + }, + { + id: '14', + data: { + label: 'General Electric (GE)', + x: 4695.748600508097, + y: -1013.297290626889, + z: -928.9891939990405, + }, + }, + { + id: '15', + data: { + label: 'Hearst', + x: -247.09082901703033, + y: 82.12350930734533, + z: -1679.676856067793, + }, + }, + { + id: '16', + data: { + label: 'Hollinger', + x: -436.9244561376263, + y: 2416.8886883901, + z: -1527.3649232605435, + }, + }, + { + id: '17', + data: { + label: 'Knight Ridder', + x: 2866.9647471177323, + y: -3961.906746655153, + z: 1028.4799684770571, + }, + }, + { + id: '18', + data: { + label: 'Liberty Group Publishing', + x: 7169.231699629227, + y: 1015.042829422663, + z: 20.076078737403744, + }, + }, + { + id: '19', + data: { + label: 'The McGraw-Hill Companies', + x: 4884.110134079429, + y: -4118.490291150682, + z: -1040.7681377353724, + }, + }, + { + id: '20', + data: { + label: 'Media General', + x: 1960.6348256689378, + y: -5134.831473094222, + z: 707.2967060324844, + }, + }, + { + id: '21', + data: { + label: 'Meredith', + x: 4160.079233335319, + y: 4617.760973842083, + z: -888.5546319370588, + }, + }, + { + id: '22', + data: { + label: 'McClatchy', + x: 1920.017630937494, + y: -4274.667831906137, + z: 1971.2519052359028, + }, + }, + { + id: '23', + data: { + label: 'News', + x: 1627.5660378224961, + y: 1678.395415757132, + z: -341.2494836411215, + }, + }, + { + id: '24', + data: { + label: 'New York Times', + x: 4885.473425212562, + y: 912.9819880453399, + z: -1957.5415859921957, + }, + }, + { + id: '25', + data: { + label: 'Reed Elsevier', + x: 1946.2360746650506, + y: 1494.62381480465, + z: -2372.643724953195, + }, + }, + { + id: '26', + data: { + label: 'Seagram', + x: -2500.6484959016107, + y: -2697.478162508449, + z: -2718.802170144776, + }, + }, + { + id: '27', + data: { + label: 'Sinclair Broadcast Group (SBG)', + x: -528.7106271072784, + y: 3910.6663687678747, + z: -1020.7773165631933, + }, + }, + { + id: '28', + data: { + label: 'Sony', + x: 4410.968687188827, + y: 2266.762207531102, + z: -1082.6519423403784, + }, + }, + { + id: '29', + data: { + label: 'Times Mirror', + x: 1469.2306082147875, + y: -103.31385565154929, + z: -234.17188313282472, + }, + }, + { + id: '30', + data: { + label: 'Time Warner', + x: 3431.4828516769035, + y: -269.1260392735055, + z: 1375.5440963008405, + }, + }, + { + id: '31', + data: { + label: 'Tribune', + x: 3220.241133243562, + y: -2254.9855079500408, + z: 2571.3040052716365, + }, + }, + { + id: '32', + data: { + label: 'USA Networks', + x: 3183.8796195939776, + y: -506.66694432502754, + z: -711.6105446771849, + }, + }, + { + id: '33', + data: { + label: 'Viacom', + x: -56.94128251891487, + y: -305.0617983337757, + z: 883.8039338391529, + }, + }, + { + id: '34', + data: { + label: 'Vulcan', + x: 4228.48028068056, + y: 843.0908420685996, + z: 1694.9397817533086, + }, + }, + { + id: '35', + data: { + label: 'Washington Post', + x: 4091.3736244184456, + y: -127.54637783709143, + z: -1129.2402408291211, + }, + }, + { + id: '36', + data: { + label: 'Yahoo!', + x: 4144.890165060668, + y: 2.1678779877502707, + z: -52.09071384787594, + }, + }, + { + id: '37', + data: { + label: 'The Birmingham News (Alabama)', + x: -841.5200725406709, + y: -3466.0899873843427, + z: 567.5803043060134, + }, + }, + { + id: '38', + data: { + label: 'Harrisburg Patriot-News (Pennsylvania)', + x: -176.20637415031743, + y: -3069.165074866621, + z: 875.7324700090874, + }, + }, + { + id: '39', + data: { + label: 'The Huntsville Times (Alabama)', + x: -171.82656606152182, + y: -3654.986880163035, + z: 733.4819831801407, + }, + }, + { + id: '41', + data: { + label: 'Mississippi Press (Pascagoula)', + x: -396.66923250931717, + y: -2993.7238111769157, + z: 291.3683393017375, + }, + }, + { + id: '42', + data: { + label: 'The Oregonian (Portland)', + x: -592.345358324289, + y: -3495.711375683078, + z: 233.5502186492187, + }, + }, + { + id: '43', + data: { + label: 'Plain Dealer (Cleveland)', + x: -633.8810875239077, + y: -3674.3538785406154, + z: 756.1942147099973, + }, + }, + { + id: ' NJ)', + data: { + label: 'The Star-Ledger (Newark', + x: -277.61318683652695, + y: 3115.7063611731037, + z: -3183.4267118970574, + }, + }, + { + id: '45', + data: { + label: 'Staten Island Advance (NY)', + x: -627.4747897004437, + y: -2910.977707672175, + z: 537.0250851249232, + }, + }, + { + id: '46', + data: { + label: 'Syracuse Herald-Journal (NY)', + x: -740.5114833972899, + y: -3000.059505805147, + z: 838.0067471886726, + }, + }, + { + id: '47', + data: { + label: 'The Herald-American (Sunday)', + x: -1062.0183454560117, + y: -2785.2632886412516, + z: 1060.10478131762, + }, + }, + { + id: ' NY)', + data: { + label: 'The Post-Standard (Syracuse', + x: -782.6745499305146, + y: 3285.599492775494, + z: -4450.099960071324, + }, + }, + { + id: '49', + data: { + label: 'The Times-Picayune (New Orleans)', + x: -443.0600328372922, + y: -3000.399019208751, + z: 906.5088710910808, + }, + }, + { + id: '50', + data: { + label: 'The Trenton Times ( New Jersey)', + x: -341.14449242248736, + y: -3725.2260308724167, + z: 517.9619577381488, + }, + }, + { + id: ' MA)', + data: { + label: 'Union-News & Sunday Republican (Springfield', + x: -1423.5541463954078, + y: -4068.161649127106, + z: 1964.8168872109138, + }, + }, + { + id: '52', + data: { + label: 'Sun Newspapers', + x: -767.7819743915954, + y: -3442.602360729721, + z: 873.038546840501, + }, + }, + { + id: '53', + data: { + label: 'Booth Newspapers of Michigan', + x: -665.4451946656552, + y: -3328.909157597038, + z: 1417.0071539363262, + }, + }, + { + id: '54', + data: { + label: 'Ann Arbor News', + x: -1115.5398139452636, + y: -3404.7071412389496, + z: 1444.913849886656, + }, + }, + { + id: '55', + data: { + label: 'Bay City Times', + x: -1068.9345868988687, + y: -3117.187564445118, + z: 1505.51534056905, + }, + }, + { + id: '56', + data: { + label: 'Flint Journal', + x: -603.8361236116335, + y: -3284.354947522035, + z: 1872.755718878249, + }, + }, + { + id: '57', + data: { + label: 'Grand Rapids Press', + x: -586.8074994348488, + y: -3004.0146084810835, + z: 1731.6724903066442, + }, + }, + { + id: '58', + data: { + label: 'Jackson Citizen Patriot', + x: -945.9043047478557, + y: -3629.7106151415496, + z: 1598.4891538288612, + }, + }, + { + id: '59', + data: { + label: 'Kalamazoo Gazette', + x: -838.8990299699618, + y: -3070.60292867761, + z: 1771.1385281097105, + }, + }, + { + id: '60', + data: { + label: 'Mobile Register', + x: -950.4103473248992, + y: -3330.400759434867, + z: 1783.2514955470278, + }, + }, + { + id: '61', + data: { + label: 'Muskegon Chronicle', + x: -660.5566259038674, + y: -3575.316577081676, + z: 1793.4564392380485, + }, + }, + { + id: '62', + data: { + label: 'Saginaw News', + x: -800.8616497422812, + y: -2903.972319521089, + z: 1494.3131403680861, + }, + }, + { + id: '63', + data: { + label: 'American City Business Journals', + x: -858.5980154798584, + y: -3197.386601077036, + z: 717.9858088698767, + }, + }, + { + id: '64', + data: { + label: 'Conde Nast Publications', + x: -1313.2594252378044, + y: -3433.086599412164, + z: 103.32696851546831, + }, + }, + { + id: '65', + data: { + label: 'Allure', + x: -1654.2625057204486, + y: -3202.4557593787254, + z: 356.98760969681155, + }, + }, + { + id: '66', + data: { + label: 'Architectural Digest', + x: -1138.7998899662891, + y: -3274.968127696684, + z: -275.14794935232044, + }, + }, + { + id: '67', + data: { + label: 'Bon Appetit', + x: -1792.173404179369, + y: -3337.553940326552, + z: 162.0227747459714, + }, + }, + { + id: '68', + data: { + label: "Bride's", + x: -1363.4953561292873, + y: -3033.702505702816, + z: -125.64510818494216, + }, + }, + { + id: '69', + data: { + label: 'Conde Nast House & Garden', + x: -1389.8499880287109, + y: -3055.459618410745, + z: 350.22500940802615, + }, + }, + { + id: '70', + data: { + label: "Women's Sports & Fitness", + x: -1628.7127526140875, + y: -3069.590191775128, + z: 92.11673139576632, + }, + }, + { + id: '71', + data: { + label: 'Conde Nast Traveler', + x: -1595.7568501315031, + y: -3461.2145853561924, + z: -280.14394906959785, + }, + }, + { + id: '72', + data: { + label: 'Details', + x: -1061.9178642377553, + y: -4234.192582778085, + z: 354.22133578038415, + }, + }, + { + id: '73', + data: { + label: 'Glamour', + x: -1092.2889350847038, + y: -3797.343788301476, + z: 74.21365883610036, + }, + }, + { + id: '74', + data: { + label: 'Gourmet', + x: -1448.8197893333372, + y: -3334.551311433457, + z: 541.9247401159294, + }, + }, + { + id: '75', + data: { + label: 'GQ', + x: -1076.468427571995, + y: -3605.0832429792395, + z: -242.71430010067272, + }, + }, + { + id: '76', + data: { + label: 'Lucky', + x: -1760.8245296541334, + y: -3471.6675048633315, + z: -86.93823702930445, + }, + }, + { + id: '77', + data: { + label: 'Mademoiselle', + x: -1562.361779634204, + y: -3781.039771466635, + z: 298.19529930756624, + }, + }, + { + id: '78', + data: { + label: 'The New Yorker', + x: -1396.7181301594867, + y: -3635.570636645873, + z: 504.2594370674371, + }, + }, + { + id: '79', + data: { + label: 'Self', + x: -1732.0659661245013, + y: -3677.938068036394, + z: 143.07333441641836, + }, + }, + { + id: '80', + data: { + label: 'Tatler', + x: -1663.0553255863974, + y: -3199.0882766170776, + z: -136.9793428432821, + }, + }, + { + id: '81', + data: { + label: 'The World of Interiors', + x: -1227.9662931853206, + y: -2996.0281854144255, + z: 152.91627039362743, + }, + }, + { + id: '82', + data: { + label: 'Vanity Fair', + x: -1304.7562779543487, + y: -3791.2795810823472, + z: -198.18423016831701, + }, + }, + { + id: '83', + data: { + label: 'Vogue', + x: -1400.0431834568435, + y: -3883.322893810086, + z: 60.36001109878648, + }, + }, + { + id: '84', + data: { + label: 'Wired', + x: -1429.2821167745474, + y: -3187.9034371665975, + z: -351.90143082465056, + }, + }, + { + id: '85', + data: { + label: 'Parade Publications', + x: -1367.2852774643823, + y: -3521.9578712887155, + z: -404.2676870459799, + }, + }, + { + id: '86', + data: { + label: 'Parade', + x: -1469.2047828265165, + y: -3584.5053673073244, + z: -825.4779887959799, + }, + }, + { + id: '87', + data: { + label: 'react', + x: -1676.3777065428617, + y: -3489.766912804921, + z: 421.7122112502746, + }, + }, + { + id: '88', + data: { + label: 'Fairchild Publications', + x: -651.5472638907391, + y: -4097.832144629545, + z: 470.63734355469285, + }, + }, + { + id: '89', + data: { + label: 'W', + x: -818.7599099756353, + y: -4416.087475479982, + z: 177.29775455968868, + }, + }, + { + id: '90', + data: { + label: 'Jane', + x: -510.21635704592353, + y: -4391.930863451244, + z: 145.64344115812318, + }, + }, + { + id: '91', + data: { + label: "Women's Wear Daily", + x: -868.8724684169313, + y: -4496.66118886582, + z: 454.4769731064877, + }, + }, + { + id: '92', + data: { + label: 'Daily News Record', + x: -485.3121297682472, + y: -4062.0110500851465, + z: 65.6003209678763, + }, + }, + { + id: '93', + data: { + label: 'Footwear News', + x: -259.10367669541165, + y: -4251.073853405481, + z: 355.7239829239148, + }, + }, + { + id: '94', + data: { + label: 'Home Furnishings News', + x: -971.1881752342499, + y: -4318.800543880956, + z: 708.348569179277, + }, + }, + { + id: '95', + data: { + label: 'HighPoints', + x: -1040.1040803447358, + y: -3985.272388869523, + z: 644.2131352955504, + }, + }, + { + id: '96', + data: { + label: 'Executive Technology', + x: -815.6657712491036, + y: -4108.244643544183, + z: 62.571044442302025, + }, + }, + { + id: '97', + data: { + label: "Children's Business", + x: -835.7749121573457, + y: -4085.1875601639945, + z: 898.1848200033132, + }, + }, + { + id: '98', + data: { + label: 'Supermarket News', + x: -279.0784896245423, + y: -4242.137638442372, + z: 662.4997683509274, + }, + }, + { + id: '99', + data: { + label: 'Brand Marketing', + x: -618.5127771748346, + y: -4409.4139524161565, + z: 783.6878032695951, + }, + }, + { + id: '100', + data: { + label: 'Salon News', + x: -532.0882936945026, + y: -4528.11844636955, + z: 472.6248937523003, + }, + }, + { + id: '101', + data: { + label: '', + x: -765.5926609878225, + y: 2619.439704826414, + z: 4761.209077163787, + }, + }, + { + id: '102', + data: { + label: 'NewsFlash', + x: -605.9869182175632, + y: -3252.04092910724, + z: 996.3786899687519, + }, + }, + { + id: '103', + data: { + label: 'Epicurious.com', + x: -73.0917349038755, + y: -3287.1699961295526, + z: 341.8502920373856, + }, + }, + { + id: '104', + data: { + label: 'Style.com', + x: -325.0800037165821, + y: -3359.708379117403, + z: 1010.3086339970627, + }, + }, + { + id: '107', + data: { + label: 'WFAA TV- Dallas/Fort Worth (ABC)', + x: -1629.4685962051333, + y: 1156.413313266952, + z: -2521.226531573854, + }, + }, + { + id: '108', + data: { + label: 'KHOU TV - Houston (CBS)', + x: -1854.9565047816566, + y: 1006.6115461146112, + z: -2342.8142811403545, + }, + }, + { + id: '109', + data: { + label: 'KING TV - Seattle (NBC)', + x: -1357.8542321797042, + y: 1102.9440654224452, + z: -1713.2465053691083, + }, + }, + { + id: '110', + data: { + label: 'KONG TV - Seattle (Ind)', + x: -1686.380197595338, + y: 928.3455932861542, + z: -2533.4150016625595, + }, + }, + { + id: '111', + data: { + label: 'KXTV - Sacramento (ABC)', + x: -1769.1941818884404, + y: 656.810550987066, + z: -2024.7445686907156, + }, + }, + { + id: '112', + data: { + label: 'KMOV TV - St. Louis (CBS)', + x: -1246.2912076400728, + y: 446.31431746408725, + z: -1009.9661146041879, + }, + }, + { + id: '113', + data: { + label: 'KGW TV - Portland (NBC)', + x: -1424.301175785584, + y: 1413.0801553975627, + z: -2324.8071968647596, + }, + }, + { + id: '114', + data: { + label: 'WCNC TV - Charlotte (NBC)', + x: -1149.0921156702836, + y: 1365.7128045486634, + z: -2274.128609003353, + }, + }, + { + id: '115', + data: { + label: 'KENS TV - San Antonio (CBS)', + x: -1721.5416304376265, + y: 1322.2745392800964, + z: -2088.670629969802, + }, + }, + { + id: '116', + data: { + label: 'WVEC TV - Hampton/Norfolk (ABC)', + x: -1273.1405967831256, + y: 1428.2147840169696, + z: -2117.18522205431, + }, + }, + { + id: '117', + data: { + label: 'WWL TV - New Orleans (CBS)', + x: -1332.564824412725, + y: 1298.9154517811317, + z: -2487.047693757933, + }, + }, + { + id: '118', + data: { + label: 'KASA TV - Albuquerque (FOX)', + x: -1826.2506212378864, + y: 781.3289554124264, + z: -2312.566424157615, + }, + }, + { + id: '119', + data: { + label: 'WHAS TV - Louisville (ABC)', + x: -1355.351721903278, + y: 1333.0508560384799, + z: -1850.8432351556467, + }, + }, + { + id: '120', + data: { + label: 'KOTV - Tulsa (CBS)', + x: -1574.6887701518206, + y: 712.9563647647141, + z: -2543.722305629252, + }, + }, + { + id: '121', + data: { + label: 'KHNL TV - Honolulu (NBC)', + x: -1087.537104271258, + y: 1251.6647849772116, + z: -1972.7862538709694, + }, + }, + { + id: '122', + data: { + label: 'KFVE TV - Honolulu (UPN)', + x: -1032.0155631802052, + y: 872.9465760955248, + z: -2415.786620461428, + }, + }, + { + id: '123', + data: { + label: 'KREM TV - Spokane (CBS)', + x: -1712.137664852408, + y: 571.0283269591705, + z: -2247.0655220973927, + }, + }, + { + id: '124', + data: { + label: 'KSKN TV - Spokane (UPN)', + x: -838.7831229806031, + y: 3991.0890137669794, + z: 3114.0032168734247, + }, + }, + { + id: '125', + data: { + label: 'KMSB TV - Tucson (FOX)', + x: -1512.6930028519573, + y: 1422.7187958694967, + z: -2042.5625650961508, + }, + }, + { + id: '126', + data: { + label: 'KTTU TV - Tucson (UPN)', + x: 1422.5955677164932, + y: 4905.203923432296, + z: 3824.6425422778884, + }, + }, + { + id: '127', + data: { + label: 'KTVB TV - Boise (NBC)', + x: -1864.3923589071062, + y: 993.6343644649002, + z: -2012.2436644103993, + }, + }, + { + id: '128', + data: { + label: 'KVUE TV - Austin (ABC)', + x: -1302.943505330588, + y: 631.0790529022958, + z: -2486.633857480334, + }, + }, + { + id: '129', + data: { + label: 'Belo Productions', + x: -1419.0831215223736, + y: 1111.5933886478215, + z: -2769.360912067814, + }, + }, + { + id: '130', + data: { + label: 'Northwest Cable News', + x: -1317.6292298014316, + y: 1126.723632437619, + z: -3225.660659813754, + }, + }, + { + id: '131', + data: { + label: 'Texas Cable News', + x: -1471.2227019726765, + y: 1399.9148649584629, + z: -3126.019506015894, + }, + }, + { + id: '132', + data: { + label: 'The Hemet News (California)', + x: -1672.93557330526, + y: 1174.7494399505422, + z: -1849.4701759439097, + }, + }, + { + id: '133', + data: { + label: 'The Dallas Morning News', + x: -1506.7355108132197, + y: 513.9995839820645, + z: -2331.2664429982055, + }, + }, + { + id: '134', + data: { + label: 'Providence Journal-Bulletin', + x: -1633.9438330212583, + y: 1338.0120040458798, + z: -2357.593222419128, + }, + }, + { + id: ' CA)', + data: { + label: 'The Press-Enterprise (Riverside', + x: -846.5579348194798, + y: -4757.835810700667, + z: -1451.961366192697, + }, + }, + { + id: ' KY)', + data: { + label: 'Messenger-Inquirer (Owensboro', + x: 5715.848547086559, + y: -4133.871094328745, + z: 1317.1833101723078, + }, + }, + { + id: ' TX)', + data: { + label: 'The Eagle (Bryan-College Station', + x: -277.8901860127417, + y: -5016.281899811187, + z: 774.3399008134486, + }, + }, + { + id: '139', + data: { + label: 'Denton Publishing Company (greater Dallas area)', + x: -1138.9817569209824, + y: 1221.652672795746, + z: -2694.839163171718, + }, + }, + { + id: '140', + data: { + label: 'Denton Record-Chronicle', + x: -1377.4368293070731, + y: 865.4181369974049, + z: -2625.9351525678717, + }, + }, + { + id: '141', + data: { + label: 'Lewisville News', + x: -979.7117869855089, + y: 1315.162293562414, + z: -3156.4020303559905, + }, + }, + { + id: '142', + data: { + label: 'Grapevine Sun', + x: -1015.0926072156367, + y: 1562.4354287849653, + z: -3002.9331941564888, + }, + }, + { + id: '143', + data: { + label: 'Dallas Mavericks', + x: -1807.9402995275354, + y: 1194.9873237289914, + z: -2249.7435940217224, + }, + }, + { + id: '144', + data: { + label: '', + x: 320.1116566299538, + y: -3790.1836115339356, + z: 3689.211072332615, + }, + }, + { + id: '145', + data: { + label: 'CompuServe Interactive Services', + x: 3502.685220232997, + y: 933.7399742619098, + z: 1633.7652903673984, + }, + }, + { + id: '146', + data: { + label: 'AOL Instant Messenger', + x: 3476.9857200138954, + y: 1131.5934105586489, + z: 1086.4874383532022, + }, + }, + { + id: '147', + data: { + label: 'AOL.com portal', + x: 2880.676219178235, + y: 1129.3038765074934, + z: 1497.0836719510646, + }, + }, + { + id: '148', + data: { + label: 'Digital City', + x: 2878.663266628085, + y: -455.01278267763945, + z: 1001.6706444644075, + }, + }, + { + id: '149', + data: { + label: 'AOL Europe', + x: 2545.283851923117, + y: 1182.8774270042315, + z: 935.3169256347221, + }, + }, + { + id: '150', + data: { + label: 'ICQ', + x: 3990.3092273701573, + y: 1137.308287540403, + z: 1318.3672972019285, + }, + }, + { + id: '151', + data: { + label: 'The Knot', + x: 2510.092924950805, + y: 166.82479766385904, + z: 1357.2940885424969, + }, + }, + { + id: '152', + data: { + label: 'MapQuest.com', + x: 2290.1520912083424, + y: 657.3622119293452, + z: 2868.7693385729935, + }, + }, + { + id: '153', + data: { + label: 'Spinner.com', + x: 3297.479004097076, + y: 1195.0418161784746, + z: 1473.336114986561, + }, + }, + { + id: '154', + data: { + label: 'DrKoop.com', + x: 3291.5772079587687, + y: 1082.8785412600696, + z: 2125.27815057644, + }, + }, + { + id: '155', + data: { + label: 'Nullsoft', + x: 2803.3808041025495, + y: 948.4972001334755, + z: 1569.2321140404404, + }, + }, + { + id: '156', + data: { + label: 'Netscape Communications', + x: 3608.5218920837765, + y: 960.441440443768, + z: 1168.4428638656357, + }, + }, + { + id: '157', + data: { + label: 'Netscape Netcenter portal', + x: 3526.021512183794, + y: 1094.8257659212013, + z: 1433.5881089240304, + }, + }, + { + id: '158', + data: { + label: 'AOL MovieFone', + x: 2972.9287809624234, + y: 1210.242889640229, + z: 1258.5304726302443, + }, + }, + { + id: '159', + data: { + label: 'iAmaze', + x: 3341.8701808949777, + y: 1030.494957942583, + z: 898.9120814200297, + }, + }, + { + id: '160', + data: { + label: 'Quack.com', + x: 3118.575768762831, + y: 1149.089495407083, + z: 976.1029245921252, + }, + }, + { + id: '163', + data: { + label: 'AT&T Broadband', + x: 1095.683101009904, + y: -88.1792033291778, + z: 1466.1399797571705, + }, + }, + { + id: '164', + data: { + label: 'AT&T Cable Services', + x: 1808.0788576388345, + y: 286.66482156931846, + z: 1313.959070829539, + }, + }, + { + id: '165', + data: { + label: 'AT&T Digital Cable', + x: -1456.3492988293917, + y: 1685.8994241561418, + z: -4067.060695505487, + }, + }, + { + id: '166', + data: { + label: 'Excite@Home', + x: 1204.783386436301, + y: -186.14257760367195, + z: 953.7489756744615, + }, + }, + { + id: '167', + data: { + label: 'Net2Phone', + x: 3070.18545828003, + y: -190.8139612131227, + z: 1030.676518400355, + }, + }, + { + id: '168', + data: { + label: 'Kearns-Tribune', + x: -1382.092776025742, + y: 645.7729190638458, + z: 3377.5644798167878, + }, + }, + { + id: '169', + data: { + label: 'Salt Lake Tribune', + x: -1244.7960895112944, + y: 663.141640724986, + z: 3513.8656299242825, + }, + }, + { + id: '170', + data: { + label: 'Liberty Media', + x: 2069.01436752419, + y: -867.7613274692432, + z: 376.8286800862021, + }, + }, + { + id: '171', + data: { + label: 'BET Holdings II', + x: -414.90795663290385, + y: 451.6942071208216, + z: 349.9505949267694, + }, + }, + { + id: '172', + data: { + label: 'BET Cable Network', + x: 5941.431619458244, + y: -1317.5111613918202, + z: -4230.879938862809, + }, + }, + { + id: '173', + data: { + label: 'BET Action Pay-Per-View', + x: -732.0570506369806, + y: 880.5096329153824, + z: 259.2905740325053, + }, + }, + { + id: '174', + data: { + label: 'BET on Jazz', + x: -859.470522273803, + y: 665.8043812843426, + z: 405.01122429642993, + }, + }, + { + id: '175', + data: { + label: 'Canales', + x: 1671.8612352670891, + y: -845.1531295500582, + z: 676.4473726795701, + }, + }, + { + id: '176', + data: { + label: 'Court TV', + x: 2764.8584405811557, + y: -585.5300258397716, + z: 854.8596947068233, + }, + }, + { + id: '177', + data: { + label: 'Discovery Communications', + x: 953.7767761505304, + y: -2501.7325422907193, + z: 146.72955206716279, + }, + }, + { + id: '178', + data: { + label: 'Discovery Channel', + x: 1547.7309472971483, + y: -3310.587445737477, + z: -402.8325179855592, + }, + }, + { + id: '179', + data: { + label: 'The Learning Channel', + x: 1915.5515313229905, + y: -3332.787386948398, + z: -177.22928291363473, + }, + }, + { + id: '180', + data: { + label: 'Animal Planet', + x: 1689.0912497657762, + y: -3528.0742016601694, + z: -168.19907037556368, + }, + }, + { + id: '181', + data: { + label: 'Discovery People', + x: 1252.1382152178458, + y: -3395.9982285572983, + z: -185.7118064571719, + }, + }, + { + id: '182', + data: { + label: 'Travel Channel', + x: 2399.127554980158, + y: -2801.6976025716804, + z: -386.36567845463657, + }, + }, + { + id: '183', + data: { + label: 'Discovery Digital Services', + x: 537.6242650453571, + y: -2569.6707705093877, + z: 314.665565794212, + }, + }, + { + id: '184', + data: { + label: 'Discovery Civilization', + x: 1416.5495453098897, + y: -3552.5854346220203, + z: -78.80196530958943, + }, + }, + { + id: '185', + data: { + label: 'Discovery Health', + x: 1593.6922596193576, + y: -3382.1280433989295, + z: 356.24935092458134, + }, + }, + { + id: '186', + data: { + label: 'Discovery Home & Leisure', + x: 1769.8069200567081, + y: -3509.866103953796, + z: 105.71877969486629, + }, + }, + { + id: '187', + data: { + label: 'Discovery Kids', + x: 1284.0320921404118, + y: -3252.378805008272, + z: 328.02176753940944, + }, + }, + { + id: '188', + data: { + label: 'Discovery Wings', + x: 1143.1369786231387, + y: -3273.4600526209674, + z: 68.11644153687989, + }, + }, + { + id: '189', + data: { + label: 'Discovery en Espanol', + x: 1364.0891828535841, + y: -3502.376482509161, + z: 177.3455891016752, + }, + }, + { + id: '190', + data: { + label: 'Animal Planet Asia', + x: 443.6533070243597, + y: -2699.9281148337454, + z: -778.6152000772332, + }, + }, + { + id: '191', + data: { + label: 'Animal Planet Europe', + x: 542.3676996680323, + y: -3075.6946472645577, + z: -516.8612317654959, + }, + }, + { + id: '192', + data: { + label: 'Animal Planet Latin America', + x: 642.7364447226954, + y: -2657.526815699417, + z: -1011.7925864364847, + }, + }, + { + id: '193', + data: { + label: 'Discovery Asia', + x: 788.0489474963347, + y: -3037.46222994576, + z: -1079.9622938762764, + }, + }, + { + id: '194', + data: { + label: 'Discovery India', + x: 896.0204673053463, + y: -3282.268486560691, + z: -731.1235983172878, + }, + }, + { + id: '195', + data: { + label: 'Discovery Japan', + x: 1453.4122603958624, + y: -1870.083793786216, + z: -146.56870173993184, + }, + }, + { + id: '196', + data: { + label: 'Discovery Europe', + x: 593.0230276382999, + y: -2476.312025468598, + z: -706.8334440763106, + }, + }, + { + id: '197', + data: { + label: 'Discovery Turkey', + x: 613.4729084967996, + y: -2647.686494466754, + z: -360.34212880329665, + }, + }, + { + id: '198', + data: { + label: 'Discovery Germany', + x: 1247.8569072240696, + y: -2880.6313889461203, + z: -926.9589723303661, + }, + }, + { + id: '199', + data: { + label: 'Discovery Italy/Africa', + x: 1030.6584528324586, + y: -2487.0969362280753, + z: -920.5059524638781, + }, + }, + { + id: '200', + data: { + label: 'Discovery Latin America', + x: 863.7861640264106, + y: -3237.657216224594, + z: -476.3488076122303, + }, + }, + { + id: '201', + data: { + label: 'Discovery Latin America Kids Network', + x: 640.5335067199463, + y: -3217.3674466772773, + z: -708.488314404917, + }, + }, + { + id: '202', + data: { + label: 'People & Arts (Latin America)', + x: 456.3174703775445, + y: -2985.749791083327, + z: -767.2074768869528, + }, + }, + { + id: '203', + data: { + label: 'Discovery Channel Online', + x: 539.1221121099445, + y: -2627.787879983616, + z: 39.96753453311658, + }, + }, + { + id: '204', + data: { + label: 'Encore Media Group', + x: 748.1291505360147, + y: -4904.707681159929, + z: -255.73910220505596, + }, + }, + { + id: '205', + data: { + label: 'Encore', + x: 1354.4920821716205, + y: -1733.041374861, + z: 1838.413843098014, + }, + }, + { + id: '206', + data: { + label: 'MOVIEplex', + x: 1812.3364235353765, + y: -2091.354639398094, + z: 1847.350456126969, + }, + }, + { + id: '207', + data: { + label: 'Thematic Multiplex', + x: 6702.8283135357115, + y: 3333.491655694926, + z: -1866.974635461517, + }, + }, + { + id: '208', + data: { + label: 'STARZ!', + x: 1183.3392553295644, + y: -1879.098089909171, + z: 1579.616742464582, + }, + }, + { + id: '209', + data: { + label: 'STARZ! Multiplex', + x: 3035.424874165391, + y: -2221.909616303378, + z: 5337.672743225467, + }, + }, + { + id: '210', + data: { + label: 'Love Stories', + x: 1697.058114761919, + y: -2311.3050592612663, + z: 1614.557729688073, + }, + }, + { + id: '211', + data: { + label: 'Westerns', + x: 1391.5980922291187, + y: -2150.030392815387, + z: 1783.0187885999924, + }, + }, + { + id: '212', + data: { + label: 'Mystery', + x: 1520.7347660263424, + y: -2322.0634163875793, + z: 1436.0300031730599, + }, + }, + { + id: '213', + data: { + label: 'Action', + x: 1436.0376206190233, + y: -1973.6559762388852, + z: 1906.1419805443043, + }, + }, + { + id: '214', + data: { + label: 'True Stories', + x: 1374.057481581482, + y: -2264.2287297473417, + z: 1597.5865857023744, + }, + }, + { + id: '215', + data: { + label: "WAM! America's Kidz Network", + x: 1249.4346755817703, + y: -2121.233462737568, + z: 1399.4755681837605, + }, + }, + { + id: '216', + data: { + label: 'STARZ! Theater', + x: 1613.8395525211686, + y: -2218.0596176099884, + z: 1829.8975015937144, + }, + }, + { + id: '217', + data: { + label: 'BET Movies/STARZ!', + x: 3957.13832077611, + y: 3145.3708690419107, + z: 4677.344564745017, + }, + }, + { + id: '218', + data: { + label: 'STARZ! Family', + x: 1678.5388395150799, + y: -1881.888821880828, + z: 1948.9898713533198, + }, + }, + { + id: '219', + data: { + label: 'STARZ! Cinema', + x: -2047.1220426211114, + y: -2142.735912462152, + z: 3661.130264841516, + }, + }, + { + id: '220', + data: { + label: 'E! Entertainment Television', + x: 1275.6705669800838, + y: 311.46368099575585, + z: 1618.461275985994, + }, + }, + { + id: '221', + data: { + label: 'Style', + x: 2397.4582537580027, + y: -1000.0739930796522, + z: 718.5666415976428, + }, + }, + { + id: '222', + data: { + label: 'Flextech p.l.c.', + x: 1238.5847904258278, + y: -1519.9605443276475, + z: 199.85140919206762, + }, + }, + { + id: '223', + data: { + label: 'Bravo', + x: 2937.8764041956424, + y: 6241.62656547662, + z: -156.49750381342176, + }, + }, + { + id: '224', + data: { + label: 'Challenge TV', + x: 1868.9218997295504, + y: -929.0788040305193, + z: 819.5769432306524, + }, + }, + { + id: '225', + data: { + label: 'HSN Direct', + x: 2009.9684426073807, + y: -1272.4421351340516, + z: -10.193415646215342, + }, + }, + { + id: '226', + data: { + label: 'KinderNet', + x: 2327.566222375269, + y: -1300.368408914919, + z: 140.02872043183842, + }, + }, + { + id: '227', + data: { + label: 'Living', + x: 2152.334609675936, + y: -1380.0736753725844, + z: 195.29206192827746, + }, + }, + { + id: '228', + data: { + label: 'SMG', + x: 2397.2208364510275, + y: -1216.7433375316634, + z: 551.5873047333799, + }, + }, + { + id: '229', + data: { + label: 'Trouble', + x: 2235.904720200134, + y: -1185.4769346383212, + z: -62.35419791919136, + }, + }, + { + id: '230', + data: { + label: 'TV Travel Shop', + x: 2379.9749029755203, + y: -821.5606513576715, + z: -27.99916214876884, + }, + }, + { + id: '231', + data: { + label: 'UK Arena (UKTV)', + x: 2534.116500032612, + y: -803.4336629369141, + z: 104.97854210505683, + }, + }, + { + id: '232', + data: { + label: 'UK Gold (UKTV)', + x: 1580.0581570208433, + y: -1131.1869086508566, + z: 241.4987187004335, + }, + }, + { + id: '233', + data: { + label: 'UK Gold Classics (UKTV)', + x: 2028.3352467213383, + y: -1348.6111078025017, + z: 487.8493265896404, + }, + }, + { + id: '234', + data: { + label: 'UK Horizons (UKTV)', + x: 1864.1029337951907, + y: -1148.1368197804745, + z: 711.7262993618491, + }, + }, + { + id: '235', + data: { + label: 'UK Style (UKTV)', + x: 1589.1637219418155, + y: -1059.1602749321307, + z: 560.212255486148, + }, + }, + { + id: '236', + data: { + label: 'UK Play (UKTV)', + x: 2455.4863007598174, + y: -1240.1399921814632, + z: 289.83586223210546, + }, + }, + { + id: '237', + data: { + label: 'Fox Kids Worldwide', + x: 1879.128653975563, + y: 412.7751496867803, + z: -164.06258135186965, + }, + }, + { + id: '238', + data: { + label: 'International Channel', + x: 1701.8065164098145, + y: -1233.5506281657374, + z: 615.2994244096578, + }, + }, + { + id: '239', + data: { + label: 'Jupiter Programming', + x: 1739.3777549910785, + y: -624.6529849065961, + z: 116.51183072088376, + }, + }, + { + id: '240', + data: { + label: 'Cable Soft Network', + x: 2502.0679064655496, + y: -777.2692663304152, + z: 534.5199462135117, + }, + }, + { + id: '241', + data: { + label: 'CNBC Asia', + x: 2391.348326542036, + y: -605.5769311949941, + z: 67.78241429315605, + }, + }, + { + id: '242', + data: { + label: 'Golf Network', + x: 1847.1058010372842, + y: -1365.1848610878774, + z: 364.87868391626444, + }, + }, + { + id: '243', + data: { + label: '', + x: 5479.788181018433, + y: 1268.8485449430348, + z: -4537.262379103691, + }, + }, + { + id: '244', + data: { + label: 'J-Sports', + x: 2003.387895095893, + y: -451.0007822863153, + z: 163.38688142207707, + }, + }, + { + id: '245', + data: { + label: 'The Shop Channel', + x: 2277.311283407119, + y: -432.32566132941196, + z: 233.7843338724489, + }, + }, + { + id: '246', + data: { + label: 'MacNeil/Lehrer Productions', + x: 2213.9941955694, + y: -972.7507138941496, + z: -105.21202737934418, + }, + }, + { + id: '247', + data: { + label: 'MultiThematiques', + x: 2059.264433074942, + y: -2069.871393790295, + z: -609.2483068489998, + }, + }, + { + id: '248', + data: { + label: 'Canal Jimmy (France)', + x: 1974.7239434606738, + y: -2546.8023950610796, + z: -495.06459191097076, + }, + }, + { + id: '249', + data: { + label: 'Canal Jimmy (Italy)', + x: 1927.0255081031496, + y: -1922.519818596307, + z: -1018.7748802242064, + }, + }, + { + id: '250', + data: { + label: 'Cine Cinemas (France)', + x: 1748.721210147072, + y: -2450.029462671439, + z: -576.4444069283646, + }, + }, + { + id: '251', + data: { + label: 'Cine Cinemas (Italy)', + x: 2197.6123851282373, + y: -1940.2647786754496, + z: -1034.5278945128312, + }, + }, + { + id: '252', + data: { + label: 'Cine Classics (France)', + x: 1877.2248389544689, + y: -2198.7896997748358, + z: -1075.753793802083, + }, + }, + { + id: '253', + data: { + label: 'Cine Classics (Spain)', + x: 1582.8345936505807, + y: -864.0366502914735, + z: 160.37475139660577, + }, + }, + { + id: '254', + data: { + label: 'Cine Classics (Italy)', + x: 2391.181137816847, + y: -2126.3689740531418, + z: -955.6385255826897, + }, + }, + { + id: '255', + data: { + label: 'Forum Planete (France)', + x: 2190.5361013530955, + y: -2224.0722048637003, + z: -1067.4428441116686, + }, + }, + { + id: '256', + data: { + label: 'Planete (France)', + x: 1642.713574076478, + y: -2093.568469819888, + z: -854.1091460295373, + }, + }, + { + id: '257', + data: { + label: 'Planete (Poland)', + x: 1677.3461548814576, + y: -2323.0278377915433, + z: -776.6382832994956, + }, + }, + { + id: '258', + data: { + label: 'Planete (Germany)', + x: 2134.201478301311, + y: -2558.3859317148886, + z: -710.8248510536014, + }, + }, + { + id: '259', + data: { + label: 'Planete (Italy)', + x: 2041.0538651764589, + y: -2391.7730782047142, + z: -1003.0307459434579, + }, + }, + { + id: '260', + data: { + label: 'Seasons (France)', + x: 2458.9868629622915, + y: -2297.136119016458, + z: -792.9622860430393, + }, + }, + { + id: '261', + data: { + label: 'Seasons (Spain)', + x: 2362.349482526682, + y: -2466.213473490148, + z: -631.3296967882585, + }, + }, + { + id: '262', + data: { + label: 'Seasons (Germany)', + x: 1888.3185612829923, + y: -2475.6773982193754, + z: -855.0965874870583, + }, + }, + { + id: '263', + data: { + label: 'Seasons (Italy)', + x: 2267.8117373536857, + y: -2454.654821361082, + z: -870.6407197703462, + }, + }, + { + id: '264', + data: { + label: 'Odyssey', + x: 2253.0774087991613, + y: -1363.8224473798466, + z: 465.8434374275212, + }, + }, + { + id: '265', + data: { + label: 'Pramer', + x: 2050.088635063646, + y: -1786.2600291134117, + z: -0.6729874021596491, + }, + }, + { + id: '266', + data: { + label: 'America Sports', + x: 2285.419824832538, + y: -1891.322906110473, + z: -397.9421983254425, + }, + }, + { + id: '267', + data: { + label: 'Big Channel', + x: 2202.104964843059, + y: -2253.966957954645, + z: -64.37049066309663, + }, + }, + { + id: '268', + data: { + label: 'Canal a', + x: 2358.5987299559138, + y: -2105.282845850028, + z: -207.46092951432308, + }, + }, + { + id: '269', + data: { + label: 'Cineplaneta', + x: 1710.8295862896175, + y: -2151.228760447141, + z: -52.42820188609423, + }, + }, + { + id: '270', + data: { + label: 'CV SAT', + x: 2028.3983711886556, + y: -2196.170678483274, + z: -259.7096982290498, + }, + }, + { + id: '271', + data: { + label: 'Ideas', + x: 1917.7750849894016, + y: -2250.670407937821, + z: -60.312329925417, + }, + }, + { + id: '272', + data: { + label: 'Magic Kids', + x: 1920.3714257379133, + y: -1859.368566721363, + z: -435.3412359269763, + }, + }, + { + id: '273', + data: { + label: 'P&E', + x: 1727.6371312057233, + y: -2059.3903669319047, + z: -261.31050533741325, + }, + }, + { + id: '274', + data: { + label: 'The Premium Movie Partnership', + x: 1932.7209388559652, + y: -1370.398746050205, + z: 166.29748482606297, + }, + }, + { + id: '275', + data: { + label: 'QVC', + x: 1858.9785430952315, + y: -507.8373154163766, + z: 1344.569253901834, + }, + }, + { + id: '276', + data: { + label: 'QVC Network', + x: 1660.089891968965, + y: -747.891829810928, + z: 1784.2686522481183, + }, + }, + { + id: '277', + data: { + label: 'QVC The Shopping Network (UK)', + x: 1750.137135910929, + y: -918.3537800918957, + z: 1626.2187379133306, + }, + }, + { + id: '278', + data: { + label: 'QVC Germany', + x: 1483.3897317408628, + y: -813.9013726634245, + z: 1566.9472614103004, + }, + }, + { + id: '279', + data: { + label: 'iQVC', + x: 1923.8330132929889, + y: -738.8256683561693, + z: 1827.9793387630991, + }, + }, + { + id: '280', + data: { + label: 'Telemundo Network', + x: 2419.936481216254, + y: -1084.0142921059412, + z: -3.5475306186155944, + }, + }, + { + id: '281', + data: { + label: 'Telemundo Station Group', + x: 2204.1258256408723, + y: -1260.0394796620583, + z: 704.7382448855269, + }, + }, + { + id: '282', + data: { + label: 'Torneos y Competencias', + x: 2113.657439311221, + y: -1521.1416990305563, + z: 546.3282949849618, + }, + }, + { + id: '283', + data: { + label: '', + x: -4213.333448515652, + y: -86.47967164166288, + z: 92.70197183241558, + }, + }, + { + id: '284', + data: { + label: 'TV Guide Channel', + x: -1230.4649651725242, + y: -1690.7418863226135, + z: 4824.392738728462, + }, + }, + { + id: '285', + data: { + label: 'TV Guide Interactive', + x: 889.825034017345, + y: -691.0021503214786, + z: 353.9700905156469, + }, + }, + { + id: '286', + data: { + label: 'TV Guide Sneak Prevue', + x: 1637.7026578040648, + y: -713.8625394359877, + z: 421.5824096960944, + }, + }, + { + id: '287', + data: { + label: 'UVTV', + x: 986.9253865610775, + y: -810.3050492751811, + z: 699.4314718415274, + }, + }, + { + id: '288', + data: { + label: 'Superstar', + x: 2079.733220859738, + y: -827.054550554724, + z: -168.50640345685161, + }, + }, + { + id: '289', + data: { + label: 'TV Guide Magazine', + x: 1588.6832872362409, + y: 113.84417142169997, + z: 548.2160633330543, + }, + }, + { + id: '290', + data: { + label: 'TV Guide Online', + x: 1006.8340396288479, + y: -836.8988323901837, + z: 175.97078401093736, + }, + }, + { + id: '291', + data: { + label: 'The Television Games Network', + x: 2588.8141584208697, + y: -828.919899134388, + z: 309.2198716390315, + }, + }, + { + id: '292', + data: { + label: '', + x: 3652.75178792568, + y: 4082.588890485604, + z: -3809.4060444329857, + }, + }, + { + id: '293', + data: { + label: '', + x: -2619.8478354326194, + y: -3074.8929742614405, + z: 1617.5499272372413, + }, + }, + { + id: '294', + data: { + label: "America's Store", + x: -923.4992710394446, + y: 4427.826867240265, + z: 1022.6003989132422, + }, + }, + { + id: '295', + data: { + label: 'ISN', + x: 3773.3838033229135, + y: -3967.242493256907, + z: -2780.1189783562904, + }, + }, + { + id: '296', + data: { + label: '', + x: 325.48448023431587, + y: 1471.3743593404652, + z: -4649.991473326872, + }, + }, + { + id: '297', + data: { + label: 'HOT (Germany)', + x: 2462.6439580971005, + y: -553.5846770495053, + z: 348.39137227997435, + }, + }, + { + id: '298', + data: { + label: 'Shop Channel (Japan)', + x: 3418.723997167072, + y: -110.49395526273076, + z: -907.9598573152392, + }, + }, + { + id: '299', + data: { + label: 'Sci-Fi Channel', + x: 3597.0972058956936, + y: -1551.9619688427229, + z: -444.90788972106435, + }, + }, + { + id: '300', + data: { + label: 'USA Network', + x: 3315.9944666163683, + y: -469.31113989975387, + z: -1156.965745759269, + }, + }, + { + id: '301', + data: { + label: 'USA Broadcasting', + x: 3955.8604122053807, + y: -1094.704762445882, + z: -586.5663728517719, + }, + }, + { + id: '302', + data: { + label: '', + x: -653.7160549392848, + y: -3911.1215034582506, + z: -3202.3890888046403, + }, + }, + { + id: '303', + data: { + label: 'Studios USA', + x: 3564.751554186318, + y: -776.2390024026869, + z: -566.6883440110677, + }, + }, + { + id: '304', + data: { + label: 'USA Films', + x: 4078.1800981237175, + y: -1138.7330703996247, + z: -300.20166171133, + }, + }, + { + id: '305', + data: { + label: 'Hotel Reservations Network', + x: 3229.6262788958234, + y: -1148.6574357561267, + z: -1201.3955301843241, + }, + }, + { + id: '306', + data: { + label: '', + x: 2208.311309215483, + y: 2141.580897966126, + z: -3987.2200376381247, + }, + }, + { + id: '307', + data: { + label: 'New England Cable News', + x: 815.8993184077644, + y: -24.243270279516796, + z: -343.7205465183076, + }, + }, + { + id: '308', + data: { + label: 'Time Warner Entertainment', + x: 2535.4583081818237, + y: -1080.1696833448043, + z: 159.4142043158023, + }, + }, + { + id: '309', + data: { + label: 'Academic Systems', + x: 2120.685824361898, + y: -789.0308540330492, + z: 1179.09278619873, + }, + }, + { + id: '310', + data: { + label: 'ACTV', + x: 2914.645690453057, + y: 56.743524548739074, + z: 353.54888459566456, + }, + }, + { + id: '311', + data: { + label: 'Digital Health Group', + x: 1974.2515188463276, + y: 293.23549495576685, + z: 1421.6696573488632, + }, + }, + { + id: '312', + data: { + label: 'DMX', + x: 1945.8876111904822, + y: -165.29777540444564, + z: 413.60193822003714, + }, + }, + { + id: '313', + data: { + label: 'drugstore.com', + x: 987.9496746950819, + y: 312.7782666558587, + z: 39.953055608789796, + }, + }, + { + id: '314', + data: { + label: 'HomeGrocer.com', + x: 2000.9951838830532, + y: -352.23289820661245, + z: 1495.358812107532, + }, + }, + { + id: '315', + data: { + label: 'iBeam Broadcasting', + x: 3039.4341721185324, + y: -603.6742586643253, + z: 541.951385339626, + }, + }, + { + id: '316', + data: { + label: 'Interactive Pictures', + x: 1869.6773570038358, + y: -372.05486972170735, + z: 1810.79686337153, + }, + }, + { + id: '317', + data: { + label: 'iVillage', + x: 780.8781687599131, + y: -354.0552648763617, + z: -780.921728789297, + }, + }, + { + id: ' L.P.', + data: { + label: 'KPCB Java Fund', + x: 3762.7165667221666, + y: 4548.702242571176, + z: -2914.0749235264843, + }, + }, + { + id: '319', + data: { + label: 'The Lightspan Partnership', + x: 1872.9763944344422, + y: 426.17105705352753, + z: 1180.3835042779333, + }, + }, + { + id: '320', + data: { + label: 'priceline.com', + x: 1921.1428997989983, + y: 69.65342295352738, + z: 2059.94548058256, + }, + }, + { + id: '321', + data: { + label: 'Quokka Sports', + x: 2470.590661720874, + y: -749.9332864053187, + z: -227.35845464264185, + }, + }, + { + id: '322', + data: { + label: 'Sportsline USA', + x: 1848.7532301321937, + y: -20.092975357804878, + z: 1568.9681479155656, + }, + }, + { + id: '323', + data: { + label: 'MTVN Online', + x: 1429.1733953919916, + y: -339.2009447676296, + z: 1199.9147915613005, + }, + }, + { + id: '324', + data: { + label: 'TiVo', + x: 2203.9834265255295, + y: 466.3980121699949, + z: 1497.5973319008585, + }, + }, + { + id: '325', + data: { + label: 'Total Entertainment Network', + x: 1654.2896087745924, + y: 49.84188441755546, + z: 1385.1602362252327, + }, + }, + { + id: '326', + data: { + label: 'PRIMEDIA', + x: 4805.482061896843, + y: -1433.0113894691165, + z: 2443.0503718364766, + }, + }, + { + id: '327', + data: { + label: 'Bresnan International Partners (Chile)', + x: 1768.523647573294, + y: 326.06514996724206, + z: 904.3992285873771, + }, + }, + { + id: ' S.A.', + data: { + label: 'Metropolis Intercom', + x: -2815.9170465848615, + y: -3035.875069199883, + z: -1524.7168216340249, + }, + }, + { + id: '329', + data: { + label: 'Cablevision S.A.', + x: 1938.1591981182282, + y: -1484.566230878829, + z: 639.6533908058665, + }, + }, + { + id: '330', + data: { + label: 'Jupiter Telecommunications Co.', + x: 2563.7551847361506, + y: -1022.8486456783404, + z: 414.5933408766103, + }, + }, + { + id: '331', + data: { + label: 'Princes Holdings', + x: 1746.2212551280486, + y: -1254.3976310173152, + z: 127.41983418829756, + }, + }, + { + id: '332', + data: { + label: 'Sky Latin America', + x: 1657.763334298607, + y: -1050.3032730032849, + z: 30.049925033803547, + }, + }, + { + id: '333', + data: { + label: 'Sprint PCS Group', + x: 2836.2206251448183, + y: -5117.544374848817, + z: -2336.1284152023377, + }, + }, + { + id: '334', + data: { + label: 'TCI Cablevision of Puerto Rico', + x: 743.8683022756825, + y: 78.81388072360093, + z: 1811.94022839362, + }, + }, + { + id: '335', + data: { + label: 'Telewest Communications plc', + x: 1652.0971534507396, + y: -1248.8765173310935, + z: 396.0362027078306, + }, + }, + { + id: '336', + data: { + label: 'Antec', + x: 1913.6402865883242, + y: -1002.3327148113414, + z: -69.63441215853322, + }, + }, + { + id: '337', + data: { + label: 'General Instrument', + x: 2296.053468052846, + y: -414.67799644400225, + z: 965.5146367996962, + }, + }, + { + id: '338', + data: { + label: 'Bantam Doubleday Dell', + x: 1445.0839767740827, + y: 3680.6803392338156, + z: -1043.9456291939214, + }, + }, + { + id: '339', + data: { + label: 'Bantam Books', + x: 1176.0325074569143, + y: 3553.104209143904, + z: -1428.6736600100514, + }, + }, + { + id: '340', + data: { + label: 'Doubleday', + x: 1405.1327817150484, + y: 3634.6887340672133, + z: -1531.473849577666, + }, + }, + { + id: '341', + data: { + label: 'Dell - Delacorte', + x: 1414.3218007942953, + y: 4137.376460561626, + z: -1219.3583261922277, + }, + }, + { + id: '342', + data: { + label: 'Broadway Books', + x: 1240.5262906176602, + y: 4019.3297680225887, + z: -1375.1251122197514, + }, + }, + { + id: '343', + data: { + label: 'Bantam Doubleday Dell Books for Young Readers', + x: 1565.8021982358523, + y: 4007.9828209195302, + z: -1394.374005116016, + }, + }, + { + id: '344', + data: { + label: 'Bantam Doubleday Audio', + x: 992.9395432772706, + y: 3705.6238438897894, + z: -1241.8191360458886, + }, + }, + { + id: '345', + data: { + label: 'Bantam Books Canada', + x: 1177.1924895001284, + y: 3819.1301164167735, + z: -1463.6251629617236, + }, + }, + { + id: '346', + data: { + label: 'Doubleday Canada', + x: 1081.7092855481767, + y: 3970.462988309751, + z: -1190.837343796604, + }, + }, + { + id: '347', + data: { + label: 'Transworld Publishers', + x: 1522.859349487898, + y: 3847.693848412402, + z: -1503.7425906184794, + }, + }, + { + id: '348', + data: { + label: 'Doubleday Direct', + x: 2045.2978418099246, + y: 4125.0296682388625, + z: 281.8363938763575, + }, + }, + { + id: '349', + data: { + label: 'Literary Guild', + x: 1900.8466006770243, + y: 4468.858668531765, + z: 588.2367621476695, + }, + }, + { + id: '350', + data: { + label: 'Doubleday Book Club', + x: 2085.1521329738275, + y: 4612.941629136713, + z: 329.1307390606057, + }, + }, + { + id: '351', + data: { + label: 'Crossings', + x: 2191.893429255617, + y: 4485.072055276072, + z: 568.4857111967117, + }, + }, + { + id: '352', + data: { + label: 'Random House', + x: 1042.1622385805233, + y: 4059.115182950117, + z: -312.74760375092467, + }, + }, + { + id: '353', + data: { + label: 'Random House Trade Publishing Group', + x: 1019.5776923707083, + y: 4415.111353328133, + z: 3.7700593674538463, + }, + }, + { + id: '354', + data: { + label: 'Random House Information Publishing Group', + x: 838.3541736333426, + y: 4224.375248953732, + z: 84.12860704317603, + }, + }, + { + id: '355', + data: { + label: 'Knopf Publishing Group', + x: 1124.1653425785819, + y: 4533.834195995561, + z: -219.55773346278346, + }, + }, + { + id: '356', + data: { + label: 'Crown Publishing Group', + x: 820.0178118056189, + y: 4473.647956611865, + z: -154.79321429046294, + }, + }, + { + id: '357', + data: { + label: 'Ballantine Publishing Group', + x: 861.6094299885314, + y: 3900.602732754887, + z: -701.3960057573015, + }, + }, + { + id: '358', + data: { + label: "Random House Children's Publishing", + x: 1056.7042633304488, + y: 4236.201432532136, + z: -751.5875333793678, + }, + }, + { + id: '359', + data: { + label: 'Random House Audio', + x: 591.9450143108793, + y: 4205.193939084579, + z: -447.8552296118039, + }, + }, + { + id: '360', + data: { + label: 'Random House Value Publishing', + x: 599.5275900333255, + y: 3997.56571357794, + z: -429.2441671584343, + }, + }, + { + id: '361', + data: { + label: 'Fodors Travel Publications', + x: 620.5002513321028, + y: 4072.5165469151643, + z: -116.15497560117781, + }, + }, + { + id: '362', + data: { + label: 'Random House New Media', + x: 746.8815723070771, + y: 4311.026371890677, + z: -633.0450216275294, + }, + }, + { + id: '363', + data: { + label: 'Random House Canada', + x: 658.2073106040608, + y: 4360.352884821976, + z: -307.64722872147365, + }, + }, + { + id: '364', + data: { + label: 'Random House U.K.', + x: 1181.5386583540756, + y: 4467.3063105271585, + z: -497.7806370376199, + }, + }, + { + id: '365', + data: { + label: 'Random House Australia', + x: 658.1191505658105, + y: 4280.299668161415, + z: -102.31936251842257, + }, + }, + { + id: '366', + data: { + label: 'Random House New Zealand', + x: 726.2227084034273, + y: 4087.536787803715, + z: -710.3996439405032, + }, + }, + { + id: '367', + data: { + label: 'Random House South Africa', + x: 895.7094775703622, + y: 4526.515222675198, + z: -403.45665796674933, + }, + }, + { + id: '368', + data: { + label: 'Bee Book', + x: 1516.412424700335, + y: 3765.8833984412613, + z: -172.87757024379505, + }, + }, + { + id: '369', + data: { + label: 'Bertelsmann Lexikon Verlag', + x: 2035.7026729524282, + y: 3202.417063068118, + z: 329.60352437344983, + }, + }, + { + id: '370', + data: { + label: 'Donauland', + x: 1703.4050263279976, + y: 3750.330044895974, + z: 248.026894094604, + }, + }, + { + id: '371', + data: { + label: 'Science Fiction Book Club', + x: 2456.0782605694076, + y: 3551.9359931001227, + z: -417.82921349531836, + }, + }, + { + id: '372', + data: { + label: 'Bold Type', + x: 2118.9980666025067, + y: 3967.756312794424, + z: -226.51973385111958, + }, + }, + { + id: '373', + data: { + label: 'BOL', + x: 1564.1584244127134, + y: 3536.7243016003576, + z: 211.18462035977984, + }, + }, + { + id: '374', + data: { + label: 'ABI Building Data', + x: 2293.188628473187, + y: 3401.257210334086, + z: 324.07131592919785, + }, + }, + { + id: '375', + data: { + label: 'AZ Bertelsmann', + x: 2517.0955380447917, + y: 3380.531838785474, + z: -224.50346206667285, + }, + }, + { + id: '376', + data: { + label: 'BauNetz', + x: 2416.2105131306666, + y: 3344.3308650735503, + z: -444.13215502634716, + }, + }, + { + id: '377', + data: { + label: 'Entertainment Media Verlag', + x: 2359.8704548036576, + y: 3633.4638945395045, + z: 236.99765431176013, + }, + }, + { + id: '378', + data: { + label: 'Gabler/Vieweg/Westdeutscher Verlag', + x: 2114.874659096975, + y: 3511.2133308597067, + z: -688.7680973128975, + }, + }, + { + id: '379', + data: { + label: 'ICW Publications', + x: 2340.082024015587, + y: 3822.5525830286897, + z: 136.988857204824, + }, + }, + { + id: '380', + data: { + label: 'MMV Medizin Verlag', + x: 1778.893356819845, + y: 3919.4697176451823, + z: -176.12426236905475, + }, + }, + { + id: '381', + data: { + label: 'Verkehr Online', + x: 2454.305850358952, + y: 3488.7513657123636, + z: 153.9615111268611, + }, + }, + { + id: '382', + data: { + label: 'Heinrich Vogel Verlag', + x: 2326.8060751615953, + y: 3505.3344141628204, + z: -571.6709664686015, + }, + }, + { + id: '383', + data: { + label: 'Wila Verlag', + x: 2140.1399932376444, + y: 3888.249050639101, + z: 158.4391179566031, + }, + }, + { + id: '384', + data: { + label: 'Springer Verlag', + x: 2517.2988835596507, + y: 3634.793250460626, + z: -206.34066776878197, + }, + }, + { + id: '385', + data: { + label: 'CLT-UFA', + x: 1993.1494137642019, + y: 3965.4655394014253, + z: -55.494849326305804, + }, + }, + { + id: '386', + data: { + label: 'RTL', + x: 2216.107484915453, + y: 3717.770018796663, + z: -565.8248436473268, + }, + }, + { + id: '387', + data: { + label: 'RTL-2', + x: 2350.2428819333613, + y: 3757.4918444274495, + z: -438.8852536717088, + }, + }, + { + id: '388', + data: { + label: 'SUPER RTL', + x: 1238.1361537359676, + y: 2520.085346074172, + z: 1333.6925248830164, + }, + }, + { + id: '389', + data: { + label: 'Premiere World', + x: 1827.9183296713145, + y: 2637.5567237392397, + z: -223.4349053297624, + }, + }, + { + id: '390', + data: { + label: 'VOX', + x: 1750.7148412652953, + y: 4065.2978355959513, + z: 49.713611834440684, + }, + }, + { + id: '391', + data: { + label: 'Channel 5', + x: 2006.7014179308962, + y: 3645.703922734859, + z: -566.5797122232179, + }, + }, + { + id: '392', + data: { + label: 'FUN TV', + x: 2154.727024270687, + y: 3526.316220399564, + z: 424.39094813513884, + }, + }, + { + id: '393', + data: { + label: 'M6', + x: 1479.1885872117014, + y: 3549.347870834001, + z: -320.6649903632314, + }, + }, + { + id: '394', + data: { + label: 'Multivision', + x: 1941.1943385594534, + y: 3499.5518310918487, + z: 448.0645580303078, + }, + }, + { + id: '395', + data: { + label: 'Teva', + x: 1578.3316168563697, + y: 3664.7241560643934, + z: -452.11441027843074, + }, + }, + { + id: '396', + data: { + label: 'RTL - 4', + x: 1446.108133213248, + y: 3518.832343852989, + z: -146.52192445065853, + }, + }, + { + id: '397', + data: { + label: 'RTL - 5', + x: 1673.6957949402247, + y: 3790.970995279956, + z: -286.58493280532684, + }, + }, + { + id: '398', + data: { + label: 'RTL - 9', + x: 1803.0064980711481, + y: 3858.607929403418, + z: -467.5044932464575, + }, + }, + { + id: '399', + data: { + label: 'RTL - Tele Letzebuerg', + x: 1644.6361492218562, + y: 3815.8149948409605, + z: 58.51452238259876, + }, + }, + { + id: '400', + data: { + label: 'RTL Klub', + x: 2281.4378888204496, + y: 3207.4245946709952, + z: 222.36495792909648, + }, + }, + { + id: '401', + data: { + label: 'UFA Film & TV Production', + x: 2194.425677608528, + y: 3833.932001956144, + z: -45.01544710537004, + }, + }, + { + id: '402', + data: { + label: 'Trebitsch Production', + x: 1928.5575518504481, + y: 3720.6875802241966, + z: 369.2881511582096, + }, + }, + { + id: '403', + data: { + label: 'Delux Productions', + x: 2449.1656821987863, + y: 3751.4818768877635, + z: -39.33253791561044, + }, + }, + { + id: '404', + data: { + label: 'Cinevideo', + x: 2385.1981055579026, + y: 3821.6771810428436, + z: -267.3755899818467, + }, + }, + { + id: '405', + data: { + label: 'Holland Media House', + x: 1899.115283757927, + y: 3852.388694724383, + z: 280.1089759440604, + }, + }, + { + id: '406', + data: { + label: 'First Choice', + x: 1495.0628131322662, + y: 3657.0006312519954, + z: 26.361332252759812, + }, + }, + { + id: '407', + data: { + label: 'RTL Radio', + x: 2198.755004836262, + y: 3726.10827815301, + z: 317.44464445289964, + }, + }, + { + id: '408', + data: { + label: 'Gruner + Jahr', + x: 1999.2783655460937, + y: 4359.791316470195, + z: -590.6874124219273, + }, + }, + { + id: '409', + data: { + label: 'Brigitte', + x: 2360.596946533922, + y: 4525.6587903384125, + z: -880.1225810133892, + }, + }, + { + id: '410', + data: { + label: 'Capital', + x: 2290.943513547089, + y: 4712.832196171502, + z: -412.17239994358926, + }, + }, + { + id: '411', + data: { + label: 'Eltern', + x: 1950.063348510332, + y: 4379.708853659973, + z: -1086.7708501438506, + }, + }, + { + id: '412', + data: { + label: 'Frau im Spiegel', + x: 1708.5645621977985, + y: 4484.380648498344, + z: -972.0787886533658, + }, + }, + { + id: '413', + data: { + label: 'Schoner Wohnen', + x: 2232.614720715089, + y: 4793.262143473814, + z: -656.0866469795328, + }, + }, + { + id: '414', + data: { + label: 'Der Spiegel', + x: 2136.8547968969215, + y: 4733.640149255258, + z: -898.0289959648152, + }, + }, + { + id: '415', + data: { + label: 'Flora', + x: 2063.207322802248, + y: 4712.900679355544, + z: -265.40900797316874, + }, + }, + { + id: '416', + data: { + label: 'Geo', + x: 1769.1657978413007, + y: 4779.380637851584, + z: -729.2713702149279, + }, + }, + { + id: '417', + data: { + label: 'Geo Saison', + x: 1687.0861411023757, + y: 4671.249480038399, + z: -411.1799120553435, + }, + }, + { + id: '418', + data: { + label: "Oskar's", + x: 1890.632074913894, + y: 4668.92420621785, + z: -976.8965862185895, + }, + }, + { + id: '419', + data: { + label: 'P.M. Magazine', + x: 2436.65055270655, + y: 4581.246882055814, + z: -642.2346337476148, + }, + }, + { + id: '420', + data: { + label: 'Stern', + x: 1602.1967544278828, + y: 4599.223605126536, + z: -738.4653492424538, + }, + }, + { + id: '421', + data: { + label: 'Tip', + x: 1885.114775159148, + y: 4815.261997550941, + z: -431.2536380137916, + }, + }, + { + id: '422', + data: { + label: 'TV Today', + x: 2003.8448793503994, + y: 4852.775454566896, + z: -676.6788540694328, + }, + }, + { + id: '423', + data: { + label: 'American Homestyle', + x: 2522.7114039986254, + y: 3448.230720397649, + z: -18.311644041012013, + }, + }, + { + id: '424', + data: { + label: 'Child', + x: 2173.2217332452224, + y: 3876.0304792307284, + z: -408.9753341772109, + }, + }, + { + id: '425', + data: { + label: 'Fitness', + x: 1945.744024763242, + y: 3923.2543717351286, + z: -371.3508118196852, + }, + }, + { + id: '426', + data: { + label: 'Computer & Co.', + x: 1486.5890493914023, + y: 3414.7122700298683, + z: 61.18968445142629, + }, + }, + { + id: '427', + data: { + label: 'rtv', + x: 1877.542044716427, + y: 3855.6930647541435, + z: 67.76224790568415, + }, + }, + { + id: '428', + data: { + label: 'AOL Germany', + x: 2372.4880585390742, + y: 2118.0314079536606, + z: 373.6713918587509, + }, + }, + { + id: '429', + data: { + label: 'AOL France', + x: 2283.567959633256, + y: 2122.773974133693, + z: 473.17064566982805, + }, + }, + { + id: '430', + data: { + label: 'bs medic', + x: 1529.4024677183795, + y: 3272.1159684613044, + z: -95.22613185379251, + }, + }, + { + id: '431', + data: { + label: 'Sport 1', + x: 2335.443986148997, + y: 3140.8806692042804, + z: -301.8091873471285, + }, + }, + { + id: '432', + data: { + label: 'Lycos Europe', + x: 2000.2862113158883, + y: 3780.2554031116442, + z: -726.2354709402728, + }, + }, + { + id: '433', + data: { + label: 'CD Now', + x: 1738.252979333436, + y: 3527.071269361918, + z: 353.84249945363473, + }, + }, + { + id: '434', + data: { + label: 'Bertelsmann Interactive Studios', + x: 1844.2342922894325, + y: 3297.9951645304704, + z: 365.7887031489758, + }, + }, + { + id: '435', + data: { + label: 'Bertelsmann mediaSystems', + x: 1787.4842491484028, + y: 3676.3846911336755, + z: -539.4138944957115, + }, + }, + { + id: '436', + data: { + label: 'Bertelsmann Corporate Information Systems', + x: 1967.8346333473712, + y: 3380.576560764261, + z: -659.8633361110793, + }, + }, + { + id: '437', + data: { + label: 'mediaWays', + x: 1611.3175530833407, + y: 3467.843038661226, + z: -537.7445637602051, + }, + }, + { + id: '438', + data: { + label: 'Pixelpark', + x: 2214.208732010081, + y: 3252.257546378881, + z: -567.2739437914076, + }, + }, + { + id: '439', + data: { + label: 'Telemedia', + x: 2342.251869253479, + y: 4024.164321219937, + z: -96.74933580742584, + }, + }, + { + id: '440', + data: { + label: 'Services', + x: 1542.431874758462, + y: 3308.5803747587893, + z: -342.13043781153976, + }, + }, + { + id: '441', + data: { + label: 'eps Bertelsmann', + x: 1727.2331328738305, + y: 3284.374702485863, + z: -518.6579288972428, + }, + }, + { + id: '442', + data: { + label: 'Mount Media', + x: 1644.2669393679175, + y: 3276.923776216356, + z: 208.6844421356027, + }, + }, + { + id: '443', + data: { + label: 'Bertelsmann Music Group (BMG)', + x: 2487.2151397717876, + y: 3285.5294689037755, + z: -1700.5168251053058, + }, + }, + { + id: '444', + data: { + label: 'BMG North America', + x: 2264.786362985884, + y: 3318.268468061353, + z: -2181.977518708745, + }, + }, + { + id: '445', + data: { + label: 'Arista Records', + x: 2587.548604375388, + y: 2329.875899493993, + z: -2325.998267711091, + }, + }, + { + id: '446', + data: { + label: 'RCA', + x: 2627.146210033066, + y: 3717.956754264938, + z: -1559.8689365751277, + }, + }, + { + id: '447', + data: { + label: 'RCA Victor', + x: 2182.831895229915, + y: 3666.596291413171, + z: -1883.9959565253428, + }, + }, + { + id: '448', + data: { + label: 'BMG Classics', + x: 2507.7740329111266, + y: 3247.7970987692433, + z: -2226.55920908138, + }, + }, + { + id: '449', + data: { + label: 'BMG Music Publishing', + x: 2072.268376840618, + y: 3312.423775941406, + z: -1986.4893268478265, + }, + }, + { + id: '450', + data: { + label: 'BMG Music Service', + x: 2814.0094463869427, + y: 3635.0328391063745, + z: -1765.3094753979547, + }, + }, + { + id: '451', + data: { + label: 'BMG Special Products', + x: 2764.036771367677, + y: 3234.3179742946068, + z: -2142.9229058290884, + }, + }, + { + id: '452', + data: { + label: 'Windham Hill Group', + x: 2366.3186246665055, + y: 3042.9720084531687, + z: -2115.1589401255433, + }, + }, + { + id: '453', + data: { + label: 'Bugjuice', + x: 2063.0885646796273, + y: 3465.7693835706727, + z: -1771.8356373605714, + }, + }, + { + id: '454', + data: { + label: 'Peeps Republic', + x: 2493.0719362980035, + y: 3799.763692033866, + z: -1818.1285657226897, + }, + }, + { + id: '455', + data: { + label: 'Twang This!', + x: 2795.8889726376724, + y: 3021.529757414157, + z: -1918.5255718510034, + }, + }, + { + id: '456', + data: { + label: 'BMG Austria', + x: 2578.9961445668855, + y: 2997.4665040874447, + z: -2063.766915408674, + }, + }, + { + id: '457', + data: { + label: 'BMG Australia', + x: 2205.8020293765157, + y: 3528.2807188101697, + z: -2096.3575669724614, + }, + }, + { + id: '458', + data: { + label: 'BMG Canada', + x: 2848.564128098802, + y: 3512.6138212861406, + z: -1957.6994115987889, + }, + }, + { + id: '459', + data: { + label: 'BMG Germany', + x: 2712.812160823781, + y: 3484.6121384441776, + z: -2135.299969506059, + }, + }, + { + id: '460', + data: { + label: 'BMG Germany Interactive', + x: 2646.146166327024, + y: 3701.864218177188, + z: -1989.6374255892847, + }, + }, + { + id: '461', + data: { + label: 'BMG Germany Studios', + x: 2914.681477184379, + y: 3246.083235891551, + z: -1923.863824615545, + }, + }, + { + id: '462', + data: { + label: 'BMG Germany Video', + x: 2160.8408869248588, + y: 3092.783058298788, + z: -1988.315460951361, + }, + }, + { + id: '463', + data: { + label: 'BMG Hongkong', + x: 2316.477553741349, + y: 3747.59333049225, + z: -1678.2514676362034, + }, + }, + { + id: '464', + data: { + label: 'BMG United Kingdom', + x: 2417.145368724309, + y: 3659.1812995045616, + z: -2073.9220110470333, + }, + }, + { + id: '465', + data: { + label: 'Sonopress', + x: 2492.0472978268026, + y: 3468.0805969480366, + z: -2202.5257360909486, + }, + }, + { + id: '466', + data: { + label: 'Cablevision Cable System', + x: 2555.3460439577134, + y: 1829.0321511715551, + z: 2159.698914452621, + }, + }, + { + id: '467', + data: { + label: 'Optimum TV', + x: 2298.9493033361264, + y: 1683.3578493897335, + z: 2446.1749138907435, + }, + }, + { + id: '468', + data: { + label: 'Cablevision Lightpath', + x: 1908.1832990195046, + y: 1536.6874730364414, + z: 2146.9016291364296, + }, + }, + { + id: '469', + data: { + label: 'Optimum Telephone', + x: 2342.196114252553, + y: 1795.5720013929747, + z: 1883.8854190027619, + }, + }, + { + id: '470', + data: { + label: 'Optimum Online', + x: 2205.856837164298, + y: 1845.9888279496831, + z: 2105.6155492926982, + }, + }, + { + id: '471', + data: { + label: 'Rainbow Media Holdings', + x: 2144.0401681168137, + y: 1845.0752468530413, + z: 2495.2973677792866, + }, + }, + { + id: '472', + data: { + label: 'American Movie Classics', + x: 2347.059174145089, + y: 2014.2167691746324, + z: 2930.974533161907, + }, + }, + { + id: '473', + data: { + label: '', + x: 6049.187181288117, + y: 4334.447238826176, + z: -1744.3521785262983, + }, + }, + { + id: '474', + data: { + label: 'Independent Film Channel', + x: 2255.5721409085295, + y: 2227.7664986050445, + z: 2797.949004192253, + }, + }, + { + id: '475', + data: { + label: 'MuchMusic', + x: 2524.978807688015, + y: 1681.7274399535045, + z: 2627.836753714112, + }, + }, + { + id: '476', + data: { + label: 'News 12', + x: 2359.3280417137753, + y: 1519.7179580439836, + z: 2914.706292370826, + }, + }, + { + id: '477', + data: { + label: 'News 12 Long Island', + x: 2246.733068352067, + y: 1671.3151367594587, + z: 3385.410351126185, + }, + }, + { + id: '478', + data: { + label: 'News 12 Connecticut', + x: 2303.875956880661, + y: 1438.422220630157, + z: 3416.914585535371, + }, + }, + { + id: '479', + data: { + label: 'News 12 Westchester', + x: 2507.507993747459, + y: 1746.3439153632603, + z: 3345.5427619009515, + }, + }, + { + id: '480', + data: { + label: 'News 12 New Jersey', + x: 3497.3379420790284, + y: -984.3645764423445, + z: 5173.031728333901, + }, + }, + { + id: '481', + data: { + label: 'News 12 The Bronx', + x: 2560.494346719746, + y: 1487.7093865259, + z: 3380.3938094515793, + }, + }, + { + id: '482', + data: { + label: 'Neighborhood News 12', + x: 576.4939920826774, + y: 2920.0480957599293, + z: -5143.439410503822, + }, + }, + { + id: '483', + data: { + label: 'Romance Classics', + x: 1997.7062960775313, + y: 1996.8788932169339, + z: 2927.4088862124004, + }, + }, + { + id: '484', + data: { + label: 'extrahelp', + x: 2033.3716070620728, + y: 2234.3567014515284, + z: 2755.546406782334, + }, + }, + { + id: '485', + data: { + label: 'Regional Programming Partners', + x: 1972.391982334929, + y: 1983.1310592327702, + z: 1632.2339507260876, + }, + }, + { + id: '486', + data: { + label: 'Fox Sports Bay Area', + x: 1563.1218895045774, + y: 3235.5172623517583, + z: 5191.136964470499, + }, + }, + { + id: '487', + data: { + label: 'Fox Sports Chicago', + x: -864.6278200850072, + y: -3551.117131142291, + z: -3779.8626320347676, + }, + }, + { + id: '488', + data: { + label: 'Fox Sports New England', + x: -243.8718610363744, + y: 2465.6501631598057, + z: -4430.351529242341, + }, + }, + { + id: '489', + data: { + label: 'Fox Sports New York', + x: -1226.2309261059838, + y: 2678.740892148912, + z: -4432.100064762421, + }, + }, + { + id: '490', + data: { + label: 'Fox Sports Ohio', + x: 1751.8618734330626, + y: 1409.3391575985768, + z: 4898.365231063213, + }, + }, + { + id: '491', + data: { + label: 'Madison Square Garden Network', + x: 2603.950978527664, + y: 2131.938899593047, + z: 2272.788577502398, + }, + }, + { + id: '492', + data: { + label: 'MSG Metro Learning', + x: 2426.8176418198373, + y: 2563.662217584834, + z: 2430.9738006053376, + }, + }, + { + id: '493', + data: { + label: 'MSG Metro Guide', + x: 2853.4017061233467, + y: 2537.1922275683714, + z: 2290.2805546138347, + }, + }, + { + id: '494', + data: { + label: 'MSG Metro Traffic and Weather', + x: 2709.2117593516236, + y: 2565.7295304880317, + z: 2509.5961355711106, + }, + }, + { + id: '495', + data: { + label: 'Radio City Productions', + x: 2762.284854628339, + y: 1604.18846064334, + z: 2185.571815192256, + }, + }, + { + id: '496', + data: { + label: 'Madison Square Garden Properties', + x: 7503.070401025461, + y: 696.6734789776903, + z: 2316.335209579627, + }, + }, + { + id: '497', + data: { + label: 'New York Knicks', + x: 2050.875377404212, + y: 1580.2743949199307, + z: 890.5328789301867, + }, + }, + { + id: '498', + data: { + label: 'New York Rangers', + x: 1930.5518448863781, + y: 1523.4222980460015, + z: 924.7745577304171, + }, + }, + { + id: '499', + data: { + label: 'New York Liberty (WNBA)', + x: 2037.7493914106722, + y: 1167.1430705954917, + z: 2400.161188640985, + }, + }, + { + id: '500', + data: { + label: 'New England Seawolves', + x: 2025.766391661827, + y: 1683.6513815960193, + z: 1968.5232617678862, + }, + }, + { + id: '501', + data: { + label: 'Hartford Wolf Pack', + x: 2643.5781230656826, + y: 1494.2464073078586, + z: 2519.125180200496, + }, + }, + { + id: '502', + data: { + label: 'Radio City Music Hall', + x: 2409.1763077410087, + y: 1813.9741607337746, + z: 2323.452999104754, + }, + }, + { + id: '8199', + data: { + label: 'Music.com', + x: -313.0309872168539, + y: -2124.4047896644747, + z: 3756.205537725609, + }, + }, + { + id: '504', + data: { + label: 'Nobody Beats the Wiz', + x: 1933.9272482757992, + y: 1404.944708677334, + z: 2346.3944465452337, + }, + }, + { + id: '505', + data: { + label: 'EZSeek', + x: 2246.5275617105135, + y: 1160.0503042038804, + z: 2546.173864302544, + }, + }, + { + id: ' Alabama)', + data: { + label: 'The News Courier (Athens', + x: 2527.900197228723, + y: 6142.931725002155, + z: -1659.4843713239052, + }, + }, + { + id: '508', + data: { + label: 'The Leeds News (Alabama)', + x: -3058.8247656908834, + y: 1346.8020619009544, + z: -1071.7636248326687, + }, + }, + { + id: '509', + data: { + label: 'St. Clair News (Alabama)', + x: -2394.1366685669063, + y: 1333.2852919256463, + z: -1182.356209965274, + }, + }, + { + id: '510', + data: { + label: 'The Cullman Times (Alabama)', + x: -2657.169394449975, + y: 1016.8588561531026, + z: -15.77728620887912, + }, + }, + { + id: '511', + data: { + label: 'Harrison Daily Times (Arkansas)', + x: -2864.8312311655664, + y: 1415.0103078361553, + z: -91.20327102444, + }, + }, + { + id: '512', + data: { + label: 'Newton County Times (Arkansas)', + x: -3149.6202112786314, + y: 1899.031464829312, + z: -813.9131934360481, + }, + }, + { + id: '513', + data: { + label: 'Boca Raton News (Florida)', + x: -2706.537609916246, + y: 855.3956769894409, + z: -322.6900639903321, + }, + }, + { + id: ' Georgia)', + data: { + label: 'Busy Shopper (Fort Ogelthorpe', + x: 6478.98353270152, + y: 3386.036945145372, + z: 2362.0366042141654, + }, + }, + { + id: '516', + data: { + label: 'Monroe County Register (Georgia)', + x: -2978.4879272894277, + y: 1729.106149305788, + z: -836.7318299559422, + }, + }, + { + id: '517', + data: { + label: 'Jackson Progress-Argus (Georgia)', + x: -3121.4033158424545, + y: 1648.6216780872173, + z: -55.25401838853053, + }, + }, + { + id: '519', + data: { + label: 'The Madisonian (Georgia)', + x: -2551.596730725804, + y: 1459.0339968303492, + z: -59.620517238520385, + }, + }, + { + id: '522', + data: { + label: 'The Thomaston Times (Georgia)', + x: -2098.91088235732, + y: 1285.4525460594218, + z: -314.67628960235265, + }, + }, + { + id: '523', + data: { + label: 'Americus Times-Recorder (Georgia)', + x: -2892.9860993430434, + y: 1861.2865808561924, + z: -650.5723971600138, + }, + }, + { + id: '524', + data: { + label: 'Cordele Dispatch (Georgia)', + x: -2900.8899131068256, + y: 1694.7207194306866, + z: 94.69737144617585, + }, + }, + { + id: '525', + data: { + label: 'The (Moultrie) Observer (Georgia)', + x: -2170.814303528497, + y: 1883.7599235080709, + z: -847.525635552215, + }, + }, + { + id: '526', + data: { + label: 'Thomasville Times-Enterprise (Georgia)', + x: -2002.766680554519, + y: 1716.5640434117602, + z: -609.2853932914385, + }, + }, + { + id: '527', + data: { + label: 'The Tifton Gazette (Georgia)', + x: -2986.0875122369694, + y: 872.7219058816921, + z: -490.65479024548955, + }, + }, + { + id: '528', + data: { + label: 'The Valdosta Daily Times (Georgia)', + x: -2979.014480174013, + y: 1498.8577980290436, + z: 73.00681505331504, + }, + }, + { + id: ' Illinois)', + data: { + label: 'Commercial-News (Danville', + x: -3161.537144430147, + y: -2848.313378755198, + z: 214.68709110791522, + }, + }, + { + id: '530', + data: { + label: 'Bourbon News-Mirror (Indiana)', + x: -2152.4828695274805, + y: 1184.7856309881179, + z: -886.904183132804, + }, + }, + { + id: '531', + data: { + label: 'Bremen Enquirer (Indiana)', + x: -3243.939076927014, + y: 1546.635039407444, + z: -185.56095976807356, + }, + }, + { + id: '532', + data: { + label: 'Culver Citizen (Indiana)', + x: -2661.4882436364564, + y: 1464.9496157228475, + z: 184.57586036024642, + }, + }, + { + id: '533', + data: { + label: 'The Jeffersonville Evening News (Indiana)', + x: -2860.452935216467, + y: 1004.7436531833215, + z: -575.449757504088, + }, + }, + { + id: ' Indiana)', + data: { + label: 'The Leader & Review (Knox', + x: -2359.3054523244246, + y: 4341.387053704329, + z: -1316.6414673329762, + }, + }, + { + id: '535', + data: { + label: 'Nappanee Advance News (Indiana)', + x: -2522.9509989058647, + y: 931.4946361972994, + z: -963.3797147699859, + }, + }, + { + id: '537', + data: { + label: 'Washington Times Herald (Indiana)', + x: -3022.5598790922954, + y: 992.0597625767233, + z: -257.9814821637564, + }, + }, + { + id: '540', + data: { + label: 'The (Anderson) Herald-Bulletin (Indiana)', + x: -2546.6328851726494, + y: 1866.220889344089, + z: -1093.845401181568, + }, + }, + { + id: '541', + data: { + label: 'Greensburg Daily News (Indiana)', + x: -2739.535868691649, + y: 1200.3649988099335, + z: -922.0142421706912, + }, + }, + { + id: '542', + data: { + label: 'The Kokomo Tribune (Indiana)', + x: -2928.893400794914, + y: 2103.832621664221, + z: -352.61838115373035, + }, + }, + { + id: '543', + data: { + label: 'The (Lebanon) Reporter (Indiana)', + x: -2416.206097020009, + y: 938.737678792123, + z: -603.2643970467558, + }, + }, + { + id: '544', + data: { + label: 'Linton Daily Citizen (Indiana)', + x: -2338.8244294536667, + y: 1006.3677747018911, + z: -919.5617835284213, + }, + }, + { + id: '546', + data: { + label: 'Rushville Republican (Indiana)', + x: -2716.310106224333, + y: 2137.1307009500215, + z: -589.641679476677, + }, + }, + { + id: '547', + data: { + label: 'The (Terre Haute) Tribune-Star (Indiana)', + x: -2767.733406849773, + y: 795.971441155509, + z: -511.70551709920744, + }, + }, + { + id: '548', + data: { + label: 'Alta Advertiser (Iowa)', + x: -2140.443637164734, + y: 1374.3505279832107, + z: -807.7020050292788, + }, + }, + { + id: '549', + data: { + label: 'Clinton Herald (Iowa)', + x: -3231.0960617410437, + y: 1495.0275535361095, + z: -956.3409636589174, + }, + }, + { + id: '550', + data: { + label: 'Oskaloosa Herald (Iowa)', + x: -2434.614168594199, + y: 1757.8682366018675, + z: -935.1042163688362, + }, + }, + { + id: ' Iowa)', + data: { + label: 'Ad Express & Daily Lowegian (Centerville', + x: 7190.969168839697, + y: 1408.60684976555, + z: -2594.217705824333, + }, + }, + { + id: '552', + data: { + label: 'Aurelia Sentinel (Iowa)', + x: -2545.9495607334898, + y: 891.896382890446, + z: -185.2000574723312, + }, + }, + { + id: '553', + data: { + label: 'Cherokee County Daily Times (Iowa)', + x: -2828.3055226037172, + y: 1885.9327022728778, + z: -403.5929957549388, + }, + }, + { + id: '554', + data: { + label: 'Knoxville Journal Express (Iowa)', + x: -2247.095505016134, + y: 1720.7883061194866, + z: -356.07525894871065, + }, + }, + { + id: '555', + data: { + label: 'Lake Park News (Iowa)', + x: -2820.6443073157284, + y: 1335.3901625365727, + z: 110.38995254063482, + }, + }, + { + id: '556', + data: { + label: 'Milford Mail (Iowa)', + x: -2483.6489504113865, + y: 1923.4522327905588, + z: -731.6715753274536, + }, + }, + { + id: '557', + data: { + label: 'Pella Chronicle (Iowa)', + x: -2937.6523879825945, + y: 1824.4940625007105, + z: -44.25590301709977, + }, + }, + { + id: '558', + data: { + label: 'Sioux Rapids Bulletin Press (Iowa)', + x: -2175.5173035362163, + y: 1589.0572109482728, + z: -973.7109033662392, + }, + }, + { + id: '560', + data: { + label: 'Sprit Lake Beacon (Iowa)', + x: -2689.31721000977, + y: 820.163842017618, + z: -870.7847655716686, + }, + }, + { + id: '562', + data: { + label: 'The Coffeyville Journal (Kansas)', + x: -2317.7127394199338, + y: 1554.7040226071229, + z: 75.05539942448212, + }, + }, + { + id: '563', + data: { + label: 'Kiowa County Signal (Kansas)', + x: 3988.3446622148076, + y: -2062.8676104182587, + z: 4662.608056756318, + }, + }, + { + id: '564', + data: { + label: 'Carlisle Mercury (Kentucky)', + x: -2866.423917159176, + y: 2094.6050417707947, + z: -746.3035601380609, + }, + }, + { + id: '565', + data: { + label: 'Corbin Times Tribune (Kentucky)', + x: -3037.5358190705642, + y: 950.3835080769126, + z: -764.4670306698922, + }, + }, + { + id: ' Kentucky)', + data: { + label: 'The Cumberland Trading Post (Middlesboro', + x: 1177.8240262763854, + y: -5284.555206925154, + z: -563.1441701712098, + }, + }, + { + id: '567', + data: { + label: 'Glasgow Daily Times (Kentucky)', + x: -3280.2236629546546, + y: 1755.957897430564, + z: -589.661651388714, + }, + }, + { + id: '568', + data: { + label: 'Grayson Journal Enquirer (Kentucky)', + x: -3107.9332993590087, + y: 1674.833306588439, + z: -698.4892985204038, + }, + }, + { + id: '569', + data: { + label: 'Grayson County News Gazette (Kentucky)', + x: -2647.7352006739143, + y: 987.2864857552782, + z: -777.0645320883505, + }, + }, + { + id: '570', + data: { + label: 'Greenup News Times (Kentucky)', + x: -2281.4609102108757, + y: 1173.603463719224, + z: -1039.6528755458244, + }, + }, + { + id: '571', + data: { + label: 'Harlan Daily Enterprise (Kentucky)', + x: -2984.0864939834028, + y: 1165.965627350435, + z: -1076.5975561969067, + }, + }, + { + id: '572', + data: { + label: 'The Hazard Herald (Kentucky)', + x: -2216.9145414268014, + y: 1137.8190973268859, + z: -207.17839248624992, + }, + }, + { + id: '573', + data: { + label: 'Hazard Shopper (Kentucky)', + x: -2240.6305983072, + y: 1103.2896980091605, + z: -609.7865348649561, + }, + }, + { + id: '575', + data: { + label: 'McCreary County Record (Kentucky)', + x: -3284.8462734998147, + y: 1288.2421474555179, + z: -752.616056299416, + }, + }, + { + id: '577', + data: { + label: 'Morehead News (Kentucky)', + x: -3331.4318709130475, + y: 1547.2351028519245, + z: -568.7597588903164, + }, + }, + { + id: '578', + data: { + label: 'Olive Hill Times (Kentucky)', + x: -2690.824428884382, + y: 1695.285407856261, + z: -987.5879266299287, + }, + }, + { + id: '579', + data: { + label: 'The Floyd County Times (Kentucky)', + x: -2388.8113501884563, + y: 1135.452307286841, + z: -778.6164780059132, + }, + }, + { + id: '580', + data: { + label: 'Pratt Tribune (Kentucky)', + x: -2450.032117708307, + y: 1914.032343207927, + z: -501.9434820595911, + }, + }, + { + id: '581', + data: { + label: 'The Richmond Register (Kentucky)', + x: -2546.615278853512, + y: 2135.2432197844646, + z: -435.4010954954309, + }, + }, + { + id: '585', + data: { + label: 'Wayne County Outlook (Kentucky)', + x: -3027.9743459026045, + y: 1635.4573475955435, + z: -1097.9374120581651, + }, + }, + { + id: '586', + data: { + label: 'The Cumberland Times-News (Maryland)', + x: -2650.157204585116, + y: 2146.0337955350237, + z: -794.6666134324188, + }, + }, + { + id: '587', + data: { + label: 'Picayune Item (Mississippi)', + x: -2293.7588635685906, + y: 2019.1394596571056, + z: -746.8462750984352, + }, + }, + { + id: '588', + data: { + label: 'The Poplarville Democrat (Mississippi)', + x: -2048.0681929142816, + y: 1713.4815129094577, + z: -401.58078547882735, + }, + }, + { + id: ' Mississippi)', + data: { + label: 'The Star Herald (Kosciusdo', + x: -982.1019410201918, + y: -4908.311890527156, + z: -373.377419282713, + }, + }, + { + id: '590', + data: { + label: 'The Laurel Leader (Mississippi)', + x: -2940.518009285098, + y: 1193.083643768549, + z: -8.827834006753479, + }, + }, + { + id: '591', + data: { + label: 'The Newton Record (Mississippi)', + x: -2412.5114364059223, + y: 2019.632071659118, + z: -916.3400070159918, + }, + }, + { + id: '592', + data: { + label: 'Wayne County News (Mississippi)', + x: -2933.164230672313, + y: 1451.9888297139519, + z: -929.3294132302591, + }, + }, + { + id: '593', + data: { + label: 'Chadron Record (Nebraska)', + x: -2178.5827136912385, + y: 1380.3006568111784, + z: -525.7087844138198, + }, + }, + { + id: '594', + data: { + label: 'Custer County Chief (Nebraska)', + x: -3207.7334357030454, + y: 1735.9306468956486, + z: -915.9009671091663, + }, + }, + { + id: '595', + data: { + label: 'Alamogordo Daily News (New Mexico)', + x: -3039.2800054055165, + y: 1096.4843894791602, + z: -432.87885145118383, + }, + }, + { + id: '596', + data: { + label: 'Albion Advertiser (New York)', + x: -2885.4291599270273, + y: 2001.0855498542774, + z: -149.44364278811253, + }, + }, + { + id: ' New York)', + data: { + label: 'Union-Sun & Journal (Lockport', + x: -2291.535336051905, + y: 3976.9180574095194, + z: 2152.922456952041, + }, + }, + { + id: '599', + data: { + label: 'Niagara Gazette (New York)', + x: -2243.942144072963, + y: 2010.091832935592, + z: -563.6821281643632, + }, + }, + { + id: '600', + data: { + label: 'Tonawanda News (New York)', + x: -2431.838766129153, + y: 1125.4865813271228, + z: -125.33981322464024, + }, + }, + { + id: ' North Carolina)', + data: { + label: 'The Stanly News & Press (Albemarle', + x: 5087.281429931876, + y: -4314.6852451411, + z: 284.36949039560005, + }, + }, + { + id: '602', + data: { + label: 'The Apex Herald (North Carolina)', + x: -2969.359011722198, + y: 1475.7805444886428, + z: -1200.8343666799303, + }, + }, + { + id: '610', + data: { + label: 'Garner News (North Carolina)', + x: -438.7237564134583, + y: -2763.641497042878, + z: -3856.3085769734002, + }, + }, + { + id: '611', + data: { + label: 'The King Times - News (North Carolina)', + x: -3175.6675534473934, + y: 1023.5791862742977, + z: -634.060816764573, + }, + }, + { + id: '614', + data: { + label: 'The Randleman Reporter (North Carolina)', + x: -2218.0645701593935, + y: 1402.3694132392877, + z: -1041.5676617653837, + }, + }, + { + id: '619', + data: { + label: 'Yadkin Valley Shopper (North Carolina)', + x: -3086.2759328881443, + y: 1452.1223712112092, + z: -838.3475108117565, + }, + }, + { + id: '620', + data: { + label: 'Gallipolis Daily Tribune (Ohio)', + x: -1591.8878197850045, + y: 3621.3994530709847, + z: 3312.35877057448, + }, + }, + { + id: ' Ohio)', + data: { + label: 'The Daily Sentinel (Pomeroy', + x: 7258.1971864247935, + y: -690.2426299543058, + z: -2496.8625914189515, + }, + }, + { + id: '623', + data: { + label: 'Ada Evening News (Oklahoma)', + x: -3070.657813112007, + y: 1147.805014280224, + z: -763.9068954548871, + }, + }, + { + id: '624', + data: { + label: 'Altus Times (Oklahoma)', + x: -2788.975109639369, + y: 1177.2790875989795, + z: -1194.0149923818851, + }, + }, + { + id: '625', + data: { + label: 'The Antlers American (Oklahoma)', + x: -3249.453431718881, + y: 1212.184587244128, + z: -553.7756283097373, + }, + }, + { + id: '626', + data: { + label: 'Blackwell Journal Tribune (Oklahoma)', + x: -2062.8486513534126, + y: 1213.0345301531204, + z: -688.0789413596193, + }, + }, + { + id: '627', + data: { + label: 'Bristow News - Recorder Citizen (Oklahoma)', + x: -2297.01408973426, + y: 1461.7911839518702, + z: -202.85511285463286, + }, + }, + { + id: '628', + data: { + label: 'Chickasha Daily Express (Oklahoma)', + x: -2339.2479375028947, + y: 1501.9309247710585, + z: -878.9071374171344, + }, + }, + { + id: '629', + data: { + label: 'Claremore Daily Progress (Oklahoma)', + x: -3035.536262737783, + y: 1899.5774352886422, + z: -249.6728135227782, + }, + }, + { + id: '630', + data: { + label: 'Cushing Daily Citizen (Oklahoma)', + x: -2677.4877641499456, + y: 1711.6454134222272, + z: -1214.1966495498564, + }, + }, + { + id: '631', + data: { + label: 'Duncan Banner (Oklahoma)', + x: -2446.5032594796407, + y: 1734.807761851478, + z: -1143.0989570650381, + }, + }, + { + id: '632', + data: { + label: 'Durant Daily Democrat (Oklahoma)', + x: -2706.313923264531, + y: 1710.3432955959815, + z: 123.90147583835429, + }, + }, + { + id: '633', + data: { + label: 'Edmond Evening Sun (Oklahoma)', + x: -2417.230124453529, + y: 2092.49364629645, + z: -340.0983459886276, + }, + }, + { + id: '634', + data: { + label: 'Enid News & Eagle (Oklahoma)', + x: -2230.359694481822, + y: 1635.662472344314, + z: -681.8011947400439, + }, + }, + { + id: ' Oklahoma)', + data: { + label: 'Indian Journal (Eufaula', + x: -657.5018359236682, + y: 5587.359229470024, + z: 1522.4181718673879, + }, + }, + { + id: '636', + data: { + label: 'Lake Eufaula World (Oklahoma)', + x: -3322.724683326532, + y: 1582.006285711147, + z: -759.0928321574539, + }, + }, + { + id: '637', + data: { + label: 'Fort Gibson Times (Oklahoma)', + x: -2361.861933460871, + y: 1698.7850311089167, + z: -117.37101998875902, + }, + }, + { + id: '638', + data: { + label: 'Frederick Leader (Oklahoma)', + x: -2547.5148668124157, + y: 1963.9659016156143, + z: -79.34364947535754, + }, + }, + { + id: '639', + data: { + label: 'Guthrie News Leader (Oklahoma)', + x: -2422.7458890696053, + y: 1891.2492739628321, + z: -249.80921768245608, + }, + }, + { + id: '640', + data: { + label: 'Guymon Daily Herald (Oklahoma)', + x: -2749.275425225726, + y: 1918.3692523252953, + z: -18.714382875055225, + }, + }, + { + id: '641', + data: { + label: 'Hartshorne Sun (Oklahoma)', + x: -2428.2898388937638, + y: 1821.628448251797, + z: -11.921446605533177, + }, + }, + { + id: '642', + data: { + label: 'Henryetta Daily Free-Lance (Oklahoma)', + x: -2984.138686702568, + y: 1640.9848369650842, + z: -182.63778625673274, + }, + }, + { + id: '643', + data: { + label: 'Holdenville Daily News (Oklahoma)', + x: -3125.473249366876, + y: 1792.1812308503504, + z: -233.4156153306011, + }, + }, + { + id: '644', + data: { + label: 'Jay American (Oklahoma)', + x: -2505.566673497606, + y: 787.0395307785855, + z: -459.0597960724085, + }, + }, + { + id: '646', + data: { + label: 'Macintosh County Democrat (Oklahoma)', + x: -2285.494118580072, + y: 1784.488943967712, + z: -1013.7320967476061, + }, + }, + { + id: '648', + data: { + label: 'Mid West City Sun (Oklahoma)', + x: -2628.4131541419943, + y: 1113.1421824949014, + z: -1142.9066054698126, + }, + }, + { + id: '650', + data: { + label: 'Moore American (Oklahoma)', + x: -2277.2891879000294, + y: 996.4130726851681, + z: -719.7281406712636, + }, + }, + { + id: '651', + data: { + label: 'Nowata Star (Oklahoma)', + x: -2662.076964913152, + y: 2088.748689576257, + z: -215.72256165940638, + }, + }, + { + id: '652', + data: { + label: 'The Norman Transcript (Oklahoma)', + x: -3085.585855252552, + y: 1322.071291812135, + z: -220.71972840922245, + }, + }, + { + id: '654', + data: { + label: 'Okmulgee Daily Times (Oklahoma)', + x: -2889.4198854714505, + y: 1962.9554836107422, + z: -897.3960391231175, + }, + }, + { + id: '655', + data: { + label: 'Pauls Valley Daily Democrat (Oklahoma)', + x: -2564.8550172393207, + y: 1013.3124394105869, + z: -387.87858641626354, + }, + }, + { + id: '656', + data: { + label: 'Poteau News & Sun (Oklahoma)', + x: -2703.006214459524, + y: 1201.5284080620595, + z: -149.53496479970852, + }, + }, + { + id: '658', + data: { + label: 'Pryor Daily Times (Oklahoma)', + x: -2022.284880837605, + y: 1509.4920717755308, + z: -253.61703268330209, + }, + }, + { + id: '659', + data: { + label: 'Sapulpa Daily Herald (Oklahoma)', + x: -3132.1830901838052, + y: 1402.152635429535, + z: -51.073325647503566, + }, + }, + { + id: '662', + data: { + label: 'Stilwell Democrat Journal (Oklahoma)', + x: -3091.519102015, + y: 1134.9100603723084, + z: -153.863786976687, + }, + }, + { + id: '663', + data: { + label: 'Tahlequah Daily Press (Oklahoma)', + x: -3177.477719036382, + y: 1431.2945509868798, + z: -573.8208271084845, + }, + }, + { + id: '664', + data: { + label: 'The Tuttle Times (Oklahoma)', + x: -2651.324760812578, + y: 1345.9946423693486, + z: -1240.1008193936152, + }, + }, + { + id: '665', + data: { + label: 'Waurika News-Democrat (Oklahoma)', + x: -3064.2863357406313, + y: 1998.3442043065857, + z: -703.0100134831898, + }, + }, + { + id: '666', + data: { + label: 'Westville Reporter (Oklahoma)', + x: -3116.3382206280453, + y: 1971.0861028592367, + z: -438.20463873324286, + }, + }, + { + id: '667', + data: { + label: 'Wewoka Daily Times (Oklahoma)', + x: -2440.155328307691, + y: 2124.327494457256, + z: -595.6660168306373, + }, + }, + { + id: '668', + data: { + label: 'Woodward News (Oklahoma)', + x: -2698.6188858153205, + y: 1921.9594725577047, + z: -762.0131691730669, + }, + }, + { + id: '669', + data: { + label: 'Corry Evening Journal (Pennsylvania)', + x: -2515.298331921661, + y: 1671.3251097540715, + z: 116.41332486029685, + }, + }, + { + id: ' Pennsylvania)', + data: { + label: 'Tribune Democrat (Johnstown', + x: -2380.387689125888, + y: -3547.850305776107, + z: 1271.768596781704, + }, + }, + { + id: '671', + data: { + label: 'Kane Republican (Pennsylvania)', + x: -2366.2689340077227, + y: 1577.8803579364653, + z: -1136.9777316443087, + }, + }, + { + id: '672', + data: { + label: 'The Meadville Tribune (Pennsylvania)', + x: -2826.576339341801, + y: 1730.536771743587, + z: -1140.4019634803242, + }, + }, + { + id: '673', + data: { + label: 'Punxsutawney Sprit (Pennsylvania)', + x: -2670.1198050138655, + y: 1840.919567170444, + z: -211.407763971806, + }, + }, + { + id: '674', + data: { + label: 'Ridgway Record (Pennsylvania)', + x: -1992.6806146989295, + y: 1478.6679418537776, + z: -625.734235304044, + }, + }, + { + id: '675', + data: { + label: "St. Mary's Daily Press (Pennsylvania)", + x: -2784.134282303947, + y: 1000.1382985790854, + z: -986.0379079265689, + }, + }, + { + id: '676', + data: { + label: 'Titusville Herald (Pennsylvania)', + x: -2457.6917235079854, + y: 1194.7645534238613, + z: 59.13552008829642, + }, + }, + { + id: '677', + data: { + label: 'New Castle News (Pennsylvania)', + x: -2039.338051393093, + y: 1618.441354454631, + z: -824.2023658159782, + }, + }, + { + id: '678', + data: { + label: 'Warren County Guide (Pennsylvania)', + x: -2106.503704788012, + y: 1125.6022219899273, + z: -400.55252816226573, + }, + }, + { + id: '679', + data: { + label: 'The Dispatch - News (South Carolina)', + x: -2155.7970775921253, + y: 1914.4150590037752, + z: -405.89167118538455, + }, + }, + { + id: '680', + data: { + label: 'Marion Star/Mullins Enterprise (South Carolina)', + x: -3284.554972986842, + y: 1722.6181946167453, + z: -400.8150061984891, + }, + }, + { + id: '681', + data: { + label: 'The Newberry Observer (South Carolina)', + x: -2858.188850237763, + y: 1025.478811316485, + z: -107.71210476800712, + }, + }, + { + id: ' South Carolina)', + data: { + label: 'The Herald Independent (Winnsboro', + x: 279.9699662641532, + y: 5762.656392032794, + z: -1673.1458421513546, + }, + }, + { + id: '683', + data: { + label: 'Hot Springs Star (South Dakota)', + x: -2748.1510880904566, + y: 2141.5849306059067, + z: -389.0308860300462, + }, + }, + { + id: ' Tennessee)', + data: { + label: 'Clarborne Progress (Tazewall', + x: -1818.1443009294073, + y: 3814.997595501074, + z: -3033.8208356363607, + }, + }, + { + id: '685', + data: { + label: 'Crossville Chronicle (Tennessee)', + x: -2491.714367501069, + y: 1229.3460548421303, + z: -1043.391987281962, + }, + }, + { + id: '686', + data: { + label: 'Macon County Times (Tennessee)', + x: -2879.7240008221347, + y: 888.128357286664, + z: -850.9924179003322, + }, + }, + { + id: '687', + data: { + label: 'The Millington Star (Tennessee)', + x: -2654.5348089803138, + y: 1207.3494678784243, + z: 90.14162029609857, + }, + }, + { + id: '688', + data: { + label: 'Athens Daily Review (Texas)', + x: -3008.9185178994544, + y: 1045.8580168150236, + z: -948.9671389328192, + }, + }, + { + id: '689', + data: { + label: 'Big Spring Herald (Texas)', + x: -3350.463672641107, + y: 1360.5777886708245, + z: -469.65528891261243, + }, + }, + { + id: '690', + data: { + label: 'Bonham Daily Favorite (Texas)', + x: -2722.7924494767585, + y: 1663.7952579532107, + z: -82.72053975136618, + }, + }, + { + id: '691', + data: { + label: 'Borger News-Herald (Texas)', + x: -2578.0584614897843, + y: 1469.5211567714584, + z: -1071.9838838167918, + }, + }, + { + id: ' Texas)', + data: { + label: 'Cedar Creek Pilot (Gun Barrel City', + x: -2987.651581524383, + y: 3336.257380892955, + z: 1765.3218731041707, + }, + }, + { + id: '693', + data: { + label: 'Cleburne Times Review (Texas)', + x: -2032.505401892591, + y: 1500.0276446503265, + z: -449.2009842137011, + }, + }, + { + id: '694', + data: { + label: 'Commerce Journal (Texas)', + x: -2270.0400403750004, + y: 981.0930881966326, + z: -456.8303803256718, + }, + }, + { + id: '695', + data: { + label: 'Corsicana Daily Sun (Texas)', + x: -2746.1648891614, + y: 1921.6000858872553, + z: -1052.3556798679986, + }, + }, + { + id: '697', + data: { + label: 'Del Rio News Herald (Texas)', + x: -2948.910470441782, + y: 2088.20889567116, + z: -556.5254645478731, + }, + }, + { + id: '698', + data: { + label: 'Gainesville Daily Register (Texas)', + x: -2655.1694403966935, + y: 1565.4634574515212, + z: -1219.8365878026466, + }, + }, + { + id: '700', + data: { + label: 'Honey Grove Signal Citizen (Texas)', + x: -2977.814074254344, + y: 1823.3801005665891, + z: -1054.4238592290792, + }, + }, + { + id: '701', + data: { + label: 'The Huntsville Item (Texas)', + x: -2661.017551537933, + y: 2057.2389919407487, + z: -965.2069938121135, + }, + }, + { + id: '702', + data: { + label: 'Jacksonville Daily Progress (Texas)', + x: -3144.4840207643483, + y: 1511.0204712885254, + z: -339.93266325012235, + }, + }, + { + id: '703', + data: { + label: 'Kilgor News Herald (Texas)', + x: -2251.2747641441456, + y: 1803.7190749380022, + z: -667.6827080855356, + }, + }, + { + id: '704', + data: { + label: 'Mexia Daily News (Texas)', + x: -2256.2274998490266, + y: 1901.3625491865696, + z: -154.4484015618105, + }, + }, + { + id: '705', + data: { + label: 'Mineral Wells Index (Texas)', + x: -3224.4547609724536, + y: 1268.179086057875, + z: -318.36472155016645, + }, + }, + { + id: '706', + data: { + label: 'Orange Leader (Texas)', + x: -2873.179864346433, + y: 887.8120529382874, + z: -312.77173221815747, + }, + }, + { + id: '707', + data: { + label: 'Palo Pinto County Shopper (Texas)', + x: -2270.7525954432804, + y: 1258.6763319989307, + z: -70.0621055038792, + }, + }, + { + id: '708', + data: { + label: 'Palestine Herald Press (Texas)', + x: -3171.4492270620485, + y: 1192.5373169892562, + z: -948.0976228869024, + }, + }, + { + id: '709', + data: { + label: 'Port Arthur News (Texas)', + x: -2163.422689752485, + y: 1690.93559705628, + z: -171.01962767191995, + }, + }, + { + id: '710', + data: { + label: 'Sweetwater Reporter (Texas)', + x: -2636.5636528483583, + y: 842.2793619240307, + z: -661.8995619751806, + }, + }, + { + id: '711', + data: { + label: 'Parker County Shopper (Texas)', + x: -2807.067818482286, + y: 1411.9420605832458, + z: -1173.605674813719, + }, + }, + { + id: '712', + data: { + label: 'The Weatherford Democrat (Texas)', + x: -2357.9831802008007, + y: 990.7799952234287, + z: -220.27508492760145, + }, + }, + { + id: ' West Virginia)', + data: { + label: 'Times West Virginian (Fairmont', + x: 1686.943139071139, + y: 4799.448567265239, + z: -3853.608339457089, + }, + }, + { + id: '714', + data: { + label: 'The Logan Banner (West Virginia)', + x: -2164.3325248540573, + y: 1513.6169888353238, + z: -74.38583058763048, + }, + }, + { + id: '716', + data: { + label: 'Point Pleasant Register (West Virginia)', + x: 3565.6863178416193, + y: 5735.716530153259, + z: -1979.5642037101525, + }, + }, + { + id: '717', + data: { + label: 'The Jackson Star News (West Virginia)', + x: -2439.9622982684073, + y: 1390.388827985102, + z: 117.51363201613766, + }, + }, + { + id: '719', + data: { + label: 'The (Beckley) Register-Herald (West Virginia)', + x: -3097.312890042503, + y: 1722.813773971309, + z: -452.859181521211, + }, + }, + { + id: '720', + data: { + label: 'Bluefield Daily Telegraph (West Virginia)', + x: -3210.852149141882, + y: 1043.1217309931346, + z: -420.4991091998368, + }, + }, + { + id: ' Alaska)', + data: { + label: 'KASH-FM (Anchorage', + x: 3280.31135737168, + y: 6194.23418656171, + z: 193.12741099145853, + }, + }, + { + id: ' Arizona)', + data: { + label: 'KESZ-FM (Phoenix', + x: 2339.7420386301055, + y: -5287.434539044198, + z: 1932.3798730111932, + }, + }, + { + id: ' Arkansas)', + data: { + label: 'KDDK-FM (Little Rock', + x: 2736.0610168593175, + y: 4933.753221384007, + z: -3643.7311063144766, + }, + }, + { + id: ' California)', + data: { + label: 'KEZY-AM (Anaheim', + x: 5830.580602990109, + y: 3673.1391318666138, + z: -2997.2472527544055, + }, + }, + { + id: ' Colorado)', + data: { + label: 'KBCO-FM (Denver', + x: 842.8584938998982, + y: 6199.7869604996895, + z: 869.310629877333, + }, + }, + { + id: ' Connecticut)', + data: { + label: 'WAVZ-AM (New Haven', + x: 7298.675971882559, + y: -1675.705414540671, + z: 496.9993862327475, + }, + }, + { + id: ' Florida)', + data: { + label: 'WGNE-FM (Daytona Beach', + x: 4020.9865175258788, + y: -4889.716371489099, + z: -1608.6557602286775, + }, + }, + { + id: '847', + data: { + label: 'WAIL-FM (Florida Keys)', + x: 431.52955513192126, + y: -893.7111369891519, + z: 3284.3922588069468, + }, + }, + { + id: '848', + data: { + label: 'WAVK-FM (Florida Keys)', + x: 351.8253214517004, + y: -1349.4580679126664, + z: 3689.0967219121, + }, + }, + { + id: '849', + data: { + label: 'WCTH-FM (Florida Keys)', + x: 72.24109576434513, + y: -1121.806866573838, + z: 3113.8498586185315, + }, + }, + { + id: '850', + data: { + label: 'WEOW-FM (Florida Keys)', + x: 583.8766728178057, + y: -1507.9433237070054, + z: 3629.350687618033, + }, + }, + { + id: '851', + data: { + label: 'WFKZ-FM (Florida Keys)', + x: 93.49900728413738, + y: -1059.0897242699696, + z: 3375.044505485812, + }, + }, + { + id: '852', + data: { + label: 'WKEZ-AM/FM (Florida Keys)', + x: 130.69729092035402, + y: -1450.4894293295015, + z: 2945.1714288779867, + }, + }, + { + id: '853', + data: { + label: 'WKWF-AM (Florida Keys)', + x: 781.1945865804126, + y: -1055.8660735434426, + z: 3369.2179093769446, + }, + }, + { + id: ' Idaho)', + data: { + label: 'KARO-FM (Boise', + x: 3616.2630446383414, + y: 6078.155939326159, + z: 745.728427722825, + }, + }, + { + id: ' Louisiana)', + data: { + label: 'KKND-FM (New Orleans', + x: 3566.888586938267, + y: 5012.479330100041, + z: 3142.0321012705585, + }, + }, + { + id: ' Maryland)', + data: { + label: 'WCAO-AM (Baltimore', + x: -1650.628268487818, + y: 3272.104302700039, + z: -3734.2734638622273, + }, + }, + { + id: ' Massachusetts)', + data: { + label: 'WSRS-FM (Worcester', + x: 2532.0874319930585, + y: 4292.596104267405, + z: -4306.395472621839, + }, + }, + { + id: ' Michigan)', + data: { + label: 'WBCT-AM (Grand Rapids', + x: 3672.695642617475, + y: 5961.276047795135, + z: -1458.5964294650935, + }, + }, + { + id: ' Missisppi)', + data: { + label: 'WJMI-FM (Jackson', + x: -2081.9626389493446, + y: 2449.463555456332, + z: -3497.953594608192, + }, + }, + { + id: ' Missouri)', + data: { + label: 'KATZ-AM/FM (St. Louis', + x: 2907.5402930966275, + y: -5406.641698044447, + z: -638.4801890854577, + }, + }, + { + id: ' Nevada)', + data: { + label: 'KFMS-FM (Las Vegas', + x: -1280.2599321658677, + y: 3969.478365776416, + z: -3484.757250057805, + }, + }, + { + id: ' New Mexico)', + data: { + label: 'KZRR-FM (Albuquerque', + x: 3768.2211124007513, + y: -4961.71303608428, + z: -1733.268516248209, + }, + }, + { + id: ' North Dakota)', + data: { + label: 'KFYR-AM (Bismarck', + x: 6718.973587351641, + y: 3365.1667049034527, + z: 952.0769109123793, + }, + }, + { + id: ' Oregon)', + data: { + label: 'KLOO-AM (Albany', + x: -788.5905660280258, + y: 5164.002487494408, + z: -2271.9169989714555, + }, + }, + { + id: ' Rhode Island)', + data: { + label: 'WWBB-FM (Providence', + x: 3596.322221674682, + y: 6001.511287759696, + z: 113.21437703259683, + }, + }, + { + id: ' Utah)', + data: { + label: 'KALL-AM (Salt Lake City', + x: 1032.640173589502, + y: -5195.316237206295, + z: 2042.863554472954, + }, + }, + { + id: ' Virginia)', + data: { + label: 'WCYK-FM (Charlottesville', + x: 7502.499896810827, + y: -1889.2957606267198, + z: -886.9289628840673, + }, + }, + { + id: ' Washington)', + data: { + label: 'KELA-AM (Centralia', + x: -2857.9354333772103, + y: 2160.3346770716153, + z: 3067.510607349275, + }, + }, + { + id: ' Wisconsin)', + data: { + label: 'WKKV-FM (Milwaukee', + x: 2631.4577027812434, + y: 5880.226995725774, + z: -2205.7169617942923, + }, + }, + { + id: ' Wyoming)', + data: { + label: 'KRVK-FM (Casper', + x: 2507.1697342098973, + y: 5449.100641021933, + z: -3024.6806730562635, + }, + }, + { + id: '1243', + data: { + label: 'Hispanic Broadcasting', + x: 1436.6198867918722, + y: -1019.1480802870162, + z: 2741.9714689133116, + }, + }, + { + id: '1244', + data: { + label: 'Clear Channel International', + x: 807.1703675378492, + y: -1341.4118112416404, + z: 3508.243358232733, + }, + }, + { + id: 'Arizona)', + data: { + label: 'KTTU TV (Tucson', + x: 4805.716137900007, + y: -4249.540822900806, + z: 2265.707592565169, + }, + }, + { + id: ' Kansas)', + data: { + label: 'KSAS TV (Wichita', + x: -2729.278210847093, + y: -2810.114804548646, + z: 2118.4415374779833, + }, + }, + { + id: ' Minnesota)', + data: { + label: 'WFTC (TV Minneapolis', + x: 4066.245384820169, + y: -4543.8768411444335, + z: 2695.9445795879997, + }, + }, + { + id: '1265', + data: { + label: 'Adshel Eller Media', + x: 86.42430930098865, + y: -1571.3910751774274, + z: 3421.657807884529, + }, + }, + { + id: '1266', + data: { + label: 'Katz Media Group', + x: -25.396542039436852, + y: -1363.0363524313377, + z: 3178.019512475296, + }, + }, + { + id: '1267', + data: { + label: 'SFX Entertainment', + x: 703.6791447712226, + y: -1156.8204323202017, + z: 3703.5140812596924, + }, + }, + { + id: '1268', + data: { + label: 'Comcast Cable', + x: -1414.7888343812494, + y: 2803.682401482047, + z: -3745.2058913819415, + }, + }, + { + id: '1269', + data: { + label: 'Comcast Digital TV', + x: 1497.4721735146409, + y: 287.351826301317, + z: 1850.1186633482694, + }, + }, + { + id: '1270', + data: { + label: 'Garden State Cablevision', + x: 1802.5298716878085, + y: -428.057785061061, + z: 2059.868633811546, + }, + }, + { + id: '1271', + data: { + label: '', + x: -612.9742336674924, + y: -4234.980013303694, + z: -2240.9809072668554, + }, + }, + { + id: '1272', + data: { + label: '', + x: 3817.5321676630833, + y: -543.7969436695461, + z: 5322.377768041931, + }, + }, + { + id: '1273', + data: { + label: '', + x: -1661.0625406826914, + y: 1410.6110982532966, + z: -4600.77209471272, + }, + }, + { + id: '1274', + data: { + label: 'Comcast SportsNet', + x: 1527.5019272777686, + y: 30.61554859528402, + z: 2088.962554969323, + }, + }, + { + id: '1275', + data: { + label: 'Home Team Sports', + x: 1615.5961130828814, + y: 159.83807183189106, + z: 2069.617213426056, + }, + }, + { + id: '1276', + data: { + label: 'Midwest Sports Channel', + x: 1246.946117344011, + y: -419.6454297597838, + z: 1833.755671241438, + }, + }, + { + id: '1277', + data: { + label: 'CN8', + x: 1351.5431782796882, + y: -116.5220062940461, + z: 2061.8986505506596, + }, + }, + { + id: '1278', + data: { + label: 'The Golf Channel', + x: 1646.5324094997795, + y: 789.5222939048323, + z: 642.6137333167509, + }, + }, + { + id: '1279', + data: { + label: 'The Speedvision Network', + x: -3748.9622910731, + y: 487.2357697615053, + z: -1593.40839996403, + }, + }, + { + id: '1280', + data: { + label: 'The Outdoor Life Network', + x: 3922.9009907311274, + y: 2964.2148893334097, + z: -4897.649286560537, + }, + }, + { + id: '1281', + data: { + label: 'Sunshine Network', + x: 1652.7795263531184, + y: -159.1827769218427, + z: 929.4930966800765, + }, + }, + { + id: '1282', + data: { + label: "Viewer's Choice", + x: 1729.7955308227185, + y: -74.01913295774546, + z: 2162.869396928902, + }, + }, + { + id: '1283', + data: { + label: 'Philadelphia 76ers', + x: 1431.8870485400384, + y: -522.8721394180209, + z: 1887.4167473949135, + }, + }, + { + id: '1284', + data: { + label: 'Philadelphia Flyers', + x: 1229.4958252829615, + y: -213.554753599278, + z: 1956.6713023984714, + }, + }, + { + id: '1285', + data: { + label: 'Philadelphia Phantoms', + x: 1843.7805970303907, + y: -238.9984633065648, + z: 2122.372613334843, + }, + }, + { + id: '1286', + data: { + label: 'Comcast-Spectacor', + x: 1427.6808380335895, + y: -327.0153083485463, + z: 2266.3016629839076, + }, + }, + { + id: '1287', + data: { + label: 'FirstUnion Center', + x: 1257.4154546384934, + y: -371.5942279770364, + z: 2771.60181906376, + }, + }, + { + id: '1288', + data: { + label: '', + x: -737.6257231628463, + y: -2264.5501143309057, + z: 4845.388309032621, + }, + }, + { + id: '1289', + data: { + label: 'Cox Cable', + x: 1712.7358556286006, + y: -124.08135909378095, + z: -203.35759449134883, + }, + }, + { + id: '1290', + data: { + label: 'Cox Digital TV', + x: 1398.661393649849, + y: 225.74906982177424, + z: 240.886489901627, + }, + }, + { + id: '1291', + data: { + label: 'TWC Cable Partners', + x: 1528.3058760831157, + y: 127.58516185124091, + z: -67.45738708462291, + }, + }, + { + id: '1292', + data: { + label: '', + x: 889.4742058625487, + y: 4761.731245701057, + z: 3511.350290600678, + }, + }, + { + id: '1293', + data: { + label: 'National Cable Communications', + x: 1529.5706087170108, + y: -307.6724206072389, + z: -238.45122652954888, + }, + }, + { + id: '1294', + data: { + label: 'Sprint Spectrum', + x: 1411.5262113623073, + y: -736.4582455506949, + z: 1019.3089130132103, + }, + }, + { + id: '1295', + data: { + label: 'Cox Communications PCS', + x: 1339.2569207503284, + y: -387.89951188895384, + z: -145.63516457751618, + }, + }, + { + id: '1296', + data: { + label: 'Phillie Co', + x: 1176.5552521037566, + y: -379.8000051753097, + z: 15.596539492028992, + }, + }, + { + id: '1297', + data: { + label: 'Teleport Communications Group', + x: 1881.294613964852, + y: -416.42912130981205, + z: 619.6301594685118, + }, + }, + { + id: '1298', + data: { + label: 'Cox Digital Telephone', + x: 1240.0644488891012, + y: -130.48235065858148, + z: -118.15222863167578, + }, + }, + { + id: '1299', + data: { + label: 'Cox Fibernet', + x: 1116.161606427005, + y: -228.54449078179164, + z: 175.90649141507248, + }, + }, + { + id: '1300', + data: { + label: 'Syntellect', + x: 1777.348946448455, + y: 79.57789405980495, + z: -62.30348685950535, + }, + }, + { + id: '1301', + data: { + label: '', + x: 1732.1935776384332, + y: -5313.653192945905, + z: -586.782750622157, + }, + }, + { + id: '1302', + data: { + label: '', + x: 2333.928137208048, + y: 3384.32824427145, + z: -5096.832750738816, + }, + }, + { + id: '1303', + data: { + label: '', + x: 791.3154807319232, + y: -4763.247346709586, + z: 2785.0425960017465, + }, + }, + { + id: '1304', + data: { + label: '', + x: 6183.1726300686705, + y: 348.0831280811735, + z: 4010.569882460777, + }, + }, + { + id: '1305', + data: { + label: 'PPVN Holding', + x: 4857.934683480159, + y: -1018.8713583028604, + z: -3551.0246101535145, + }, + }, + { + id: '1306', + data: { + label: 'Digital Cable Radio Associates', + x: 733.665496980431, + y: 4169.692066219306, + z: -4003.653094459862, + }, + }, + { + id: '1307', + data: { + label: '', + x: 4091.6987105767025, + y: 245.71194593355017, + z: -4815.214110669659, + }, + }, + { + id: '1308', + data: { + label: 'Product Information Network', + x: 1318.6304169490318, + y: 82.76035300330744, + z: -27.292055983842154, + }, + }, + { + id: '1309', + data: { + label: '', + x: 5328.436117528972, + y: 610.866686241474, + z: 4584.243255386744, + }, + }, + { + id: '1310', + data: { + label: '', + x: 5846.173165109339, + y: -1813.6189230677448, + z: 3968.270672286686, + }, + }, + { + id: '1311', + data: { + label: 'European Channel Management', + x: -3233.592770723409, + y: 1057.6736898808938, + z: -3134.222004727251, + }, + }, + { + id: '1312', + data: { + label: 'GEMS Television', + x: 1189.3725358800766, + y: 33.977385651005456, + z: 209.13684597157305, + }, + }, + { + id: '1313', + data: { + label: '', + x: -3690.44933352116, + y: 517.0259070457771, + z: -2385.142763119986, + }, + }, + { + id: '1314', + data: { + label: 'Cox Interactive Media', + x: 1225.21693298928, + y: 213.6916902979247, + z: 650.5609677332927, + }, + }, + { + id: '1315', + data: { + label: 'MP3.com', + x: 906.9176998980768, + y: 617.9503964353585, + z: 969.0395669226397, + }, + }, + { + id: '1316', + data: { + label: 'Talk City', + x: 3179.189291967596, + y: -608.0602179712251, + z: -333.967784404966, + }, + }, + { + id: '1317', + data: { + label: 'Cox Newspapers', + x: -12.961267099863695, + y: 1886.7274620060084, + z: -358.5583278714981, + }, + }, + { + id: '1318', + data: { + label: 'The Atlanta Journal-Constitution', + x: -329.3770897495531, + y: 2223.1664503635366, + z: -599.7080528039629, + }, + }, + { + id: '1319', + data: { + label: 'Austin American -Statesman', + x: -447.0084075530555, + y: 2033.9451044017537, + z: -226.9765726516524, + }, + }, + { + id: ' NC)', + data: { + label: 'The Daily Advance (Elizabeth City', + x: 3382.656836336471, + y: 4682.375397671579, + z: -3757.3693319252857, + }, + }, + { + id: ' CO)', + data: { + label: 'The Daily Sentinel (Grand Junction', + x: 3737.0467630971566, + y: 3437.884092705925, + z: -4579.2229580153335, + }, + }, + { + id: '1324', + data: { + label: 'Dayton Daily News', + x: -247.3016625579299, + y: 1846.9685587978809, + z: -770.5835524530473, + }, + }, + { + id: '1325', + data: { + label: 'Longview News-Journal (TX)', + x: -386.3092940931048, + y: 2010.6803181073712, + z: -639.6967290389333, + }, + }, + { + id: '1326', + data: { + label: 'The Lufkin Daily News (TX)', + x: -94.45169233232316, + y: 2085.4766436747864, + z: -805.592427486847, + }, + }, + { + id: '1327', + data: { + label: 'The Marshall News Messenger (TX)', + x: -391.28861212007536, + y: 2215.676558241955, + z: -349.7657837518779, + }, + }, + { + id: '1328', + data: { + label: 'Palm Beach Daily News', + x: -309.4263353222314, + y: 2197.813533702224, + z: -124.64193585784734, + }, + }, + { + id: '1329', + data: { + label: 'The Palm Beach Post', + x: -133.9108477703347, + y: 2373.5746525623854, + z: -464.4910092949629, + }, + }, + { + id: '1330', + data: { + label: 'Rocky Mount Telegram (NC)', + x: -201.6734649425049, + y: 2305.968972798152, + z: -207.04259258452566, + }, + }, + { + id: '1331', + data: { + label: 'Springfield News-Sun (OH)', + x: -64.17995223836036, + y: 2271.680640134427, + z: -672.0826309773302, + }, + }, + { + id: '1332', + data: { + label: 'Waco Tribune-Herald (TX)', + x: -474.5904618826173, + y: 1850.132004562372, + z: -455.0636122718172, + }, + }, + { + id: '1333', + data: { + label: 'Cox News Service', + x: 156.38438570905785, + y: 1515.153540305593, + z: 323.4295135252619, + }, + }, + { + id: '1334', + data: { + label: 'Florida Pennysaver (West Palm Beach)', + x: -299.46820093855945, + y: 1723.6666274275387, + z: 353.4489186173934, + }, + }, + { + id: ' OH)', + data: { + label: 'Tri County Shoppers News (Springfield', + x: 7813.60175528845, + y: -1277.1850335125055, + z: -925.282209620593, + }, + }, + { + id: '1343', + data: { + label: 'The Farmville Enterprise (NC)', + x: -151.41196238994087, + y: 1899.8262194251993, + z: 284.783603246276, + }, + }, + { + id: '1348', + data: { + label: 'Cox Broadcasting', + x: 144.67522005145545, + y: 1315.5375797172046, + z: 80.80924738519178, + }, + }, + { + id: ' GA)', + data: { + label: 'WSB TV (Atlanta', + x: 3684.168558354817, + y: 4620.763464359279, + z: -3523.5758318387493, + }, + }, + { + id: ' FL)', + data: { + label: 'WFTV (Orlando', + x: 237.99659666831002, + y: 3415.612537460621, + z: -4831.52524154988, + }, + }, + { + id: ' PA)', + data: { + label: 'WPXI TV (Pittsburgh', + x: -2623.387174306345, + y: -3603.622439706461, + z: 36.488117838087334, + }, + }, + { + id: ' NV)', + data: { + label: 'KAME TV (Reno', + x: 7470.877058924694, + y: -1389.8335972802565, + z: 1320.0691717334448, + }, + }, + { + id: '1357', + data: { + label: 'KRXI TV (Reno)', + x: -296.2553832424272, + y: 1518.1257594126153, + z: 45.95958505460952, + }, + }, + { + id: ' WA)', + data: { + label: 'KIRO TV (Seattle', + x: -2544.22516834949, + y: 3069.8285872965153, + z: 2896.000436672915, + }, + }, + { + id: '1360', + data: { + label: '', + x: -2065.0648155248377, + y: 4302.937542541196, + z: -2072.1563085855246, + }, + }, + { + id: '1361', + data: { + label: 'Rysher Entertainment', + x: -222.4096955318553, + y: 1452.4570072692716, + z: -199.72474983252113, + }, + }, + { + id: '1362', + data: { + label: 'Cox Radio', + x: 363.86441312979457, + y: 1263.0809536096126, + z: 610.9102861849263, + }, + }, + { + id: ' AL)', + data: { + label: 'WZZK-FM (Birmingham', + x: 904.9729858760276, + y: 5451.728050675639, + z: -2885.4479156628945, + }, + }, + { + id: ' OK)', + data: { + label: 'WHIO-AM (Dayton', + x: 502.49861738368884, + y: 5109.871868366946, + z: -3230.822369815759, + }, + }, + { + id: ' CT)', + data: { + label: 'WEZN-FM (Bridgeport', + x: 5841.052432694064, + y: -4099.4528631807125, + z: 182.07495290861564, + }, + }, + { + id: '1415', + data: { + label: 'Manheim Auctions', + x: 261.37158591868325, + y: 1168.5977645694486, + z: 263.49814547809274, + }, + }, + { + id: '1416', + data: { + label: 'Walt Disney Company Book Publishing', + x: 426.19902339834016, + y: 1296.394289350645, + z: 3392.894504558701, + }, + }, + { + id: '1417', + data: { + label: 'Hyperion Books', + x: 380.5022178342446, + y: 1989.9893016967276, + z: 3273.332825836104, + }, + }, + { + id: '1418', + data: { + label: 'Miramax Books', + x: 356.35814243450716, + y: 1031.1712126080836, + z: 3040.769604548195, + }, + }, + { + id: '1419', + data: { + label: 'ABC Publishing Group', + x: 61.37127216493972, + y: 1305.4025335613535, + z: 3186.562592203244, + }, + }, + { + id: '1420', + data: { + label: 'Disney Publishing', + x: 728.2832903994686, + y: 1132.3786926730263, + z: 3109.9804380148025, + }, + }, + { + id: '1421', + data: { + label: 'Diversified Publications Group', + x: 567.3565252148192, + y: 1453.3761002600502, + z: 3456.816585410673, + }, + }, + { + id: '1422', + data: { + label: 'Financial Services and Medical Group', + x: 749.247399431924, + y: 1486.4027669885484, + z: 3362.4514569873118, + }, + }, + { + id: '1423', + data: { + label: 'Miller Publishing', + x: 952.28994184551, + y: 1394.1730852995038, + z: 3180.587968817197, + }, + }, + { + id: '1424', + data: { + label: 'Automotive Industries', + x: 433.85756066762644, + y: 2135.5027943745968, + z: 2879.4894995837853, + }, + }, + { + id: '1425', + data: { + label: 'Biography', + x: -691.9092453535401, + y: 4646.72091550194, + z: 3135.296660153031, + }, + }, + { + id: '1426', + data: { + label: 'Discover', + x: 214.7647062571703, + y: 1509.1872915702943, + z: 2247.2665076216617, + }, + }, + { + id: '1427', + data: { + label: 'Disney Adventures', + x: 325.83414717745046, + y: 1066.191248388384, + z: 2602.1397326321407, + }, + }, + { + id: '1428', + data: { + label: 'Disney Magazine', + x: 613.5767969541295, + y: 1693.0600406946587, + z: 3461.519288266555, + }, + }, + { + id: '1429', + data: { + label: 'ECN News', + x: 90.46202654421143, + y: 1225.542256651976, + z: 2501.850761813594, + }, + }, + { + id: '1430', + data: { + label: 'ESPN Magazine', + x: 6153.623862609562, + y: -909.2016115806964, + z: -4167.223257289275, + }, + }, + { + id: '1431', + data: { + label: 'Family Fun', + x: 885.3435115662487, + y: 1387.007349210365, + z: 2548.9146029851318, + }, + }, + { + id: '1432', + data: { + label: 'Family PC', + x: 581.2275591394583, + y: 2172.030318660364, + z: 2492.938829463356, + }, + }, + { + id: '1433', + data: { + label: 'Institutional Investor', + x: 661.6907499712462, + y: 1027.5097830300372, + z: 2886.710157544931, + }, + }, + { + id: '1434', + data: { + label: '', + x: 2769.9200594157583, + y: 5808.337377181252, + z: 2327.823993764356, + }, + }, + { + id: '1435', + data: { + label: 'JCK', + x: 339.89981588559124, + y: 1514.95952523341, + z: 3252.3508813763187, + }, + }, + { + id: '1436', + data: { + label: 'Kentucky Prairie Farmer', + x: 16.99008145700118, + y: 1217.453967137818, + z: 2651.708212215992, + }, + }, + { + id: '1437', + data: { + label: 'Kodin', + x: 550.1682343924986, + y: 1055.4034643606756, + z: 2692.4214874005424, + }, + }, + { + id: '1438', + data: { + label: 'Los Angeles', + x: 303.07839309146453, + y: 1210.7322174197698, + z: 2432.27431238727, + }, + }, + { + id: '1439', + data: { + label: 'Multichannel News', + x: 1110.274499849508, + y: 1536.153450889792, + z: 282.78239798649014, + }, + }, + { + id: '1440', + data: { + label: 'Talk', + x: 633.1963755847065, + y: 2057.1589416584775, + z: 3295.407841552396, + }, + }, + { + id: '1441', + data: { + label: 'Top Famille', + x: 1065.331806918298, + y: 1653.2476778888797, + z: 2981.8349223425826, + }, + }, + { + id: '1442', + data: { + label: 'Video Business', + x: 883.1366711924309, + y: 2013.3177641705058, + z: 3008.8277999782017, + }, + }, + { + id: '1443', + data: { + label: 'Quality', + x: 749.2678157799609, + y: 1464.6856403693362, + z: 3111.418347086164, + }, + }, + { + id: ' MI)', + data: { + label: 'County Press (Lapeer', + x: -4124.127098971201, + y: -71.20308268896677, + z: -873.7561453221028, + }, + }, + { + id: '1446', + data: { + label: 'Narragansett Times', + x: 788.0178773135584, + y: 1263.7208530161163, + z: 3275.91128926239, + }, + }, + { + id: '1447', + data: { + label: 'St. Louis Daily Record', + x: 604.4854060867882, + y: 1715.5844377339847, + z: 2238.151404207965, + }, + }, + { + id: '1448', + data: { + label: 'Penny Power', + x: 923.0613287902528, + y: 1784.632495328876, + z: 2943.4266771154926, + }, + }, + { + id: '1449', + data: { + label: 'Sutton Industries', + x: 824.5511484251637, + y: 1631.0031437089178, + z: 3359.041672123546, + }, + }, + { + id: '1450', + data: { + label: 'Disney Broadcasting', + x: 6464.007661669917, + y: -1453.4887926681638, + z: -3319.93061511226, + }, + }, + { + id: '1451', + data: { + label: 'ABC Television Network', + x: 433.42162117169516, + y: 1138.8643601999197, + z: 3225.1794817256514, + }, + }, + { + id: '1452', + data: { + label: 'WLS TV - Chicago', + x: 152.90010257805554, + y: 1448.3517453471773, + z: 3355.5760361525954, + }, + }, + { + id: '1453', + data: { + label: 'WJRT TV - Flint', + x: 937.6391629622314, + y: 1784.5854271706257, + z: 2537.2198372344083, + }, + }, + { + id: '1454', + data: { + label: 'KFSN TV - Fresno', + x: 313.15599292119936, + y: 1494.6936829237889, + z: 3460.3990380681325, + }, + }, + { + id: '1455', + data: { + label: 'KTRK TV - Houston', + x: 1036.18786388637, + y: 1656.6232439298851, + z: 2747.701856050595, + }, + }, + { + id: '1456', + data: { + label: 'KABC TV - Los Angeles', + x: 992.9047121951145, + y: 1588.3281727874783, + z: 3207.372626301297, + }, + }, + { + id: '1457', + data: { + label: 'WABC TV - New York City', + x: 888.066130236537, + y: 1273.4896823282386, + z: 3045.549288598489, + }, + }, + { + id: '1458', + data: { + label: 'WPVI TV - Philadelphia', + x: 397.6691790995287, + y: 2058.3389246230568, + z: 2605.6995487259755, + }, + }, + { + id: '1459', + data: { + label: 'WTVD TV - Raleigh - Durham', + x: 623.0676187483987, + y: 2222.4326152211715, + z: 3053.1774916676454, + }, + }, + { + id: '1460', + data: { + label: 'KGO TV - San Francisco', + x: 915.6566806735925, + y: 1601.5284770746514, + z: 2475.357630784169, + }, + }, + { + id: '1461', + data: { + label: 'WTVG TV - Toledo', + x: 755.5274761815836, + y: 2033.4243645925033, + z: 2621.2143511903205, + }, + }, + { + id: '1462', + data: { + label: 'WKHX - Atlanta', + x: 348.0765597621165, + y: 1693.9586248509665, + z: 2208.538847220164, + }, + }, + { + id: '1463', + data: { + label: 'WYAY - Atlanta', + x: 837.308816969631, + y: 1650.3611669343495, + z: 3114.1814152559664, + }, + }, + { + id: '1464', + data: { + label: 'WDWD - Atlanta', + x: 684.1062559187628, + y: 1864.1301938684203, + z: 3390.9974269172767, + }, + }, + { + id: '1465', + data: { + label: 'WMVP - Chicago', + x: 403.34882430993673, + y: 1003.376887064423, + z: 2837.6385932113444, + }, + }, + { + id: '1466', + data: { + label: 'WLS - Chicago', + x: 887.6175806594784, + y: 2058.561664616874, + z: 2777.5153441951547, + }, + }, + { + id: '1467', + data: { + label: 'WXCD - Chicago', + x: 720.3960782349636, + y: 1867.1219554302133, + z: 3166.258550052169, + }, + }, + { + id: '1468', + data: { + label: 'WBAP - Dallas', + x: 254.1647065281859, + y: 1267.5606121226833, + z: 3352.8043508011615, + }, + }, + { + id: '1469', + data: { + label: 'KSCS - Dallas', + x: 698.8914769700712, + y: 1967.0951940502312, + z: 2829.77939335183, + }, + }, + { + id: '1470', + data: { + label: 'WDRQ - Detroit', + x: 379.6857575765253, + y: 1858.2448363867168, + z: 3351.706356447871, + }, + }, + { + id: '1471', + data: { + label: 'WJR - Detroit', + x: 435.1006586360262, + y: 2273.0991509028295, + z: 2667.2621044380576, + }, + }, + { + id: '1472', + data: { + label: 'WPLT - Detroit', + x: 817.7880437632073, + y: 1147.7632603786667, + z: 2896.058468664189, + }, + }, + { + id: '1473', + data: { + label: 'KABC - Los Angeles', + x: 560.8689719913515, + y: 1180.908568177436, + z: 2499.6527712872667, + }, + }, + { + id: '1474', + data: { + label: 'KLOS - Los Angeles', + x: 372.8397300646017, + y: 1699.1496014518484, + z: 3250.4982505887738, + }, + }, + { + id: '1475', + data: { + label: 'KTZN - Los Angeles', + x: 12.862829056042159, + y: 1751.0995637208255, + z: 2653.4996596173382, + }, + }, + { + id: '1476', + data: { + label: 'KQRS - Minneapolis - St. Paul', + x: 357.96560450303843, + y: 1384.3550490976686, + z: 2262.1662826245756, + }, + }, + { + id: '1477', + data: { + label: 'KXXR - Minneapolis - St. Paul', + x: 718.8983612976837, + y: 1347.6872729621305, + z: 2388.440594499569, + }, + }, + { + id: '1478', + data: { + label: 'KDIZ - Minneapolis - St. Paul', + x: 580.8077431853962, + y: 1383.377103562282, + z: 3245.3257245406885, + }, + }, + { + id: '1479', + data: { + label: 'KZNR - Minneapolis - St. Paul', + x: 481.61765684327366, + y: 2212.8724068257943, + z: 3141.8536483930893, + }, + }, + { + id: '1480', + data: { + label: 'KZNT - Minneapolis - St. Paul', + x: 729.5375256708434, + y: 1165.5609069442382, + z: 2648.4676117053114, + }, + }, + { + id: '1481', + data: { + label: 'KZNZ - Minneapolis - St. Paul', + x: 389.1770201506898, + y: 2006.0965961025443, + z: 3056.0776299069307, + }, + }, + { + id: '1482', + data: { + label: 'WABC - New York City', + x: 154.34097626521603, + y: 1943.1090197868327, + z: 2503.2269734755696, + }, + }, + { + id: '1483', + data: { + label: 'WPLJ - New York City', + x: -36.226947607032685, + y: 1730.1160112230418, + z: 2372.8457543360623, + }, + }, + { + id: '1484', + data: { + label: 'KGO - San Francisco', + x: 27.516323511136886, + y: 1862.1738011118862, + z: 2955.846590846533, + }, + }, + { + id: '1485', + data: { + label: 'KSFO - San Francisco', + x: 110.4390912375108, + y: 2003.012460588901, + z: 2669.3256428359678, + }, + }, + { + id: '1486', + data: { + label: 'WMAL - Washington DC', + x: 158.5692334189343, + y: 2005.8985240403754, + z: 2956.591580227842, + }, + }, + { + id: '1487', + data: { + label: 'WJZW - Washington DC', + x: 811.4437555822993, + y: 2003.025783276505, + z: 2471.1594519606683, + }, + }, + { + id: '1488', + data: { + label: 'WRQX - Washington DC', + x: 280.4955102145666, + y: 1704.7871386168788, + z: 3458.426705931149, + }, + }, + { + id: '1489', + data: { + label: 'ESPN Radio', + x: 537.7241434071781, + y: 1087.0276778967145, + z: 3090.5396372094538, + }, + }, + { + id: '1490', + data: { + label: 'The Disney Channel', + x: -86.31358228643819, + y: 2031.2415363903458, + z: 2941.081971336529, + }, + }, + { + id: '1491', + data: { + label: 'Toon Disney', + x: 107.00007941778402, + y: 1369.0234185314334, + z: 2348.3947829982553, + }, + }, + { + id: '1492', + data: { + label: 'ESPN', + x: -14.489672956575955, + y: 962.4476784457282, + z: 579.6788739704613, + }, + }, + { + id: '1493', + data: { + label: 'A&E Television (Arts & Entertainment)', + x: 1129.941779497479, + y: 2026.183488377152, + z: 2797.5317776344546, + }, + }, + { + id: '1494', + data: { + label: 'The History Channel', + x: -376.76508704768753, + y: 5106.4006937763315, + z: -2726.35640572673, + }, + }, + { + id: '1495', + data: { + label: 'Lifetime Television', + x: 577.6593789906217, + y: 1150.6605257521842, + z: 3296.9666288725234, + }, + }, + { + id: '1496', + data: { + label: 'Lifetime Movie Network', + x: -92.20815209513295, + y: 1952.2423148156397, + z: 2723.5047162830087, + }, + }, + { + id: '1497', + data: { + label: '', + x: 4287.392224070522, + y: -3728.537186412452, + z: -3684.235047488456, + }, + }, + { + id: '1498', + data: { + label: 'The Disney Channel UK', + x: 164.50458215592974, + y: 1049.6969682908732, + z: 2820.030207285242, + }, + }, + { + id: '1499', + data: { + label: 'The Disney Channel Taiwan', + x: 978.5024687095857, + y: 1439.2888926607827, + z: 2713.278316484471, + }, + }, + { + id: '1500', + data: { + label: 'The Disney Channel Australia', + x: 525.7110560954906, + y: 1357.2145883244737, + z: 2294.982308828265, + }, + }, + { + id: '1501', + data: { + label: 'The Disney Channel Malaysia', + x: 957.2407437358328, + y: 1861.3722489556828, + z: 3187.131091610771, + }, + }, + { + id: '1502', + data: { + label: 'The Disney Channel France', + x: 134.46342121748842, + y: 1697.9147104394365, + z: 2259.0000086942655, + }, + }, + { + id: '1503', + data: { + label: 'The Disney Channel Middle East', + x: 892.3753388019554, + y: 1260.2845439526054, + z: 2772.335257863139, + }, + }, + { + id: '1504', + data: { + label: 'The Disney Channel Italy', + x: 114.00631098220737, + y: 1715.8278177566096, + z: 3180.325627337664, + }, + }, + { + id: '1505', + data: { + label: 'The Disney Channel Spain', + x: 694.2886315920395, + y: 2058.7913275197443, + z: 3116.967206798603, + }, + }, + { + id: '1506', + data: { + label: 'ESPN INC. International Ventures', + x: 944.3545466677639, + y: 1837.2482822793738, + z: 2732.576970991181, + }, + }, + { + id: '1507', + data: { + label: 'Eurosport', + x: 228.10048123390786, + y: 2061.2725840977746, + z: 2379.2619479395335, + }, + }, + { + id: '1508', + data: { + label: 'Sportsvision of Australia', + x: -191.5138475911152, + y: 1792.5733919558227, + z: 2832.8843873722394, + }, + }, + { + id: '1509', + data: { + label: 'ESPN Brazil', + x: 732.3185289009338, + y: 2196.385341120255, + z: 2740.2920854948143, + }, + }, + { + id: '1510', + data: { + label: 'ESPN STAR', + x: 305.09887008403365, + y: 2271.7861944903116, + z: 2877.604387129535, + }, + }, + { + id: '1511', + data: { + label: 'Net STAR', + x: -95.46181762453338, + y: 1505.7674299338025, + z: 3072.5888458338636, + }, + }, + { + id: '1512', + data: { + label: 'Buena Vista Television', + x: -12.528957553411667, + y: 1323.7807156800038, + z: 3044.6879555573637, + }, + }, + { + id: '1513', + data: { + label: 'Touchstone Television', + x: 199.78234949091126, + y: 1133.483000319197, + z: 3155.0449777929116, + }, + }, + { + id: '1514', + data: { + label: 'Walt Disney Television', + x: 420.4770766832969, + y: 1891.8340602112175, + z: 2252.8263115704103, + }, + }, + { + id: '1515', + data: { + label: 'Walt Disney Television Animation', + x: 383.2628698332989, + y: 1988.848086677546, + z: 3593.6475788158227, + }, + }, + { + id: '1516', + data: { + label: 'Walt Disney Television Animation Japan', + x: 449.0126264742854, + y: 2305.5644107528856, + z: 3942.11856359889, + }, + }, + { + id: '1517', + data: { + label: 'Walt Disney Television Animation Australia', + x: 177.87273785136188, + y: 2210.64513065581, + z: 3983.314085935868, + }, + }, + { + id: '1518', + data: { + label: 'Walt Disney Television Animation Canada', + x: 483.2155683084256, + y: 2058.3316601941615, + z: 4071.6414660931796, + }, + }, + { + id: '1519', + data: { + label: 'Walt Disney Pictures', + x: 539.8788428867056, + y: 2289.6021701060054, + z: 2844.023984520484, + }, + }, + { + id: '1520', + data: { + label: 'Touchstone Pictures', + x: 159.59673364023928, + y: 651.3751836990233, + z: 1853.0185138771767, + }, + }, + { + id: '1521', + data: { + label: 'Hollywood Pictures', + x: 2874.6998413203305, + y: 208.52006413584422, + z: -388.2378835324421, + }, + }, + { + id: '1522', + data: { + label: 'Caravan Pictures', + x: 772.4456637006505, + y: 1569.6008363049052, + z: 2341.7122012940686, + }, + }, + { + id: '1523', + data: { + label: 'Miramax Films', + x: 805.0216617254865, + y: 2160.0035463338345, + z: 2954.6462631055165, + }, + }, + { + id: '1524', + data: { + label: 'Buena Vista Home Video', + x: 710.6586315463358, + y: 1838.3348613451542, + z: 2375.8961232038905, + }, + }, + { + id: '1525', + data: { + label: 'Buena Vista Home Entertainment', + x: 480.7992405024355, + y: 2006.3616230085477, + z: 2354.6097297190254, + }, + }, + { + id: '1526', + data: { + label: 'Buena Vista International', + x: 306.79786841090265, + y: 1199.3892146296741, + z: 2876.9131583949957, + }, + }, + { + id: '1527', + data: { + label: '', + x: -2009.311104557552, + y: 4109.149140429368, + z: 2495.842142528329, + }, + }, + { + id: '1528', + data: { + label: 'The Disney Store', + x: 1005.0726356988287, + y: 1429.1376666129631, + z: 2930.391674948873, + }, + }, + { + id: '1529', + data: { + label: 'Buena Vista Internet Group', + x: -607.0737988993769, + y: 2112.535075047718, + z: 2258.9858701279654, + }, + }, + { + id: '1530', + data: { + label: 'ABC Internet Group', + x: -938.8942193585895, + y: 2216.5401410645645, + z: 1917.762023136744, + }, + }, + { + id: '1531', + data: { + label: 'ABC.com', + x: -1054.47181803106, + y: 2103.9924931114188, + z: 2095.7903497255943, + }, + }, + { + id: '1532', + data: { + label: 'ABCNEWS.com', + x: -552.6805592240474, + y: 2586.0197932662177, + z: 2326.617305362331, + }, + }, + { + id: '1533', + data: { + label: 'Oscar.com', + x: -735.0882719115166, + y: 2364.3777597021212, + z: 1869.5883862085252, + }, + }, + { + id: '1534', + data: { + label: 'Mr. Showbiz', + x: -957.6541385235128, + y: 2440.903546251803, + z: 2173.5991669457326, + }, + }, + { + id: '1535', + data: { + label: 'Disney Online', + x: -825.1384606296157, + y: 2036.31635165208, + z: 2652.127436606353, + }, + }, + { + id: '1536', + data: { + label: "Disney's Daily Blast", + x: -742.3808775733654, + y: 2563.7060765539004, + z: 2169.127671580177, + }, + }, + { + id: '1537', + data: { + label: 'Disney.Com', + x: -592.2198429513586, + y: 2484.6313233021638, + z: 2560.082704995106, + }, + }, + { + id: '1538', + data: { + label: 'Family.Com', + x: -911.3876545794781, + y: 2301.8524962766505, + z: 2599.4708232243015, + }, + }, + { + id: '1539', + data: { + label: 'ESPN Internet Group', + x: -1024.979645027241, + y: 2061.07845569315, + z: 2467.1145399057314, + }, + }, + { + id: '1540', + data: { + label: 'ESPN.sportzone.com', + x: -1058.621228633594, + y: 2281.04024832817, + z: 2322.049409016499, + }, + }, + { + id: '1541', + data: { + label: 'Soccernet.com', + x: -614.6130330553366, + y: 2245.426258744508, + z: 2698.308780525059, + }, + }, + { + id: '1542', + data: { + label: 'NFL.com', + x: -838.7238696311646, + y: 2482.453372980517, + z: 2474.368654840801, + }, + }, + { + id: '1543', + data: { + label: 'NBA.com', + x: -1012.3128260582722, + y: 1886.6137595026164, + z: 2154.916948567412, + }, + }, + { + id: '1544', + data: { + label: 'NASCAR.com', + x: -544.8187747968673, + y: 2521.4731100697873, + z: 2009.3154494033922, + }, + }, + { + id: '1545', + data: { + label: 'Go Network', + x: 617.4386338019734, + y: 1709.9973087085366, + z: 3267.1695520145545, + }, + }, + { + id: '1546', + data: { + label: 'Infoseek', + x: 366.3789981251305, + y: 2170.5156686433124, + z: 2450.5988048970244, + }, + }, + { + id: '1547', + data: { + label: 'Disney Interactive', + x: 123.07694583895679, + y: 1900.0077754291178, + z: 2297.565975310704, + }, + }, + { + id: '1548', + data: { + label: 'Buena Vista Music Group', + x: 73.07430522313541, + y: 2049.9149917596164, + z: 3136.6774086878113, + }, + }, + { + id: '1549', + data: { + label: 'Hollywood Records', + x: -104.68969377229726, + y: 1736.1052179342992, + z: 3177.383623007272, + }, + }, + { + id: '1550', + data: { + label: 'Lyric Street Records', + x: 162.27351808826558, + y: 2205.4776470211505, + z: 2779.787094933614, + }, + }, + { + id: '1551', + data: { + label: 'Mammoth Records', + x: -177.5927857172214, + y: 1402.8212569542227, + z: 2849.8622321564044, + }, + }, + { + id: '1552', + data: { + label: 'Walt Disney Records', + x: 83.52373632891045, + y: 1910.9857007147184, + z: 3280.468528544852, + }, + }, + { + id: '1553', + data: { + label: 'Walt Disney Theatrical Productions', + x: 139.29337278122892, + y: 2184.664358742605, + z: 2583.2618097045797, + }, + }, + { + id: '1554', + data: { + label: 'Anaheim Sports', + x: 269.500904467525, + y: 2158.2566000006354, + z: 3221.9767263462995, + }, + }, + { + id: '1555', + data: { + label: 'Mighty Ducks of Anaheim', + x: -52.988559733450714, + y: 1565.6476615568806, + z: 2430.7504501499716, + }, + }, + { + id: '1556', + data: { + label: 'Anaheim Angels', + x: -140.7033487747874, + y: 1721.1641308470694, + z: 2973.3142739745317, + }, + }, + { + id: ' CA', + data: { + label: 'Disneyland - Anaheim', + x: -1563.2482981907276, + y: -1674.4305955963093, + z: -3428.7453358489015, + }, + }, + { + id: '1558', + data: { + label: '', + x: 3460.5405063690223, + y: -4100.762058451776, + z: -3975.861763609864, + }, + }, + { + id: '1559', + data: { + label: 'Disneyland Paris', + x: -35.81601268678097, + y: 2147.847067019701, + z: 2822.979255236157, + }, + }, + { + id: '1560', + data: { + label: 'Disney Regional Entertainment', + x: 125.92528185337994, + y: 1706.8116174199272, + z: 3363.84550628763, + }, + }, + { + id: '1561', + data: { + label: 'Disneyland Resort', + x: 141.49835120214377, + y: 1155.91461342211, + z: 3000.3542043569805, + }, + }, + { + id: '1562', + data: { + label: 'Disney Vacation Club', + x: -70.0430971623284, + y: 1882.973903788014, + z: 2494.2033043674915, + }, + }, + { + id: '1563', + data: { + label: 'Epcot', + x: 2.0312645477844478, + y: 1238.5804340104835, + z: 2885.43937084911, + }, + }, + { + id: '1564', + data: { + label: 'Magic Kingdom', + x: -183.46133374454675, + y: 1685.5690579176885, + z: 2634.974935603519, + }, + }, + { + id: '1565', + data: { + label: 'Tokyo Disneyland', + x: 1989.4104825088716, + y: 5185.598666970677, + z: 3559.1523898830706, + }, + }, + { + id: ' FL', + data: { + label: 'Walt Disney World - Orlando', + x: -3149.795663480737, + y: -2618.3554524323017, + z: -1436.33489646754, + }, + }, + { + id: '1567', + data: { + label: "Disney's Animal Kingdom", + x: -57.38188829319878, + y: 1545.6742525182958, + z: 2875.3567045930477, + }, + }, + { + id: '1568', + data: { + label: 'Disney - MGM Studios', + x: -152.25307917774222, + y: 1505.569962141115, + z: 2674.644048731304, + }, + }, + { + id: '1569', + data: { + label: 'Walt Disney World Sports Complex', + x: 17.569578059467293, + y: 1520.0211701042647, + z: 3243.586440412742, + }, + }, + { + id: '1570', + data: { + label: 'Disney Cruise Line', + x: 174.48856940326652, + y: 2199.543098999628, + z: 3049.03367484315, + }, + }, + { + id: '1571', + data: { + label: 'The Disney Institute', + x: -32.335866159876225, + y: 1431.6427118471524, + z: 2543.9065981321974, + }, + }, + { + id: '1572', + data: { + label: 'The Wall Street Journal', + x: -1170.2086148717622, + y: -1679.0102025318063, + z: 1513.0450412594546, + }, + }, + { + id: '1573', + data: { + label: 'The Wall Street Journal Interactive Edition', + x: -1495.8415538499055, + y: -1811.2357949843351, + z: 1795.6023901983565, + }, + }, + { + id: '1574', + data: { + label: 'The Asian Wall Street Journal', + x: -1118.3785093175868, + y: -1706.9399915593572, + z: 2002.685989132415, + }, + }, + { + id: '1575', + data: { + label: 'The Asian Wall Street Journal Weekly Edition', + x: -1103.266530194903, + y: -1698.947004070177, + z: 2440.0775412735725, + }, + }, + { + id: '1576', + data: { + label: 'The Wall Street Journal Europe', + x: -931.8644932278238, + y: -1900.1667816640108, + z: 1810.0173652156693, + }, + }, + { + id: '1577', + data: { + label: 'The Wall Street Journal Special Edition', + x: -1399.3027982983904, + y: -2049.530532489854, + z: 1594.6978292217043, + }, + }, + { + id: '1578', + data: { + label: 'The Wall Street Journal Americas', + x: -1102.545623554481, + y: -2099.65384764362, + z: 1608.2266896857716, + }, + }, + { + id: '1579', + data: { + label: 'The Wall Street Journal Classroom Edition', + x: -1331.0500889310383, + y: -1546.3700062277626, + z: 1907.6080284594202, + }, + }, + { + id: '1580', + data: { + label: 'The Wall Street Journal Sunday (insert)', + x: -1210.513806332977, + y: -1997.758999623583, + z: 1832.6522394325386, + }, + }, + { + id: '1581', + data: { + label: 'SmartMoney Magazine', + x: -734.7189304958648, + y: -727.9406219973531, + z: -527.3055690233178, + }, + }, + { + id: '1582', + data: { + label: 'America Economia', + x: -1230.036772323646, + y: -1489.7844683822289, + z: 1106.090161256173, + }, + }, + { + id: '1583', + data: { + label: "Barron's", + x: -934.6279206944142, + y: -1632.7430214936408, + z: 1001.7364508605605, + }, + }, + { + id: '1584', + data: { + label: 'Far Eastern Economic Review', + x: -1597.6497322619246, + y: -1812.1778776849037, + z: 703.3998626218249, + }, + }, + { + id: '1585', + data: { + label: 'National Business and Employment Weekly', + x: -1345.049416032535, + y: -1952.1709524769758, + z: 532.0852421304504, + }, + }, + { + id: '1586', + data: { + label: 'Dow Jones Interactive', + x: -1497.2038933041292, + y: -1402.4691013353065, + z: 380.5907967087168, + }, + }, + { + id: '1587', + data: { + label: 'World Reporter', + x: -2280.5774008509507, + y: 4547.36091318694, + z: 882.3945580696422, + }, + }, + { + id: '1588', + data: { + label: '', + x: -1550.78327970497, + y: -2043.4584189427092, + z: 4236.19225440209, + }, + }, + { + id: '1589', + data: { + label: 'Dow Jones Newswires', + x: -1558.5864058292896, + y: -1747.9894730862572, + z: 453.56353274689945, + }, + }, + { + id: '1590', + data: { + label: 'Dow Jones Indexes', + x: -1658.9958929439065, + y: -1482.0631311357813, + z: 624.789107506206, + }, + }, + { + id: '1591', + data: { + label: 'Ottaway Newspapers', + x: -1071.140625764536, + y: -1853.6445122331932, + z: 383.7683605162681, + }, + }, + { + id: '1592', + data: { + label: 'Santa Cruz Daily Sentinel (CA)', + x: -1502.3329711047609, + y: -1418.168175072114, + z: 976.0873271847213, + }, + }, + { + id: '1595', + data: { + label: 'Cape Cod Times (MA)', + x: -1112.5158022937678, + y: -1884.4810274657405, + z: 938.462898091799, + }, + }, + { + id: '1596', + data: { + label: 'Salem Evening News (MA)', + x: -1010.7030726962614, + y: -1930.8213373701406, + z: 670.275611401247, + }, + }, + { + id: '1597', + data: { + label: 'Gloucester Times (MA)', + x: -1357.9272639641079, + y: -1953.9840885310407, + z: 797.7411528972145, + }, + }, + { + id: '1600', + data: { + label: 'Traverese City Record -Eagle (MI)', + x: -1597.968564872566, + y: -1637.561809289225, + z: 885.9651909845854, + }, + }, + { + id: ' MN)', + data: { + label: 'The Free Press (Mankato', + x: 2638.653203853744, + y: -5110.349442697335, + z: -1894.6141477590247, + }, + }, + { + id: '1602', + data: { + label: 'The Joplin Globe (MO)', + x: -1364.3864238893755, + y: -1765.4759877585434, + z: 1034.5704140216317, + }, + }, + { + id: ' NH)', + data: { + label: 'The Herald (Portsmouth', + x: -1554.6580681840414, + y: -2214.9793913506255, + z: -3447.8528066637477, + }, + }, + { + id: ' OR)', + data: { + label: 'Mail Tribune (Medford', + x: -2268.1697745610363, + y: 3079.1961051255616, + z: -2879.5515863100563, + }, + }, + { + id: '1611', + data: { + label: 'CNBC', + x: 1657.197821970459, + y: 2288.4800362051496, + z: 2756.1076572000857, + }, + }, + { + id: '1613', + data: { + label: 'CNBC Europe', + x: 3679.461045728573, + y: -477.4454627900257, + z: -4741.3022776801545, + }, + }, + { + id: '1614', + data: { + label: 'The Wall Street Journal Report', + x: -1322.4958571720674, + y: -1720.262486876037, + z: 276.80664661283834, + }, + }, + { + id: ' Inc. & Partners', + data: { + label: 'F.F. Soucy', + x: -721.5716964239601, + y: -893.1783074952176, + z: 3774.8835118724587, + }, + }, + { + id: '1616', + data: { + label: 'U.S. Satellite Broadcasting', + x: -1502.080505232326, + y: -1221.2898569524775, + z: 709.2236463251352, + }, + }, + { + id: '1617', + data: { + label: 'Abilene Reporter-New (TX)', + x: 6860.36453607453, + y: -3148.5898044972187, + z: 1233.0810522751224, + }, + }, + { + id: '1618', + data: { + label: 'The Albuquerque Tribune (NM)', + x: 6202.753432836999, + y: -3273.02889857844, + z: 1831.200089404167, + }, + }, + { + id: ' SC)', + data: { + label: 'Anderson Independent-Mail (Anderson', + x: -2809.1379985573158, + y: 3572.9778244821046, + z: -744.5334391980768, + }, + }, + { + id: '1620', + data: { + label: 'Birmingham Post-Herald (AL)', + x: 6247.4665380625065, + y: -3264.772657155702, + z: 1218.9596196301165, + }, + }, + { + id: '1622', + data: { + label: 'The Cincinnati Post (includes The Kentucky Post) (OH)', + x: 6902.895031494558, + y: -2756.7542883501906, + z: 1489.7999131609786, + }, + }, + { + id: '1623', + data: { + label: 'Corpus Christi Caller-Times (TX)', + x: 6798.1548255079515, + y: -3228.841374110197, + z: 1852.2271866442888, + }, + }, + { + id: '1624', + data: { + label: 'Denver Rocky Mountain News', + x: 6094.791319571268, + y: -3010.146977294481, + z: 1714.5426583997073, + }, + }, + { + id: '1625', + data: { + label: 'Evansville Courier & Press (IN)(CO)', + x: 6470.847664262845, + y: -3466.516160981644, + z: 1773.409908394255, + }, + }, + { + id: '1626', + data: { + label: 'The Knoxville News-Sentinel (TN)', + x: 6512.624651227055, + y: -3222.2281834386786, + z: 1090.519454106611, + }, + }, + { + id: ' TN)', + data: { + label: 'The Commercial Appeal (Memphis', + x: 197.6823195973597, + y: 4589.478370665419, + z: -3789.507591940263, + }, + }, + { + id: '1628', + data: { + label: 'Naples Daily News (FL)', + x: 6611.192989384713, + y: -2806.0372050701917, + z: 1958.7994180953663, + }, + }, + { + id: '1629', + data: { + label: 'The Stuart News (includes Port St. Lucie News) (FL)', + x: 6362.008652558806, + y: -2662.1366566907113, + z: 1349.5758735375632, + }, + }, + { + id: '1631', + data: { + label: 'Redding Record-Searchlight (CA)', + x: 6650.8583798159425, + y: -2977.3471858297685, + z: 1080.2588864548516, + }, + }, + { + id: '1633', + data: { + label: 'Ventura County Star (CA)', + x: 6696.790434285022, + y: -2644.147929749764, + z: 1353.4865832502342, + }, + }, + { + id: '1634', + data: { + label: 'Vero Beach Press Journal (FL)', + x: 6667.125839630457, + y: -3405.871634244945, + z: 1275.8770731235231, + }, + }, + { + id: '1636', + data: { + label: 'Scripps Howard News Service', + x: 6751.630304120277, + y: -2649.851341131303, + z: 1692.230206244707, + }, + }, + { + id: '1648', + data: { + label: 'WXYZ TV � Detroit', + x: 6220.715703584846, + y: -3422.0798283064496, + z: 1583.83741708979, + }, + }, + { + id: '1649', + data: { + label: 'WEWS TV � Cleveland', + x: 6976.141101088655, + y: -3012.022113012313, + z: 1498.2175032788793, + }, + }, + { + id: '1650', + data: { + label: 'WFTS TV � Tampa', + x: 6870.437504217018, + y: -2869.920525461664, + z: 1810.3548572733896, + }, + }, + { + id: '1651', + data: { + label: 'KNXV TV � Phoenix', + x: 6836.512900614337, + y: -2859.297556932333, + z: 1223.8044217772242, + }, + }, + { + id: '1652', + data: { + label: 'WMAR TV � Baltimore', + x: 6178.484397731292, + y: -2890.6812872694195, + z: 1282.1377606844642, + }, + }, + { + id: '1653', + data: { + label: 'WCPO TV � Cincinnati', + x: 6082.784010829204, + y: -3156.993587203228, + z: 1458.563268836999, + }, + }, + { + id: ' MO', + data: { + label: 'KSHB TV � Kansas City', + x: -3582.175181936142, + y: 1387.6705032737343, + z: -2350.7955019601745, + }, + }, + { + id: '1655', + data: { + label: 'WPTV � West Palm Beach', + x: 6313.712860302242, + y: -3121.899688354843, + z: 1979.4319990356842, + }, + }, + { + id: '1656', + data: { + label: 'KJRH TV � Tulsa', + x: 6481.183489711784, + y: -2649.9367631191726, + z: 1797.2318529104284, + }, + }, + { + id: '1657', + data: { + label: 'Home & Garden Television', + x: 6405.356221559577, + y: -3477.52230279686, + z: 1355.522896190391, + }, + }, + { + id: '1658', + data: { + label: 'Food Network', + x: 2797.1131732594827, + y: -2479.649881721498, + z: 2849.8527511768193, + }, + }, + { + id: '1659', + data: { + label: 'Do-It-Yourself Network', + x: 6219.6451198351115, + y: -2723.8386918484707, + z: 1612.6841859615013, + }, + }, + { + id: '1660', + data: { + label: 'SportSouth Cable Television Broadcast', + x: 6527.149199011558, + y: -2570.969712807341, + z: 1550.6760257802525, + }, + }, + { + id: '1661', + data: { + label: 'Yellow Pages', + x: 5504.433568494467, + y: -487.50170004187294, + z: 4480.6080392211925, + }, + }, + { + id: '1662', + data: { + label: 'USA TODAY', + x: 1989.9693043018683, + y: -3532.4988709465138, + z: -1858.555513172308, + }, + }, + { + id: '1663', + data: { + label: 'USA WEEKEND', + x: 1288.1142489207675, + y: -3938.7443702617247, + z: -1681.2827212803863, + }, + }, + { + id: '1664', + data: { + label: 'USA TODAY Baseball Weekly', + x: 1782.8237147646296, + y: -3579.1662552669345, + z: -1950.7111572783988, + }, + }, + { + id: '1665', + data: { + label: 'USA TODAY Information Network', + x: 1334.328199976043, + y: -3703.8132653458883, + z: -1721.204919053674, + }, + }, + { + id: '1666', + data: { + label: 'Gannett News Service', + x: 1911.5861132090843, + y: -3382.8521039949037, + z: -1481.0489395588097, + }, + }, + { + id: '1667', + data: { + label: 'The Montgomery Advertiser(Alabama)', + x: 1947.6823806110388, + y: -3438.1923428335153, + z: -1711.5360287546648, + }, + }, + { + id: '1668', + data: { + label: 'Tucson Citizen (Arizona)', + x: 2065.539175411572, + y: -3898.7655843294438, + z: -1980.3117800079588, + }, + }, + { + id: '1669', + data: { + label: 'The Arizona Republic (Arizona)', + x: 1706.8048745919723, + y: -3465.458904169219, + z: -1817.8115386331526, + }, + }, + { + id: '1671', + data: { + label: 'Marin Independent Journal (California)', + x: 1278.7537017494396, + y: -3781.403731215256, + z: -1489.0034223609482, + }, + }, + { + id: '1674', + data: { + label: 'The San Bernadino County Sun (California)', + x: 2163.7764684815447, + y: -4256.708635016953, + z: -1501.553769063575, + }, + }, + { + id: '1675', + data: { + label: 'Tulare Advance -Register (California)', + x: 2165.368615427394, + y: -3672.057565944387, + z: -1848.968211463097, + }, + }, + { + id: '1676', + data: { + label: 'Visalia Times-Delta (California)', + x: 2155.689524611289, + y: -3510.1401544006862, + z: -1405.1304205633176, + }, + }, + { + id: '1677', + data: { + label: 'Fort Collins Coloradoan (Colorado)', + x: 2299.2583115285993, + y: -3709.6228644992048, + z: -1502.2157963866878, + }, + }, + { + id: '1678', + data: { + label: 'Norwich Bulletin (Connecticut)', + x: 1958.1071327649365, + y: -3696.279014313189, + z: -2001.9804549754942, + }, + }, + { + id: ' Delaware)', + data: { + label: 'The News Journal (Wilmington', + x: -544.394333101926, + y: -1799.8429763671586, + z: 5162.292778580926, + }, + }, + { + id: '1682', + data: { + label: 'Pensacola News Journal (Florida)', + x: 2265.987583675802, + y: -3853.9752837682136, + z: -1700.357995336071, + }, + }, + { + id: '1684', + data: { + label: 'Pacific Daily News (Guam)', + x: 1945.6022872275985, + y: -3471.4028534821205, + z: -1240.7589660709762, + }, + }, + { + id: '1685', + data: { + label: 'The Honolulu Advertiser (Hawaii)', + x: 1680.5737167008413, + y: -3381.6177707350676, + z: -1559.6601234222994, + }, + }, + { + id: '1687', + data: { + label: '', + x: -2960.730182072317, + y: -851.7489824258333, + z: 3387.8397771861964, + }, + }, + { + id: '1688', + data: { + label: 'Rockford Register Star (Illinois)', + x: 1549.2362319636663, + y: -4317.798951640947, + z: -1654.2808341263833, + }, + }, + { + id: '1692', + data: { + label: 'The Indianapolis Star (Indiana)', + x: 2186.444673101227, + y: -4007.9917690608117, + z: -1862.8635264911002, + }, + }, + { + id: '1693', + data: { + label: 'The Des Moines Register (Iowa)', + x: 2074.1193330096417, + y: -4266.002424541688, + z: -1712.0189991782497, + }, + }, + { + id: '1694', + data: { + label: 'Iowa City Press-Citizen (Iowa)', + x: 1498.3637717137217, + y: -3504.8180995485295, + z: -1685.6605575756384, + }, + }, + { + id: '1698', + data: { + label: 'Alexandria Town Talk (Louisiana)', + x: 1882.85575609244, + y: -3995.773580057781, + z: -2025.2366867751366, + }, + }, + { + id: '1701', + data: { + label: 'Battle Creek Enquirer (Michigan)', + x: 1671.3675338116752, + y: -3943.7785295544877, + z: -2031.1517111695578, + }, + }, + { + id: '1702', + data: { + label: 'The Detroit News (Michigan)', + x: 3434.5543090904466, + y: -3788.139829302821, + z: -2808.0090146554, + }, + }, + { + id: '1703', + data: { + label: 'Lansing State Journal (Michigan)', + x: 2197.6970129345254, + y: -3683.2818883851783, + z: -1290.973111162929, + }, + }, + { + id: '1705', + data: { + label: 'St. Cloud Times (Minnesota)', + x: 1423.6638771076266, + y: -3636.4112864758768, + z: -1261.1359652031472, + }, + }, + { + id: '1706', + data: { + label: 'Hattiesburg American (Mississippi)', + x: 2011.028263880381, + y: -3683.007518368274, + z: -1138.3047858651614, + }, + }, + { + id: '1708', + data: { + label: 'Springfield News-Leader (Missouri)', + x: 1617.1043724396375, + y: -3938.973877238287, + z: -1125.3035251118856, + }, + }, + { + id: '1709', + data: { + label: 'Great Falls Tribune (Montana)', + x: 2033.6198246341876, + y: -4128.338955063541, + z: -1933.1801951671212, + }, + }, + { + id: '1710', + data: { + label: 'Reno Gazette-Journal (Nevada)', + x: 2172.114774001562, + y: -4056.228780408436, + z: -1696.4046106447638, + }, + }, + { + id: '1711', + data: { + label: 'Asbury Park Press (New Jersey)', + x: 2298.827732642365, + y: -3889.5955902207706, + z: -1456.2559407685699, + }, + }, + { + id: ' New Jersey)', + data: { + label: 'The Courier-News (Bridgewater', + x: 7169.953034203816, + y: 907.446956661962, + z: 2829.4563508266783, + }, + }, + { + id: '1718', + data: { + label: 'The Ithaca Journal (New York)', + x: 2175.228700043418, + y: -3564.4682866139347, + z: -1664.2885490136093, + }, + }, + { + id: '1719', + data: { + label: 'Poughkeepsie Journal (New York)', + x: 2155.0090561555467, + y: -3953.42713433287, + z: -1096.3159075444735, + }, + }, + { + id: '1720', + data: { + label: 'Rochester Democrat and Chronicle (New York)', + x: 2216.2795932677354, + y: -4049.8278202710085, + z: -1266.0431799081134, + }, + }, + { + id: '1729', + data: { + label: 'Rockland Journal News (New York)', + x: 1431.7250454224018, + y: -3862.6274738524694, + z: -1154.1513955198254, + }, + }, + { + id: '1732', + data: { + label: 'Asheville Citizen-Times (North Carolina)', + x: 2094.344896704459, + y: -4151.256867976919, + z: -1168.5402587224783, + }, + }, + { + id: '1733', + data: { + label: 'Chillicothe Gazette (Ohio)', + x: 1925.5567107087747, + y: -4371.852091170561, + z: -1603.9165681786344, + }, + }, + { + id: '1734', + data: { + label: 'The Cincinnati Enquirer (Ohio)', + x: 1754.804055882101, + y: -3695.2171016255143, + z: -1067.0646729135738, + }, + }, + { + id: '1736', + data: { + label: '', + x: -798.4329245013333, + y: 495.06741836063424, + z: -4741.369331884606, + }, + }, + { + id: '1737', + data: { + label: 'The Marietta Times (Ohio)', + x: 2287.6415654515076, + y: -4093.7941974903188, + z: -1441.008434204237, + }, + }, + { + id: '1738', + data: { + label: '', + x: 1482.5187626619863, + y: 1623.2516668649546, + z: 5369.878659429967, + }, + }, + { + id: '1741', + data: { + label: '', + x: 5596.358139114446, + y: -2353.079899101545, + z: 3695.830225573367, + }, + }, + { + id: '1742', + data: { + label: 'Coshocton Tribune (Ohio)', + x: 1299.910192266149, + y: -4074.692396926728, + z: -1511.0932394661559, + }, + }, + { + id: '1743', + data: { + label: 'Lancaster Eagle-Gazette (Ohio)', + x: 1687.3832866169723, + y: -3740.802984608728, + z: -2027.5812464509252, + }, + }, + { + id: '1747', + data: { + label: 'Muskogee Daily Phoenix and Times-Democrat (Oklahoma)', + x: 1765.8243565256716, + y: -3973.6877815381285, + z: -1017.4421684722226, + }, + }, + { + id: '1750', + data: { + label: 'The Reporter (Lansdale)', + x: 1605.5236285923024, + y: -3473.902610258345, + z: -1326.4067731428602, + }, + }, + { + id: '1751', + data: { + label: 'The Greenville News (South Carolina)', + x: 1629.0618987774774, + y: -3586.44097660027, + z: -1114.8617065281849, + }, + }, + { + id: ' South Dakota)', + data: { + label: 'Argus Leader (Sioux Falls', + x: 7512.901225001124, + y: -1109.6604288227954, + z: 1795.0324517714341, + }, + }, + { + id: '1754', + data: { + label: 'The Jackson Sun (Tennessee)', + x: 2014.7382323845786, + y: -4352.008218892487, + z: -1385.8306434812923, + }, + }, + { + id: '1756', + data: { + label: 'El Paso Times (Texas)', + x: 2268.850069289402, + y: -3844.7213237848764, + z: -1195.4811830013841, + }, + }, + { + id: '1758', + data: { + label: 'The Burlington Free Press (Vermont)', + x: 1716.9740977883096, + y: -4342.175560151756, + z: -1711.7941729888266, + }, + }, + { + id: '1760', + data: { + label: 'The Bellingham Herald (Washington)', + x: 1778.4386408404605, + y: -4396.927185363915, + z: -1434.0854945660594, + }, + }, + { + id: '1761', + data: { + label: 'The Olympian (Washington)', + x: 1997.926973898347, + y: -4046.679614912418, + z: -1029.8409167780576, + }, + }, + { + id: '1763', + data: { + label: '', + x: 4367.078449565564, + y: -4536.51594819009, + z: 2141.343903111533, + }, + }, + { + id: '1764', + data: { + label: 'Green Bay Press-Gazette (Wisconsin)', + x: 1722.4832347619576, + y: -4182.8931614180565, + z: -1956.6491229844135, + }, + }, + { + id: '1765', + data: { + label: 'Wausau Daily Herald (Wisconsin)', + x: 1363.6607755030225, + y: -3573.9688123437127, + z: -1505.298980568424, + }, + }, + { + id: '1768', + data: { + label: 'Marshfield News-Herald (Wisconsin)', + x: 1835.9757408411963, + y: -4290.066048633622, + z: -1828.6581968349717, + }, + }, + { + id: '1769', + data: { + label: 'Oshkosh Northwestern (Wisconsin)', + x: 1396.9150870454691, + y: -3988.5278410354745, + z: -1896.4077893744766, + }, + }, + { + id: '1770', + data: { + label: 'The Sheboygan Press (Wisconsin)', + x: 1498.4717793097882, + y: -3636.7650083548588, + z: -1897.0284331846617, + }, + }, + { + id: '1771', + data: { + label: 'Stevens Point Journal (Wisconsin)', + x: 1537.8323255519254, + y: -4212.307675310208, + z: -1864.123390610282, + }, + }, + { + id: '1772', + data: { + label: 'Daily Tribune (Wisconsin Rapids)', + x: 1935.5355234241467, + y: -3831.832258668948, + z: -946.7647678307817, + }, + }, + { + id: '1773', + data: { + label: 'Army Times Publishing', + x: 1523.66037131553, + y: -4249.780267934291, + z: -781.9717936013802, + }, + }, + { + id: '1774', + data: { + label: 'Army Times', + x: 1854.2853643661424, + y: -4282.157837571866, + z: -490.1934125943719, + }, + }, + { + id: '1775', + data: { + label: 'Navy Times', + x: 1705.7940751622698, + y: -4538.897479738345, + z: -500.24361422959026, + }, + }, + { + id: '1776', + data: { + label: 'Navy Times Marine Corps', + x: 1447.0394959342293, + y: -4289.099159187977, + z: -347.4578048163584, + }, + }, + { + id: '1777', + data: { + label: 'Air Force Times', + x: 1184.4868224786533, + y: -4431.083893273236, + z: -536.7930001212834, + }, + }, + { + id: '1778', + data: { + label: 'Federal Times', + x: 1546.632373990303, + y: -4687.682042111944, + z: -818.2062999524506, + }, + }, + { + id: '1779', + data: { + label: 'Defense News', + x: 1158.8457652748284, + y: -4122.555026539535, + z: -575.1699766529541, + }, + }, + { + id: '1780', + data: { + label: 'Space News', + x: 1104.7369658607684, + y: -4330.08415594886, + z: -883.9240204639822, + }, + }, + { + id: '1781', + data: { + label: 'Military Market', + x: 1384.5955995887482, + y: -4613.095963475731, + z: -556.9619447801773, + }, + }, + { + id: ' Maine)', + data: { + label: 'WLBZ TV (Bangor', + x: -2883.758812959488, + y: 3131.9148903404357, + z: -1592.498061773623, + }, + }, + { + id: ' South Caroline)', + data: { + label: 'WLTX TV (Columbia', + x: 5029.5722797401595, + y: -4130.899304259649, + z: 1616.252247356882, + }, + }, + { + id: '1801', + data: { + label: 'WUSA TV (District of Columbia)', + x: 1635.6625334171376, + y: -4245.3578410024775, + z: -1352.4162115301135, + }, + }, + { + id: '1802', + data: { + label: 'Gannett Marketing Services', + x: 1467.6975621751521, + y: -3822.6488622331526, + z: -1939.5146615061437, + }, + }, + { + id: '1803', + data: { + label: 'Gannett Direct Marketing Services', + x: 1907.475910526083, + y: -4238.106842458516, + z: -1168.151885988015, + }, + }, + { + id: '1804', + data: { + label: 'Gannett TeleMarketing', + x: 1388.6923445238663, + y: -4125.514025165361, + z: -1759.1568399227197, + }, + }, + { + id: '1805', + data: { + label: 'Classified Ventures Com', + x: 2748.4077438282675, + y: -2269.865007820023, + z: 516.1117515567275, + }, + }, + { + id: '1806', + data: { + label: 'Gannett Media Technologies International', + x: 1719.5021237231315, + y: -4157.927549627932, + z: -1150.1286151547297, + }, + }, + { + id: '1807', + data: { + label: 'Nursing Spectrum', + x: 1320.2974372634953, + y: -4002.1457663623833, + z: -1303.992345008392, + }, + }, + { + id: '1808', + data: { + label: 'Gannett Offset Print Group', + x: 1422.1429139415222, + y: -4301.981155650535, + z: -1474.4305991974384, + }, + }, + { + id: '1809', + data: { + label: 'BrassRing', + x: 1451.4515845480698, + y: -4149.512443396189, + z: -1258.4567342652933, + }, + }, + { + id: '1810', + data: { + label: 'National Broadcasting Corporation (NBC)', + x: 3945.8495297813624, + y: -1702.0214459591768, + z: -967.2614528125292, + }, + }, + { + id: '1811', + data: { + label: 'NBC Network', + x: 4000.4872976531747, + y: -1875.5184660957152, + z: -1416.6451378830625, + }, + }, + { + id: '1812', + data: { + label: 'Paxson Communications', + x: 3186.01122656737, + y: -2344.042485334349, + z: -736.5943600973663, + }, + }, + { + id: '1813', + data: { + label: 'WVTM - Birmingham', + x: 4818.702987130415, + y: -1407.3336346044482, + z: -1272.6008629606579, + }, + }, + { + id: '1814', + data: { + label: 'KXAS TV - Dallas', + x: 4594.329921628629, + y: -794.1154260380258, + z: -1340.4194149634695, + }, + }, + { + id: '1815', + data: { + label: 'WMAQ TV - Chicago', + x: 4698.7631474662785, + y: -865.4899806529473, + z: -1471.462873396995, + }, + }, + { + id: '1816', + data: { + label: 'WCMH TV - Columbus', + x: 5128.46187887759, + y: -1003.9347436214183, + z: -1244.5819445521984, + }, + }, + { + id: '1817', + data: { + label: 'WVIT TV - Hartford', + x: 4968.141916408331, + y: -675.3001076967965, + z: -1255.9850349069827, + }, + }, + { + id: '1818', + data: { + label: 'KNBC TV - Los Angeles', + x: 4951.691374182586, + y: -600.913039358596, + z: -1057.2516056778516, + }, + }, + { + id: '1819', + data: { + label: 'WTVJ TV - Miami', + x: 5129.323104743721, + y: -900.4699658854802, + z: -791.1067152723641, + }, + }, + { + id: '1820', + data: { + label: 'WNBC TV - New York', + x: 4735.642193782943, + y: -1100.2041355952317, + z: -1490.084115857195, + }, + }, + { + id: '1821', + data: { + label: 'WCAU TV - Philadelphia', + x: 5050.671554546016, + y: -832.9204113202375, + z: -1321.3279624889256, + }, + }, + { + id: '1822', + data: { + label: 'WJAR TV - Providence', + x: 4873.802091407747, + y: -1435.8532371414847, + z: -1078.3162185162, + }, + }, + { + id: '1823', + data: { + label: 'WNCN TV - Raleigh', + x: 4717.057324640691, + y: -1284.0925949279842, + z: -1395.4083169427352, + }, + }, + { + id: '1824', + data: { + label: 'KNSD TV - San Diego', + x: 4932.783716678219, + y: -1220.3780792328591, + z: -1386.5242382901968, + }, + }, + { + id: '1825', + data: { + label: 'WRC TV - Washington', + x: 4978.792231696267, + y: -1029.7058901868647, + z: -1393.8549167885578, + }, + }, + { + id: '1826', + data: { + label: 'MSNBC', + x: -1495.034681894438, + y: 3442.442162018819, + z: 3769.516361073598, + }, + }, + { + id: '1827', + data: { + label: '', + x: 52.27850328334871, + y: 1901.902325826278, + z: -4943.013760226305, + }, + }, + { + id: '1828', + data: { + label: '', + x: -870.5781316060887, + y: -1104.0747122787075, + z: -4586.857804934639, + }, + }, + { + id: '1829', + data: { + label: 'Prime Network', + x: 1891.6813453860984, + y: 2564.447619874574, + z: 3084.6783066374755, + }, + }, + { + id: '1830', + data: { + label: '', + x: 3152.1086745225975, + y: 3899.2394870934627, + z: 4364.157881755849, + }, + }, + { + id: '1831', + data: { + label: '', + x: 5203.766928729559, + y: -3589.638410926984, + z: -3005.486751383144, + }, + }, + { + id: '1832', + data: { + label: '', + x: 597.0311773486145, + y: 4477.624357564812, + z: -2901.2067839482684, + }, + }, + { + id: '1833', + data: { + label: '', + x: -1143.0017711774422, + y: 4656.499273842667, + z: -2793.9779465181555, + }, + }, + { + id: '1834', + data: { + label: '', + x: -2835.4289025485436, + y: -2499.4391577926203, + z: 113.92788978670875, + }, + }, + { + id: '1835', + data: { + label: '', + x: -911.1593795751421, + y: -2286.2899936927233, + z: -4417.7472666977765, + }, + }, + { + id: '1836', + data: { + label: '', + x: -3053.873232973985, + y: -974.3247536422944, + z: -1728.1493355311766, + }, + }, + { + id: '1837', + data: { + label: '', + x: 540.7315269005667, + y: 6194.063495511259, + z: -569.5124842236819, + }, + }, + { + id: '1838', + data: { + label: 'Rainbow Advertising Sales', + x: 1551.4159494969858, + y: 2764.723494450835, + z: 2832.462776469324, + }, + }, + { + id: '1839', + data: { + label: 'Sports Channel', + x: 3913.202021472062, + y: -2866.0166439447917, + z: -2117.0774636149977, + }, + }, + { + id: '1840', + data: { + label: '', + x: -2500.331312559414, + y: -369.80926223030195, + z: 4049.6479401705888, + }, + }, + { + id: '1841', + data: { + label: '', + x: 2371.5592416805503, + y: 3631.471752661792, + z: 4893.773849568637, + }, + }, + { + id: '1842', + data: { + label: '', + x: 2401.242227793571, + y: 2658.45945694133, + z: 4849.855116434435, + }, + }, + { + id: '1843', + data: { + label: '', + x: 5964.473982540406, + y: 3916.718613269161, + z: -2361.8182720578434, + }, + }, + { + id: '1844', + data: { + label: '', + x: 1603.4964612265444, + y: 3033.1969731934137, + z: -5188.607738572017, + }, + }, + { + id: '1845', + data: { + label: '', + x: -263.6316986035265, + y: 3689.7473509613224, + z: 3445.444111188205, + }, + }, + { + id: '1846', + data: { + label: 'Value Vision', + x: 1807.4622763243176, + y: 2298.1932703338393, + z: 3208.3710915782654, + }, + }, + { + id: '1847', + data: { + label: "National Geographic's cable channel", + x: 1388.21263546069, + y: 2424.479495645849, + z: 2099.8753585516124, + }, + }, + { + id: '1848', + data: { + label: 'NBC Super Channel (Europe)', + x: 1819.16019086539, + y: 2728.154114561958, + z: 2889.691134931975, + }, + }, + { + id: '1849', + data: { + label: 'NBC Asia', + x: 1543.8743255808945, + y: 2663.0208545609144, + z: 3069.196372975903, + }, + }, + { + id: '1850', + data: { + label: '', + x: 5198.864116009013, + y: 1554.1467861585436, + z: -3989.7690976714352, + }, + }, + { + id: '1851', + data: { + label: '', + x: 7002.273461447135, + y: 302.95126442762984, + z: -3178.989993719584, + }, + }, + { + id: '1852', + data: { + label: 'Canal de Noticias NBC', + x: 6127.490945116443, + y: 4229.02637447067, + z: 1627.8916857908341, + }, + }, + { + id: '1853', + data: { + label: 'GE Capital Services', + x: 5601.010739643465, + y: -1287.321233977554, + z: -1008.4623699698068, + }, + }, + { + id: '1854', + data: { + label: 'Harcourt General', + x: 5697.53926751034, + y: -953.0026248970422, + z: -1637.4292232687462, + }, + }, + { + id: '1855', + data: { + label: 'Northern Telecom Finance', + x: 5888.16901470948, + y: -903.4573930964184, + z: -1162.6496195947466, + }, + }, + { + id: '1856', + data: { + label: 'Financial Guaranty Insurance', + x: 5550.386987154843, + y: -1451.4924942385667, + z: -1463.1786554426808, + }, + }, + { + id: '1857', + data: { + label: 'Union Fidelity Life Insurance', + x: 5696.303270200825, + y: -923.4710577673042, + z: -1283.6043958998036, + }, + }, + { + id: '1858', + data: { + label: 'Life Insurance Company of Virginia', + x: 5804.632282417123, + y: -1526.9856754024092, + z: -1397.4451371492323, + }, + }, + { + id: '1859', + data: { + label: 'First Colony', + x: 6021.052695129264, + y: -1083.6655170013828, + z: -1149.6779268318842, + }, + }, + { + id: '1860', + data: { + label: 'Woodchester', + x: 5840.303889569605, + y: -932.7639301000927, + z: -845.1798939971185, + }, + }, + { + id: '1861', + data: { + label: 'SOVAC SA', + x: 5999.158014384955, + y: -1172.9166651422806, + z: -807.351968259036, + }, + }, + { + id: '1862', + data: { + label: "Credit de L'Est", + x: 5998.7780061544445, + y: -1425.8373184435318, + z: -843.7601728843878, + }, + }, + { + id: '1863', + data: { + label: 'Australian Retail Financial Network', + x: 5667.87834935638, + y: -1702.4217809078893, + z: -1236.186392863628, + }, + }, + { + id: '1864', + data: { + label: 'Pallas Group', + x: 5889.562717087938, + y: -1076.6075883995152, + z: -1352.1328607188277, + }, + }, + { + id: '1865', + data: { + label: 'United Merchants Finance Ltd. (Hong Kong)', + x: 5899.117747311663, + y: -1658.4601564771608, + z: -1036.1369637431715, + }, + }, + { + id: '1866', + data: { + label: 'Minebea Co. Ltd. (Japan)', + x: 6063.9853102902, + y: -1385.919064747429, + z: -1122.742770658761, + }, + }, + { + id: '1867', + data: { + label: 'Frankona Reinsurance Group (Germany)', + x: 5947.352451315262, + y: -1345.6352338022289, + z: -1357.7908704105935, + }, + }, + { + id: '1868', + data: { + label: 'Aachen Reinsurance Group (Germany)', + x: 5704.59387300754, + y: -1228.8224904573788, + z: -1476.7218874359726, + }, + }, + { + id: '1869', + data: { + label: 'GE Capital', + x: 5496.379890091368, + y: -1524.4476046302555, + z: -23.330590741831713, + }, + }, + { + id: '1870', + data: { + label: 'iXL', + x: 5872.084701440068, + y: -1715.6877407816567, + z: 139.50220632715317, + }, + }, + { + id: '1871', + data: { + label: 'CFN', + x: 5978.840887045616, + y: -1426.8734964856287, + z: 56.36110618660196, + }, + }, + { + id: '1872', + data: { + label: 'Realtor.com', + x: 5920.255335051377, + y: -1550.2262542247308, + z: -205.82255697613257, + }, + }, + { + id: '1873', + data: { + label: 'StarMedia', + x: 5004.045511132425, + y: -1578.8174021569905, + z: 935.2456566768547, + }, + }, + { + id: '1874', + data: { + label: 'Preview Travel', + x: 5826.411355146279, + y: -1279.3198790397976, + z: -164.83957503160198, + }, + }, + { + id: '1875', + data: { + label: 'autobytel.com', + x: 5849.3659961287585, + y: -1813.598324807043, + z: -208.97012949436018, + }, + }, + { + id: '1876', + data: { + label: 'Wink', + x: 3966.734261387329, + y: 5768.887458539228, + z: 1344.9831030574583, + }, + }, + { + id: '1877', + data: { + label: 'Web TV for Windows', + x: 5088.299695659523, + y: -1307.2447560014327, + z: -923.2012005937786, + }, + }, + { + id: '1878', + data: { + label: 'Intercast', + x: 5106.381576323306, + y: -2908.133886545871, + z: -2834.150914412644, + }, + }, + { + id: '1879', + data: { + label: 'NBC Internet (NBCi)', + x: 4519.075890744878, + y: -644.2479660514452, + z: -137.90054460657905, + }, + }, + { + id: '1880', + data: { + label: 'Xoom.com', + x: 4813.217825241749, + y: -648.9561663453699, + z: -599.1567651545328, + }, + }, + { + id: '1881', + data: { + label: 'CNBC-Dow Jones Business Video Service', + x: 5169.997228715124, + y: -1077.593430217815, + z: -1007.830687379591, + }, + }, + { + id: '1882', + data: { + label: 'NBC Desktop Video', + x: 4711.744735637065, + y: -570.1276569792675, + z: -996.4876822402811, + }, + }, + { + id: '1883', + data: { + label: 'NBC Data Network', + x: 4409.40874404788, + y: -791.1463928139934, + z: -1200.532831673751, + }, + }, + { + id: '1884', + data: { + label: 'NBC Digital Publishing', + x: 4567.954068275555, + y: -1106.6269828756897, + z: -1446.4018830154484, + }, + }, + { + id: '1885', + data: { + label: 'NBC Interactive Neighborhood', + x: 5072.751998503918, + y: -1292.131826075739, + z: -1185.21867780592, + }, + }, + { + id: '1886', + data: { + label: 'NBC SuperNet', + x: 4736.3679291006765, + y: -608.9371820323463, + z: -1237.7638350457319, + }, + }, + { + id: '1887', + data: { + label: 'NBC.com', + x: 4575.093925570646, + y: -1346.0657676178175, + z: -1228.6770260030216, + }, + }, + { + id: '1888', + data: { + label: 'Telescan', + x: 4344.16147566755, + y: -1630.8298639471197, + z: -989.9933275887466, + }, + }, + { + id: '1889', + data: { + label: 'VideoSeeker.com', + x: 5159.463935825457, + y: -796.714708699643, + z: -1073.4808979334987, + }, + }, + { + id: '1890', + data: { + label: 'Asiacontent.com', + x: 4891.810989472542, + y: -321.8490477045111, + z: 233.99711054304046, + }, + }, + { + id: '1891', + data: { + label: 'AllBusiness.com', + x: 4952.183071418475, + y: -422.54984763381725, + z: -109.53760087261512, + }, + }, + { + id: '1892', + data: { + label: 'GE Americom', + x: 5075.379464202306, + y: -1148.4356186751718, + z: -707.8326287267781, + }, + }, + { + id: '1893', + data: { + label: 'Ameridata Technologies', + x: 4406.120650039911, + y: -1066.27613198688, + z: -1284.4376685669708, + }, + }, + { + id: '1894', + data: { + label: 'CompuNet Computer AG', + x: 5200.386448879544, + y: -950.4972245640762, + z: -453.1057160781202, + }, + }, + { + id: '1895', + data: { + label: 'GE Long Distance Service', + x: 1269.0985291552906, + y: 2303.6423272314814, + z: -4069.0803219038103, + }, + }, + { + id: '1897', + data: { + label: 'The Beaumont Enterprise (TX)', + x: -282.57533196035484, + y: -351.74699281548186, + z: -1474.2152465383087, + }, + }, + { + id: '1898', + data: { + label: 'Edwardsville Intelligencer (IL)', + x: -610.2470032463295, + y: 580.3773415113903, + z: -1669.2667927655295, + }, + }, + { + id: '1899', + data: { + label: 'Houston Chronicle', + x: 118.50674349143, + y: 120.85882039965026, + z: -2256.2586844864272, + }, + }, + { + id: '1900', + data: { + label: 'Huron Daily Tribune (MI)', + x: 61.89561913695379, + y: -292.60710583476265, + z: -1928.940613842161, + }, + }, + { + id: '1901', + data: { + label: 'Laredo Morning Times (TX)', + x: -394.1792328703707, + y: 99.35254879313494, + z: -2330.4265564532275, + }, + }, + { + id: '1902', + data: { + label: 'Midland Daily News (MI)', + x: -19.448574222801813, + y: 354.34477955426416, + z: -2241.7573727193153, + }, + }, + { + id: '1903', + data: { + label: 'Midland Reporter-Telegram (TX)', + x: 13.668663509684308, + y: 80.11745455727673, + z: -2104.7543780092356, + }, + }, + { + id: '1904', + data: { + label: 'Plainview Daily Herald (TX)', + x: 228.4766401155457, + y: -140.14481391483585, + z: -1766.8234238594744, + }, + }, + { + id: '1905', + data: { + label: 'San Antonio Express-News', + x: -361.38775419292176, + y: 313.1927465709865, + z: -2334.1979439470483, + }, + }, + { + id: '1906', + data: { + label: 'San Francisco Examiner', + x: 250.18910230621634, + y: 11.790561729138453, + z: -1623.5385998732631, + }, + }, + { + id: '1907', + data: { + label: 'Seattle Post-Intelligencer', + x: 73.11422082953668, + y: -186.0865541843479, + z: -1455.4123072913237, + }, + }, + { + id: '1908', + data: { + label: 'Beaumont Journal (TX)', + x: 264.561923445325, + y: 70.8687136171577, + z: -1808.9030309580119, + }, + }, + { + id: '1909', + data: { + label: 'Hardin County News (TX)', + x: 255.6761143281447, + y: 265.69359623488174, + z: -1812.6237204301, + }, + }, + { + id: '1910', + data: { + label: 'Jasper NewsBoy (TX)', + x: -556.8301651815957, + y: 163.8568225901328, + z: -2058.963185333741, + }, + }, + { + id: '1911', + data: { + label: 'Marlette Leader (MI)', + x: -186.65451064673928, + y: 430.3452043647544, + z: -1361.7989655836657, + }, + }, + { + id: '1912', + data: { + label: 'Mid County Chronicle (TX)', + x: -156.2098893133368, + y: 303.5965515138632, + z: -2338.891425738091, + }, + }, + { + id: '1913', + data: { + label: 'Orange County News (TX)', + x: 156.20480547671653, + y: 206.98255574186211, + z: -1502.5932766841872, + }, + }, + { + id: '1914', + data: { + label: 'Vassar Pioneer Times (MI)', + x: -431.99952170063216, + y: 621.9912466478228, + z: -1567.8877109146454, + }, + }, + { + id: '1915', + data: { + label: 'Colonial Homes', + x: -139.75834928496758, + y: 519.7923765665596, + z: -2189.9031510699965, + }, + }, + { + id: '1916', + data: { + label: 'Cosmopolitan', + x: -579.8938852830486, + y: 262.0916183685447, + z: -2261.366705892299, + }, + }, + { + id: '1917', + data: { + label: 'Country Living', + x: -254.35810604673821, + y: 130.07656030244854, + z: -2192.7822662856825, + }, + }, + { + id: '1918', + data: { + label: 'Country Living Gardener', + x: 104.39695380662134, + y: 336.15811712399756, + z: -1947.0009905715835, + }, + }, + { + id: '1919', + data: { + label: 'Esquire', + x: 131.11148773106595, + y: 382.12750444512443, + z: -1686.0714525173635, + }, + }, + { + id: '1920', + data: { + label: 'Good Housekeeping', + x: -338.9774632511526, + y: 422.93335743997073, + z: -2182.419361486344, + }, + }, + { + id: '1921', + data: { + label: "Harper's Bazaar", + x: 1.1440008552034984, + y: 365.83677659749975, + z: -1379.2915016823772, + }, + }, + { + id: '1922', + data: { + label: 'House Beautiful', + x: -621.0817761012588, + y: 496.7879318584716, + z: -1508.6000343773908, + }, + }, + { + id: '1923', + data: { + label: 'Motor Boating & Sailing', + x: -387.33702675732053, + y: 391.3636712012921, + z: -1273.0277673972673, + }, + }, + { + id: '1924', + data: { + label: 'Popular Mechanics', + x: -101.05475017110872, + y: -55.90729808667893, + z: -2290.1795334300173, + }, + }, + { + id: '1925', + data: { + label: 'Redbook', + x: 93.6276638397347, + y: 512.3975716921902, + z: -1950.9806592020675, + }, + }, + { + id: '1926', + data: { + label: 'Sports Afield', + x: -20.57161401085208, + y: 556.2012079655648, + z: -1587.0103986816698, + }, + }, + { + id: '1927', + data: { + label: 'Town & Country', + x: -760.0437978801733, + y: -190.76424091356313, + z: -1965.6923982808057, + }, + }, + { + id: '1928', + data: { + label: 'Victoria', + x: 204.82501618513083, + y: -98.86732965304842, + z: -2012.1987927997466, + }, + }, + { + id: '1929', + data: { + label: 'Diversion', + x: -287.8233996458884, + y: 632.3247462036601, + z: -1677.79822372429, + }, + }, + { + id: '1930', + data: { + label: 'Electronic Engineers Master Catalog', + x: -101.5446723218016, + y: -288.0097776301363, + z: -2082.9152093009698, + }, + }, + { + id: '1931', + data: { + label: 'Electronic Products Magazine', + x: 49.89165378750471, + y: 81.56905629151001, + z: -1314.3913993092233, + }, + }, + { + id: '1932', + data: { + label: 'Floor Covering Weekly', + x: -326.94045645576045, + y: 655.8884161304998, + z: -1890.7121050689552, + }, + }, + { + id: '1933', + data: { + label: 'Integrated Circuits Master Catalog', + x: -66.46602161043045, + y: 604.1001861323366, + z: -1762.923614312735, + }, + }, + { + id: '1934', + data: { + label: 'Motor Professional Books', + x: 23.211638155300445, + y: -142.9491145787837, + z: -2157.227795695236, + }, + }, + { + id: '1935', + data: { + label: 'Motor Crash Estimating Guides', + x: -770.2077451882526, + y: 167.7151759701551, + z: -1487.7248921978487, + }, + }, + { + id: '1936', + data: { + label: 'Motor Magazine', + x: -497.94138416211814, + y: -367.9375102658433, + z: -1545.109018328334, + }, + }, + { + id: '1937', + data: { + label: 'Motor Professional Manuals', + x: -210.02466794734448, + y: -423.3120537329735, + z: -1652.7381508800918, + }, + }, + { + id: '1938', + data: { + label: 'National Auto Research', + x: -396.65412060084276, + y: -374.60709685116257, + z: -1936.5179013835666, + }, + }, + { + id: '1939', + data: { + label: 'Official Guide to Disneyland', + x: -511.0693848300842, + y: 241.55097520936985, + z: -1242.1250220691886, + }, + }, + { + id: '1940', + data: { + label: 'Official Guide to Walt Disney World', + x: -290.4482165293053, + y: 573.5619689271414, + z: -2083.8997714383754, + }, + }, + { + id: '1941', + data: { + label: 'RAI', + x: -783.479731717594, + y: -124.71291779055235, + z: -1679.1098904156104, + }, + }, + { + id: '1942', + data: { + label: 'Walt Disney World for Kids by Kids', + x: -831.3856968580312, + y: 82.99997836345088, + z: -1657.458164588334, + }, + }, + { + id: '1943', + data: { + label: 'Walt Disney World Without Kids', + x: -243.43775375122468, + y: 115.41019236894861, + z: -1190.295230372947, + }, + }, + { + id: '1944', + data: { + label: 'Eastern News Distributors', + x: -133.58085788894442, + y: -386.36897725291163, + z: -1879.8686667040272, + }, + }, + { + id: '1945', + data: { + label: 'Communications Data Services', + x: -187.13182160079288, + y: 343.72234441322587, + z: -2070.920897269448, + }, + }, + { + id: '1946', + data: { + label: 'The Hearst Distribution Group', + x: -749.2687091437023, + y: -48.863688209157885, + z: -1827.5206166832857, + }, + }, + { + id: '1947', + data: { + label: "Periodical Publishers' Service Bureau", + x: -317.10571842550047, + y: 540.2396513307843, + z: -1422.207577910186, + }, + }, + { + id: '1948', + data: { + label: 'HDG International', + x: -799.66573606731, + y: 95.73233514618241, + z: -2030.1486793972745, + }, + }, + { + id: '1949', + data: { + label: 'International Circulation Distributors', + x: -737.401317968674, + y: 303.538855356023, + z: -1924.1454820053211, + }, + }, + { + id: '1950', + data: { + label: 'Tower Publishing Services Ltd. (U.K.)', + x: -235.81205396321587, + y: -188.7836816474155, + z: -2226.6512993670685, + }, + }, + { + id: '1951', + data: { + label: 'Hearst News Service', + x: -657.1493240672131, + y: 505.0101543582668, + z: -1878.3073303854826, + }, + }, + { + id: '1952', + data: { + label: 'Associated Publishing', + x: -519.4021195882985, + y: 491.1951007197645, + z: -2104.8468540285185, + }, + }, + { + id: '1953', + data: { + label: 'Hearst-Argyle Television', + x: 212.9893870900173, + y: 666.6988011696436, + z: -938.4444579444109, + }, + }, + { + id: '1954', + data: { + label: 'WCVB TV (Boston)', + x: -143.2443667618113, + y: -43.52116074229104, + z: -1229.3909991051883, + }, + }, + { + id: '1955', + data: { + label: 'WWWB TV (Tampa)', + x: -489.82513147781816, + y: -112.13581369855987, + z: -2083.3563902111027, + }, + }, + { + id: '1956', + data: { + label: 'WTAE TV (Pittsburgh)', + x: -568.0085558637048, + y: -12.141148654449509, + z: -2278.1024962080587, + }, + }, + { + id: '1957', + data: { + label: 'WBAL TV (Baltimore)', + x: -703.7543074692433, + y: -36.39257974244553, + z: -2146.272584627132, + }, + }, + { + id: '1958', + data: { + label: 'WLWT TV (Cincinnati)', + x: -97.95937934685404, + y: 578.2090970157553, + z: -1958.4656370754608, + }, + }, + { + id: '1959', + data: { + label: 'WISN TV (Milwaukee)', + x: -653.0695323033756, + y: -322.9929884751967, + z: -1687.5471323386732, + }, + }, + { + id: ' MO)', + data: { + label: 'KMBC TV (Kansas City', + x: -1855.9543534135494, + y: -4270.84874901537, + z: -1043.335003786158, + }, + }, + { + id: '1962', + data: { + label: 'KOCO TV (Oklahoma City)', + x: -347.412056927164, + y: -416.7449076911177, + z: -1727.7712987523785, + }, + }, + { + id: '1963', + data: { + label: 'WPBF TV (West Palm Beach)', + x: -554.4692253364419, + y: -277.29344368924427, + z: -2104.7470075351903, + }, + }, + { + id: '1964', + data: { + label: 'WNAC TV (Providence)', + x: -615.1382403343998, + y: -298.3433567169951, + z: -1865.8986468727178, + }, + }, + { + id: '1965', + data: { + label: 'WDTN TV (Dayton)', + x: -638.3800007780745, + y: 373.5041438221249, + z: -1372.3555502537806, + }, + }, + { + id: '1966', + data: { + label: 'KITV TV (Honolulu)', + x: -400.4444979129772, + y: -213.5515290595842, + z: -1316.576326005402, + }, + }, + { + id: ' MS)', + data: { + label: 'WAPT TV (Jackson', + x: 5421.131506591657, + y: -988.8357630583585, + z: 4391.88794184072, + }, + }, + { + id: ' AK)', + data: { + label: 'KHBS/KHOG TV (Fort Smith/Fayetteville', + x: 2006.789106483923, + y: 4101.012092613929, + z: -4555.35821346841, + }, + }, + { + id: '1969', + data: { + label: 'Hearst Argyle Television Productions', + x: 5978.919516193749, + y: -1570.5332859205325, + z: -2615.804178875106, + }, + }, + { + id: '1970', + data: { + label: 'WBAL-AM (Baltimore)', + x: -602.7492759330278, + y: 75.99092300326335, + z: -1334.594869349751, + }, + }, + { + id: '1971', + data: { + label: 'WIYY-FM (Baltimore)', + x: -679.7411726551662, + y: 329.9261990414749, + z: -2093.6844362550137, + }, + }, + { + id: '1972', + data: { + label: 'King Features Syndicate', + x: -350.77247923371107, + y: -125.71299795336657, + z: -2318.7356266068655, + }, + }, + { + id: '1973', + data: { + label: 'Classic Sports Network', + x: -674.2300671138181, + y: -51.82979720303701, + z: -1434.604461810173, + }, + }, + { + id: '1974', + data: { + label: 'Hearst Entertainment Distribution', + x: -448.8678867561023, + y: 505.57135249437664, + z: -1903.6151875572646, + }, + }, + { + id: '1975', + data: { + label: 'Hearst Entertainment Productions', + x: -839.7230294640816, + y: 176.63664525119904, + z: -1806.2975875008417, + }, + }, + { + id: '1976', + data: { + label: 'Hearst Animation Productions', + x: -629.1929320600179, + y: -231.56967004796425, + z: -1399.5411454095497, + }, + }, + { + id: '1977', + data: { + label: 'First DataBank', + x: 141.11656940095958, + y: 312.27783646092564, + z: -2142.6726660736094, + }, + }, + { + id: '1978', + data: { + label: 'Hearst New Media Center', + x: -131.38575756513993, + y: 83.26909038436223, + z: -2354.5393487019005, + }, + }, + { + id: '1979', + data: { + label: 'HomeArts Networks', + x: 44.2638274820893, + y: -322.5050914484065, + z: -1654.1840385314554, + }, + }, + { + id: '1980', + data: { + label: 'Women.com', + x: 251.16144187626603, + y: -172.66768823895143, + z: -1206.527232704135, + }, + }, + { + id: '1981', + data: { + label: 'Hearst Realties', + x: 228.60420962261296, + y: 113.44304798472544, + z: -2052.787942179397, + }, + }, + { + id: '1982', + data: { + label: 'San Francisco Realties', + x: -751.1219955497028, + y: 384.06167513694356, + z: -1657.8050098063416, + }, + }, + { + id: '1983', + data: { + label: 'Sunical Land & Livestock Division', + x: -364.8456570938833, + y: -44.52213571541468, + z: -1216.4155069194874, + }, + }, + { + id: '1984', + data: { + label: 'The Chicago Group (U.S.)', + x: -421.33630647917954, + y: 2861.347827676883, + z: -1560.98293038514, + }, + }, + { + id: '1985', + data: { + label: 'Chicago Sun-Times', + x: -752.7396190538302, + y: 2726.209083176841, + z: -1388.2982050756207, + }, + }, + { + id: '1986', + data: { + label: 'Daily Southtown', + x: -776.9329911400383, + y: 2667.409620158909, + z: -1643.2680520331871, + }, + }, + { + id: '1988', + data: { + label: 'Midwest Suburban Publishing', + x: 7048.751141617231, + y: -2563.5139032657003, + z: -772.8539881163249, + }, + }, + { + id: '1989', + data: { + label: 'Pioneer Newspapers', + x: -2190.655460937502, + y: 4135.850462631753, + z: -1651.9296590915185, + }, + }, + { + id: '1990', + data: { + label: 'The Community Newspaper Group (U.S.)', + x: -784.5140243173439, + y: -1085.0611058792144, + z: 4634.221385554463, + }, + }, + { + id: '1991', + data: { + label: 'Mount Vernon Register News (Illinois)', + x: -630.283754029756, + y: -1126.328159120294, + z: 5008.03977953564, + }, + }, + { + id: '1992', + data: { + label: 'Enid News (Oklahoma)', + x: -963.5272658644508, + y: -990.0777402894051, + z: 4277.345610914814, + }, + }, + { + id: ' Mich.)', + data: { + label: 'The Herald Palladium (St. Joseph', + x: -2368.508932400228, + y: -3592.6102255612054, + z: -884.679554256831, + }, + }, + { + id: '1994', + data: { + label: 'Telegraph Group Limited (U.K.)', + x: -734.7547339726171, + y: 2584.4738907774795, + z: -1929.6224579050388, + }, + }, + { + id: '1995', + data: { + label: 'The Daily Telegraph (London)', + x: -698.7081525848472, + y: 2781.149226979777, + z: -2342.5841768447353, + }, + }, + { + id: '1996', + data: { + label: 'The Saturday Telegraph', + x: -934.303947008638, + y: 2914.4436241613134, + z: -2181.3921234242316, + }, + }, + { + id: '1997', + data: { + label: 'The Sunday Telegraph', + x: -1157.9335954489002, + y: 2738.4444189045503, + z: -1989.486532401177, + }, + }, + { + id: '1998', + data: { + label: 'The Weekly Telegraph', + x: -1023.966778811267, + y: 2562.343678588953, + z: -2276.5761173813703, + }, + }, + { + id: '1999', + data: { + label: 'The Spectator', + x: -731.989546815676, + y: 2517.912281077804, + z: -2379.4113416329824, + }, + }, + { + id: '2000', + data: { + label: 'Southam Inc. (Canada)', + x: 217.65341127112873, + y: -4838.607426877434, + z: -1155.2440252178956, + }, + }, + { + id: '2001', + data: { + label: 'The Ottawa Citizen', + x: 387.8290013765242, + y: -4575.14172800862, + z: -1468.9472322559723, + }, + }, + { + id: '2002', + data: { + label: 'The Montreal Gazette', + x: 129.8827837636554, + y: -4416.410073692222, + z: -1285.785505243914, + }, + }, + { + id: '2003', + data: { + label: 'The Vancouver Sun', + x: 142.50314366988707, + y: -4747.504031388345, + z: -1581.974233086733, + }, + }, + { + id: '2004', + data: { + label: 'The Province', + x: -60.045526007828826, + y: -4624.204542289996, + z: -907.815828119674, + }, + }, + { + id: '2005', + data: { + label: 'Calgary Herald', + x: -89.79080967316074, + y: -5066.434577001212, + z: -982.7259583217611, + }, + }, + { + id: '2006', + data: { + label: 'The Edmonton Journal', + x: 557.9483756386595, + y: -4898.513341075586, + z: -1402.8559572828383, + }, + }, + { + id: '2007', + data: { + label: 'Financial Post', + x: 6686.162306225465, + y: 218.88013849543555, + z: -3681.6178874859115, + }, + }, + { + id: '2008', + data: { + label: 'Victoria Times-Colonist', + x: -134.64610169738617, + y: -4602.6665048273635, + z: -1288.4942018817205, + }, + }, + { + id: '2009', + data: { + label: 'Cambridge Reporter', + x: 328.86559315619013, + y: -5131.572442322003, + z: -874.791374827327, + }, + }, + { + id: '2010', + data: { + label: 'Nanaimo Daily News (Vancouver Island)', + x: 282.98969522368856, + y: -4746.284091119395, + z: -745.3618973869561, + }, + }, + { + id: '2011', + data: { + label: 'Southam Magazine and Information Group', + x: -123.23949519361186, + y: -4929.126532753607, + z: -1405.2065750088655, + }, + }, + { + id: '2012', + data: { + label: 'Saturday Night (monthly magazine)', + x: 194.02868449440484, + y: -5098.497681387657, + z: -1489.9127330065046, + }, + }, + { + id: '2013', + data: { + label: 'National Post', + x: 308.39262469158103, + y: -4439.244278199794, + z: -1002.3922664335599, + }, + }, + { + id: '2014', + data: { + label: 'Sterling Newspapers Company (Canada)', + x: -164.79289924533572, + y: 2799.5016860899054, + z: -1817.0810813795156, + }, + }, + { + id: '2015', + data: { + label: 'Regina Leader Post', + x: 11.776552205229741, + y: 2988.721278964335, + z: -2189.6899383469704, + }, + }, + { + id: '2016', + data: { + label: 'Niagara Falls Review', + x: -35.78612197944256, + y: 3208.3348312863645, + z: -1975.6573404547223, + }, + }, + { + id: '2017', + data: { + label: 'The Jerusalem Post Publications (Israel)', + x: -420.0534864826534, + y: 2747.287136598941, + z: -1907.5608193422397, + }, + }, + { + id: '2018', + data: { + label: 'Jerusalem Post', + x: -398.14471790426194, + y: 3071.1397318878157, + z: -2217.6976015477308, + }, + }, + { + id: '2019', + data: { + label: 'Hollinger Digital', + x: -276.13642296403685, + y: 2498.1393161325495, + z: -2039.9370433778347, + }, + }, + { + id: '2020', + data: { + label: 'Trip.com', + x: -112.72599156257763, + y: 2562.6349465681456, + z: -2502.6641793903564, + }, + }, + { + id: '2021', + data: { + label: 'Canada.com', + x: -476.81721230922074, + y: 2812.8182609086007, + z: -1312.0711730679216, + }, + }, + { + id: '2022', + data: { + label: 'Bidhit.com', + x: -802.5748960505729, + y: 2318.1083867858715, + z: -1741.5327091176566, + }, + }, + { + id: '2023', + data: { + label: 'Aberdeen American News (South Dakota)', + x: 2595.1250189936995, + y: -3742.4892672031024, + z: 718.7851466022347, + }, + }, + { + id: '2024', + data: { + label: 'Akron Beacon Journal (Ohio)', + x: 3345.598948140351, + y: -3989.466464534854, + z: 831.8163752834497, + }, + }, + { + id: '2025', + data: { + label: 'Belleville News-Democrat (Illinois)', + x: 2400.5963334919825, + y: -3881.992808968176, + z: 1086.034944214882, + }, + }, + { + id: ' Miss)', + data: { + label: 'The Sun Herald (Biloxi', + x: 4906.944150649666, + y: 2347.356498480468, + z: 4078.6349333723647, + }, + }, + { + id: '2027', + data: { + label: 'Bradenton Herald (Florida)', + x: 3332.027551156649, + y: -3798.226391790741, + z: 979.8284980763062, + }, + }, + { + id: '2028', + data: { + label: 'The Charlotte Observer (North Carolina)', + x: 2973.6693836332547, + y: -3689.8007034713983, + z: 1420.7366983468228, + }, + }, + { + id: ' S.C.)', + data: { + label: 'The State (Columbia', + x: -2442.9715428423037, + y: -2898.87018290105, + z: 2531.4256642871715, + }, + }, + { + id: '2030', + data: { + label: 'Columbus Ledger-Enquirer (Georgia)', + x: 2758.4830527116937, + y: -3565.28503659975, + z: 1236.7845372578622, + }, + }, + { + id: '2031', + data: { + label: 'Contra Costa Newspapers (California)', + x: 3295.7697990053975, + y: -4234.142475830756, + z: 1389.9275496710559, + }, + }, + { + id: '2032', + data: { + label: 'Ledger Dispatch (Antioch)', + x: 3438.336781044204, + y: -4513.724179285476, + z: 1709.3996116617125, + }, + }, + { + id: '2033', + data: { + label: 'Contra Costa Times', + x: 3602.124478557808, + y: -4052.127005099729, + z: 1669.735163894712, + }, + }, + { + id: '2034', + data: { + label: 'Valley Times (Pleasanton)', + x: 3374.8364404639165, + y: -4213.171380359696, + z: 1838.0378006379044, + }, + }, + { + id: '2035', + data: { + label: 'West County Times (Richmond)', + x: 3716.4134080787694, + y: -4318.205174378198, + z: 1525.4306554651507, + }, + }, + { + id: '2036', + data: { + label: 'Detroit Free Press', + x: 2805.2330724208837, + y: -3550.1277088412044, + z: 844.2756383089851, + }, + }, + { + id: '2037', + data: { + label: 'Duluth News Tribune (Minnesota)', + x: 2520.663310961966, + y: -3971.582099549605, + z: 657.0424946926734, + }, + }, + { + id: ' Ind.)', + data: { + label: 'The News-Sentinel (Fort Wayne', + x: -3970.126012954091, + y: -714.1688262471301, + z: 1025.8714021539945, + }, + }, + { + id: '2039', + data: { + label: 'Fort Worth Star-Telegram', + x: 3136.375424049825, + y: -3641.160745146529, + z: 799.5849283240526, + }, + }, + { + id: '2040', + data: { + label: 'Grand Forks Herald (North Dakota)', + x: 3216.8799505665775, + y: -3708.3702255736175, + z: 1263.2081227617725, + }, + }, + { + id: '2041', + data: { + label: 'The Kansas City Star', + x: 3031.9167303197446, + y: -3543.5833554178485, + z: 1117.5241406292616, + }, + }, + { + id: '2042', + data: { + label: 'Lexington Herald-Leader (Kentucky)', + x: 3137.4048840319774, + y: -3846.5192363469487, + z: 606.8306671461061, + }, + }, + { + id: '2043', + data: { + label: 'The Macon Telegraph (Georgia)', + x: 2662.178687694503, + y: -3739.848229943567, + z: 1412.923584182822, + }, + }, + { + id: '2044', + data: { + label: 'The Miami Herald', + x: 2748.898666642019, + y: -3985.8843179650876, + z: 485.43036217401357, + }, + }, + { + id: '2045', + data: { + label: 'el Nuevo Herald', + x: 2791.2935751539017, + y: -4024.368502241793, + z: 57.35522358513348, + }, + }, + { + id: '2046', + data: { + label: 'The Monterey County Herald (California)', + x: 2398.9028209481476, + y: -3999.31246018526, + z: 859.7879705389079, + }, + }, + { + id: '2048', + data: { + label: 'Philadelphia Daily News', + x: 2941.148180761338, + y: -4068.8383368244868, + z: 544.0278833126386, + }, + }, + { + id: '2049', + data: { + label: 'Philadelphia Inquirer', + x: 2864.697119729771, + y: -3785.942463094216, + z: 576.5116604320083, + }, + }, + { + id: '2050', + data: { + label: 'Saint Paul Pioneer Press (Minnesota)', + x: 3336.247688710511, + y: -4086.8787911445083, + z: 984.6141747675205, + }, + }, + { + id: '2051', + data: { + label: 'San Jose Mercury News', + x: 3196.2389405071112, + y: -4068.896486351263, + z: 620.0586100054, + }, + }, + { + id: '2052', + data: { + label: 'San Luis Obispo Telegram-Tribune (California)', + x: 2522.7121319466255, + y: -3649.356752126467, + z: 1041.6736158474, + }, + }, + { + id: ' Pa)', + data: { + label: 'Centre Daily Times (State College', + x: -2386.651255783919, + y: -609.2158885256097, + z: -4299.042732184958, + }, + }, + { + id: '2054', + data: { + label: 'Tallahassee Democrat', + x: 3298.7846926410716, + y: -3941.7233896675903, + z: 1220.388393455854, + }, + }, + { + id: ' Ga.)', + data: { + label: 'The Daily Sun (Warner Robins', + x: 4106.983237415062, + y: -4708.33027960402, + z: -2366.948997518864, + }, + }, + { + id: '2056', + data: { + label: 'The Wichita Eagle (Kansas)', + x: 2559.3211723407176, + y: -4305.467192149554, + z: 923.8613766014807, + }, + }, + { + id: ' Pa.)', + data: { + label: 'The Times Leader (Wilkes-Barre', + x: 3282.5262610882437, + y: 6230.333151402667, + z: -752.6386029361258, + }, + }, + { + id: '2058', + data: { + label: 'Brentwood News (California)', + x: 3185.988952480938, + y: -4263.3405049393305, + z: 825.3239340091403, + }, + }, + { + id: '2059', + data: { + label: 'The Byron Gazette (Georgia)', + x: 2766.0407746270484, + y: -4334.757243697068, + z: 719.7130767441622, + }, + }, + { + id: ' Ill.)', + data: { + label: 'The Herald (Cahokia-Dupo', + x: -4157.30737444686, + y: 186.3663135430024, + z: 368.95455605887327, + }, + }, + { + id: ' Calif.)', + data: { + label: 'The Cambrian (Cambria', + x: -3289.125191726916, + y: -2415.2842240017867, + z: 1483.9451862346489, + }, + }, + { + id: '2062', + data: { + label: 'Concord Transcript (California)', + x: 3072.7115801031027, + y: -3936.3412125412133, + z: 1466.4816962335124, + }, + }, + { + id: '2064', + data: { + label: 'Florida Keys Keynoter', + x: 2439.38022725441, + y: -4147.073449175913, + z: 1112.6758953868177, + }, + }, + { + id: '2065', + data: { + label: 'Highland News Leader (Illinois)', + x: 3004.7415153625802, + y: -4292.084781336199, + z: 666.8399132701155, + }, + }, + { + id: '2069', + data: { + label: "O'Fallon Progress (Illinois)", + x: 2589.8570391476933, + y: -4188.047422383073, + z: 674.9205474530121, + }, + }, + { + id: '2073', + data: { + label: 'Sparta News-Plaindealer (Illinois)', + x: 2959.1357508985125, + y: -4296.4697147607085, + z: 1357.9713706884481, + }, + }, + { + id: ' Fla.)', + data: { + label: 'The Reporter (Tavernier', + x: 6551.1696316645775, + y: 3907.288042032651, + z: 1378.4969404695626, + }, + }, + { + id: '2076', + data: { + label: 'Knight Ridder New Media', + x: 2620.419664573942, + y: -4237.63603686372, + z: 1344.8320481731864, + }, + }, + { + id: '2077', + data: { + label: 'MediaStream', + x: 3185.549023865322, + y: -4325.431416924472, + z: 1061.4201519615538, + }, + }, + { + id: '2078', + data: { + label: 'Observer Transportation', + x: 2870.268171743084, + y: -4152.215873246364, + z: 1493.2263651469975, + }, + }, + { + id: '2079', + data: { + label: 'Twin Cities Newspaper Services', + x: 2494.11240245516, + y: -3913.269034630843, + z: 1317.3229217945816, + }, + }, + { + id: '2080', + data: { + label: '', + x: 707.3093769674861, + y: -3775.90053372083, + z: -4282.263136058729, + }, + }, + { + id: '2081', + data: { + label: '', + x: -1597.3135960134764, + y: 2565.8224565033447, + z: -4059.0661817793043, + }, + }, + { + id: '2082', + data: { + label: 'InfiNet', + x: 2716.357776364579, + y: -4424.90458909579, + z: 1140.7957181278932, + }, + }, + { + id: '2083', + data: { + label: 'Interealty', + x: 2746.710152632262, + y: -3940.9941386624682, + z: 1521.1081902336498, + }, + }, + { + id: '2084', + data: { + label: '', + x: 3334.3230225876996, + y: 5824.546557360023, + z: 1943.4028576512958, + }, + }, + { + id: '2085', + data: { + label: 'Newspapers First', + x: 2959.2564077092466, + y: -4439.104668625343, + z: 1160.5157432196036, + }, + }, + { + id: '2086', + data: { + label: '', + x: 916.0310868298972, + y: -3202.690363383408, + z: -3542.4138601893387, + }, + }, + { + id: '2087', + data: { + label: 'Seattle Times', + x: 2917.7796504466223, + y: -4398.814957283123, + z: 890.3807345728977, + }, + }, + { + id: '2088', + data: { + label: '', + x: 2780.092352316707, + y: 3342.9489413549004, + z: -4280.632445065682, + }, + }, + { + id: '2093', + data: { + label: 'Muscatine Journal (Iowa)', + x: 4110.7772690304455, + y: -5189.114073899891, + z: 166.86453608436057, + }, + }, + { + id: '2094', + data: { + label: 'Winona Daily News (Minnesota)', + x: 4459.030100890296, + y: -5150.424973103725, + z: 606.2262348851749, + }, + }, + { + id: '2095', + data: { + label: 'Billings Gazette (Montana)', + x: 3897.1069550263824, + y: -5271.497733201622, + z: 128.8621811526802, + }, + }, + { + id: ' Montana)', + data: { + label: 'The Montana Standard (Butte', + x: 2851.0299051318057, + y: 6227.997246941421, + z: -1027.827311394119, + }, + }, + { + id: '2100', + data: { + label: 'Beatrice Daily Sun (Nebraska)', + x: -494.61623579486934, + y: 622.5084461070126, + z: -4478.382042843623, + }, + }, + { + id: '2101', + data: { + label: 'Columbus Telegram (Nebraska)', + x: 3957.991086601718, + y: -5705.96490482188, + z: 421.93869673522306, + }, + }, + { + id: '2102', + data: { + label: 'Fremont Tribune (Nebraska)', + x: 4214.274898097802, + y: -4844.381146141117, + z: 598.2458018233905, + }, + }, + { + id: '2103', + data: { + label: 'Lincoln Journal (Nebraska)', + x: 3682.30985510902, + y: -5636.396274174622, + z: 851.0343254971363, + }, + }, + { + id: '2104', + data: { + label: 'The Bismarck Tribune (North Dakota)', + x: 4241.230450322108, + y: -5465.25425171405, + z: 1012.788922365884, + }, + }, + { + id: '2105', + data: { + label: 'Albany Democrat-Herald (Oregon)', + x: 4396.390239442484, + y: -5191.496846387061, + z: 886.6848641678027, + }, + }, + { + id: '2106', + data: { + label: 'Ashland Daily Tidings (Oregon)', + x: 3999.6513810768347, + y: -4829.278383017245, + z: 435.33511379869265, + }, + }, + { + id: '2107', + data: { + label: 'Corvallis Gazette-Times (Oregon)', + x: 3899.854151767571, + y: -4992.2405023734045, + z: 226.4750816527748, + }, + }, + { + id: '2108', + data: { + label: 'Rapid CityJournal (South Dakota)', + x: 4429.291871033267, + y: -5325.513941039371, + z: 496.654173092724, + }, + }, + { + id: '2109', + data: { + label: 'Baraboo News Republic (Wisconsin)', + x: 4139.627272209982, + y: -4963.5313224426045, + z: 302.5749719385753, + }, + }, + { + id: '2110', + data: { + label: 'Chippewa Herald (Wisconsin)', + x: 3573.972643466171, + y: -5370.45587627621, + z: 952.8050953402804, + }, + }, + { + id: '2111', + data: { + label: 'The Capital Times (Wisconsin)', + x: 4398.028678475639, + y: -5428.0652053822505, + z: 784.159830841692, + }, + }, + { + id: '2112', + data: { + label: 'La Crosse Tribune (Wisconsin)', + x: 3760.435692843605, + y: -4889.549074625264, + z: 854.0427443862461, + }, + }, + { + id: '2113', + data: { + label: 'Portage Daily Register (Wisconsin)', + x: 4239.360810974288, + y: -4970.107205417845, + z: 940.3473905287315, + }, + }, + { + id: '2114', + data: { + label: 'Shawano Leader (Wisconsin)', + x: 3494.8830232564496, + y: -5403.843939859535, + z: 486.01772827157134, + }, + }, + { + id: '2115', + data: { + label: 'Wisconsin State Journal (Wisconsin)', + x: 3737.506297008763, + y: -4938.2296562493975, + z: 359.25622882895374, + }, + }, + { + id: '2116', + data: { + label: 'The Journal Times (Racine)', + x: 4054.9806377708146, + y: -5497.46287675477, + z: 196.39084285167846, + }, + }, + { + id: '2117', + data: { + label: 'Bettendorf News (Iowa)', + x: 4291.772032326357, + y: -5172.424614349621, + z: 282.88664663507024, + }, + }, + { + id: '2118', + data: { + label: 'Britt Tribune News (Iowa)', + x: 3704.4658331134406, + y: -5147.898122157854, + z: 218.44478523014055, + }, + }, + { + id: '2119', + data: { + label: 'Forest City Summit (Iowa)', + x: 4206.446283863806, + y: -5166.486970324279, + z: 1082.8314986331163, + }, + }, + { + id: '2120', + data: { + label: 'Mitchell County Press News (Iowa)', + x: 3929.528789460958, + y: -4951.705505497476, + z: 1011.6854289574351, + }, + }, + { + id: '2121', + data: { + label: 'Big Fork Eagle (Montana)', + x: 4012.070309158587, + y: -4789.993316615802, + z: 687.8634080398301, + }, + }, + { + id: '2127', + data: { + label: 'Whitefish Pilot (Montana)', + x: 3506.244182870045, + y: -5475.540361152933, + z: 717.4466419468788, + }, + }, + { + id: '2128', + data: { + label: 'David City Banner Press (Nebraska)', + x: 3637.539039352662, + y: -4942.858038728859, + z: 709.9518881414227, + }, + }, + { + id: '2129', + data: { + label: 'The Plattsmouth Journal (Nebraska)', + x: 4000.4125296794937, + y: -5398.463691517607, + z: 1133.6740847521307, + }, + }, + { + id: '2130', + data: { + label: 'Schuyler Sun (Nebraska)', + x: 4283.608107138729, + y: -5606.947965223414, + z: 538.4555223745358, + }, + }, + { + id: ' Nebraska)', + data: { + label: 'Burt County Plaindealer (Tekamah', + x: 6077.803087338524, + y: -3725.645206553645, + z: 4.207998483168213, + }, + }, + { + id: '2132', + data: { + label: 'Mandan News (North Dakota)', + x: 4275.308862532225, + y: -5446.899602857301, + z: 299.04985772837364, + }, + }, + { + id: '2133', + data: { + label: 'Cottage Grove Sentinel (Oregon)', + x: 3548.359019949341, + y: -5085.854543957496, + z: 464.88664024161216, + }, + }, + { + id: '2134', + data: { + label: 'Gresham Outlook (Oregon)', + x: 3574.1443135466134, + y: -5294.555831558343, + z: 298.48638823854424, + }, + }, + { + id: '2135', + data: { + label: 'Lebanon Express (Oregon)', + x: 3980.451346065014, + y: -5657.399761145736, + z: 953.8947791090753, + }, + }, + { + id: '2136', + data: { + label: 'Newport News-Times (Oregon)', + x: 3752.8393011443704, + y: -4857.972918789612, + z: 554.1536525509268, + }, + }, + { + id: '2137', + data: { + label: 'Sandy Post (Oregon)', + x: 3960.6508818892858, + y: -5147.407583279155, + z: 1133.286274482621, + }, + }, + { + id: '2138', + data: { + label: 'The Springfield News (Oregon)', + x: 4343.57527452569, + y: -4977.969623405379, + z: 754.4342051762014, + }, + }, + { + id: '2142', + data: { + label: 'Reedsburg Times Press/Report (Wisconsin)', + x: 3811.92584050561, + y: -5465.986431451019, + z: 192.18574235145104, + }, + }, + { + id: '2143', + data: { + label: 'Sauk Prairie Eagle (Wisconsin)', + x: 3757.940924875841, + y: -5429.018945871346, + z: 1079.7377010187963, + }, + }, + { + id: '2144', + data: { + label: 'Tomah Journal/Monitor Herald (Wisconsin)', + x: 3660.029919538669, + y: -5551.701233035475, + z: 343.59746616752153, + }, + }, + { + id: '2145', + data: { + label: 'Viroqua Broadcaster (Wisconsin)', + x: 3480.2626237514028, + y: -5191.583103939673, + z: 657.0807067082959, + }, + }, + { + id: '2146', + data: { + label: 'Westby Times (Wisconsin)', + x: 4039.4119123223254, + y: -4845.048406954578, + z: 862.2770782245065, + }, + }, + { + id: '2147', + data: { + label: 'Coulee News (Wisconsin)', + x: 4315.935782066443, + y: -4990.656026953344, + z: 465.3553415471752, + }, + }, + { + id: ' WI (Wisconsin)', + data: { + label: 'West Salem', + x: -1549.618541745495, + y: -3189.287858216245, + z: 2738.8954270748363, + }, + }, + { + id: '2149', + data: { + label: 'Wisconsin Dells Events (Wisconsin)', + x: 3737.2080607471553, + y: -5125.152738802313, + z: 1061.9603763492712, + }, + }, + { + id: '2161', + data: { + label: 'Mason City Shopper (Iowa)', + x: 3671.7819703176447, + y: -5674.557830818119, + z: 561.2681000700505, + }, + }, + { + id: '2164', + data: { + label: 'The Post (Muscatine Iowa)', + x: 3569.585649212859, + y: -5144.654800979464, + z: 892.2737880048268, + }, + }, + { + id: ' Tomah', + data: { + label: 'Foxxy Shopper (Sparta', + x: 5956.993706624722, + y: 2630.105492357863, + z: -3289.0796385637736, + }, + }, + { + id: ' MT)', + data: { + label: 'Ag Almanac/Prairie Star (Great Falls', + x: 4369.882503399863, + y: 88.69845144225218, + z: -4439.075357496483, + }, + }, + { + id: ' NE)', + data: { + label: 'Midwest Messenger (Tekamah', + x: -3566.630000560146, + y: 1058.8559288551974, + z: 2116.399168603246, + }, + }, + { + id: ' ND)', + data: { + label: 'Farm & Ranch Guide (Bismarck', + x: 3181.9149725035445, + y: 1333.2906008500865, + z: 4698.377509945864, + }, + }, + { + id: ' SD)', + data: { + label: 'Tri-State Neighbor (Sioux Falls', + x: 5950.065275796905, + y: -1575.4355514975432, + z: -3944.847520667584, + }, + }, + { + id: ' WI)', + data: { + label: 'AgriView (Madison', + x: 3287.5952833537685, + y: 5561.270065928994, + z: -907.5565524520275, + }, + }, + { + id: ' Helena (Arkansas)', + data: { + label: 'The Daily World', + x: -3556.120392760898, + y: -617.4000180253104, + z: -2017.441877157393, + }, + }, + { + id: '2245', + data: { + label: 'The Stuttgart Daily TMC (Arkansas)', + x: 7311.755543411164, + y: 1466.99028899995, + z: -521.0526605162742, + }, + }, + { + id: '2246', + data: { + label: 'The Gridley Herald (California)', + x: 7289.589396098955, + y: 626.1667852110945, + z: -355.2843682468639, + }, + }, + { + id: '2247', + data: { + label: 'The Gridley Shopping News (California)', + x: 7506.395117441127, + y: 847.1323998745655, + z: 405.0620900889473, + }, + }, + { + id: '2258', + data: { + label: 'Bartlett/Hanover Park/Streamwood Press (Illinois)', + x: 7740.194591395351, + y: 907.8914591432468, + z: -258.9855993872121, + }, + }, + { + id: '2259', + data: { + label: 'Bensenville Press (Illinois)', + x: 6817.063097955115, + y: 1363.1832276594723, + z: -520.5203403253123, + }, + }, + { + id: '2260', + data: { + label: 'The Benton Standard (Illinois)', + x: 7272.8645329831415, + y: 1098.1510550866456, + z: 688.2811109089004, + }, + }, + { + id: '2261', + data: { + label: 'Benton Evening News (Illinois)', + x: 7690.060636902406, + y: 628.5007921145684, + z: 81.05950320714932, + }, + }, + { + id: '2262', + data: { + label: 'Blackberry Press (Illinois)', + x: 7513.417991635783, + y: 1028.2387361606955, + z: 611.8593162422826, + }, + }, + { + id: '2263', + data: { + label: 'Bloomingdale Press (Illinois)', + x: 7353.2081064722215, + y: 1633.2134215720114, + z: -312.92386954818124, + }, + }, + { + id: '2266', + data: { + label: 'The Carmi Times (Illinois)', + x: 6796.618750660242, + y: 446.9707679285694, + z: 50.41100432060061, + }, + }, + { + id: '2268', + data: { + label: 'White County Shopper News (Illinois)', + x: 6832.889133108565, + y: 591.8262969468059, + z: -378.34698719865014, + }, + }, + { + id: '2269', + data: { + label: 'Carol Stream Press (Illinois)', + x: 7806.678312435299, + y: 1266.1840728593477, + z: 21.17402253922301, + }, + }, + { + id: '2270', + data: { + label: 'Chester Herald Tribune (Illinois)', + x: 6988.196453626551, + y: 709.3151645456855, + z: -598.8069146775089, + }, + }, + { + id: '2271', + data: { + label: 'Christopher Progress (Illinois)', + x: 6821.197827745766, + y: 852.5533232087859, + z: -288.33772465050714, + }, + }, + { + id: '2272', + data: { + label: 'Darien Metropolitan (Illinois)', + x: 6678.150331088324, + y: 1202.2815205104503, + z: -78.05335107699925, + }, + }, + { + id: '2273', + data: { + label: 'DuQuoin Evening Call (Illinois)', + x: 6741.934177347085, + y: 1520.3429426482521, + z: -174.71715218580525, + }, + }, + { + id: '2276', + data: { + label: 'Dwight Star & Herald (Illinois)', + x: 7384.995640128123, + y: 1682.5165848008683, + z: 119.42082234442523, + }, + }, + { + id: '2279', + data: { + label: 'Elmhurst Press (Illinois)', + x: 7000.252256262247, + y: 1689.2373672867677, + z: 176.4017642982634, + }, + }, + { + id: '2280', + data: { + label: 'Eldorado Daily Journal (Illinois)', + x: 7018.309263273054, + y: 1259.267583232912, + z: 670.7188045371696, + }, + }, + { + id: '2286', + data: { + label: 'Glendale Heights Press (Illinois)', + x: 7187.48444333967, + y: 611.6519452463934, + z: 343.6124539438989, + }, + }, + { + id: '2287', + data: { + label: 'Glen Ellyn News (Illinois)', + x: 6923.201824630098, + y: 1587.775777653948, + z: -355.62297525307747, + }, + }, + { + id: '2288', + data: { + label: 'Harrisburg Daily Register (Illinois)', + x: 6573.51844588531, + y: 1189.394058877887, + z: 312.8378740775036, + }, + }, + { + id: '2292', + data: { + label: 'Homer Township Metropolitan (Illinois)', + x: 6777.907218556813, + y: 643.9606558165287, + z: 417.3336033968003, + }, + }, + { + id: '2293', + data: { + label: 'Huntley Farmside (Illinois)', + x: 6809.380933437018, + y: 1416.2440548669558, + z: 211.48816260147535, + }, + }, + { + id: '2294', + data: { + label: 'LaGrange/LaGrange Park Suburban LIFE Citizen (Illinois)', + x: 7731.555079395523, + y: 1163.8099600821295, + z: -285.58105043291175, + }, + }, + { + id: '2295', + data: { + label: 'LaGrange Press (Illinois)', + x: 7064.71867815041, + y: 1492.1541850802691, + z: 216.20614975243447, + }, + }, + { + id: '2296', + data: { + label: 'Lemont Metropolitan (Illinois)', + x: 7495.885328629308, + y: 822.796152926431, + z: 608.9661131116446, + }, + }, + { + id: '2297', + data: { + label: 'Lockport Metropolitan (Illinois)', + x: 6970.380060192055, + y: 509.55715848036465, + z: 149.41127912758648, + }, + }, + { + id: '2298', + data: { + label: 'Lombard Spectator (Illinois)', + x: 7261.4931734756265, + y: 851.5846947860078, + z: 506.38516789928514, + }, + }, + { + id: '2299', + data: { + label: 'Lombard XPRess (Illinois)', + x: 7667.412783771803, + y: 1160.7792018573034, + z: 455.34634965196017, + }, + }, + { + id: '2300', + data: { + label: 'Macomb Journal (Illinois)', + x: 7167.990954681379, + y: 1369.925494536659, + z: 424.40598201476905, + }, + }, + { + id: '2301', + data: { + label: 'Journal Extra (Illinois)', + x: 7360.887044796067, + y: 1662.902267810782, + z: -101.89084261523423, + }, + }, + { + id: '2302', + data: { + label: 'Macomb Marion Daily (Illinois)', + x: 7281.193218136426, + y: 864.802270507561, + z: 696.5931889519784, + }, + }, + { + id: '2303', + data: { + label: 'Republican Marion Daily Extra (Illinois)', + x: 6978.7320461068875, + y: 1636.1071605705365, + z: -197.26836173326186, + }, + }, + { + id: ' Monmouth (Illinois)', + data: { + label: 'Pennysaver', + x: -1994.9067586045576, + y: 1691.8739105977854, + z: 4312.090142532297, + }, + }, + { + id: '2307', + data: { + label: 'Murphysboro American (Illinois)', + x: 7024.945149660693, + y: 1577.1225987643254, + z: 438.9616943559236, + }, + }, + { + id: '2308', + data: { + label: 'American Monday (Murphysboro)', + x: 7091.5097199652655, + y: 540.1431124454144, + z: -114.08857520008502, + }, + }, + { + id: '2309', + data: { + label: 'Newton Press Mentor (Illinois)', + x: 6795.726878606404, + y: 680.9713031825927, + z: -80.18250940736993, + }, + }, + { + id: '2310', + data: { + label: 'Norris City Banner (Illinois)', + x: 7834.376232739719, + y: 922.3431420710682, + z: -121.06232230925677, + }, + }, + { + id: '2311', + data: { + label: 'Oak Brook Press (Illinois)', + x: 7481.280877375729, + y: 1463.4863808512148, + z: -400.06159268497674, + }, + }, + { + id: '2312', + data: { + label: 'Oakbrook Terrace Press (Illinois)', + x: 7504.809045785038, + y: 447.95042646284145, + z: 73.89222743841528, + }, + }, + { + id: '2313', + data: { + label: 'The Olney Daily Mail (Illinois)', + x: 7114.151607325528, + y: 1411.438165503763, + z: 593.4973147494198, + }, + }, + { + id: ' Advantage (Olney', + data: { + label: 'Jasper County News Eagle', + x: -1728.504718870917, + y: 5060.363813162413, + z: -898.1642184982885, + }, + }, + { + id: '2315', + data: { + label: 'The Weekly Mail (Illinois)', + x: 7719.7079331353025, + y: 1387.6287731675293, + z: 198.69681640723607, + }, + }, + { + id: '2316', + data: { + label: 'Orland/Tinley Villager (Illinois)', + x: 6744.841483562254, + y: 567.1870766956292, + z: 250.1063511397652, + }, + }, + { + id: '2320', + data: { + label: 'Roselle Press (Illinois)', + x: 7157.307768305428, + y: 1730.7002599474552, + z: -168.54148141010774, + }, + }, + { + id: '2324', + data: { + label: 'Sugar Grove Herald (Illinois)', + x: 7297.63061695363, + y: 1283.9110632733043, + z: -648.3485164756801, + }, + }, + { + id: '2325', + data: { + label: 'Teutoplis Press (Illinois)', + x: 6619.126961200147, + y: 1385.9980870437187, + z: 253.06654350438478, + }, + }, + { + id: '2326', + data: { + label: 'Villa Park Argus (Illinois)', + x: 7469.092833180285, + y: 1144.2385118847292, + z: -310.8526171922446, + }, + }, + { + id: '2329', + data: { + label: 'Westchester News (Illinois)', + x: 7458.690723295384, + y: 617.0762213533064, + z: 452.80811428334795, + }, + }, + { + id: '2330', + data: { + label: 'Wheaton Leader (Illinois)', + x: 7650.552271613538, + y: 724.1288671262762, + z: -356.2824985371768, + }, + }, + { + id: '2331', + data: { + label: 'Berwyn/Stickney/Forest View LIFE (Illinois)', + x: 7618.64127800427, + y: 912.3649817340798, + z: 253.7300739988972, + }, + }, + { + id: '2332', + data: { + label: 'Brookfield Suburban LIFE Citizen (Illinois)', + x: 7214.702345619778, + y: 1476.1622897469406, + z: -45.53083875164984, + }, + }, + { + id: '2333', + data: { + label: 'North Riverside/Riverside Suburban LIFE Citizen (Illinois)', + x: 7088.435023283785, + y: 553.5861696284207, + z: 527.7619046476378, + }, + }, + { + id: '2334', + data: { + label: 'Western Springs Suburban LIFE Citizen (Illinois)', + x: 7335.617898419359, + y: 445.547852380212, + z: -132.1054879596249, + }, + }, + { + id: '2335', + data: { + label: + 'Countryside/Hodgkins/Indian Head Park/Willow Springs Suburban LIFE Citizen (Illinois)', + x: 6665.528665655571, + y: 641.9570084920047, + z: -238.00546373774057, + }, + }, + { + id: '2336', + data: { + label: 'Cicero LIFE (Illinois)', + x: 6808.575746289689, + y: 1183.5165700496118, + z: 358.85958085469673, + }, + }, + { + id: '2337', + data: { + label: 'Lyons/McCook Suburban LIFE Citizen (Illinois)', + x: 7016.330721683102, + y: 679.6520654802331, + z: -375.22973719760625, + }, + }, + { + id: '2338', + data: { + label: 'Westchester/Broadview Suburban LIFE Citizen (Illinois)', + x: 6756.438235336728, + y: 775.9360852560486, + z: -519.7448931310527, + }, + }, + { + id: '2339', + data: { + label: 'Hillside/Berkeley Press (Illinois)', + x: 7293.575693703716, + y: 658.2143883388325, + z: -567.6709321752164, + }, + }, + { + id: '2340', + data: { + label: 'Elmhurst Suburban LIFE (Illinois)', + x: 7490.146903395753, + y: 599.8221624304314, + z: -393.01840888228134, + }, + }, + { + id: '2341', + data: { + label: 'Villa Park Suburban LIFE (Illinois)', + x: 7569.682708510409, + y: 536.8698610824267, + z: 246.70199306319273, + }, + }, + { + id: '2342', + data: { + label: 'Darien Suburban LIFE (Illinois)', + x: 6958.310191392285, + y: 467.5982384455595, + z: -308.08723453567166, + }, + }, + { + id: '2343', + data: { + label: 'Lombard Suburban LIFE (Illinois)', + x: 7496.153439110967, + y: 1202.369072243093, + z: -563.3654265124085, + }, + }, + { + id: '2344', + data: { + label: 'Hinsdale Suburban LIFE (Illinois)', + x: 7645.299033757887, + y: 1240.8829461347718, + z: -445.70494799146985, + }, + }, + { + id: '2345', + data: { + label: 'Woodridge Suburban LIFE (Illinois)', + x: 7350.0046961900225, + y: 1161.640329888167, + z: 501.2581545183658, + }, + }, + { + id: '2346', + data: { + label: 'Burr Ridge/Willowbrook Suburban LIFE (Illinois)', + x: 6774.55033025904, + y: 975.3851974715171, + z: -441.194206065269, + }, + }, + { + id: '2347', + data: { + label: 'Downers Grove Suburban LIFE (Illinois)', + x: 6787.225306364533, + y: 1201.1679428192392, + z: 574.0424444506733, + }, + }, + { + id: '2348', + data: { + label: 'Westmont Suburban LIFE (Illinois)', + x: 7642.476915688456, + y: 1414.9820044348653, + z: -289.6349280189164, + }, + }, + { + id: '2349', + data: { + label: 'Winfield Press (Illinois)', + x: 6722.843657258071, + y: 1174.5864715582306, + z: -522.2898723981061, + }, + }, + { + id: '2350', + data: { + label: 'Wayne Countryside Press (Illinois)', + x: 7777.768523866693, + y: 1141.3656019360742, + z: -147.35407073899418, + }, + }, + { + id: '2351', + data: { + label: 'Bensenville/Itasca/Wooddale Press (Illinois)', + x: 7292.735939233361, + y: 1470.778645036527, + z: 237.17960805065027, + }, + }, + { + id: '2352', + data: { + label: 'Naperville Met (Illinois)', + x: 7107.686432910896, + y: 879.9975776550029, + z: 694.0181238407403, + }, + }, + { + id: '2353', + data: { + label: 'West Chicago Press (Illinois)', + x: 7362.351941680934, + y: 605.7332310567922, + z: 152.83716611121375, + }, + }, + { + id: '2354', + data: { + label: 'Warrenville Post (Illinois)', + x: 7495.593366191276, + y: 1406.3679666669316, + z: 128.15257603105775, + }, + }, + { + id: '2355', + data: { + label: 'Lockport/Homer Township Metropolitan (Illinois)', + x: 6568.829511188345, + y: 816.8673625932662, + z: 9.20204215669902, + }, + }, + { + id: '2356', + data: { + label: 'Bolingbrook/Romeoville Metropolitan (Illinois)', + x: 7303.698728215901, + y: 915.1572694100151, + z: -686.0857580559473, + }, + }, + { + id: '2357', + data: { + label: 'Batavia Windmill (Illinois)', + x: 7275.204238968912, + y: 1438.4551274532394, + z: -322.20199026054115, + }, + }, + { + id: '2358', + data: { + label: 'North Aurora Herald (Illinois)', + x: 6708.613254802238, + y: 1104.9168363971453, + z: 168.47324925393343, + }, + }, + { + id: '2359', + data: { + label: 'Batavia Republican (Illinois)', + x: 6897.0045693639095, + y: 1369.9125417470316, + z: -32.72772163847021, + }, + }, + { + id: '2360', + data: { + label: 'Geneva Republican (Illinois)', + x: 7277.67298688788, + y: 1184.2756068906356, + z: -471.2518397138766, + }, + }, + { + id: '2361', + data: { + label: 'St. Charles Republican (Illinois)', + x: 7035.061265063216, + y: 1144.1896707742676, + z: 501.47328437818965, + }, + }, + { + id: '2362', + data: { + label: 'Marengo/Union Press (Illinois)', + x: 6504.60771115118, + y: 983.205446824142, + z: 32.863039607325604, + }, + }, + { + id: '2363', + data: { + label: 'Press-Republican Hometown (Illinois)', + x: 7648.8012690621035, + y: 1158.101671829729, + z: 117.4262184550006, + }, + }, + { + id: '2364', + data: { + label: 'Select Homes-Cook County (Illinois)', + x: 7625.7442439721335, + y: 681.95919072093, + z: 355.5617591817168, + }, + }, + { + id: '2365', + data: { + label: 'Career Moves (Illinois)', + x: 6935.21845908099, + y: 1129.3269949656328, + z: -647.8299116809046, + }, + }, + { + id: '2366', + data: { + label: 'Prime Times (Illinois)', + x: 7191.638764695765, + y: 1692.5081646650362, + z: 252.5735752894313, + }, + }, + { + id: '2367', + data: { + label: 'Select Homes-DuPage County (Illinois)', + x: 7541.970269677175, + y: 1331.0168595975817, + z: 555.0122758269147, + }, + }, + { + id: '2368', + data: { + label: 'LIFE�s Extra (Illinois)', + x: 6605.3425770217555, + y: 649.5726324112145, + z: 52.26685411710979, + }, + }, + { + id: ' Burley (Idaho)', + data: { + label: 'Sunrise Shopper', + x: 7229.720880811453, + y: -2052.7529236573123, + z: -1714.6299731136378, + }, + }, + { + id: '2376', + data: { + label: 'Minodoka County News (Idaho)', + x: 7326.364922735639, + y: 1307.4984281408542, + z: 660.8045351161564, + }, + }, + { + id: '2377', + data: { + label: 'Charles City Press (Iowa)', + x: 7827.951144216685, + y: 975.4010095480788, + z: 90.46332039547724, + }, + }, + { + id: '2380', + data: { + label: 'New Hampton Chronicle (Iowa)', + x: 7061.844475833561, + y: 934.099145381436, + z: -692.6805449083241, + }, + }, + { + id: '2381', + data: { + label: 'Hardin County Index (Iowa)', + x: 7776.745762025969, + y: 777.3104433830839, + z: 196.5614349425384, + }, + }, + { + id: '2382', + data: { + label: 'Eldora Herald-Ledger (Iowa)', + x: 7115.518480812506, + y: 922.2284698027665, + z: -537.7655406390242, + }, + }, + { + id: '2383', + data: { + label: 'Cresco Times-Plain Dealer (Iowa)', + x: 6960.489166387422, + y: 883.7847356951667, + z: 595.6024904787316, + }, + }, + { + id: '2384', + data: { + label: 'The Atchison Daily Globe (Kansas)', + x: 7277.729904981735, + y: 601.5184731141858, + z: 597.8418631917698, + }, + }, + { + id: '2385', + data: { + label: 'Atchison Area Advertiser (Kansas)', + x: 6821.023822991966, + y: 995.3385466934917, + z: 574.776854706116, + }, + }, + { + id: '2386', + data: { + label: 'Augusta Daily Gazette (Kansas)', + x: 7643.573828511088, + y: 874.4549911134985, + z: -19.63950690641986, + }, + }, + { + id: '2392', + data: { + label: 'The El Dorado Times (Kansas)', + x: 7320.486709263589, + y: 471.84368277243584, + z: 401.56860225016874, + }, + }, + { + id: '2393', + data: { + label: 'El Dorado Times Weekly (Kansas)', + x: 7254.227730151636, + y: 349.0707349196842, + z: 22.657040071478782, + }, + }, + { + id: '2394', + data: { + label: 'Kansas City Kansan (Kansas)', + x: 6620.864305870476, + y: 1350.04102627197, + z: -246.0240360222043, + }, + }, + { + id: '2395', + data: { + label: 'Kansas City Kansan ("Sunday") (Kansas)', + x: 6996.406442666439, + y: 771.2516308296533, + z: 396.2739480280071, + }, + }, + { + id: '2396', + data: { + label: 'Wynadott County Shopper (Kansas)', + x: 6744.089155692358, + y: 1377.7829882925635, + z: 424.6993504302319, + }, + }, + { + id: '2397', + data: { + label: 'The Leavenworth Times (Kansas)', + x: 7165.120885096252, + y: 397.56230722820817, + z: -280.88882583802325, + }, + }, + { + id: '2398', + data: { + label: 'The Leavenworth Times Sunday (Kansas)', + x: 6592.093644305954, + y: 891.5372149582981, + z: 248.0294079868081, + }, + }, + { + id: '2401', + data: { + label: 'McPherson Sentinel (Kansas)', + x: 6615.051516899076, + y: 1415.3022909886977, + z: 31.59049770604067, + }, + }, + { + id: '2404', + data: { + label: 'The Pratt Tribune (Kansas)', + x: 6849.418175680492, + y: 1600.0163123574146, + z: 284.8809803260694, + }, + }, + { + id: '2407', + data: { + label: '', + x: 4172.531144985036, + y: 4075.2764121226883, + z: 4063.07126154834, + }, + }, + { + id: '2411', + data: { + label: 'The Bastrop Daily Express (Louisiana)', + x: 6985.8928546476245, + y: 355.6314635781811, + z: -36.470637096091544, + }, + }, + { + id: '2413', + data: { + label: 'The Donaldsonville Chief (Louisiana)', + x: 7563.720000497723, + y: 1442.4213429466752, + z: 347.43172845435333, + }, + }, + { + id: '2420', + data: { + label: 'Iowa News (Louisiana)', + x: 7441.538203844513, + y: 1396.4515403379764, + z: -133.19929902596454, + }, + }, + { + id: '2421', + data: { + label: 'Leesville Daily Leader (Louisiana)', + x: 7001.121430430105, + y: 1382.0953390476036, + z: -269.76629936654354, + }, + }, + { + id: '2422', + data: { + label: 'Moss Bluf News (Louisiana)', + x: 7298.504812355149, + y: 904.8768961690863, + z: -435.0222286653597, + }, + }, + { + id: '2424', + data: { + label: 'Vinton News (Louisiana)', + x: 7536.079104675886, + y: 1617.9745849972865, + z: -141.27705636253125, + }, + }, + { + id: '2425', + data: { + label: 'Westlake News (Louisiana)', + x: 6755.883096818847, + y: 1446.4161740292648, + z: -347.2274807816642, + }, + }, + { + id: '2426', + data: { + label: 'Cheboygan Daily Tribune (Michigan)', + x: 6600.997684705639, + y: 901.0692754158339, + z: -340.08316245495183, + }, + }, + { + id: '2432', + data: { + label: 'Crookston Daily Times (Minnesota)', + x: 7134.848441157023, + y: 560.8486853062778, + z: -507.17371366169016, + }, + }, + { + id: '2433', + data: { + label: 'Crookston Valley Shopper (Minnesota)', + x: 6908.246359761318, + y: 675.1800293775119, + z: 571.5947129137284, + }, + }, + { + id: '2434', + data: { + label: 'Granite Falls/Clarkfield Advocate-Tribune (Minnesota)', + x: 6522.4847600220255, + y: 1122.1580283506369, + z: -187.19576130368105, + }, + }, + { + id: '2435', + data: { + label: 'The Halstad Shopper (Minnesota)', + x: 6715.5623793444665, + y: 841.276862129538, + z: 400.8349675851095, + }, + }, + { + id: '2436', + data: { + label: 'Montevideo American News (Minnesota)', + x: 7380.562818523125, + y: 1466.5615204292278, + z: 515.2382286832169, + }, + }, + { + id: '2438', + data: { + label: 'Redwood Falls Gazette (Minnesota)', + x: 6810.84175080391, + y: 487.12745791006375, + z: -188.95101851505538, + }, + }, + { + id: '2439', + data: { + label: 'Redwood Falls Livewire (Minnesota)', + x: 7496.8711633741505, + y: 772.1259561284386, + z: -516.4700784677128, + }, + }, + { + id: '2440', + data: { + label: 'St. James Plain Dealer (Minnesota)', + x: 7674.965128987614, + y: 1404.577706954336, + z: -116.67733974041829, + }, + }, + { + id: '2442', + data: { + label: 'Sleepy Eye Herald Dispatch (Minnesota)', + x: 7031.435885206398, + y: 1194.8407714356617, + z: -449.51398393527, + }, + }, + { + id: '2443', + data: { + label: 'The Sleepy Eye Reminder (Minnesota)', + x: 6648.877410516862, + y: 1036.2627645169355, + z: 438.7810236873984, + }, + }, + { + id: '2444', + data: { + label: 'Boonville Daily News (Missouri)', + x: 6503.165141647832, + y: 1189.5086847869472, + z: 66.37600524023028, + }, + }, + { + id: '2448', + data: { + label: 'The Carthage Press (Missouri)', + x: 7467.636276321113, + y: 1588.177180670405, + z: 341.9996325320459, + }, + }, + { + id: '2449', + data: { + label: 'The Carthage Press Scope (Missouri)', + x: 6890.162223842706, + y: 925.394494991782, + z: -633.9767097547024, + }, + }, + { + id: '2455', + data: { + label: 'Kirksville Crier (Missouri)', + x: 6594.200377443587, + y: 1097.7204642498923, + z: -369.52280160016585, + }, + }, + { + id: '2456', + data: { + label: 'Kirksville Daily Express & News (Missouri)', + x: 7709.847443649048, + y: 649.7780106317316, + z: -162.1004459927914, + }, + }, + { + id: '2460', + data: { + label: 'Lake of the Ozarks Boats (Missouri)', + x: 6860.785362013806, + y: 1615.0429827845373, + z: -67.1249513129476, + }, + }, + { + id: '2461', + data: { + label: 'Lake of the Ozarks Real Estate (Missouri)', + x: 7506.509221730892, + y: 988.073641539881, + z: -587.7518321110423, + }, + }, + { + id: '2463', + data: { + label: 'Macon Journal (Missouri)', + x: 7106.788791437647, + y: 378.8340555111968, + z: 229.25061454557186, + }, + }, + { + id: '2464', + data: { + label: 'Marceline Press (Missouri)', + x: 7280.5024625906235, + y: 1092.5600711883442, + z: -683.2453503355994, + }, + }, + { + id: '2466', + data: { + label: 'The Mexico Ledger (Missouri)', + x: 7497.681548165887, + y: 1194.3884738477311, + z: 357.9838632444806, + }, + }, + { + id: '2467', + data: { + label: 'The Mexico Ledger TMC (Missouri)', + x: 7307.300020960738, + y: 381.83012248786366, + z: 214.6209677319128, + }, + }, + { + id: '2468', + data: { + label: 'Monroe City News (Missouri)', + x: 6562.590042744445, + y: 884.1535014359881, + z: -190.03423544324073, + }, + }, + { + id: '2469', + data: { + label: 'Mark Twain Regional News (Missouri)', + x: 7051.308750775835, + y: 1278.4230212890025, + z: -653.7677429575293, + }, + }, + { + id: '2470', + data: { + label: 'Neosho Daily News (Missouri)', + x: 7009.70630269317, + y: 1061.5821073500751, + z: 704.0162920234324, + }, + }, + { + id: '2471', + data: { + label: 'Neosho Daily News "Etc." (Missouri)', + x: 7751.3829366762675, + y: 921.3615419072956, + z: 412.15825982647874, + }, + }, + { + id: '2472', + data: { + label: 'Neosho Daily News "Sunday" (Missouri)', + x: 7090.845573749661, + y: 1465.6594264375155, + z: -495.30801432040323, + }, + }, + { + id: '2473', + data: { + label: 'Vacation News (Osage Beach) (Missouri)', + x: 6744.298234476907, + y: 1602.0293000548775, + z: 87.565346330481, + }, + }, + { + id: '2474', + data: { + label: 'Rolla Daily News (Missouri)', + x: 7097.105899456417, + y: 1664.3119890172277, + z: 13.43211739592433, + }, + }, + { + id: '2475', + data: { + label: 'Rolla Daily News Plus (Missouri)', + x: 7223.847624455688, + y: 1611.7730914439271, + z: 429.09953923718876, + }, + }, + { + id: '2480', + data: { + label: '', + x: 6897.9228489765665, + y: 3526.5864237703, + z: 150.74043450477183, + }, + }, + { + id: '2481', + data: { + label: '', + x: 6210.3011511880195, + y: 102.01215113677769, + z: -3440.418120551054, + }, + }, + { + id: '2485', + data: { + label: 'Homell Canisteo Penn-E-Saver (New York)', + x: 6911.266491262238, + y: 1438.1383236086492, + z: 503.16062042901217, + }, + }, + { + id: '2500', + data: { + label: 'Corning-Elmira Pennysaver (New York)', + x: 7535.061309126817, + y: 455.735717134904, + z: -119.41228901314511, + }, + }, + { + id: '2503', + data: { + label: 'Saugerties Post Star (New York)', + x: 7116.663347112266, + y: 1619.2295792163884, + z: -371.60026595026295, + }, + }, + { + id: '2504', + data: { + label: 'Saugerties Pennysaver (New York)', + x: 7594.775858987939, + y: 1562.6925846452946, + z: 81.04797475206824, + }, + }, + { + id: '2507', + data: { + label: 'Wellsville Daily Reporter (New York)', + x: 6910.662837937145, + y: 435.57642784654524, + z: 307.682368407635, + }, + }, + { + id: '2509', + data: { + label: 'Wellsville Daily TMC (New York)', + x: 7451.118113013796, + y: 653.906695303025, + z: -170.65271284928917, + }, + }, + { + id: '2510', + data: { + label: 'Devils Lake Daily Journal (North Dakota)', + x: 6754.372917218673, + y: 1202.5932789864119, + z: -318.3242008134123, + }, + }, + { + id: '2512', + data: { + label: 'The Carbondale News (Pennsylvania)', + x: 7362.066775862369, + y: 457.18272702824567, + z: -323.98567545686956, + }, + }, + { + id: '2515', + data: { + label: 'Milton Daily Standard (Pennsylvania)', + x: 6732.120565266291, + y: 749.0979356131393, + z: 199.5206110702605, + }, + }, + { + id: '2526', + data: { + label: 'Community Group International Network (CGIN)', + x: 7633.088849281792, + y: 973.3571045033364, + z: -413.2749602866696, + }, + }, + { + id: '2527', + data: { + label: 'KMGH-TV (Denver)', + x: 5217.466431694637, + y: -4295.758797311255, + z: -723.7816744366329, + }, + }, + { + id: '2528', + data: { + label: 'KGTV (San Diego)', + x: 4819.464461523437, + y: -3708.098065978418, + z: -735.5827326712852, + }, + }, + { + id: '2529', + data: { + label: 'KERO-TV (Bakersfield)', + x: 5220.200314582715, + y: -3820.0804645397006, + z: -1355.4512556588036, + }, + }, + { + id: '2530', + data: { + label: 'WRTV (Indianapolis)', + x: 4795.0120350994475, + y: -4595.985042197687, + z: -1007.9725099840314, + }, + }, + { + id: '2531', + data: { + label: 'Business Week Group', + x: -2381.2017342804565, + y: 1182.9434991120988, + z: -3727.232711406979, + }, + }, + { + id: '2532', + data: { + label: 'Business Week', + x: 4659.899010804837, + y: -4494.208765313343, + z: -795.9724786615684, + }, + }, + { + id: '2534', + data: { + label: 'McGraw-Hill Construction Information Group', + x: 5374.099591267263, + y: -3984.0960736115967, + z: -1089.2900179269202, + }, + }, + { + id: '2535', + data: { + label: 'F.W. Dodge', + x: 5048.132059758084, + y: -4112.417822693413, + z: -568.0045193899106, + }, + }, + { + id: '2536', + data: { + label: "Sweet's Group", + x: 4909.531949868563, + y: -4341.10332771251, + z: -583.5808790636788, + }, + }, + { + id: '2537', + data: { + label: 'Architectural Record', + x: 4393.108570588263, + y: -4213.557046372227, + z: -1219.2264227497633, + }, + }, + { + id: '2538', + data: { + label: 'Engineering-News Record', + x: 4967.105209881758, + y: -4559.693157245285, + z: -1228.81520541158, + }, + }, + { + id: '2539', + data: { + label: 'Design-Build', + x: 5054.023653718964, + y: -3608.215259716028, + z: -1087.4839144439268, + }, + }, + { + id: '2540', + data: { + label: 'Aviation Week', + x: 5323.414550311179, + y: -4000.448996577375, + z: -1313.692813805901, + }, + }, + { + id: '2541', + data: { + label: 'Aviation Week & Space Technology', + x: 4420.37521220672, + y: -4365.797842992933, + z: -1108.7783212146671, + }, + }, + { + id: '2542', + data: { + label: 'A/C Flyer', + x: 4555.269519257671, + y: -3861.119195612916, + z: -1377.3560681523204, + }, + }, + { + id: '2543', + data: { + label: 'Business & Commercial Aviation', + x: 4695.123604679026, + y: -3647.487243397485, + z: -925.9772195829769, + }, + }, + { + id: '2544', + data: { + label: 'World Aviation Directory', + x: 4795.914697982593, + y: -4423.4704762894835, + z: -1439.786243892245, + }, + }, + { + id: '2545', + data: { + label: 'O&M Magazine', + x: 4978.503119654381, + y: -3969.0831521786167, + z: -1561.909528387714, + }, + }, + { + id: '2546', + data: { + label: 'Aviation Week Newsletters', + x: 4618.452357367403, + y: -3891.5714661218126, + z: -672.3716513248676, + }, + }, + { + id: '2547', + data: { + label: 'Hospital Practice', + x: 5185.497872242363, + y: -3959.0903441748515, + z: -679.0354906425808, + }, + }, + { + id: '2548', + data: { + label: 'The Physician and Sportsmedicine', + x: 4715.781060492956, + y: -3694.6179998884077, + z: -1325.6913514906414, + }, + }, + { + id: '2549', + data: { + label: 'Postgraduate Medicine', + x: 4547.455755422082, + y: -3711.2011301478346, + z: -1080.483334473029, + }, + }, + { + id: '2550', + data: { + label: 'Healthcare Informatics', + x: 4717.579310549598, + y: -4220.980970449561, + z: -1540.401410643133, + }, + }, + { + id: '2551', + data: { + label: 'Healthcare Education Group', + x: 4941.514388637917, + y: -4184.084774124754, + z: -1577.18332828398, + }, + }, + { + id: '2552', + data: { + label: 'Power Magazine', + x: 4539.431383353434, + y: -4118.335978818829, + z: -1462.7711177512506, + }, + }, + { + id: '2553', + data: { + label: 'Electrical World', + x: 5335.709812064741, + y: -3978.3164830599926, + z: -842.2108211880444, + }, + }, + { + id: '2554', + data: { + label: 'Global Energy Business', + x: 4979.2463880219075, + y: -3833.2818397963697, + z: -647.0741248987299, + }, + }, + { + id: '2555', + data: { + label: 'Information Technologies for Utilities/IT', + x: 5302.128663276047, + y: -3788.0515502298344, + z: -942.9373913844115, + }, + }, + { + id: '2556', + data: { + label: 'McGraw-Hill Energy', + x: 5185.995084436943, + y: -3695.7480258873343, + z: -1217.0349746776526, + }, + }, + { + id: '2557', + data: { + label: 'Utility Data Institute', + x: 4542.961444649549, + y: -4392.504927089523, + z: -1359.9919819504566, + }, + }, + { + id: '2558', + data: { + label: 'Tower Group International', + x: 4432.503935166424, + y: -3907.0389492557674, + z: -1249.056191822918, + }, + }, + { + id: '2559', + data: { + label: 'McGraw-Hill School Division', + x: 13.692190525994535, + y: 4309.169733293318, + z: 4033.8126977373327, + }, + }, + { + id: '2560', + data: { + label: 'Glencoe/McGraw-Hill', + x: 4463.999593813375, + y: -3862.507329446278, + z: -866.8791804829306, + }, + }, + { + id: '2561', + data: { + label: 'CTB/McGraw-Hill', + x: 4821.538176272613, + y: -3611.4108346467347, + z: -1108.6267399503438, + }, + }, + { + id: '2562', + data: { + label: 'SRA/McGraw-Hill', + x: 5349.217526415172, + y: -4200.796417227421, + z: -1157.4217642684762, + }, + }, + { + id: '2563', + data: { + label: 'McGraw-Hill Consumer Products', + x: 4637.011825035635, + y: -4285.568001245307, + z: -639.6623683846968, + }, + }, + { + id: '2564', + data: { + label: 'McGraw-Hill Higher Education', + x: 4748.816247374413, + y: -3810.5294009195204, + z: -1481.2362585773708, + }, + }, + { + id: '2565', + data: { + label: 'McGraw-Hill', + x: 4552.695267779947, + y: -4465.575132271729, + z: -974.0102680337388, + }, + }, + { + id: '2566', + data: { + label: 'Irwin/McGraw-Hill', + x: 5322.291532092294, + y: -4248.794717144709, + z: -943.5861126075326, + }, + }, + { + id: '2567', + data: { + label: 'Dushkin/McGraw-Hill', + x: 4927.191258525118, + y: -4514.135789248012, + z: -747.8433313899801, + }, + }, + { + id: '2568', + data: { + label: 'Primis Custom Publishing', + x: 4749.483817949634, + y: -4010.880400213954, + z: -519.0857816623712, + }, + }, + { + id: '2569', + data: { + label: 'Professional Book Group', + x: 5038.467919597386, + y: -4393.848551552129, + z: -1424.8114428577362, + }, + }, + { + id: ' Technical and Medical', + data: { + label: 'Science', + x: -264.3674960289237, + y: 2049.722660310842, + z: 5089.065815307484, + }, + }, + { + id: '2572', + data: { + label: 'Osborne/McGraw-Hill', + x: 5062.730902513813, + y: -3809.5167843101713, + z: -1471.978248096094, + }, + }, + { + id: '2573', + data: { + label: 'Computing McGraw-Hill', + x: 4395.0606179092365, + y: -4180.434790993196, + z: -895.177366742894, + }, + }, + { + id: '2574', + data: { + label: 'Business/General Reference', + x: 5269.928903856511, + y: -4250.865142267037, + z: -1353.761854357603, + }, + }, + { + id: '2575', + data: { + label: 'McGraw-Hill Ryerson (Canada)', + x: 5213.489072150219, + y: -4449.911158873285, + z: -1197.820185913151, + }, + }, + { + id: '2576', + data: { + label: 'McGraw-Hill Latin America (McGraw-Hill Interamericana)', + x: 5182.711438917506, + y: -4074.425324678309, + z: -1499.080703702123, + }, + }, + { + id: '2577', + data: { + label: 'McGraw-Hill Spain', + x: 4493.6728864608995, + y: -4077.246847193019, + z: -748.514440109368, + }, + }, + { + id: ' Middle East', + data: { + label: 'McGraw-Hill Europe', + x: -2683.3896773313922, + y: 1170.1522232299865, + z: -2753.386299565976, + }, + }, + { + id: '2579', + data: { + label: 'McGraw-Hill Asia/Pacific', + x: 4933.848846477059, + y: -3644.0429024864025, + z: -1317.6514549308379, + }, + }, + { + id: '2580', + data: { + label: 'McGraw-Hill Australia', + x: 4689.670235453873, + y: -4539.074323912153, + z: -1223.3068552764844, + }, + }, + { + id: '2581', + data: { + label: 'McGraw-Hill Lifetime Learning', + x: 4373.764243556966, + y: -4008.5655271055475, + z: -1080.3872750369237, + }, + }, + { + id: ' Inc.', + data: { + label: 'MarketWatch.com', + x: -387.3267065975988, + y: 5849.406382652206, + z: 304.8071503854328, + }, + }, + { + id: '2583', + data: { + label: 'Xebec/McGraw-Hill', + x: 5103.945138393198, + y: -3678.4259179491987, + z: -870.7031294943579, + }, + }, + { + id: '2584', + data: { + label: 'Standard & Poors Ratings Service', + x: 4745.344126743485, + y: -4012.8977058968876, + z: -1545.7521178087256, + }, + }, + { + id: '2585', + data: { + label: 'Standard & Poors Financial Information Services', + x: 5098.565639227118, + y: -4535.654584776197, + z: -969.688567219178, + }, + }, + { + id: '2586', + data: { + label: 'Richmond Times-Dispatch (Virginia)', + x: 2138.593193131754, + y: -5537.838576695587, + z: 749.7201704013836, + }, + }, + { + id: '2587', + data: { + label: 'Star Watch Richmond (Virginia)', + x: 1925.5892115931651, + y: -4676.6743222893565, + z: 636.2309990442375, + }, + }, + { + id: '2589', + data: { + label: 'Bristol Herald Courier (Virginia)', + x: 1861.893339755391, + y: -5281.000330331783, + z: 272.6683032688593, + }, + }, + { + id: '2595', + data: { + label: 'Culpeper Star-Exponent(Virginia)', + x: 2126.844248707686, + y: -4953.99022140711, + z: 1088.1140764820125, + }, + }, + { + id: '2597', + data: { + label: 'Danville Register & Bee Star Watch Danville (Virginia)', + x: 2175.796073218302, + y: -5026.999429998533, + z: 301.3847768019077, + }, + }, + { + id: '2601', + data: { + label: 'The Manassas Journal Messenger (Virginia)', + x: 2195.0689033052713, + y: -4794.152914744234, + z: 502.1554409653007, + }, + }, + { + id: '2602', + data: { + label: 'Manassas Weekender (Virginia)', + x: 1844.237109218153, + y: -5249.480011364968, + z: 1155.885130023503, + }, + }, + { + id: '2603', + data: { + label: 'The Newport News Gazette (Virginia)', + x: 2377.6012654998985, + y: -5049.086165675869, + z: 534.547051111093, + }, + }, + { + id: '2604', + data: { + label: 'Orange Express (Virginia)', + x: 2342.5455169904653, + y: -5029.827749348853, + z: 902.0989009545862, + }, + }, + { + id: '2605', + data: { + label: 'Orange Bullet (Virginia)', + x: 2157.856730353333, + y: -5265.621728823144, + z: 1103.5455991535198, + }, + }, + { + id: '2608', + data: { + label: 'Orange County Review (Virginia)', + x: 1599.8142936460974, + y: -4837.714427810315, + z: 613.2549212067814, + }, + }, + { + id: '2611', + data: { + label: 'Richlands News-Press (Virginia)', + x: 1930.7924499667704, + y: -4996.198392599107, + z: 247.14453984283605, + }, + }, + { + id: '2612', + data: { + label: 'Suffolk News-Herald (Virginia)', + x: 1642.2548910001376, + y: -5455.025147404233, + z: 676.9563301763021, + }, + }, + { + id: '2623', + data: { + label: 'Yorktown Crier (Virginia)', + x: 1651.0945435609465, + y: -5036.2044161617, + z: 358.1046470445544, + }, + }, + { + id: '2624', + data: { + label: 'Winston-Salem Journal (North Carolina)', + x: 2229.549228830637, + y: -5310.63550182782, + z: 378.5022818873156, + }, + }, + { + id: '2629', + data: { + label: 'Hickory Daily Record (North Carolina)', + x: 1607.1978143734357, + y: -4841.890557238198, + z: 851.0706723759738, + }, + }, + { + id: '2638', + data: { + label: 'The Reidsville Review (North Carolina)', + x: 1494.1186984847575, + y: -5103.708960684138, + z: 756.8988036087562, + }, + }, + { + id: '2640', + data: { + label: 'Roanoke-Chowan News Herald (North Carolina)', + x: 1561.0660802953205, + y: -5230.013169321969, + z: 487.9324948433523, + }, + }, + { + id: '2641', + data: { + label: 'Roanoke-Chowan Weekly (North Carolina)', + x: 1923.6219723271001, + y: -5494.202662998142, + z: 973.1564280627412, + }, + }, + { + id: '2642', + data: { + label: 'Shopper Gates County Index (North Carolina)', + x: 1623.431663111337, + y: -5052.975677439864, + z: 1038.585884406021, + }, + }, + { + id: '2643', + data: { + label: 'Statesville Record & Landmark (North Carolina)', + x: 1874.5876063246897, + y: -4908.472369350559, + z: 1108.2387099558457, + }, + }, + { + id: '2647', + data: { + label: 'The Tampa Tribune (Florida)', + x: 1623.715068150397, + y: -5326.402731169698, + z: 960.6198950862695, + }, + }, + { + id: '2661', + data: { + label: 'Media General News Service (District of Columbia)', + x: 2347.0167440527266, + y: -5325.751343298869, + z: 827.3819595090346, + }, + }, + { + id: ' Ala.', + data: { + label: 'WIAT - Birmingham', + x: -860.3468091798715, + y: 1283.5459665698304, + z: 5025.009002921353, + }, + }, + { + id: ' Fla.', + data: { + label: 'WJWB - Jacksonville', + x: -3879.4852719779724, + y: 783.483443655598, + z: -1885.700804573403, + }, + }, + { + id: ' Ga.', + data: { + label: 'WSAV- Savannah', + x: -462.9284036317921, + y: 5167.561573295761, + z: 990.8241379954273, + }, + }, + { + id: ' Ky.', + data: { + label: 'WTVQ - Lexington', + x: -1916.0847463556165, + y: -1743.3616918124806, + z: 4152.979296219461, + }, + }, + { + id: ' La.', + data: { + label: 'KALB - Alexandria', + x: -2144.4342950026144, + y: -3186.272090128636, + z: 1585.010380432058, + }, + }, + { + id: ' Miss.', + data: { + label: 'WHLT- Hattiesburg', + x: -3484.3310271071537, + y: -863.7670440004083, + z: 2587.228609524439, + }, + }, + { + id: ' N.C.', + data: { + label: 'WNCT - Greenville', + x: -2158.267510702989, + y: -3959.077211452104, + z: -735.5389187053313, + }, + }, + { + id: ' S.C.', + data: { + label: 'WCBD- Charleston', + x: -2677.5238675673218, + y: 391.29338675953477, + z: -4048.236884711295, + }, + }, + { + id: ' Tenn.', + data: { + label: 'WDEF - Chattanooga', + x: 3118.4409516459477, + y: 3909.868902930546, + z: -4549.022693726654, + }, + }, + { + id: ' Va.', + data: { + label: 'WSLS - Roanoke', + x: 228.78116852641554, + y: 4531.078264648281, + z: -2479.630517388283, + }, + }, + { + id: '2675', + data: { + label: 'Garden State Paper Company', + x: 1999.5542019466498, + y: -5500.997612224301, + z: 455.79703887313616, + }, + }, + { + id: '2676', + data: { + label: 'Southeast Paper Manufacturing', + x: 2407.450566706663, + y: -4555.483406634117, + z: 856.2928379624315, + }, + }, + { + id: '2677', + data: { + label: 'Virginia Business Magazine', + x: 1913.3314945402446, + y: -4720.1604296284295, + z: 896.8158999884294, + }, + }, + { + id: '2678', + data: { + label: 'Media General Financial Services', + x: 1816.0723171766917, + y: -4789.604639088605, + z: 407.8756220606213, + }, + }, + { + id: '2679', + data: { + label: 'Better Homes and Gardens', + x: 3830.3357336325507, + y: 4420.095174583179, + z: -1142.6260210702033, + }, + }, + { + id: '2680', + data: { + label: "Ladies' Home Journal", + x: 3964.2322009306017, + y: 5042.7693542542875, + z: -869.9377727599525, + }, + }, + { + id: '2681', + data: { + label: 'Country Home', + x: 4558.275497229987, + y: 4631.362102931725, + z: -1157.9890294200552, + }, + }, + { + id: '2682', + data: { + label: 'Midwest Living', + x: 4205.278435250783, + y: 4220.80783846984, + z: -1055.3394416374936, + }, + }, + { + id: '2683', + data: { + label: 'Traditional Home', + x: 4549.938848765029, + y: 4875.395471686448, + z: -945.7641055563175, + }, + }, + { + id: '2684', + data: { + label: 'WOOD', + x: 3874.3998530743856, + y: 4692.538428203202, + z: -1292.0298506159372, + }, + }, + { + id: '2685', + data: { + label: 'Crayola Kids', + x: 4227.782535341008, + y: 5069.564835582641, + z: -1018.9222109371318, + }, + }, + { + id: '2686', + data: { + label: 'Family Money', + x: 4448.366642461265, + y: 4811.5483633694785, + z: -572.0837080637428, + }, + }, + { + id: '2687', + data: { + label: 'more', + x: 3751.2036858377483, + y: 4542.343237508883, + z: -723.5133531563374, + }, + }, + { + id: '2688', + data: { + label: 'Successful Farming', + x: 3893.8268273216295, + y: 4781.077810996619, + z: -542.5843266014726, + }, + }, + { + id: '2689', + data: { + label: 'Renovation Style', + x: 4526.507944596261, + y: 4359.545750088377, + z: -884.0516664352677, + }, + }, + { + id: '2690', + data: { + label: 'Golf for Women', + x: 4448.1654148412, + y: 4441.375291344277, + z: -574.8578068975024, + }, + }, + { + id: '2691', + data: { + label: 'Country Gardens', + x: 4370.282549851608, + y: 5020.5933758072615, + z: -753.3111318389382, + }, + }, + { + id: '2692', + data: { + label: 'Decorative Woodcrafts', + x: 4613.779256485443, + y: 4657.234413415345, + z: -780.10766614167, + }, + }, + { + id: '2693', + data: { + label: 'Crafts Showcase', + x: 4065.175254348877, + y: 4655.860617557497, + z: -1369.5329757801312, + }, + }, + { + id: '2694', + data: { + label: 'Cross Stitch & Needlework', + x: 4404.432009323353, + y: 4912.494195093195, + z: -1171.8019786559562, + }, + }, + { + id: '2695', + data: { + label: 'American Patchwork & Quilting', + x: 4098.013637681715, + y: 4429.631370152171, + z: -496.5097374423897, + }, + }, + { + id: '2696', + data: { + label: 'Do It Yourself', + x: 3714.9119722185997, + y: 4665.795206384366, + z: -1046.915989043459, + }, + }, + { + id: ' Deck and Landscape', + data: { + label: 'Garden', + x: -3824.4811184194223, + y: 1515.5572189240136, + z: 1680.1916441994395, + }, + }, + { + id: '2698', + data: { + label: 'Decorating', + x: 3839.469643989511, + y: 4891.4719967899055, + z: -1111.531804144143, + }, + }, + { + id: '2699', + data: { + label: 'American Park Network', + x: 4084.7682211027636, + y: 4376.137220592234, + z: -1294.9652836092434, + }, + }, + { + id: '2700', + data: { + label: 'California Tourism Publications', + x: 3760.47823971081, + y: 4860.015770878042, + z: -795.1013042586314, + }, + }, + { + id: '2701', + data: { + label: 'Meredith Books', + x: 4097.281830417029, + y: 4938.734577153827, + z: -1240.54430924247, + }, + }, + { + id: '2702', + data: { + label: 'Meredith Press', + x: 4307.307386333897, + y: 4718.139322934533, + z: -1329.70937151277, + }, + }, + { + id: '2703', + data: { + label: 'Sedgewood Press', + x: 4394.322152067774, + y: 4416.592450831653, + z: -1251.4393364868179, + }, + }, + { + id: '8197', + data: { + label: 'Allen & Company', + x: 3760.0041802844567, + y: -3414.8827253208983, + z: -1749.7878239339288, + }, + }, + { + id: '2705', + data: { + label: 'Ladies Home Journal', + x: 4191.0783192404915, + y: 4728.711166597403, + z: -436.62184877902916, + }, + }, + { + id: '8195', + data: { + label: 'ACS Sports.com', + x: 236.77595218404082, + y: 3153.8411827012724, + z: -3252.4319539282683, + }, + }, + { + id: ' GA', + data: { + label: 'WGNX-TV (CBS) Atlanta', + x: 6797.120463111237, + y: -104.95044843969883, + z: -3129.5559362821286, + }, + }, + { + id: ' OR', + data: { + label: 'KFXO-LP(Fox) Bend', + x: 2575.9875810723374, + y: 6328.127606974639, + z: 165.9207260116337, + }, + }, + { + id: ' AZ', + data: { + label: 'KPHO-TV (CBS) Phoenix', + x: 1788.62073681011, + y: -4062.818852829114, + z: 4112.418954838914, + }, + }, + { + id: ' NV', + data: { + label: 'KVVU-TV (Fox) Las Vegas', + x: 65.44524299271782, + y: 5250.59023605549, + z: 1850.5928189746357, + }, + }, + { + id: ' CT', + data: { + label: 'WFSB-TV (CBS) Hartford-New Haven', + x: -1497.1543421882445, + y: -4041.827503848006, + z: -1154.9293751961782, + }, + }, + { + id: ' TN', + data: { + label: 'WSMV-TV (NBC) Nashville', + x: 2341.647924632275, + y: -5475.39188567283, + z: -542.8310989803191, + }, + }, + { + id: ' S.C./Asheville', + data: { + label: 'WHNS-TV (Fox) Greenville - Spartanburg - Anderson', + x: 3784.3641671111945, + y: 2041.8552050078904, + z: -4872.145400961175, + }, + }, + { + id: ' MI', + data: { + label: 'WNEM-TV (CBS) Flint-Saginaw', + x: -4010.788364257962, + y: 124.04611051729329, + z: 1340.608228036852, + }, + }, + { + id: '2721', + data: { + label: 'Better Homes and Gardens Television show', + x: 4105.633692671224, + y: 4986.824507012307, + z: -603.2327656023847, + }, + }, + { + id: '2723', + data: { + label: 'The Sacramento Bee (California)', + x: 1837.2726370456137, + y: -3902.733743905819, + z: 2286.634024901653, + }, + }, + { + id: '2724', + data: { + label: 'The Fresno Bee (California)', + x: 2179.3320424824105, + y: -4149.004999845181, + z: 2357.6869515141825, + }, + }, + { + id: '2725', + data: { + label: 'The Modesto Bee (California)', + x: 2125.8306093121982, + y: -3901.52486713002, + z: 2138.3692850843695, + }, + }, + { + id: '2726', + data: { + label: 'Clovis Independent (California)', + x: 1876.2496069880974, + y: -3843.438163829347, + z: 1917.3994557246672, + }, + }, + { + id: '2728', + data: { + label: 'Chapel Hill News (North Carolina)', + x: 2075.197164605836, + y: -4685.062529738541, + z: 1890.7118268946128, + }, + }, + { + id: '2729', + data: { + label: 'Cary News (North Carolina)', + x: 2207.4613890282435, + y: -4576.215442941922, + z: 2130.526221639235, + }, + }, + { + id: '2730', + data: { + label: 'Zebulon Record (North Carolina)', + x: 1545.4944324481555, + y: -4310.419777790325, + z: 1710.5296591089214, + }, + }, + { + id: '2732', + data: { + label: 'Mount Olive Tribune (North Carolina)', + x: 1998.8734568165978, + y: -4476.678947431109, + z: 2384.203474675568, + }, + }, + { + id: '2733', + data: { + label: 'Smithfield Herald (North Carolina)', + x: 1667.6246613848941, + y: -4081.6852845933136, + z: 2332.9158347103826, + }, + }, + { + id: '2735', + data: { + label: 'The Beaufort Gazette (South Carolina)', + x: 2333.778151955059, + y: -4196.06793996271, + z: 2126.173831747402, + }, + }, + { + id: '2737', + data: { + label: 'The Fort Mill Times (South Carolina)', + x: 1777.2423582407594, + y: -4670.030474777956, + z: 2142.610826401515, + }, + }, + { + id: '2738', + data: { + label: 'Clover Herald (South Carolina)', + x: 1618.8286702866592, + y: -3932.803792087242, + z: 2095.799372146609, + }, + }, + { + id: '2739', + data: { + label: 'Yorkville Enquirer (South Carolina)', + x: 1725.3560130835538, + y: -4405.18244626703, + z: 2377.8961998336754, + }, + }, + { + id: '2740', + data: { + label: 'Lake Wylie Magazine (South Carolina)', + x: 1727.346754929468, + y: -4625.044540916533, + z: 1775.8193350815623, + }, + }, + { + id: '2741', + data: { + label: 'Anchorage Daily News (Alaska)', + x: 1522.4357735138117, + y: -4345.013804325937, + z: 2192.6263886826127, + }, + }, + { + id: ' Richland and Pasco', + data: { + label: 'Tri-City Herald (Kennewick', + x: 6102.3862900870745, + y: 801.2357127482609, + z: 4155.1111961246, + }, + }, + { + id: '2746', + data: { + label: 'Nando Media', + x: 1527.18668242443, + y: -4510.057596271847, + z: 1955.369058096589, + }, + }, + { + id: '2747', + data: { + label: 'The Newspaper Network', + x: 1927.192470799374, + y: -4170.697440073453, + z: 2439.1253859329595, + }, + }, + { + id: '2748', + data: { + label: 'Business North Carolina', + x: 1729.2963346797997, + y: -4122.4968078063, + z: 1597.0139841919495, + }, + }, + { + id: '2749', + data: { + label: 'Scripps-McClatchy Western News Service', + x: 1608.814232439434, + y: -3956.062975196961, + z: 1845.6357738720953, + }, + }, + { + id: '2750', + data: { + label: 'Newsprint Ventures', + x: 1460.9033447767779, + y: -4193.683193939962, + z: 1988.3029478546243, + }, + }, + { + id: '2751', + data: { + label: 'Ponderay Newsprint', + x: 2375.5544268104513, + y: -4123.185466833326, + z: 1527.4642845392964, + }, + }, + { + id: '2752', + data: { + label: 'HarperCollins Publisher', + x: 1830.1605771515508, + y: 1443.475727212175, + z: -946.6280699162991, + }, + }, + { + id: '2753', + data: { + label: 'HarperCollins General Book Group', + x: 1202.2998141615544, + y: 1975.0981363421222, + z: -1694.0105984074423, + }, + }, + { + id: '2754', + data: { + label: 'HarperCollins', + x: 1088.7435872293333, + y: 1926.542946269672, + z: -2197.994684903883, + }, + }, + { + id: '2755', + data: { + label: 'Perennial', + x: 1247.3741204940366, + y: 2133.5530533019455, + z: -2169.5920263839575, + }, + }, + { + id: '2756', + data: { + label: 'Cliff Street Books', + x: 1075.2207123328528, + y: 2261.047194513871, + z: -2136.6358257705056, + }, + }, + { + id: '2757', + data: { + label: 'The Ecco Press', + x: 882.5493273180808, + y: 2316.0806832603744, + z: -1958.7539815227506, + }, + }, + { + id: '2758', + data: { + label: 'Quill', + x: 887.5008209267999, + y: 1992.1857264353791, + z: -2130.065291425943, + }, + }, + { + id: '2759', + data: { + label: 'HarperAudio', + x: 1389.9705909518013, + y: 2316.5496397382317, + z: -2035.9232821567743, + }, + }, + { + id: '2760', + data: { + label: 'Regan Books', + x: 1097.8404103251623, + y: 2415.7348346659296, + z: -1979.1227055479442, + }, + }, + { + id: '2761', + data: { + label: 'Amistad Press', + x: 795.5956356913806, + y: 2131.787871971615, + z: -1980.0197969812857, + }, + }, + { + id: '2762', + data: { + label: 'Morrow/Avon', + x: 1320.915040080545, + y: 1553.7950746437723, + z: -1290.972477452947, + }, + }, + { + id: '2763', + data: { + label: 'William Morrow', + x: 974.9498260330255, + y: 1693.2188573359813, + z: -1653.560462526776, + }, + }, + { + id: '2764', + data: { + label: 'Avon', + x: 2093.79012507222, + y: 1964.624176338215, + z: -845.8968714982858, + }, + }, + { + id: '2765', + data: { + label: 'HarperTorch', + x: 1405.8062219244146, + y: 1714.7387924984178, + z: -1751.461674187636, + }, + }, + { + id: '2766', + data: { + label: 'Eos', + x: 1062.9796524317119, + y: 1496.9242509178619, + z: -1736.2983805346453, + }, + }, + { + id: '2767', + data: { + label: 'HarperEntertainment', + x: 1310.472931595732, + y: 1415.3483597789814, + z: -1773.5123282143995, + }, + }, + { + id: '2768', + data: { + label: 'HarperSanFrancisco', + x: 1739.8069330002133, + y: 1335.4046553569744, + z: 85.44234778499242, + }, + }, + { + id: '2769', + data: { + label: 'HarperInformation', + x: 1289.8089161822477, + y: 2228.132028605662, + z: -1236.2685319740617, + }, + }, + { + id: '2770', + data: { + label: 'HarperBusiness', + x: 1347.297160768151, + y: 2664.6336331192383, + z: -1536.852546112385, + }, + }, + { + id: '2771', + data: { + label: 'HarperResource', + x: 908.4858038323647, + y: 2512.0941091758673, + z: -1487.3005727029094, + }, + }, + { + id: '2772', + data: { + label: 'Access Travel', + x: 1404.8720558574935, + y: 2465.8597385139738, + z: -1680.2951673863618, + }, + }, + { + id: '2773', + data: { + label: 'William Morrow Cookbooks', + x: 1110.6158097445011, + y: 2678.0355657563427, + z: -1486.7808101975766, + }, + }, + { + id: '2774', + data: { + label: 'Branded Books Program', + x: 1112.554954859255, + y: 2474.9766216362655, + z: -1656.007869612847, + }, + }, + { + id: '2775', + data: { + label: "HarperCollins Children's Book Group", + x: 890.0406424703156, + y: 2485.1049632630566, + z: -656.0432194594504, + }, + }, + { + id: '2776', + data: { + label: 'Greenwillow Books', + x: 814.4565698935244, + y: 2980.4775856195683, + z: -826.8647237131825, + }, + }, + { + id: '2777', + data: { + label: 'Joanna Cotler Books', + x: 463.12498172673304, + y: 2793.2966168775333, + z: -646.8401489549742, + }, + }, + { + id: '2778', + data: { + label: 'Laura Geringer Books', + x: 603.1682156652, + y: 2704.7114434851183, + z: -1048.1853763476624, + }, + }, + { + id: '2779', + data: { + label: 'HarperCollins HarperFestival', + x: 630.0999072209008, + y: 2909.894339301811, + z: -864.8058031337806, + }, + }, + { + id: '2780', + data: { + label: 'HarperTrophy', + x: 862.6493825595506, + y: 2824.8473297515284, + z: -1055.628531007861, + }, + }, + { + id: '2781', + data: { + label: '', + x: 3425.628513694917, + y: 4795.910098277222, + z: 3595.3157037445153, + }, + }, + { + id: '2782', + data: { + label: 'Tempest', + x: 447.38134401398804, + y: 2701.8675915391714, + z: -859.1350324855258, + }, + }, + { + id: '2783', + data: { + label: 'HarperCollins International', + x: 1744.291159208366, + y: 1202.045173191515, + z: -600.6764313120099, + }, + }, + { + id: '2784', + data: { + label: 'Fox Broadcasting', + x: 2311.565495486733, + y: 1687.038519334988, + z: -388.94762720212765, + }, + }, + { + id: '2785', + data: { + label: 'Fox Entertainment', + x: 1806.182426027018, + y: 1880.325893425169, + z: 709.6996680830687, + }, + }, + { + id: '2786', + data: { + label: "Fox Kid's Network", + x: 1943.2231877814884, + y: 2316.740652726352, + z: -530.7849287668231, + }, + }, + { + id: '2787', + data: { + label: 'Fox Sports', + x: 2055.0830876278196, + y: 1341.338658182173, + z: -425.7028622738144, + }, + }, + { + id: '2788', + data: { + label: 'WNVW - New York City', + x: 1332.5069656319877, + y: 3550.3510131737494, + z: 1609.1633126195763, + }, + }, + { + id: '2789', + data: { + label: 'KTTV - Los Angeles', + x: 1230.9143898309, + y: 3813.8875815928054, + z: 1249.566813572181, + }, + }, + { + id: '2790', + data: { + label: 'WFLD TV - Chicago', + x: 716.9984987249633, + y: 3412.596819927237, + z: 929.2942281474288, + }, + }, + { + id: '2791', + data: { + label: 'WTXF TV - Philadelphia', + x: 1164.8994936361205, + y: 3355.286585574131, + z: 1703.5273646463513, + }, + }, + { + id: '2792', + data: { + label: 'WFXT TV - Boston', + x: 955.0740810875094, + y: 3404.586136185245, + z: 1675.3618127502996, + }, + }, + { + id: '2793', + data: { + label: 'WTTG TV - Washington D.C.', + x: 940.9674069406301, + y: 3420.319632758079, + z: 778.0782144421391, + }, + }, + { + id: '2794', + data: { + label: 'KDFW TV - Dallas', + x: 1520.2095142468988, + y: 3477.5861622764437, + z: 1354.1548917166567, + }, + }, + { + id: '2795', + data: { + label: 'WJBK TV - Detroit', + x: 1430.9694514222501, + y: 3366.534435306086, + z: 1570.669032983656, + }, + }, + { + id: '2796', + data: { + label: 'WAGA TV - Atlanta', + x: 872.6253558390316, + y: 3760.0794656455296, + z: 1145.2499633605114, + }, + }, + { + id: '2797', + data: { + label: 'KRIV TV - Houston', + x: 1432.3659753045524, + y: 3641.617954550697, + z: 1178.7878006197034, + }, + }, + { + id: '2798', + data: { + label: 'WJW TV - Cleveland', + x: 600.2174391530882, + y: 3284.609796969307, + z: 1216.336611637728, + }, + }, + { + id: '2799', + data: { + label: 'WTVT TV - Tampa', + x: 1260.5718189596018, + y: 3636.4113253557857, + z: 934.4317837216736, + }, + }, + { + id: '2800', + data: { + label: 'KSAZ TV - Phoenix', + x: 1322.3369926203134, + y: 3715.5710736071724, + z: 1442.184667916006, + }, + }, + { + id: '2801', + data: { + label: 'KDVR TV - Denver', + x: 1040.820025908265, + y: 3817.3036943206284, + z: 1344.910018748012, + }, + }, + { + id: '2802', + data: { + label: 'KTVI TV - St. Louis', + x: 907.4630217006206, + y: 3596.1062538100427, + z: 874.4047355951265, + }, + }, + { + id: '2803', + data: { + label: 'WITI TV - Milwaukee', + x: 631.3184877366224, + y: 3454.9502041565574, + z: 1362.8496007190577, + }, + }, + { + id: '2804', + data: { + label: 'WDAF TV - Kansas City', + x: 712.4688462624865, + y: 3685.3435168452856, + z: 1311.1497266931278, + }, + }, + { + id: '2805', + data: { + label: 'KSTU TV - Salt Lake City', + x: 1143.9725383810346, + y: 3662.8483634699346, + z: 1580.9999755336812, + }, + }, + { + id: '2806', + data: { + label: 'WHBQ TV - Memphis', + x: 771.0803984644994, + y: 3530.8547478577093, + z: 1544.6841969500258, + }, + }, + { + id: '2807', + data: { + label: 'WGHP TV - Greensboro', + x: 740.1303004871587, + y: 3296.3672563143277, + z: 1572.6358223554034, + }, + }, + { + id: '2808', + data: { + label: 'WBRC TV - Birmingham', + x: 664.7585499655759, + y: 3569.7780342093292, + z: 1126.108149661496, + }, + }, + { + id: '2809', + data: { + label: 'KTBC TV - Austin', + x: 1062.4149045122147, + y: 3777.402139725292, + z: 1031.1841949953803, + }, + }, + { + id: '2810', + data: { + label: 'KVC TV - Austin', + x: 889.7803663902981, + y: 3746.68322899586, + z: 1441.4238020888522, + }, + }, + { + id: '2811', + data: { + label: 'Twentieth Television', + x: 1070.6160947678534, + y: 2444.6698181553506, + z: 1375.6108118990046, + }, + }, + { + id: '2812', + data: { + label: 'Echostar', + x: 2173.155709589898, + y: 985.6610846774144, + z: -5.83641597799099, + }, + }, + { + id: '2813', + data: { + label: 'Fox Sports Net', + x: 1422.6867021357716, + y: 2768.7721875840984, + z: 1575.5293992059203, + }, + }, + { + id: '2814', + data: { + label: 'Fox Sports South', + x: 720.6287960682672, + y: 2822.465932951763, + z: 1454.7879248062904, + }, + }, + { + id: '2815', + data: { + label: 'Fox Sports Pittsburgh', + x: 588.6138161913884, + y: 2622.0497139145514, + z: 1473.0109843923342, + }, + }, + { + id: '2816', + data: { + label: 'Fox Sports Southeast', + x: 1211.7222365883508, + y: 2906.273695118619, + z: 1469.3982557960896, + }, + }, + { + id: '2817', + data: { + label: 'Fox Sports Midwest', + x: 695.4693241159493, + y: 2624.774688877065, + z: 1704.3550227999135, + }, + }, + { + id: '2818', + data: { + label: 'Fox Sports Rocky Mountain', + x: 945.8668900351862, + y: 2895.984627651011, + z: 1307.3061447971074, + }, + }, + { + id: '2819', + data: { + label: 'Fox Sports Arizona', + x: 588.2352897416366, + y: 2437.87904551948, + z: 1322.1580851242788, + }, + }, + { + id: '2820', + data: { + label: 'Fox Sports Northwest', + x: 698.7044895707188, + y: 2707.9890907023737, + z: 1180.668027789004, + }, + }, + { + id: '2821', + data: { + label: 'Fox Sports West', + x: 1155.9199037704334, + y: 2846.0612938989875, + z: 1705.0010985989763, + }, + }, + { + id: '2822', + data: { + label: 'Fox Sports West#2', + x: 1386.0465713418732, + y: 2580.8906234350898, + z: 1740.6790111731461, + }, + }, + { + id: '2823', + data: { + label: 'Fox Sports Detroit', + x: 919.9346247017853, + y: 2726.0900076436155, + z: 1812.9145819144283, + }, + }, + { + id: '2824', + data: { + label: '', + x: 963.6204577502813, + y: -4373.647615245058, + z: 3393.1219464498577, + }, + }, + { + id: '2825', + data: { + label: '', + x: 5156.269930411995, + y: -1947.8767226480043, + z: 4058.1771706780764, + }, + }, + { + id: '2826', + data: { + label: 'Fox Sports Cincinnati', + x: 918.952515503712, + y: 2474.864234064936, + z: 1825.1746627627308, + }, + }, + { + id: '2827', + data: { + label: 'Fox Sports Intermountain West', + x: 883.1380852302135, + y: 2858.3424124673747, + z: 1614.2265817384523, + }, + }, + { + id: '2828', + data: { + label: '', + x: 357.8167369816236, + y: -4927.5875491734405, + z: -2159.7637063049992, + }, + }, + { + id: '2829', + data: { + label: '', + x: 3887.048513849959, + y: -21.59023473589975, + z: 5073.673911454647, + }, + }, + { + id: '2830', + data: { + label: '', + x: -3272.0374408399166, + y: 3018.571293393883, + z: -1532.5709770561605, + }, + }, + { + id: '2831', + data: { + label: 'Fox Sports Southwest', + x: 679.2374263269439, + y: 2373.3945747991224, + z: 1610.8877760537405, + }, + }, + { + id: '2832', + data: { + label: '', + x: 4989.629661782708, + y: 3082.416080563641, + z: -3658.8502388659854, + }, + }, + { + id: '2833', + data: { + label: 'FiT TV', + x: 2645.277841253578, + y: 2396.0864228259215, + z: 2690.09160007004, + }, + }, + { + id: '2834', + data: { + label: 'The Health Network', + x: 2894.1954049297124, + y: 2302.574606148748, + z: 2637.8596630772668, + }, + }, + { + id: '2835', + data: { + label: 'Fox Sports World', + x: 2561.7224009508295, + y: 2617.9000448143156, + z: 2212.3789256531586, + }, + }, + { + id: '2836', + data: { + label: 'FX', + x: 1443.8432380337754, + y: 6083.867400152196, + z: 1827.0855490739593, + }, + }, + { + id: '2837', + data: { + label: '', + x: 2556.363493696056, + y: -4917.218189736881, + z: -2802.9692521174698, + }, + }, + { + id: '2838', + data: { + label: '', + x: -914.4241929021931, + y: -1930.2749636415563, + z: 4699.968830338246, + }, + }, + { + id: '2839', + data: { + label: 'Fox Kids Worldwide', + x: -1042.8735554137447, + y: 5602.168870174358, + z: 42.237448560483955, + }, + }, + { + id: '2840', + data: { + label: 'The Family Channel', + x: 1810.007201311166, + y: 394.02304679399015, + z: -657.4396706031828, + }, + }, + { + id: '2841', + data: { + label: 'MTM Entertainment', + x: 2028.7342110797083, + y: 487.11500213359153, + z: -611.848481654844, + }, + }, + { + id: '2842', + data: { + label: 'Fox News Channel', + x: 1167.3222867704178, + y: 2665.9877788963668, + z: 1846.9388679258266, + }, + }, + { + id: '2843', + data: { + label: 'FxM', + x: 1213.6783383394484, + y: 2382.6229293973324, + z: 1817.1022512919203, + }, + }, + { + id: '2844', + data: { + label: '', + x: -384.7983506589969, + y: 2732.2870162628433, + z: 4951.424953835181, + }, + }, + { + id: '2845', + data: { + label: '', + x: 5142.30137416772, + y: -1626.669000756031, + z: -4262.9905457616305, + }, + }, + { + id: '2846', + data: { + label: '', + x: 3504.7472895887913, + y: -4695.237381246734, + z: -1958.0990981485957, + }, + }, + { + id: '2847', + data: { + label: 'British Sky Broadcasting (BSkyB) - UK', + x: 2765.163706622017, + y: 2072.969559908666, + z: -490.75169454776966, + }, + }, + { + id: '2848', + data: { + label: '', + x: 6755.346413635179, + y: -2875.7878687570496, + z: -954.3843707714386, + }, + }, + { + id: '2849', + data: { + label: 'Music Choice Europe (UK)', + x: 2158.6407779078118, + y: 1965.3255843399231, + z: -54.00226375292863, + }, + }, + { + id: '2850', + data: { + label: 'QVC (UK)', + x: 2037.5404189898766, + y: 1387.4184258232574, + z: -781.3433026204666, + }, + }, + { + id: '2851', + data: { + label: 'Sky Multi-Channels (UK)', + x: 2759.199967132549, + y: 2261.6290992545632, + z: -964.631938717083, + }, + }, + { + id: '2852', + data: { + label: '.tv (UK)', + x: 2792.4871327831775, + y: 2492.9709182642414, + z: -765.9846583194292, + }, + }, + { + id: '2853', + data: { + label: 'National Geographic Channel (UK)', + x: 1690.5588496169626, + y: 2146.9649205977057, + z: -866.9351381328559, + }, + }, + { + id: '2854', + data: { + label: 'Paramount Channel (UK)', + x: 2177.6440019331053, + y: 2119.779108399972, + z: -390.62825066667085, + }, + }, + { + id: '2855', + data: { + label: 'Sky One (UK)', + x: 3029.1931502635066, + y: 2471.078166346222, + z: -629.2453679333969, + }, + }, + { + id: '2856', + data: { + label: 'Sky News (UK)', + x: 3107.6704329071686, + y: 2029.539982568299, + z: -863.1105866389107, + }, + }, + { + id: '2857', + data: { + label: 'Sky Soap (UK)', + x: 2996.165298578069, + y: 2339.055993782119, + z: -901.259834383616, + }, + }, + { + id: '2858', + data: { + label: 'Sky Travel (UK)', + x: 3142.68938617753, + y: 2251.6133846154758, + z: -756.7225560107607, + }, + }, + { + id: '2859', + data: { + label: 'The Computer Channel (UK)', + x: 2934.1283478064506, + y: 2085.5893452015043, + z: -988.4948246985721, + }, + }, + { + id: '2860', + data: { + label: 'Nickelodeon U.K.', + x: 970.2953330324575, + y: 879.1990811247242, + z: -350.66647625267296, + }, + }, + { + id: '2861', + data: { + label: 'The History Channel (UK)', + x: 1974.6677746359526, + y: 1751.4941917495657, + z: -893.8519370545274, + }, + }, + { + id: '2862', + data: { + label: 'Sky Scottish (UK)', + x: 1749.2154352110185, + y: 1628.8890872850548, + z: -1029.090137117752, + }, + }, + { + id: '2863', + data: { + label: 'Granada Sky Broadcasting (UK)', + x: 1664.177926759161, + y: 2221.1211245568525, + z: 620.3647779915079, + }, + }, + { + id: '2864', + data: { + label: 'Granada Plus (UK)', + x: 1566.5296694454523, + y: 2302.7420206967563, + z: 1081.740914106367, + }, + }, + { + id: '2865', + data: { + label: 'Granada Talk TV (UK)', + x: 1975.9494651733455, + y: 2545.5395628966926, + z: 839.5632519597676, + }, + }, + { + id: '2866', + data: { + label: 'Granada Men and Motors (UK)', + x: 1864.7071990784177, + y: 2417.7235957113176, + z: 1057.875584004256, + }, + }, + { + id: '2867', + data: { + label: 'Granada TV High Street (UK)', + x: 1394.1037648794747, + y: 2591.0055423795147, + z: 810.2166397758883, + }, + }, + { + id: '2868', + data: { + label: 'Granada Food and Wine (UK)', + x: 1739.990984200037, + y: 2675.5778511271888, + z: 802.9814571657465, + }, + }, + { + id: '2869', + data: { + label: 'Granada Health and Beauty (UK)', + x: 1627.4415787326475, + y: 2559.7934070654883, + z: 982.0862148748885, + }, + }, + { + id: '2870', + data: { + label: 'Granada Home and Garden (UK)', + x: 1840.0082383439262, + y: 2639.456082182181, + z: 951.852636681483, + }, + }, + { + id: '2871', + data: { + label: 'Fox Kids (UK)', + x: 2145.1144604351875, + y: 1576.3944246961623, + z: -768.7907659768392, + }, + }, + { + id: '2872', + data: { + label: 'Premium Channels (UK)', + x: 873.3814102175664, + y: 2277.227940335108, + z: 194.08746676057095, + }, + }, + { + id: '2873', + data: { + label: 'Sky Movies (UK)', + x: 388.980182338005, + y: 2444.6790395598423, + z: 263.82980658919314, + }, + }, + { + id: '2874', + data: { + label: 'The Movie Channel (UK)', + x: 672.8960799198478, + y: 2622.7247104971293, + z: 509.9413489616368, + }, + }, + { + id: '2875', + data: { + label: 'Sky Sports (UK)', + x: 736.1649286991327, + y: 2765.7354741379177, + z: 281.8380477442345, + }, + }, + { + id: '2876', + data: { + label: 'Sky Movies Gold (UK)', + x: 478.287679634365, + y: 2565.7402471039973, + z: 31.414853929914944, + }, + }, + { + id: '2877', + data: { + label: 'Sky Sports 2 (UK)', + x: 525.1082286836229, + y: 2676.5530094580145, + z: 266.8847205533497, + }, + }, + { + id: '2878', + data: { + label: 'Sky Sports 3 (UK)', + x: 493.13890034298, + y: 2424.6363690304042, + z: 502.1669579563514, + }, + }, + { + id: '2879', + data: { + label: 'TM3 (UK)', + x: 2000.3629219804789, + y: 1747.6179685936813, + z: 155.97627603105963, + }, + }, + { + id: '2880', + data: { + label: 'FOXTEL (Australia)', + x: 2001.8885137003847, + y: 1954.7850127958236, + z: 85.95077420444737, + }, + }, + { + id: '2881', + data: { + label: 'Arena (Australia)', + x: 1593.3610825185544, + y: 1144.5463186877096, + z: -464.2871935083399, + }, + }, + { + id: '2882', + data: { + label: 'Channel V (Australia)', + x: 2016.141868805076, + y: 1942.0657213087218, + z: -493.8585624806058, + }, + }, + { + id: '2883', + data: { + label: 'FOX (Australia)', + x: 2038.2963177117103, + y: 2148.717804858647, + z: -73.08435682174562, + }, + }, + { + id: '2884', + data: { + label: 'FOX History (Australia)', + x: 1846.7050600983098, + y: 2296.1224936627304, + z: -136.24304433230455, + }, + }, + { + id: '2885', + data: { + label: 'FOX Soap (Australia)', + x: 2179.1435904543673, + y: 2015.6218028639435, + z: -643.3654267563351, + }, + }, + { + id: '2886', + data: { + label: 'FOX Talk (Australia)', + x: 2224.732886360764, + y: 1646.2670678167542, + z: -154.64264090943115, + }, + }, + { + id: '2887', + data: { + label: 'FOX Travel (Australia)', + x: 2015.8214175187543, + y: 2156.1648409792574, + z: -660.9420274199714, + }, + }, + { + id: '2888', + data: { + label: 'FOXTEL Weather (Australia)', + x: 2067.847285414076, + y: 1495.6300792463726, + z: 12.24429617823034, + }, + }, + { + id: '2889', + data: { + label: 'FX (Australia)', + x: 2037.2182411684714, + y: 1722.88506628708, + z: -625.1580857664111, + }, + }, + { + id: '2890', + data: { + label: 'Nickelodeon (Australia)', + x: 1887.5062477799574, + y: 2167.0525904370725, + z: -784.542321909907, + }, + }, + { + id: '2891', + data: { + label: 'Sky News Australia (Australia)', + x: 1445.6407444778179, + y: 1885.206718010342, + z: -820.365710763046, + }, + }, + { + id: '2892', + data: { + label: 'UK TV (Australia)', + x: 2129.7299923463497, + y: 1709.9441815886146, + z: -2.4015677346844027, + }, + }, + { + id: '2893', + data: { + label: 'Fox Sports (Australia)', + x: 1001.3374547348077, + y: 1754.6738563919705, + z: -689.7350237789118, + }, + }, + { + id: '2894', + data: { + label: 'The Comedy Channel (Australia)', + x: 1396.778492564051, + y: 2148.9836183344614, + z: 17.25969482717097, + }, + }, + { + id: '2895', + data: { + label: 'Star TV (Asia)', + x: 2265.8181751555144, + y: 1674.969713789111, + z: -604.4134883438813, + }, + }, + { + id: '2896', + data: { + label: 'STAR Chinese (Asia)', + x: 1579.0456887816988, + y: 1579.0397135101055, + z: -1020.4706045412479, + }, + }, + { + id: '2897', + data: { + label: 'STAR Plus (Asia)', + x: 1665.7487374471896, + y: 1355.005748821504, + z: -950.1362393342802, + }, + }, + { + id: '2898', + data: { + label: 'STAR Movies (Asia)', + x: 1492.7459305305201, + y: 1857.6262258772404, + z: -1014.8130879344178, + }, + }, + { + id: '2899', + data: { + label: 'STAR Plus Japan (Asia)', + x: 1812.5037496710452, + y: 1158.1371603019102, + z: -380.15087676328534, + }, + }, + { + id: '2900', + data: { + label: 'STAR Movies South (Asia)', + x: 1906.698859854443, + y: 1897.0840618094842, + z: -940.8999733299837, + }, + }, + { + id: '2901', + data: { + label: 'ESPN STAR Sports (Asia)', + x: 1828.9574156989697, + y: 2061.900831374178, + z: 156.77594499195732, + }, + }, + { + id: '2902', + data: { + label: 'STAR Sports (Asia)', + x: 1968.1282915810957, + y: 1273.1378421573731, + z: -252.18631236484762, + }, + }, + { + id: '2903', + data: { + label: 'Channel V - Asia', + x: 2157.5953699499682, + y: 1456.6538819227037, + z: -597.0850065364393, + }, + }, + { + id: '2904', + data: { + label: 'Viva Cinema (Asia)', + x: 1531.997626364075, + y: 2196.3972331374066, + z: -867.074029939309, + }, + }, + { + id: '2905', + data: { + label: 'Phoenix Satellite TV (Asia)', + x: 1852.5467731397484, + y: 1253.5899369028034, + z: -760.120339726734, + }, + }, + { + id: '2906', + data: { + label: 'Phoenix Chinese (Asia)', + x: 2194.787303300618, + y: 1807.170822033872, + z: -735.1606610239038, + }, + }, + { + id: '2907', + data: { + label: 'CTV Sportsnet (Canada)', + x: 1999.5307198352493, + y: 2258.589649571208, + z: -252.4146434362266, + }, + }, + { + id: '2908', + data: { + label: 'ISKYB (India)', + x: 1700.4593051620554, + y: 1862.223509431606, + z: -984.520263005749, + }, + }, + { + id: '2909', + data: { + label: 'Asia Today Ltd.(India)', + x: 1706.4549783663235, + y: 1718.0297235059977, + z: -798.1579546027992, + }, + }, + { + id: '2910', + data: { + label: 'ZEE TV (India)', + x: 1788.229843865951, + y: 2075.091802196274, + z: -572.3029836894307, + }, + }, + { + id: '2911', + data: { + label: 'EL TV (India)', + x: 1915.8028920348706, + y: 1541.6995973195217, + z: 142.21136418267002, + }, + }, + { + id: '2912', + data: { + label: 'ZEE Cinema (India)', + x: 1368.243848607984, + y: 1891.2515365680476, + z: 24.292581262019326, + }, + }, + { + id: '2913', + data: { + label: 'Siti Cable Network Pvt (India)', + x: 2265.522330909445, + y: 1915.8439985360528, + z: -406.82567345809235, + }, + }, + { + id: '2914', + data: { + label: 'Indiovision (Indonesia)', + x: 1360.3943805857828, + y: 1174.5317717445064, + z: -313.91630957869813, + }, + }, + { + id: '2915', + data: { + label: 'Film Indonesia (Indonesia)', + x: 1302.5680299237576, + y: 1539.5666914447886, + z: -952.4865777802414, + }, + }, + { + id: '2916', + data: { + label: '', + x: 949.0967632433562, + y: -4854.829166093978, + z: -2865.252806310599, + }, + }, + { + id: '2917', + data: { + label: 'News Broadcasting Japan (Indonesia)', + x: 1968.977452445576, + y: 1237.719863413159, + z: -572.0404829624189, + }, + }, + { + id: '2918', + data: { + label: 'SkyPerfect TV (Indonesia)', + x: 1724.83018663275, + y: 2349.427593851897, + z: -588.832709601652, + }, + }, + { + id: '2919', + data: { + label: 'Canal Fox (Latin America)', + x: 1597.8170361908305, + y: 1423.0086271325385, + z: -742.6910009747324, + }, + }, + { + id: '2920', + data: { + label: 'Fox Sports Americas (Latin America)', + x: 2138.526565368705, + y: 1941.363348337931, + z: -243.00766529756837, + }, + }, + { + id: '2921', + data: { + label: 'Fox Kids(Latin America)', + x: 1449.3440192509734, + y: 1666.4135474060413, + z: -920.4623331638967, + }, + }, + { + id: '2922', + data: { + label: 'Telecine (Latin America)', + x: 1903.250735321362, + y: 2109.3571460384255, + z: -404.6115514146543, + }, + }, + { + id: '2923', + data: { + label: 'CineCanal (Latin America)', + x: 1921.9783629354447, + y: 1350.2551091009252, + z: -50.36336654393619, + }, + }, + { + id: '2924', + data: { + label: 'Sky Latin America DTH Platform (Latin America)', + x: -140.67126022823334, + y: 5776.085012212899, + z: -800.8895448778396, + }, + }, + { + id: '2925', + data: { + label: 'Innova (Latin America)', + x: 2122.7552333998815, + y: 1437.7137861998, + z: -182.38874895769715, + }, + }, + { + id: '2926', + data: { + label: 'NetSat (Latin America)', + x: 1678.2944963325674, + y: 1958.045380373497, + z: -794.9519305380978, + }, + }, + { + id: '2927', + data: { + label: 'balance of Latin America (Latin America)', + x: 2227.7177781918213, + y: 1469.4426809027038, + z: -402.91140511113616, + }, + }, + { + id: '2928', + data: { + label: 'TVSM (US)', + x: 1561.3332040613243, + y: 1252.4355507971202, + z: 15.456496983447998, + }, + }, + { + id: '2929', + data: { + label: 'TV Total (US)', + x: 1229.0539222905343, + y: 1462.862379933799, + z: 29.766013193547764, + }, + }, + { + id: '2930', + data: { + label: 'Cable Guide (US)', + x: 1720.3237784473122, + y: 2154.9929588509376, + z: -222.65737077653827, + }, + }, + { + id: '2931', + data: { + label: 'The Weekly Standard (US)', + x: 1194.7486988162598, + y: 1640.28381176134, + z: 58.08559259215865, + }, + }, + { + id: '2932', + data: { + label: 'Maximum Golf (US)', + x: 1486.4200342096635, + y: 2122.6572426492407, + z: -528.4885639138408, + }, + }, + { + id: '2933', + data: { + label: 'News America Marketing (US)', + x: 1781.5503951238122, + y: 2241.776059089383, + z: -1082.329291803182, + }, + }, + { + id: '2934', + data: { + label: 'In Store (US)', + x: 1842.9851348470486, + y: 2446.177793630722, + z: -1566.1462109552083, + }, + }, + { + id: '2935', + data: { + label: 'FSI (US)', + x: 1892.6781236336565, + y: 2622.526925319392, + z: -1422.8663415730211, + }, + }, + { + id: '2936', + data: { + label: 'News Canada FSI (Canada)', + x: 1130.8980607835722, + y: 2417.823616393102, + z: -402.03086227161276, + }, + }, + { + id: '2937', + data: { + label: 'In Store (Canada)', + x: 866.2733020374558, + y: 2883.2727577899245, + z: -359.3565813878205, + }, + }, + { + id: '2938', + data: { + label: 'FSI (Canada)', + x: 795.3041728153033, + y: 2768.1897697513214, + z: -547.8513408898626, + }, + }, + { + id: '2939', + data: { + label: 'The Times Educational Supplement (Canada)', + x: 1441.217796767276, + y: 1336.859904274948, + z: -897.5995485723355, + }, + }, + { + id: '2940', + data: { + label: 'The Times Literary Supplement (Canada)', + x: 1460.9486070954185, + y: 1181.1794459236037, + z: -596.8609746139657, + }, + }, + { + id: '2941', + data: { + label: 'Nursery World (Canada)', + x: 1624.9871300708724, + y: 1195.319561393309, + z: -763.5169370789113, + }, + }, + { + id: '2942', + data: { + label: 'Pacific Islands Monthly (Australia-Asia)', + x: 989.9107183219514, + y: 1783.3195123727107, + z: -171.37739048213274, + }, + }, + { + id: '2943', + data: { + label: '', + x: -4161.647787278412, + y: -834.9799125608074, + z: 119.2026778936852, + }, + }, + { + id: '2944', + data: { + label: 'Twentieth Century Fox (US)', + x: 1376.6308256332975, + y: 1637.4576081588145, + z: 199.69421961326267, + }, + }, + { + id: '2945', + data: { + label: 'Fox Filmed Entertainment (US)', + x: 1213.7807439994256, + y: 2040.9507719832277, + z: -815.8327728371172, + }, + }, + { + id: '2946', + data: { + label: 'Fox 2000 (US)', + x: 1913.4761818203467, + y: 1933.207385005241, + z: -730.5213065457385, + }, + }, + { + id: '2947', + data: { + label: 'Fox Searchlight (US)', + x: 1156.6572358042406, + y: 1264.0687714840599, + z: -329.6485331703364, + }, + }, + { + id: '2948', + data: { + label: 'Fox Family Films (US)', + x: 2108.2513817848057, + y: 1736.4213857157536, + z: -347.28864501777355, + }, + }, + { + id: '2949', + data: { + label: 'Fox Animation Studios (US)', + x: 1399.984934298011, + y: 2120.77480546581, + z: -202.02947318395633, + }, + }, + { + id: '2950', + data: { + label: 'Twentieth Century Fox Home (US)', + x: 1328.3535048954775, + y: 1271.3481965289627, + z: -734.0552286804401, + }, + }, + { + id: '2951', + data: { + label: 'Twentieth Century Fox T.V. (US)', + x: 1128.8941027291141, + y: 1646.549446541826, + z: -849.1693344190186, + }, + }, + { + id: '2952', + data: { + label: 'Fox Studios Australia', + x: 1762.126215182596, + y: 1215.0072275431326, + z: -143.70512510019108, + }, + }, + { + id: '2953', + data: { + label: 'New York Post (US)', + x: 1897.6604452119332, + y: 1530.7296894391243, + z: -736.3168150885539, + }, + }, + { + id: '2954', + data: { + label: 'The Times (UK)', + x: 1737.0820858300679, + y: 1820.8320530708809, + z: 106.93523434322834, + }, + }, + { + id: '2955', + data: { + label: 'The Sunday Times (UK)', + x: 1963.8390878888488, + y: 1950.6512401507389, + z: -105.07933297670006, + }, + }, + { + id: '2956', + data: { + label: 'The Sun (UK)', + x: 1607.4952917969265, + y: 2010.898254183167, + z: 60.595818472895004, + }, + }, + { + id: '2957', + data: { + label: 'News of the World (UK)', + x: 1121.4650924603702, + y: 1450.3759448501844, + z: -195.42597440549542, + }, + }, + { + id: '2958', + data: { + label: 'The Times Supplements (UK)', + x: 1996.0887676036189, + y: 1560.2665933301, + z: -946.1112555589095, + }, + }, + { + id: '2959', + data: { + label: 'The Australian (Australia)', + x: 1249.007462638468, + y: 1448.418009328161, + z: -797.0332569127254, + }, + }, + { + id: '2960', + data: { + label: 'The Weekend Australian (Australia)', + x: 990.6561163606411, + y: 1892.1364245422374, + z: -533.8210869828833, + }, + }, + { + id: ' Australia)', + data: { + label: 'The Daily Telegraph (New South Wales', + x: 7130.199825286817, + y: -1725.199904630534, + z: 1444.6216852642658, + }, + }, + { + id: 'Australia)', + data: { + label: 'The Sunday Mail (Queensland', + x: 1092.2029033471135, + y: 6282.1106533337625, + z: 383.9383313869326, + }, + }, + { + id: '2985', + data: { + label: 'The Advertiser (South Australia)', + x: 1215.512996694725, + y: 1267.1437241990063, + z: -135.22613462228807, + }, + }, + { + id: '2986', + data: { + label: 'Sunday Mail (South Australia)', + x: 1036.5822475533205, + y: 1612.9218971301848, + z: -71.85447947951131, + }, + }, + { + id: '2987', + data: { + label: 'Messenger Press Group (South Australia)', + x: 1561.6077612018719, + y: 1144.9570918101879, + z: -264.66119350319764, + }, + }, + { + id: '2988', + data: { + label: 'Sunday Times (Western Australia)', + x: 1258.2939450246768, + y: 2053.7933226793, + z: -25.068546178947532, + }, + }, + { + id: '2989', + data: { + label: 'Independent Newspaper Limited (New Zealand)', + x: 1769.007917874655, + y: 2171.543432753653, + z: 11.177734281795114, + }, + }, + { + id: '2990', + data: { + label: 'The Fiji Times (Fiji)', + x: 1611.1814058467678, + y: 1913.7020769073229, + z: 284.427008362797, + }, + }, + { + id: '2991', + data: { + label: 'Nai Lalakei (Fijian language) (Fiji)', + x: 1024.575485446996, + y: 1436.8236974698589, + z: -406.9233583475607, + }, + }, + { + id: '2992', + data: { + label: 'Shanti Dut (Hindi language) (Fiji)', + x: 1329.7917985505464, + y: 1694.7218015724372, + z: -753.5430044700696, + }, + }, + { + id: '2993', + data: { + label: 'Post Courier (Papua New Guinea)', + x: 1464.848848873777, + y: 2283.9962279146425, + z: -92.0995916922667, + }, + }, + { + id: '2994', + data: { + label: 'Los Angeles Dodgers', + x: 1256.4306598221694, + y: 1972.6989247807373, + z: -287.209756311326, + }, + }, + { + id: '2995', + data: { + label: '', + x: -327.78499865127276, + y: 4142.775533958887, + z: 3062.7416457964523, + }, + }, + { + id: '2996', + data: { + label: '', + x: -2440.160263074694, + y: 3465.084753427576, + z: -2239.9675028287757, + }, + }, + { + id: '2997', + data: { + label: 'Los Angeles Kings (NHL)', + x: 1641.9017770824278, + y: 1521.397907795772, + z: 177.55069575672735, + }, + }, + { + id: '2998', + data: { + label: 'Los Angeles Lakers (NBA)', + x: 1295.0941780761063, + y: 1241.8532445802673, + z: -486.4870351063103, + }, + }, + { + id: '2999', + data: { + label: 'Staples Center', + x: 7000.654050505377, + y: 1900.7229229778786, + z: -2309.0387413411027, + }, + }, + { + id: '3000', + data: { + label: 'News America New Media', + x: 1292.9013148437905, + y: 1937.3310990683121, + z: -579.0976940828203, + }, + }, + { + id: '3001', + data: { + label: 'Fox Sports Radio Network', + x: 1503.897150304036, + y: 2364.5863609604944, + z: -542.0586605475909, + }, + }, + { + id: '3002', + data: { + label: 'Broadsystem Ltd. (Europe)', + x: 987.5384052089338, + y: 1923.1141130160397, + z: -368.0745977966677, + }, + }, + { + id: '3003', + data: { + label: 'Convoys Group (Europe)', + x: 1200.171635331836, + y: 1887.6640553941381, + z: 155.87765424797587, + }, + }, + { + id: '3004', + data: { + label: 'PLD Telekon (Europe)', + x: 1410.7011819649936, + y: 1245.2202939870633, + z: -116.19044386448596, + }, + }, + { + id: '3005', + data: { + label: 'Sky Radio (Europe)', + x: 1362.7000414435504, + y: 2189.7235617774636, + z: -763.1133315166963, + }, + }, + { + id: '3006', + data: { + label: 'Sky Radio Sweden (Europe)', + x: 1710.1838161473167, + y: 2339.943378489176, + z: -358.31721978412526, + }, + }, + { + id: '3007', + data: { + label: 'TALKCO (Europe)', + x: 1489.9180223188412, + y: 1779.2626989234486, + z: 254.43279411555892, + }, + }, + { + id: '3008', + data: { + label: 'Radio 538 (Europe)', + x: 1627.001366839642, + y: 2176.1267836356965, + z: -668.4107410471313, + }, + }, + { + id: '3009', + data: { + label: 'Ansett Australia (Australia - Asia)', + x: 1070.0553685161117, + y: 1461.6510408887825, + z: -696.823943570039, + }, + }, + { + id: '3010', + data: { + label: 'Ansett New Zealand (Australia - Asia)', + x: 1133.9635973144539, + y: 2109.4613200421763, + z: -534.1803105154253, + }, + }, + { + id: '3011', + data: { + label: 'Ansett Worldwide Aviation Services (Australia - Asia)', + x: 1106.624401300999, + y: 1845.4948978445896, + z: -19.99532054687979, + }, + }, + { + id: '3012', + data: { + label: 'Australian International (Australia - Asia)', + x: 1159.1146284682886, + y: 2156.7226829073966, + z: -360.6193806265132, + }, + }, + { + id: '3013', + data: { + label: 'Broadsystem Australia (Australia - Asia)', + x: 972.2626078750676, + y: 1588.755514804914, + z: -281.2960149136597, + }, + }, + { + id: '3014', + data: { + label: 'Festival Records (Australia - Asia)', + x: 1150.2723238098047, + y: 1733.0336841880219, + z: -361.544914818928, + }, + }, + { + id: '3015', + data: { + label: 'F.S. Falkiner & Sons (Australia - Asia)', + x: 1040.2731947315503, + y: 1998.387195046934, + z: -177.60483030983784, + }, + }, + { + id: '3016', + data: { + label: 'Mushroom Records (Australia - Asia)', + x: 1209.6621522283099, + y: 1839.2991963282686, + z: -912.0139756120295, + }, + }, + { + id: '3017', + data: { + label: 'National Rugby League Championship Company (Australia - Asia)', + x: 1418.9285794433872, + y: 2043.2893506199605, + z: -899.8344252545023, + }, + }, + { + id: '3018', + data: { + label: 'Newspoll (Australia - Asia)', + x: 1416.4170889692855, + y: 1439.2284899755532, + z: 151.83559890976576, + }, + }, + { + id: '3019', + data: { + label: 'Kesmai Corporation (United States)', + x: 1295.053325102939, + y: 2247.618518419005, + z: -630.6215357543864, + }, + }, + { + id: '3020', + data: { + label: 'NDS Americas (United States)', + x: 1583.4584024828982, + y: 2346.4689955134686, + z: 80.86294021643302, + }, + }, + { + id: '3021', + data: { + label: 'News Advanced Technologies (United States)', + x: 1206.0626794525663, + y: 2193.1203726697613, + z: -145.01338057238252, + }, + }, + { + id: '3022', + data: { + label: 'News America Digital Publishing (United States)', + x: 1175.0333742612672, + y: 1617.0920691330944, + z: -578.4218172346127, + }, + }, + { + id: '3023', + data: { + label: 'News Internet Services (United States)', + x: 1162.5766438790206, + y: 1329.7355616054765, + z: -588.5735584909709, + }, + }, + { + id: '3024', + data: { + label: 'Healtheon/WebMD Corp (United States)', + x: 1899.3354705680508, + y: 1968.5931632422194, + z: -1166.9203589080437, + }, + }, + { + id: '3025', + data: { + label: 'Rivals.com (United States)', + x: 1755.5663179170897, + y: 1709.0006173480758, + z: 288.8758723033989, + }, + }, + { + id: '3026', + data: { + label: 'News Digital Systems Ltd. (United Kingdom)', + x: 951.4430449587111, + y: 1622.5216014959126, + z: -508.83160965161096, + }, + }, + { + id: '3027', + data: { + label: 'Line One (United Kingdom)', + x: 1093.695158558543, + y: 1946.1994379503997, + z: -705.1203336469355, + }, + }, + { + id: '3028', + data: { + label: 'Sportal (United Kingdom)', + x: 1416.4156286439438, + y: 2035.999411167127, + z: 181.10421361814986, + }, + }, + { + id: '3029', + data: { + label: 'News Interactive (Australia - Asia)', + x: 1361.5408841736407, + y: 2306.1456195548376, + z: -399.54770614807427, + }, + }, + { + id: '3030', + data: { + label: 'PDN Xinren Information Technology Co. Ltd. (Australia - Asia)', + x: 1530.797803881288, + y: 2353.679998459286, + z: -250.29084276656107, + }, + }, + { + id: '3031', + data: { + label: 'The Boston Globe', + x: 5238.037633678955, + y: 905.1638545462724, + z: -2312.0927003343704, + }, + }, + { + id: ' LA)', + data: { + label: 'The Courier (Houma', + x: 3199.4007324241275, + y: 5641.696886639737, + z: 2441.5962762384147, + }, + }, + { + id: '3037', + data: { + label: 'The Gadsden Times (AL)', + x: 5321.778518310258, + y: 1022.7174760512784, + z: -2124.9661510586025, + }, + }, + { + id: '3038', + data: { + label: 'The Gainesville Sun (FL)', + x: 5242.630536095062, + y: 629.1342402965728, + z: -2057.201733397167, + }, + }, + { + id: '3039', + data: { + label: 'International Herald Tribune (Paris)', + x: 4524.685481056724, + y: 420.8216075189538, + z: -1588.8949597558258, + }, + }, + { + id: '3040', + data: { + label: 'Lake City Reporter (FL)', + x: 4799.4352377394625, + y: 1281.6206554974156, + z: -2276.1124550997233, + }, + }, + { + id: '3042', + data: { + label: 'Marco Island Eagle (FL)', + x: 5347.87497638989, + y: 839.0500217335658, + z: -1951.0680309411953, + }, + }, + { + id: '3045', + data: { + label: 'The New York Times', + x: 4102.0979764929425, + y: 1153.232570979704, + z: -1138.930766694504, + }, + }, + { + id: '3047', + data: { + label: 'Sarasota Herald-Tribune (FL)', + x: 4593.372084601083, + y: 956.9680527809849, + z: -2341.056810337746, + }, + }, + { + id: '3048', + data: { + label: 'Spartanburg Herald-Journal (SC)', + x: 4484.207135396781, + y: 1018.4748888984384, + z: -2160.5457142435716, + }, + }, + { + id: '3052', + data: { + label: 'The Tuscaloosa News (AL)', + x: 4742.67229095813, + y: 1351.1781912534846, + z: -2059.8647930049483, + }, + }, + { + id: '3053', + data: { + label: 'Wilmington Morning Star (NC)', + x: 5029.651836379899, + y: 1313.3071712948222, + z: -1872.5499912723, + }, + }, + { + id: '3054', + data: { + label: 'The Worcester Telegram & Gazette', + x: 4796.721327762896, + y: 620.2143527155918, + z: -2341.210540438083, + }, + }, + { + id: '3055', + data: { + label: 'The New York Times Electronic Media', + x: 4485.719359542452, + y: 1126.267470116622, + z: -2029.7661616222192, + }, + }, + { + id: '3056', + data: { + label: 'The New York Times Business Information Services', + x: 4753.505852407208, + y: 1121.7214663437314, + z: -2483.4842810454315, + }, + }, + { + id: '3057', + data: { + label: 'The New York Times Index', + x: 4711.646295362705, + y: 1205.0479926529813, + z: -2945.911510436755, + }, + }, + { + id: '3058', + data: { + label: 'The New York Times News Service', + x: 5271.672609124011, + y: 1257.5710095117204, + z: -2083.9541073792757, + }, + }, + { + id: '3059', + data: { + label: 'TimesFax', + x: 5526.044737719876, + y: 1579.6594701025724, + z: -2259.908135082593, + }, + }, + { + id: '3060', + data: { + label: 'Golf Digest', + x: 5089.175022790027, + y: 1192.2419039544504, + z: -2330.589007792622, + }, + }, + { + id: '3061', + data: { + label: 'Golf Shop Operations', + x: 5006.565478169916, + y: 510.77659322866543, + z: -2159.6635828332073, + }, + }, + { + id: '3062', + data: { + label: 'Golf World', + x: 5252.092507250916, + y: 976.0255919131866, + z: -1725.0083204667922, + }, + }, + { + id: '3063', + data: { + label: 'KFOR TV (Oklahoma City)', + x: 5027.858256776884, + y: 1338.431753393166, + z: -2163.0827088508086, + }, + }, + { + id: ' AR)', + data: { + label: 'KFSM TV (Fort Smith', + x: 1341.4231730466468, + y: -3902.6734538534906, + z: 4317.797042533456, + }, + }, + { + id: ' IA)', + data: { + label: 'WHO TV (Des Moines', + x: -334.26654791910045, + y: 4074.483264622201, + z: -3997.6362097122546, + }, + }, + { + id: ' IL)', + data: { + label: 'WQAD TV (Moline', + x: 5612.649174243263, + y: -4261.434764990127, + z: 854.8978084294047, + }, + }, + { + id: '3069', + data: { + label: 'WREG TV (Memphis)', + x: 5009.409742345893, + y: 1010.073903432266, + z: -2436.062301072099, + }, + }, + { + id: ' VA)', + data: { + label: 'WTKR TV (Norfolk', + x: -322.628206722742, + y: 5577.84175997082, + z: -1878.8600034085534, + }, + }, + { + id: '3071', + data: { + label: 'Ovation', + x: -1149.0042500210695, + y: 3811.4481153594993, + z: 3746.9767537401444, + }, + }, + { + id: '3072', + data: { + label: 'WQEW - AM (New York City)', + x: 5088.917436228501, + y: 690.9015678359884, + z: -2340.9304892364235, + }, + }, + { + id: '3073', + data: { + label: 'WQXR - FM (New York City)', + x: 4591.4145520491065, + y: 1145.4755471843127, + z: -2232.1794217629595, + }, + }, + { + id: '3074', + data: { + label: 'Donohue Malbaie Inc. (Canada)', + x: 4861.820786327288, + y: 850.7650291676142, + z: -2454.6367245219344, + }, + }, + { + id: '3075', + data: { + label: 'Madison Paper Industries (Maine)', + x: 4580.337610719418, + y: 709.6267013091159, + z: -2242.6574977640103, + }, + }, + { + id: '8194', + data: { + label: 'BT-Sports.com', + x: 174.54487762759078, + y: 2971.538864508709, + z: -3603.259965063369, + }, + }, + { + id: '8242', + data: { + label: 'Cablevision of Boston', + x: 2568.0418337236947, + y: 1116.949092966403, + z: 2456.97322475352, + }, + }, + { + id: '8241', + data: { + label: 'SportsChannel Associates', + x: 2166.681627957612, + y: 1347.3092397580692, + z: 2577.78847638469, + }, + }, + { + id: '8192', + data: { + label: 'VersaTel Telecom International N.V.', + x: 46.285249907988636, + y: 2206.9816986884493, + z: 5297.6735812489405, + }, + }, + { + id: '3121', + data: { + label: 'Reed Exhibition (trade shows)', + x: 1596.7094238403492, + y: 1877.4519391069775, + z: -2483.8289224182295, + }, + }, + { + id: '3122', + data: { + label: 'Reed Travel Group (travel service)', + x: 1921.872358552668, + y: 1991.045073211423, + z: -2547.178232345121, + }, + }, + { + id: '8191', + data: { + label: 'Sacramento Valley Ltd. Partnership', + x: 7426.869914219731, + y: -1450.7865128965534, + z: -1330.6521876355705, + }, + }, + { + id: '3127', + data: { + label: 'Absolut', + x: 6141.124476175368, + y: -1327.065085281704, + z: 3917.725113236445, + }, + }, + { + id: '3128', + data: { + label: 'Captain Morgan', + x: 107.1878004490434, + y: -3072.898991844217, + z: -3804.085936348548, + }, + }, + { + id: '3129', + data: { + label: 'Chivas Regal', + x: -265.5708840192778, + y: 4820.478635939353, + z: 3356.373685617386, + }, + }, + { + id: '3130', + data: { + label: 'Crown Royal', + x: 4886.875785455751, + y: -1788.259023491089, + z: 4365.1657497589595, + }, + }, + { + id: '3131', + data: { + label: 'Four Roses', + x: 2903.1360367262614, + y: 4579.387399033372, + z: -4037.292654413484, + }, + }, + { + id: '3132', + data: { + label: 'Glenlivet', + x: -1565.2011479751193, + y: 2094.838641122466, + z: -3774.654783782047, + }, + }, + { + id: '3133', + data: { + label: 'Tropicana Beverage Group', + x: 3662.092710134894, + y: 5038.057725828425, + z: -3161.0459253313356, + }, + }, + { + id: '3134', + data: { + label: 'Dole Juices', + x: 3747.753029506197, + y: -4439.0379648401395, + z: -2631.677603023995, + }, + }, + { + id: '3135', + data: { + label: 'Tropicana', + x: 4899.8663384251695, + y: 3216.28383714523, + z: -4155.756198776245, + }, + }, + { + id: '3136', + data: { + label: 'Universal Studios', + x: 3986.4999168440663, + y: 2538.174221224729, + z: -133.66615840554957, + }, + }, + { + id: '3137', + data: { + label: 'Universal Pictures', + x: 3592.405164089582, + y: 2874.4397878427817, + z: 99.38477375876981, + }, + }, + { + id: '3138', + data: { + label: 'Universal Studios Home Video', + x: 3912.709414101164, + y: 2269.6858022290535, + z: 469.4953446029492, + }, + }, + { + id: '3139', + data: { + label: 'United International Pictures (UPI)', + x: 3719.1204655276374, + y: 2209.97228031281, + z: 619.225707362676, + }, + }, + { + id: '3140', + data: { + label: 'Cinema International BV', + x: 3468.6444487375106, + y: 2483.2971988492945, + z: -236.53523304993166, + }, + }, + { + id: '3141', + data: { + label: 'Universal Television Group', + x: 3784.0086107244388, + y: 2099.915612122499, + z: -6.608671800886199, + }, + }, + { + id: '3142', + data: { + label: 'Brillstein-Grey Entertainment', + x: 3587.3530973603483, + y: 2731.2868093265615, + z: -127.03779178453723, + }, + }, + { + id: '3143', + data: { + label: 'Multimedia Entertainment', + x: 3429.703799836788, + y: 2266.1470823066657, + z: 691.5157219145847, + }, + }, + { + id: '3144', + data: { + label: '', + x: -2852.4496325792907, + y: 151.1332128650597, + z: -2958.8818848590627, + }, + }, + { + id: '3145', + data: { + label: 'Universal Pay Television', + x: 3272.389525635756, + y: 2796.708889023638, + z: 122.881028458791, + }, + }, + { + id: '3146', + data: { + label: 'Seagram - Interactive', + x: 3610.684355781502, + y: 2703.390672437153, + z: 601.5973364532329, + }, + }, + { + id: '3147', + data: { + label: 'Universal Studios New Media Group', + x: 3752.465204058469, + y: 2482.1981825242815, + z: 650.8434150771892, + }, + }, + { + id: '3148', + data: { + label: 'Universal Studios Online', + x: 3327.1343237863075, + y: 2639.6289316064344, + z: 630.5258962706615, + }, + }, + { + id: '3149', + data: { + label: 'Universal.com', + x: 3090.196798156235, + y: 2581.274154845426, + z: 152.5970189094266, + }, + }, + { + id: '3150', + data: { + label: 'Universal Interactive Studios', + x: 3989.0029308913827, + y: 2480.0814642663986, + z: 327.48145450848085, + }, + }, + { + id: '3151', + data: { + label: 'Universal Digital Arts', + x: 3885.4942606956583, + y: 2554.6101673710277, + z: 520.8721951552183, + }, + }, + { + id: '3152', + data: { + label: 'Interplay', + x: 4536.028606710649, + y: 1789.5451952779272, + z: -4878.352116377928, + }, + }, + { + id: '3153', + data: { + label: 'GetMusic', + x: 3706.2825219963825, + y: 2504.0841903042224, + z: -149.70789055067473, + }, + }, + { + id: '3154', + data: { + label: 'Universal Music Group', + x: 3529.07458302711, + y: 3213.692960035809, + z: -936.4677925784598, + }, + }, + { + id: '3155', + data: { + label: 'MCA Records', + x: 3653.3561747848703, + y: 3121.0277841423817, + z: -1398.2380140292637, + }, + }, + { + id: '3156', + data: { + label: 'MCA Records Nashville', + x: 3324.599510109491, + y: 3598.9963212878624, + z: -763.4082899858906, + }, + }, + { + id: '3157', + data: { + label: 'Decca Records', + x: 3396.837510599496, + y: 3453.319510603898, + z: -1347.5192890551152, + }, + }, + { + id: '3158', + data: { + label: 'GRP Recording', + x: 3656.853647013415, + y: 3690.7373321759105, + z: -820.5471385639552, + }, + }, + { + id: '3159', + data: { + label: 'Geffen/DGC Records', + x: 3442.4473997964806, + y: 3646.79292334708, + z: -1211.7654073721471, + }, + }, + { + id: '3160', + data: { + label: 'Universal Records', + x: 3197.1819724508077, + y: 3222.2715425846663, + z: -1229.6709425943543, + }, + }, + { + id: '3161', + data: { + label: 'Rising Tide', + x: 3838.2745565959217, + y: 3277.91837049447, + z: -1317.4026812428388, + }, + }, + { + id: '3162', + data: { + label: 'Interscope Records', + x: 3211.5760244097196, + y: 3530.6507485543934, + z: -1082.387614929566, + }, + }, + { + id: '3163', + data: { + label: 'Hip-O Records', + x: 3437.4398387458195, + y: 3203.1322209859427, + z: -1426.73024986642, + }, + }, + { + id: '3164', + data: { + label: 'Universal Music and Video Distribution', + x: 3405.538364027038, + y: 2980.0884345987247, + z: -1319.3161492657566, + }, + }, + { + id: '3165', + data: { + label: 'Universal Music International', + x: 3845.789663298378, + y: 3490.2090828493256, + z: -702.387346661944, + }, + }, + { + id: '3166', + data: { + label: 'MCA Music Publishing', + x: 3960.781451361102, + y: 3441.652941240917, + z: -949.7662675459941, + }, + }, + { + id: '3167', + data: { + label: 'Interscope Music Publishing', + x: 3433.247812340473, + y: 3716.1282468086506, + z: -967.1192873623227, + }, + }, + { + id: '3168', + data: { + label: 'All Nations Catalog', + x: 3702.7105587125056, + y: 3518.4949522140582, + z: -1323.5523198438684, + }, + }, + { + id: '3169', + data: { + label: 'Universal Concerts', + x: 3908.509771810006, + y: 3451.245709978304, + z: -1200.5685846449978, + }, + }, + { + id: '3170', + data: { + label: 'Universal Studios Hollywood', + x: 3660.9699191181103, + y: 3684.3131524337573, + z: -1177.0993219883694, + }, + }, + { + id: '3171', + data: { + label: "Universal's Islands of Adventure (Orlando)", + x: 3369.54236608451, + y: 2217.4550951670008, + z: -189.41355714518, + }, + }, + { + id: '3172', + data: { + label: 'Universal Studios Japan', + x: 3536.4450938965683, + y: 2829.2311036302467, + z: 457.6208769452918, + }, + }, + { + id: '3173', + data: { + label: 'Spencer Gifts', + x: 4706.213722019064, + y: -2219.6069025225875, + z: 3669.8574548634606, + }, + }, + { + id: '3174', + data: { + label: 'A&M', + x: -2217.7719988060894, + y: 1276.6055837743218, + z: 4181.620092579338, + }, + }, + { + id: '3175', + data: { + label: 'Decca', + x: -1062.2493898135954, + y: -3959.3574562028957, + z: 2838.0877555930647, + }, + }, + { + id: '3176', + data: { + label: 'Def Jam', + x: -2023.957955566063, + y: -3313.785408814073, + z: 2606.3667102309405, + }, + }, + { + id: '3177', + data: { + label: 'Deutsche Grammophon', + x: 6019.687166068198, + y: 923.9212269428522, + z: -4066.7839602921313, + }, + }, + { + id: '3178', + data: { + label: 'Island', + x: -2346.752874894006, + y: 2053.3355906132288, + z: 3407.356686898553, + }, + }, + { + id: '3179', + data: { + label: 'London', + x: 3798.653927465705, + y: -3434.8282616256133, + z: 3177.2588781487966, + }, + }, + { + id: '3180', + data: { + label: 'Mercury', + x: 3175.6001294131943, + y: 3423.4441166164797, + z: 4690.08507753826, + }, + }, + { + id: '3181', + data: { + label: 'Motown', + x: 3571.103352443326, + y: 3564.7384372544234, + z: -617.1702733070501, + }, + }, + { + id: '3182', + data: { + label: 'Phillips Classics', + x: 255.15453450941575, + y: 5386.198511442012, + z: 645.3951486295607, + }, + }, + { + id: '3183', + data: { + label: 'Polydor', + x: -411.7077862266153, + y: 4598.749302039024, + z: -3257.1308465256006, + }, + }, + { + id: '3184', + data: { + label: 'Verve', + x: -1661.2450636391318, + y: -3139.609047058473, + z: 2262.4874144410787, + }, + }, + { + id: '3185', + data: { + label: 'PolyGram Music Publishing', + x: 3138.603363686308, + y: 1943.6656235780817, + z: -4977.529442757052, + }, + }, + { + id: '3186', + data: { + label: 'Island Music', + x: 1176.3184997272967, + y: -5127.432492996082, + z: -2210.402702871483, + }, + }, + { + id: '3187', + data: { + label: 'Leonard Bernstein Music Publishing Co.', + x: 3001.1616380757077, + y: 3614.5027726664866, + z: -3204.251148025036, + }, + }, + { + id: '3188', + data: { + label: 'Amersfoot (Netherlands)', + x: 4573.046760286586, + y: 2533.056369166415, + z: -4805.301085983387, + }, + }, + { + id: '3189', + data: { + label: 'Blackburn (UK)', + x: -730.6615999072066, + y: 3909.180479845417, + z: -3854.9444036961454, + }, + }, + { + id: '3190', + data: { + label: 'Hanover (Germany)', + x: 6479.241197000158, + y: -1766.3828036396806, + z: -3022.463198402684, + }, + }, + { + id: '3191', + data: { + label: 'Kings Moutain (USA)', + x: -2562.222500522891, + y: -2301.181778995925, + z: -2995.7240069396653, + }, + }, + { + id: '3192', + data: { + label: 'Louviers (France)', + x: -1824.1908408072252, + y: -3749.8169155177843, + z: 2182.3830862629134, + }, + }, + { + id: '3193', + data: { + label: 'Interscope', + x: 236.37735503118319, + y: 4936.021218018196, + z: -2923.349459800426, + }, + }, + { + id: '3194', + data: { + label: 'Propaganda', + x: 3338.0954688321317, + y: 4034.853030044883, + z: -3140.19870780588, + }, + }, + { + id: '3195', + data: { + label: 'Working Title', + x: 5236.6385924193955, + y: 1362.921188419263, + z: 4807.12017965086, + }, + }, + { + id: '3196', + data: { + label: 'PolyGram Films', + x: 518.172460973738, + y: 5318.534723966103, + z: -2674.9123354714316, + }, + }, + { + id: '3197', + data: { + label: 'Gramercy', + x: -1415.4417972047074, + y: -2562.301005376489, + z: 4139.396332313429, + }, + }, + { + id: '3198', + data: { + label: 'PolyGram Filmed Entertainment UK', + x: -3995.7694306077788, + y: -1229.2417204556557, + z: -246.5462084696093, + }, + }, + { + id: '3199', + data: { + label: 'PolyGram Filmed Entertainment Canada', + x: -626.2648160646042, + y: -3884.5110410440975, + z: 3017.810379364904, + }, + }, + { + id: '3200', + data: { + label: 'Cinea (France)', + x: 2362.1992201496287, + y: 4804.703753617105, + z: 3925.1490253970455, + }, + }, + { + id: '3201', + data: { + label: 'PolyGram DA (France)', + x: 4501.688503060487, + y: -4019.6826759084324, + z: 3397.8702976442487, + }, + }, + { + id: '3202', + data: { + label: 'Pan Europeenee Production', + x: 6097.930609730766, + y: 150.49519666429, + z: 3577.686944100932, + }, + }, + { + id: '3203', + data: { + label: 'Noe', + x: 6638.8609075331005, + y: -838.5059107666157, + z: -3566.468043764301, + }, + }, + { + id: '3204', + data: { + label: 'PolyGram Film Distribution (France)', + x: 2042.3194534077713, + y: -3522.7923827896857, + z: -4478.941379817961, + }, + }, + { + id: '3205', + data: { + label: 'TedPoly (Hong Kong)', + x: -1957.5758250344822, + y: -1830.541079716434, + z: 2587.249235950582, + }, + }, + { + id: '3206', + data: { + label: 'Meteor Films (Netherlands)', + x: 475.55445728970506, + y: 4288.207511617787, + z: 4165.445550698468, + }, + }, + { + id: '3207', + data: { + label: 'PolyGram Filmed Entertainment Australia', + x: 1839.7814028090809, + y: 1505.0383722536624, + z: 5505.059853520553, + }, + }, + { + id: '3208', + data: { + label: 'PolyGram Filmed Entertainment Benelux', + x: -2375.039320372568, + y: -1926.736588079215, + z: 3443.9570113308755, + }, + }, + { + id: '3209', + data: { + label: 'Sogepaq - Spain', + x: 4951.8468191195925, + y: 4889.760254690267, + z: -2398.246761276329, + }, + }, + { + id: '3210', + data: { + label: 'PolyGram Film International', + x: 7012.248458950311, + y: -1604.3441162887864, + z: 1879.1364335789729, + }, + }, + { + id: '3211', + data: { + label: 'PolyGram Video', + x: 3196.587644593214, + y: -3067.0734857256093, + z: -4589.204522278324, + }, + }, + { + id: '3212', + data: { + label: 'Vision Video', + x: 5313.240125102257, + y: -4226.789648358885, + z: 1908.4627252086855, + }, + }, + { + id: '3213', + data: { + label: 'Abbey Home Entertainment', + x: 2577.2999675961382, + y: -1617.6683272835085, + z: 5280.636046270245, + }, + }, + { + id: '3214', + data: { + label: 'PolyGram Video US/International', + x: -3368.826856888664, + y: -1978.8127055730092, + z: 573.8064147509558, + }, + }, + { + id: '3215', + data: { + label: 'PolyGram Television', + x: 1617.5600396002835, + y: 3672.054921581478, + z: -4858.565756398036, + }, + }, + { + id: '3216', + data: { + label: 'Working Title Television', + x: 6167.361660957429, + y: -2049.0212022456335, + z: -3172.4494520341073, + }, + }, + { + id: '3217', + data: { + label: 'Propaganda Television', + x: 501.46412224293096, + y: -3588.07693386038, + z: 4354.5247104081855, + }, + }, + { + id: '3218', + data: { + label: 'PolyGram Television USA', + x: -1224.7588463758007, + y: 4253.661784566072, + z: -3159.0005433672873, + }, + }, + { + id: '3219', + data: { + label: 'PolyGram Television International', + x: -3122.7132788606864, + y: -1303.6197801350768, + z: 2739.2926771843267, + }, + }, + { + id: '3220', + data: { + label: 'Viva', + x: 2430.7872037592356, + y: -690.0121342060753, + z: 2117.636488752524, + }, + }, + { + id: '3221', + data: { + label: 'MTV Asia', + x: -3479.626523276272, + y: 3105.5165995767206, + z: -18.74932252627097, + }, + }, + { + id: '3222', + data: { + label: 'Atomic TV - Poland', + x: -3258.778945424555, + y: -2615.703931225285, + z: -874.4333930239113, + }, + }, + { + id: '3223', + data: { + label: 'Sundance Channel USA', + x: -1431.35532725353, + y: 622.1069253818107, + z: -3908.5138275317304, + }, + }, + { + id: '3224', + data: { + label: 'Sundance Channel International', + x: 1542.5300015131488, + y: 4341.908701070257, + z: -2451.1805522180875, + }, + }, + { + id: '3225', + data: { + label: 'Really Useful Holdings', + x: -1971.2110167905382, + y: 3153.7956131798483, + z: -2489.510972124811, + }, + }, + { + id: '3226', + data: { + label: 'PolyGram Merchandising', + x: 7115.3942278568375, + y: -2423.6538831215435, + z: 277.0288851458358, + }, + }, + { + id: '3227', + data: { + label: 'Britannia (UK)', + x: -844.9957675943481, + y: 2932.4321802952113, + z: 4441.796015901522, + }, + }, + { + id: '3228', + data: { + label: 'DIAL (France)', + x: 3493.5030454125617, + y: -3332.8943424662957, + z: -2715.0194617935013, + }, + }, + { + id: '3229', + data: { + label: 'Cineplex Odeon Corporation (theaters)', + x: 3783.5068906389433, + y: 2732.331250101676, + z: 394.01860003328824, + }, + }, + { + id: '3230', + data: { + label: 'Cinema International Corporation (international theaters)', + x: 3940.863212097206, + y: 2217.436802896101, + z: 225.50603100097484, + }, + }, + { + id: '3231', + data: { + label: 'United Cinemas International (UCI)', + x: 3238.4262355577735, + y: 2593.6942177404667, + z: -109.81672608390294, + }, + }, + { + id: '3238', + data: { + label: 'WTTA TV - Tampa', + x: -3026.6479682975914, + y: -2232.400379762755, + z: -1262.8663816413748, + }, + }, + { + id: '3239', + data: { + label: 'WTTV - Tampa', + x: 2760.931147436485, + y: 2570.55770524503, + z: 5351.536943625049, + }, + }, + { + id: '3240', + data: { + label: 'WTTK TV - Indianapolis', + x: -1779.9569354807431, + y: -2221.870266173473, + z: -2882.666413716299, + }, + }, + { + id: '3241', + data: { + label: 'WZTV - Indianapolis', + x: -48.62554543083616, + y: 5950.504803010483, + z: 870.5968821626553, + }, + }, + { + id: '3242', + data: { + label: 'WUXP TV - Nashville', + x: 2594.5823547103973, + y: 5685.512621542879, + z: 1896.9139120053742, + }, + }, + { + id: '3243', + data: { + label: 'WTTE TV - Nashville', + x: 5582.894955467082, + y: 5187.1303316273525, + z: -215.49530015265168, + }, + }, + { + id: ' OH', + data: { + label: 'WFBC TV - Columbus', + x: 2301.617627736054, + y: 4714.451468146521, + z: -3893.7802591352056, + }, + }, + { + id: ' NY', + data: { + label: 'WUTV - Buffalo', + x: 6769.770764821649, + y: 3192.290472030238, + z: 1321.1333103548402, + }, + }, + { + id: ' NC', + data: { + label: 'WUPN TV - Greensboro', + x: 1434.5663811718089, + y: -5182.804246260335, + z: 1952.7632851056674, + }, + }, + { + id: ' VA', + data: { + label: 'WRLH TV - Richmond', + x: 3622.3283658568957, + y: -4892.216970170261, + z: 2342.460790320692, + }, + }, + { + id: ' WI', + data: { + label: 'WMSN TV - Madison', + x: 2183.931552431705, + y: 2757.0856676426174, + z: -4410.597155781089, + }, + }, + { + id: '3254', + data: { + label: 'WCWB TV - Pittsburgh', + x: 951.64537468594, + y: 5085.31185481963, + z: -3328.8926956279147, + }, + }, + { + id: '3255', + data: { + label: 'WNUV TV - Baltimore', + x: -2072.242569388877, + y: 2883.6623223137144, + z: -1953.212525561213, + }, + }, + { + id: '3256', + data: { + label: 'WNYS TV - Syracuse', + x: 2351.686605443981, + y: 3138.892237995557, + z: 5139.353379548024, + }, + }, + { + id: ' SC', + data: { + label: 'WTAT TV - Charleston', + x: 7227.306171079296, + y: 198.44628593718647, + z: -2630.355625520734, + }, + }, + { + id: '3259', + data: { + label: 'WVTV - Milwaukee', + x: -2109.1000072740885, + y: 990.3251344977663, + z: -3138.024676488562, + }, + }, + { + id: ' AL', + data: { + label: 'WFGX TV - Mobile', + x: 6321.69478855316, + y: 2234.1219494664983, + z: -3330.7684811426284, + }, + }, + { + id: ' WV', + data: { + label: 'WVAH TV - Charleston', + x: 6295.4417229622695, + y: -3470.9707571818294, + z: -534.9428098029018, + }, + }, + { + id: '3262', + data: { + label: 'KFBT TV - Las Vegas', + x: 1602.578831661972, + y: -29.7750996662165, + z: 5402.505198079154, + }, + }, + { + id: '3263', + data: { + label: 'KOKH TV - Oklahoma City', + x: 386.736705744408, + y: 5997.5099118718335, + z: -1253.098202011258, + }, + }, + { + id: '3264', + data: { + label: 'KRRT TV - San Antonio', + x: 6787.606792083228, + y: 1197.0255631944206, + z: -2419.934440039558, + }, + }, + { + id: '3265', + data: { + label: 'WABM TV - San Antonio', + x: -778.5604134043282, + y: 3982.8614053317474, + z: -3433.790379839976, + }, + }, + { + id: '3269', + data: { + label: 'KVWB TV - Oklahoma City', + x: -222.03080006622196, + y: 864.3081205885951, + z: 5303.141078464338, + }, + }, + { + id: '3270', + data: { + label: 'WCHS TV - Las Vegas', + x: 4272.800694261064, + y: 4264.281265143566, + z: 3604.4324609237365, + }, + }, + { + id: ' KY', + data: { + label: 'WDKY TV - Lexington', + x: -2104.7695170758197, + y: 3116.7845346988493, + z: 3107.2639312094097, + }, + }, + { + id: '3274', + data: { + label: 'KDSM TV - Des Moines', + x: -2411.8342973282824, + y: 2629.3522000219245, + z: 3292.7416095465155, + }, + }, + { + id: '3275', + data: { + label: 'WSYT TV - Des Moines', + x: 252.10012026940174, + y: -4848.923771255532, + z: -6.974381764517409, + }, + }, + { + id: '3276', + data: { + label: 'WLFL TV - Baltimore', + x: 4385.710962842702, + y: -3778.0953297455917, + z: -2470.000696328243, + }, + }, + { + id: '3278', + data: { + label: 'WSTR TV - Cincinnati', + x: -457.8757383139124, + y: 4243.698254344182, + z: -742.305000734752, + }, + }, + { + id: '3281', + data: { + label: 'WTTO TV - San Antonio', + x: -1031.821528539133, + y: -3176.545345719869, + z: -3619.7325257371645, + }, + }, + { + id: '3282', + data: { + label: 'KBSI TV - Syracuse', + x: 843.921186396799, + y: 4921.407019476817, + z: -2904.025221659415, + }, + }, + { + id: ' ME', + data: { + label: 'WGME TV - Portland', + x: 6329.542343128649, + y: 2918.00382799508, + z: -3014.836219001557, + }, + }, + { + id: ' MA', + data: { + label: 'WGGB TV - Springfield', + x: 6736.397978333287, + y: -1141.1285635510624, + z: 3139.6992487069483, + }, + }, + { + id: ' IL', + data: { + label: 'WYZZ TV - Peoria', + x: 4685.434087030104, + y: 5684.061845418925, + z: -629.4213760710875, + }, + }, + { + id: '3290', + data: { + label: 'KMWB TV - Minneapolis', + x: 4935.7281000081575, + y: 1805.8411745995234, + z: -4749.944805705295, + }, + }, + { + id: '3291', + data: { + label: 'WPGH TV - Minneapolis', + x: -1484.5507450801863, + y: 744.6068583296, + z: 4927.805428908525, + }, + }, + { + id: '3292', + data: { + label: 'KOVR TV - Sacramento', + x: 4516.132723607964, + y: 5733.845285025233, + z: 415.8424690396196, + }, + }, + { + id: '3293', + data: { + label: 'KDNL TV - St. Louis', + x: 5377.653323662227, + y: 235.2090534616358, + z: 4890.169129075495, + }, + }, + { + id: '3294', + data: { + label: 'WBFF TV - St. Louis', + x: 5846.650475506139, + y: 2973.2172810669185, + z: -3506.8197574493865, + }, + }, + { + id: '3296', + data: { + label: 'WICS TV', + x: -896.3498082427811, + y: 4094.0966411791374, + z: -1220.3308384268325, + }, + }, + { + id: '3298', + data: { + label: '', + x: -1939.412958396611, + y: -412.20816706868374, + z: 4006.82793448756, + }, + }, + { + id: '3299', + data: { + label: 'Columbia Tri-Star', + x: 4306.757184750267, + y: 2744.328475270602, + z: -1457.0963745147997, + }, + }, + { + id: '3300', + data: { + label: 'Columbia Pictures', + x: 4408.904583409779, + y: 2428.799783598201, + z: -1710.798004027734, + }, + }, + { + id: '3301', + data: { + label: 'Tri-Star Pictures', + x: 4838.555165987302, + y: 2543.3977295021023, + z: -1484.6015486099939, + }, + }, + { + id: '3302', + data: { + label: 'Sony Pictures Classics', + x: 4238.931453375924, + y: 2606.5165275652844, + z: -1575.0684196308705, + }, + }, + { + id: '3303', + data: { + label: 'Sony Pictures Entertainment', + x: 4649.310779287173, + y: 2928.985808136838, + z: -823.4004732413913, + }, + }, + { + id: '3304', + data: { + label: 'Columbia-Tri Star Home Video', + x: 4038.975643488015, + y: 2439.2548471610507, + z: -840.005884220587, + }, + }, + { + id: '3305', + data: { + label: 'Sony/Lowes Theaters', + x: 4417.748834332617, + y: 2635.2172813366874, + z: -461.32050266478603, + }, + }, + { + id: '3306', + data: { + label: 'Sony - IMAX Theater', + x: 4514.400253761819, + y: 2681.5985255470014, + z: -806.5608173532002, + }, + }, + { + id: '3307', + data: { + label: 'Magic Johnson Theaters', + x: 4034.6655503089696, + y: 1988.3070335900989, + z: -1319.813610682724, + }, + }, + { + id: '3308', + data: { + label: 'Loews - Star Theaters', + x: 469.7559888279413, + y: 5239.9627478349, + z: -1071.7465202772644, + }, + }, + { + id: '3309', + data: { + label: 'Metreon', + x: 4518.236534047263, + y: 3119.8881359600396, + z: -400.42763463972926, + }, + }, + { + id: '3310', + data: { + label: 'Sony Signatures', + x: 4935.311614196534, + y: 2060.870439419635, + z: -1071.0346790618785, + }, + }, + { + id: '3311', + data: { + label: 'Sony Life Insurance', + x: 4015.399202669637, + y: 2531.9481410531016, + z: -1432.38540856325, + }, + }, + { + id: '3312', + data: { + label: 'Sony Finance International', + x: 4257.060710640715, + y: 1877.4350437738492, + z: -855.4697845764915, + }, + }, + { + id: '3313', + data: { + label: 'Sony Play Station', + x: 4492.369414930279, + y: 1803.2025317173973, + z: -1335.0396695681745, + }, + }, + { + id: '3314', + data: { + label: 'Psygnosis', + x: 4541.329761422059, + y: 2264.7966294941352, + z: -614.3913240020628, + }, + }, + { + id: '3315', + data: { + label: 'Sony Online', + x: 4292.318871354791, + y: 1782.5543740877508, + z: -1162.4978671985855, + }, + }, + { + id: '3316', + data: { + label: 'TheStation@sony.com', + x: 4334.563704676216, + y: 2011.825311222884, + z: -1587.6597158092259, + }, + }, + { + id: '3317', + data: { + label: 'Jeopardy Online', + x: 4689.398148748635, + y: 2507.8954748248284, + z: -703.7280781361783, + }, + }, + { + id: '3318', + data: { + label: 'Columbia - Tri-Star Interactive', + x: 4816.228919198748, + y: 1911.5337658152632, + z: -1253.096794267409, + }, + }, + { + id: '3319', + data: { + label: '550 Digital Media Incubator', + x: 4177.552604727877, + y: 1828.7066866037378, + z: -1329.5834904791338, + }, + }, + { + id: '3320', + data: { + label: 'Unsurface', + x: 3960.372717011316, + y: 2201.420141162912, + z: -975.1238341320048, + }, + }, + { + id: '3321', + data: { + label: 'Sony Music', + x: 4474.880385432433, + y: 1883.8565791367632, + z: -777.7134550493859, + }, + }, + { + id: '3322', + data: { + label: 'Legacy', + x: 3944.607170499093, + y: 2478.7600804276362, + z: -1075.1931435587046, + }, + }, + { + id: '3323', + data: { + label: 'Sony Music Nashville', + x: 4412.042130622269, + y: 2538.6578536440857, + z: -666.3659721423256, + }, + }, + { + id: '3324', + data: { + label: 'Sony Wonder', + x: 4062.4840827670414, + y: 1935.1748579987445, + z: -1026.5667227571846, + }, + }, + { + id: '3325', + data: { + label: 'Sony Music Products', + x: 4249.630540833744, + y: 2789.3811705791195, + z: -997.4796788619149, + }, + }, + { + id: '3326', + data: { + label: 'Sony Music Soundtrak', + x: 4642.24451008808, + y: 2025.4174613628795, + z: -713.2017272547682, + }, + }, + { + id: '3327', + data: { + label: 'Tri-Star Music', + x: 4244.637774614444, + y: 2209.1266422178815, + z: -658.2547494537183, + }, + }, + { + id: '3328', + data: { + label: 'WORK', + x: 4796.018247111155, + y: 2482.255812869659, + z: -1266.6840826094615, + }, + }, + { + id: '3329', + data: { + label: 'Crave', + x: 4420.615603798402, + y: 2594.2595481603835, + z: -1600.638855986411, + }, + }, + { + id: '3330', + data: { + label: '57 Records', + x: 4492.860666274329, + y: 1767.5309287477448, + z: -1022.0717744679504, + }, + }, + { + id: '3331', + data: { + label: '550 Music', + x: 4558.990446580596, + y: 2307.5419871748695, + z: -1625.692838201549, + }, + }, + { + id: '3332', + data: { + label: 'Columbia Records', + x: 4673.965551403097, + y: 1910.1302506381796, + z: -1474.481326364015, + }, + }, + { + id: '3333', + data: { + label: 'Epic Records', + x: 4780.168560081658, + y: 1913.70177402741, + z: -965.8848508336677, + }, + }, + { + id: '3334', + data: { + label: 'Epic Soundtrak', + x: 4074.670744516732, + y: 2375.4147197553248, + z: -1554.6669166461356, + }, + }, + { + id: '3335', + data: { + label: 'Shotput Records', + x: 4494.2735317873685, + y: 1923.5482998046916, + z: -1578.1673896913758, + }, + }, + { + id: '3336', + data: { + label: 'Relatively Entertainment', + x: 3930.6286257808256, + y: 2391.010797949408, + z: -1252.602667093031, + }, + }, + { + id: '3337', + data: { + label: 'RED Distribution', + x: 4852.210659452379, + y: 2642.656315551986, + z: -1211.1924221808779, + }, + }, + { + id: '3338', + data: { + label: 'Relatively Records', + x: 4513.134849952492, + y: 2823.4396228726846, + z: -1328.069757412348, + }, + }, + { + id: '3339', + data: { + label: 'Harmony Records', + x: 3915.957483913603, + y: 2188.720644809657, + z: -1186.5067706552159, + }, + }, + { + id: '3340', + data: { + label: 'Sony Music International', + x: 4844.125641263732, + y: 2101.0362971209406, + z: -855.1861395927986, + }, + }, + { + id: '3341', + data: { + label: 'Soho Square', + x: 4977.754725155583, + y: 2294.2010332186314, + z: -1035.931165868582, + }, + }, + { + id: '3342', + data: { + label: 'Dance Pool', + x: 4891.993909946677, + y: 2020.6532831667225, + z: -1323.8428090196176, + }, + }, + { + id: '3343', + data: { + label: 'Mambo', + x: 4495.942503720489, + y: 2124.075772838762, + z: -1579.3968316927085, + }, + }, + { + id: '3344', + data: { + label: 'Rubenstein', + x: 4700.435311135815, + y: 2165.9054827404907, + z: -1616.8047838594716, + }, + }, + { + id: '3345', + data: { + label: 'Squatt', + x: 3952.494303181447, + y: 2268.7018258580315, + z: -1411.0012695672026, + }, + }, + { + id: '3346', + data: { + label: 'Sony Classical', + x: 4581.870860462973, + y: 2720.0817339568657, + z: -1500.1849566232615, + }, + }, + { + id: '3347', + data: { + label: 'Arc of Light', + x: 4218.858955949327, + y: 2655.7781846388225, + z: -813.082380217102, + }, + }, + { + id: '3348', + data: { + label: 'Masterworks', + x: 4986.944928027492, + y: 2290.858578338707, + z: -1389.7839818152643, + }, + }, + { + id: '3349', + data: { + label: 'Sony Broadway', + x: 4260.217224242515, + y: 1878.2840782314377, + z: -1500.1349641117788, + }, + }, + { + id: '3350', + data: { + label: 'SEON', + x: 4797.752749325716, + y: 2288.9396740097563, + z: -714.1732599632714, + }, + }, + { + id: '3351', + data: { + label: 'Vivarte', + x: 4813.933171972628, + y: 2135.826027329201, + z: -1487.5447788692013, + }, + }, + { + id: '3352', + data: { + label: 'Columbia House', + x: 3919.349516104131, + y: 1019.0128996789314, + z: 142.35649462172367, + }, + }, + { + id: '3353', + data: { + label: 'Music Choice', + x: 3619.599225350364, + y: -4916.187569441959, + z: -1320.0341846013152, + }, + }, + { + id: '3354', + data: { + label: 'Music Choice Europe', + x: -44.74988476897604, + y: 5076.097458462727, + z: 2920.9288864503083, + }, + }, + { + id: '3355', + data: { + label: 'Columbia -Tri Star Television', + x: 4557.834758742351, + y: 2829.329981171283, + z: -1145.2627449803063, + }, + }, + { + id: '3356', + data: { + label: 'Columbia -Tri Star Television Distribution', + x: 4882.289139501347, + y: 2453.355770183378, + z: -869.5879414739676, + }, + }, + { + id: '3357', + data: { + label: 'Columbia -Tri Star Television International Television', + x: 4403.2741760119425, + y: 2195.4073589818654, + z: -1750.6486134042802, + }, + }, + { + id: '3358', + data: { + label: 'The Game Show Network', + x: 4709.267139258615, + y: 2755.68806435181, + z: -1086.846209047996, + }, + }, + { + id: '3359', + data: { + label: 'International Television Ventures', + x: 4965.7923692521645, + y: 2152.9707860769545, + z: -1244.210315007777, + }, + }, + { + id: '3360', + data: { + label: 'Cinemax Latin America', + x: 4682.8633340495135, + y: 1818.0868772045546, + z: -1194.0966840245007, + }, + }, + { + id: '3361', + data: { + label: 'E! - Latin America', + x: 4995.8396480893625, + y: 2509.8337279291422, + z: -1234.435347353159, + }, + }, + { + id: '3362', + data: { + label: 'HBO Ole', + x: 5633.010684121126, + y: -968.7052150463351, + z: -4392.7404944877035, + }, + }, + { + id: '3363', + data: { + label: 'HBO Brasil', + x: 4511.4562397128675, + y: 2519.2973357188553, + z: 4666.918535019981, + }, + }, + { + id: '3364', + data: { + label: 'Mundo Ole', + x: 4063.86430112305, + y: 2662.545432222855, + z: -1125.2666318752056, + }, + }, + { + id: '3365', + data: { + label: 'Warner Channel', + x: 3635.610633948674, + y: -332.85009956022185, + z: 1825.414810264208, + }, + }, + { + id: '3366', + data: { + label: 'Showtime - Australia', + x: 2038.840115105271, + y: -4929.99377166634, + z: -2662.8203255124554, + }, + }, + { + id: '3367', + data: { + label: 'Encore - Australia', + x: 4748.727389208426, + y: 2718.2137261471253, + z: -1352.6664748461267, + }, + }, + { + id: '3368', + data: { + label: 'TVI - Australia', + x: 4262.091271502229, + y: 2792.0956051306953, + z: -1219.8569513663235, + }, + }, + { + id: '3369', + data: { + label: '', + x: -1922.8738664995553, + y: 3751.9298488395193, + z: 809.2950814116243, + }, + }, + { + id: '3370', + data: { + label: 'Cinemax Asia', + x: 4239.191801120503, + y: 2392.77288713231, + z: -1646.216952478487, + }, + }, + { + id: '3371', + data: { + label: 'HBO Asia', + x: 4773.4153160766455, + y: 2362.140605225665, + z: -1393.2009687965945, + }, + }, + { + id: '3372', + data: { + label: 'Beijing Television Arts Center', + x: 4759.209756551265, + y: 2649.7520518580995, + z: -891.4836498022867, + }, + }, + { + id: '3373', + data: { + label: 'Viva 1 - Germany', + x: 4621.725342038768, + y: 2561.449318152791, + z: -1572.8453705667546, + }, + }, + { + id: '3374', + data: { + label: 'Viva 2 - Germany', + x: 4235.640882321805, + y: 2167.1659979563487, + z: -1636.5713494569554, + }, + }, + { + id: '3375', + data: { + label: 'Carlton Productions (U.K.)', + x: 4719.605418936295, + y: 2387.5638536089364, + z: -1618.7474561316415, + }, + }, + { + id: '3376', + data: { + label: 'Golden Square Productions (U.K.)', + x: 4165.698131047461, + y: 2645.7384537925063, + z: -1349.5925420101498, + }, + }, + { + id: '3377', + data: { + label: 'Frensch Productions (Germany)', + x: 4051.9304125133795, + y: 2125.4427489626287, + z: -1547.9636410296573, + }, + }, + { + id: '3378', + data: { + label: 'HBO Poland', + x: -2142.7810997798924, + y: 769.1986589605648, + z: -4251.77090645722, + }, + }, + { + id: '3380', + data: { + label: 'The Baltimore Sun', + x: 2952.8540507892926, + y: -2012.1722006417301, + z: 2307.2692494814787, + }, + }, + { + id: '3381', + data: { + label: 'Greenwich Time (CT)', + x: 3054.718167797885, + y: -2781.7129374174447, + z: 2685.29944299623, + }, + }, + { + id: '3382', + data: { + label: 'The Hartford Courant', + x: 2749.9691481921373, + y: -2258.8471721585292, + z: 2454.103224941674, + }, + }, + { + id: '3383', + data: { + label: 'La Opinion', + x: 3643.607770568522, + y: -2241.784166937324, + z: 2423.9023675275507, + }, + }, + { + id: '3384', + data: { + label: 'Los Angeles Times', + x: 3352.8635497080736, + y: -1801.9289252114706, + z: 2620.316894070957, + }, + }, + { + id: '3385', + data: { + label: 'Los Angeles Times Syndicate', + x: 3285.214331735026, + y: -2783.135530716841, + z: 2492.0580215465584, + }, + }, + { + id: '3386', + data: { + label: 'Los Angeles Times - Washington Post News Service', + x: 3695.9282993241636, + y: -1241.5396732650092, + z: 701.5086265286079, + }, + }, + { + id: '3389', + data: { + label: 'Field & Stream', + x: 3579.845742195839, + y: -621.9608428530534, + z: 1901.8573406066364, + }, + }, + { + id: '3390', + data: { + label: 'Freeze', + x: 5998.536516584636, + y: -3070.7784819027856, + z: -2389.9045468851373, + }, + }, + { + id: '3391', + data: { + label: 'Golf Magazine', + x: 3712.819346780618, + y: -659.382639475796, + z: 952.6963358234179, + }, + }, + { + id: '3392', + data: { + label: 'Outdoor Life', + x: 3740.3085118259537, + y: -564.1102662582093, + z: 1811.1678294136798, + }, + }, + { + id: '3393', + data: { + label: 'Popular Science', + x: 3773.3063988725285, + y: -807.9318746258741, + z: 1281.7521889697593, + }, + }, + { + id: '3394', + data: { + label: 'Salt Water Sportsman', + x: 3065.585587668585, + y: -629.9268001464035, + z: 1396.3770452292788, + }, + }, + { + id: '3395', + data: { + label: 'Ski', + x: 3263.7437842757154, + y: -384.04895841040985, + z: 1888.7708349460643, + }, + }, + { + id: '3396', + data: { + label: 'Skiing Magazine', + x: 3611.3889326354447, + y: -640.5840799699057, + z: 1103.2349937581957, + }, + }, + { + id: '3397', + data: { + label: 'Skiing Trade News', + x: 2989.598735323178, + y: -38.76353034812378, + z: 1328.4385453929538, + }, + }, + { + id: '3398', + data: { + label: 'SNAP', + x: 4022.502111956893, + y: -464.2139385205447, + z: 572.3705674806216, + }, + }, + { + id: '3399', + data: { + label: 'Snowboard Life', + x: 3891.3450192988216, + y: -157.7179371072832, + z: 961.2492808505132, + }, + }, + { + id: '3400', + data: { + label: 'Ride BMX', + x: 3767.715746636784, + y: -306.43690503154136, + z: 939.1588937166451, + }, + }, + { + id: '3401', + data: { + label: 'The Sporting News', + x: -2119.063231574752, + y: 623.0698488334615, + z: 4464.346057690662, + }, + }, + { + id: '3402', + data: { + label: 'Today�s Homeowner', + x: 3168.927021616197, + y: -31.024603217493755, + z: 976.9197595246137, + }, + }, + { + id: '3403', + data: { + label: 'TransWorld Skateboarding', + x: 3523.604922096716, + y: 14.774571228366684, + z: 919.6442999122845, + }, + }, + { + id: '3404', + data: { + label: 'TransWorld Snowboarding', + x: 3124.730717265612, + y: 171.9704280289121, + z: 1463.150408039246, + }, + }, + { + id: '3405', + data: { + label: 'Verge', + x: 3562.5482603569953, + y: -715.2493365958499, + z: 1681.140874296112, + }, + }, + { + id: '3406', + data: { + label: 'Yachting Magazine', + x: 3508.7411842278157, + y: 238.83481023068174, + z: 1236.5891392090123, + }, + }, + { + id: '3407', + data: { + label: 'Warp', + x: 3466.2331946650756, + y: -726.3712728769808, + z: 1020.8928805751484, + }, + }, + { + id: '3408', + data: { + label: 'Professional Information', + x: -1329.9139790811864, + y: -1407.272835861373, + z: -4653.687142859386, + }, + }, + { + id: '3409', + data: { + label: 'Jeppesen Sanderson', + x: -1759.7347112239665, + y: 1861.0410998694515, + z: -4382.917221722036, + }, + }, + { + id: '3410', + data: { + label: 'AchieveGlobal', + x: 1671.4187325484363, + y: -3521.8203387735166, + z: -3956.2686717956776, + }, + }, + { + id: '3411', + data: { + label: 'Allen Communication', + x: -3680.512846781201, + y: -1167.0714220692964, + z: -28.345623214781728, + }, + }, + { + id: '3412', + data: { + label: 'Apartment Search', + x: 303.9236993011746, + y: -3685.8556672454715, + z: 3130.0324141282385, + }, + }, + { + id: '3413', + data: { + label: 'ListingLink', + x: 4736.457069171233, + y: -4135.948852795, + z: 372.4586334409062, + }, + }, + { + id: '3414', + data: { + label: 'Mosby - Year Book', + x: -1160.511112177281, + y: 40.65741293804453, + z: 5210.236111738839, + }, + }, + { + id: '3415', + data: { + label: 'MD Consult', + x: 7942.125482616388, + y: -533.6954872274111, + z: -530.6798076625446, + }, + }, + { + id: '3416', + data: { + label: 'StayWell', + x: -128.27424199501456, + y: 1559.9617167186454, + z: 5323.321735901772, + }, + }, + { + id: '3417', + data: { + label: 'WPIX TV - New York', + x: 2732.4883611118125, + y: -2162.6410780553615, + z: 2764.4503255752047, + }, + }, + { + id: '3418', + data: { + label: 'KTLA TV - Los Angeles', + x: 3310.6275960633125, + y: -2772.9984746257087, + z: 2694.033240847523, + }, + }, + { + id: '3419', + data: { + label: 'WGN TV - Chicago', + x: 2947.33658566692, + y: -1862.0799522527943, + z: 2817.9023135389034, + }, + }, + { + id: '3420', + data: { + label: 'WPHL TV - Philadelphia', + x: 3285.4409820734327, + y: -2716.493378995781, + z: 2887.9266607040636, + }, + }, + { + id: '3421', + data: { + label: 'WLVI TV - Boston', + x: 3093.2136194590976, + y: -1874.7777171399061, + z: 2950.781751503083, + }, + }, + { + id: '3422', + data: { + label: 'KDAF TV - Dallas', + x: 3198.886696295791, + y: -2197.3990083344333, + z: 3061.9127855065003, + }, + }, + { + id: '3423', + data: { + label: 'WGNX TV - Atlanta', + x: 3577.605621118239, + y: -2664.9981826748362, + z: 2602.4318029896535, + }, + }, + { + id: '3424', + data: { + label: 'KHTV - Houston', + x: 3306.5119162645387, + y: -2531.2406515026164, + z: 3033.268312962355, + }, + }, + { + id: '3425', + data: { + label: 'KTZZ TV - Seattle', + x: 2880.94588398211, + y: -2555.286506657754, + z: 2429.5561319591197, + }, + }, + { + id: '3426', + data: { + label: 'WBZL TV - Miami - Ft. Lauderdale', + x: 3755.068367707578, + y: -2339.503665951542, + z: 2753.736691036509, + }, + }, + { + id: '3427', + data: { + label: 'KWGN TV - Denver', + x: 3700.090730841937, + y: -2451.9709454957438, + z: 2603.3968495518975, + }, + }, + { + id: '3428', + data: { + label: 'KTXL TV - Sacramento', + x: 3570.4083523475942, + y: -2331.3560312816403, + z: 2985.273287683234, + }, + }, + { + id: '3429', + data: { + label: 'WXIN TV - Indianapolis', + x: 3212.6328154553416, + y: -2381.2678799896216, + z: 3142.0286477454383, + }, + }, + { + id: '3430', + data: { + label: 'KSWB TV - San Diego', + x: 3215.049912894434, + y: -1768.2333955431386, + z: 2790.212470140368, + }, + }, + { + id: '3431', + data: { + label: 'WTIC TV - Hartford/New Haven', + x: 3506.8448577502477, + y: -2538.6517210108705, + z: 2963.28222162907, + }, + }, + { + id: '3432', + data: { + label: 'WTXX TV - Hartford', + x: 3594.676274851775, + y: -2007.2113891471238, + z: 2697.643350326025, + }, + }, + { + id: '3433', + data: { + label: 'WXMI TV - Grand Rapids', + x: 3399.9309186134683, + y: -2285.7099792744007, + z: 3096.8756267048616, + }, + }, + { + id: '3434', + data: { + label: 'WGNO TV - New Orleans', + x: 3687.535920076833, + y: -2224.906352203973, + z: 2851.1437404902053, + }, + }, + { + id: '3435', + data: { + label: 'WPMT TV - Harrisburg', + x: 3531.361535036316, + y: -2066.004989101902, + z: 2858.000530374076, + }, + }, + { + id: '3436', + data: { + label: 'WNOL TV - New Orleans', + x: 2986.3852973178514, + y: -2089.7934370557086, + z: 2950.1699444475207, + }, + }, + { + id: '3437', + data: { + label: 'WBDC TV - Washington', + x: -2658.719083283498, + y: 4071.8642009818072, + z: -577.4179440817074, + }, + }, + { + id: '3438', + data: { + label: 'Tribune Entertainment', + x: 3280.0785972981494, + y: -1980.3654767053451, + z: 2943.696966874799, + }, + }, + { + id: '3439', + data: { + label: 'Qwest Broadcasting', + x: 3532.692806786979, + y: -2633.8151564944324, + z: 2785.1731867930985, + }, + }, + { + id: '3440', + data: { + label: 'WB Network', + x: 3318.0413161051115, + y: -1286.6642413842314, + z: 2005.534035608664, + }, + }, + { + id: '3441', + data: { + label: 'CLTV', + x: 2868.5787937031196, + y: -1902.4070918347934, + z: 2573.797244052417, + }, + }, + { + id: '3442', + data: { + label: '', + x: 6704.563094398725, + y: 1132.3691839618664, + z: -3487.2100795131005, + }, + }, + { + id: '3443', + data: { + label: 'Central Florida News 13 (CFN 13)', + x: 547.4467417648068, + y: 5873.671839297493, + z: 2002.081832367071, + }, + }, + { + id: '3444', + data: { + label: 'WGN - AM (Chicago)', + x: 3127.7120681339547, + y: -2612.9468899846365, + z: 2985.2912318503927, + }, + }, + { + id: '3445', + data: { + label: 'KKHK - FM (Denver)', + x: 2802.1604418048782, + y: -2245.1560583788037, + z: 2915.1949960665106, + }, + }, + { + id: '3446', + data: { + label: 'KOSI - FM (Denver)', + x: 2902.5245224616133, + y: -2349.480658831732, + z: 2245.9130997365896, + }, + }, + { + id: '3447', + data: { + label: 'KEZW - AM (Denver)', + x: 2983.0845308247376, + y: -2486.528887319828, + z: 3062.337411921018, + }, + }, + { + id: '3448', + data: { + label: 'Chicago Tribune', + x: 3213.338536066912, + y: -2647.986733879803, + z: 2260.141826536984, + }, + }, + { + id: '3449', + data: { + label: 'Fort Lauderdale Sun-Sentinel', + x: 3453.6197165295225, + y: -2670.187272120174, + z: 2343.259515708135, + }, + }, + { + id: '3450', + data: { + label: 'Orlando Sentinel', + x: 3626.630903666709, + y: -2524.0788450506207, + z: 2391.407428617869, + }, + }, + { + id: '3451', + data: { + label: 'South Florida Newspaper Network', + x: 2835.292857193394, + y: -2622.562372768997, + z: 2667.7863222897918, + }, + }, + { + id: ' VA. and area)', + data: { + label: 'Daily Press (Hampton Roads', + x: 2582.242806133726, + y: -4459.251261878117, + z: -3135.2580483421216, + }, + }, + { + id: '3453', + data: { + label: 'Tribune Media Services', + x: 3166.1669458094243, + y: -2068.6355778750712, + z: 3260.6591978468246, + }, + }, + { + id: '3454', + data: { + label: 'JDTV', + x: 3316.7085434844257, + y: -1868.5702493944414, + z: 3651.0632909685783, + }, + }, + { + id: '3455', + data: { + label: 'Ultimate TV', + x: 3003.7056296145997, + y: -1968.8162490356503, + z: 3696.8827704657874, + }, + }, + { + id: '3456', + data: { + label: 'Black Voices', + x: -3976.8747296681786, + y: 98.501894209422, + z: -1561.484267764648, + }, + }, + { + id: '3457', + data: { + label: 'Exito', + x: 2958.8872328845655, + y: -2648.7584878132925, + z: 2879.2723895478807, + }, + }, + { + id: '3458', + data: { + label: 'Relcon', + x: 2735.943077855696, + y: -2409.435088692308, + z: 2616.822126046919, + }, + }, + { + id: '3459', + data: { + label: 'US/Express', + x: 2898.253072221515, + y: -2323.463059162113, + z: 3043.0436497314167, + }, + }, + { + id: '3460', + data: { + label: 'Digital City Atlanta', + x: 3513.599077487848, + y: -2042.302591493755, + z: 3055.2204797953355, + }, + }, + { + id: '3461', + data: { + label: 'Digital City Boston', + x: 3540.105220222796, + y: -1966.4718527689774, + z: 2457.839879675325, + }, + }, + { + id: '3462', + data: { + label: 'Digital City Chicago', + x: 3208.2966281225645, + y: -2390.974113086442, + z: 2129.3796046574994, + }, + }, + { + id: '3463', + data: { + label: 'Digital City Denver', + x: 2753.3320986300805, + y: -2050.389597237319, + z: 2635.7943419639223, + }, + }, + { + id: '3464', + data: { + label: 'Digital City Hampton Roads', + x: 3496.8247666749758, + y: -2362.457864807434, + z: 2202.671807236388, + }, + }, + { + id: '3465', + data: { + label: 'Digital City Los Angeles', + x: 3078.713248395084, + y: -1781.3947693032549, + z: 2552.5914024213484, + }, + }, + { + id: '3466', + data: { + label: 'Digital City Orlando', + x: 3268.53734806055, + y: -1907.4794470825564, + z: 2297.845366209896, + }, + }, + { + id: '3467', + data: { + label: 'Digital City South Florida', + x: 3415.650326926358, + y: -1866.7828673096694, + z: 2883.0382768269374, + }, + }, + { + id: '3468', + data: { + label: 'cars.com', + x: 2849.1156954437233, + y: -2654.0308512940687, + z: 242.33373379711085, + }, + }, + { + id: '3469', + data: { + label: 'apartments.com', + x: 2753.6405781038115, + y: -2750.402886902896, + z: 463.3714370306493, + }, + }, + { + id: '3470', + data: { + label: 'CareerPath.com', + x: 3049.5577754545525, + y: -2735.7230654942227, + z: 2442.385466703791, + }, + }, + { + id: '3471', + data: { + label: 'Everyday Learning/ Creative Publications', + x: -133.7958901771821, + y: 3304.75901817402, + z: -4656.314049565646, + }, + }, + { + id: '3472', + data: { + label: 'Ideal/Instructional Fair Publishing Group', + x: 2312.0423672789016, + y: -4160.6617232786275, + z: 3913.3519584363244, + }, + }, + { + id: '3473', + data: { + label: 'Landoll', + x: 1890.9596081541818, + y: 3366.947806107268, + z: -5121.652057128109, + }, + }, + { + id: '3474', + data: { + label: 'NTC/Contemporary Publishing Group', + x: 4485.289909899171, + y: -1990.6843908104463, + z: 4210.97596273349, + }, + }, + { + id: '3475', + data: { + label: 'The Wright Group', + x: -272.5792378608, + y: -4183.927395920754, + z: -3199.911768318921, + }, + }, + { + id: '3476', + data: { + label: 'Chicago Cubs', + x: 2869.061421882952, + y: -1976.6264935132397, + z: 2916.792806666257, + }, + }, + { + id: '3477', + data: { + label: 'Tribune Ventures', + x: 2625.071447869478, + y: -1677.35936553387, + z: 735.4713234752753, + }, + }, + { + id: '3478', + data: { + label: '', + x: 3830.237654050673, + y: 2214.1916993500527, + z: 4258.948010951583, + }, + }, + { + id: '3479', + data: { + label: 'CheckFree', + x: 1996.575300201759, + y: -1947.110629924148, + z: 467.96998836110936, + }, + }, + { + id: '3480', + data: { + label: '', + x: 1343.2547363404299, + y: 1908.5143789899676, + z: -4623.030873061267, + }, + }, + { + id: '3481', + data: { + label: 'Excite', + x: 826.9563531548843, + y: -34.04900948497275, + z: 1247.1626006328315, + }, + }, + { + id: '3482', + data: { + label: 'ImageBuilder Software', + x: 3039.5718804613507, + y: -1863.9863557073536, + z: 882.0067680260408, + }, + }, + { + id: '3483', + data: { + label: 'Discourse Technologies', + x: 2729.135077443621, + y: -2131.047480168031, + z: 785.628250601307, + }, + }, + { + id: '3484', + data: { + label: 'Infobeat', + x: 2904.262290552759, + y: -2039.3226241855973, + z: 883.893227519507, + }, + }, + { + id: '3485', + data: { + label: '', + x: 5256.652204370961, + y: -1325.835261870949, + z: -4325.778345828475, + }, + }, + { + id: '3486', + data: { + label: 'Lightspan Partnership', + x: 2387.024742463874, + y: -1368.257893103764, + z: 1152.5385813022124, + }, + }, + { + id: '3487', + data: { + label: 'Open Market', + x: 1754.5523812639954, + y: -194.2359888308964, + z: -1494.9227403331824, + }, + }, + { + id: '3488', + data: { + label: 'Peapod', + x: 2718.943569720801, + y: -2202.1133930785563, + z: 1099.5385763671134, + }, + }, + { + id: '3489', + data: { + label: 'Picture Network International (NA)', + x: 245.5212368123419, + y: 2251.0895486491827, + z: -5005.650391880408, + }, + }, + { + id: '3490', + data: { + label: 'The Learning', + x: 2957.6263060328915, + y: -1975.0608424949096, + z: 597.5546968464533, + }, + }, + { + id: '3491', + data: { + label: 'SoftKey International', + x: 4355.140233309732, + y: -3531.435139121113, + z: -4120.596832199324, + }, + }, + { + id: '8243', + data: { + label: 'Fox Sports Net New York', + x: 2750.906140582045, + y: 1341.5518706273829, + z: 2381.2933944141682, + }, + }, + { + id: '3494', + data: { + label: '', + x: -298.7242800985152, + y: 5823.209312205318, + z: 1210.3799726582727, + }, + }, + { + id: '3495', + data: { + label: 'Baring Communications Equity (Asia-Pacific) Ltd. Fund (NA)', + x: -907.1303553570392, + y: 2851.353120244881, + z: 3444.5191875042474, + }, + }, + { + id: '3496', + data: { + label: '', + x: 2119.9075281892838, + y: -4333.607979577171, + z: -3373.9853171577056, + }, + }, + { + id: '3497', + data: { + label: 'Cybermeals', + x: 1864.314118291013, + y: 4736.528856230416, + z: 3937.1413595796357, + }, + }, + { + id: '3498', + data: { + label: '', + x: -870.5150159238176, + y: -3065.1518242993766, + z: 3297.585642236368, + }, + }, + { + id: '3499', + data: { + label: '', + x: 5932.651620640956, + y: 3444.7423292069493, + z: 2822.2397950671266, + }, + }, + { + id: '3500', + data: { + label: 'Sci-Fi Europe', + x: 3998.4117814272, + y: -905.9032598195197, + z: -408.26961705726137, + }, + }, + { + id: '3501', + data: { + label: 'Home Shopping Network (HSN)', + x: 3758.0192743649195, + y: -924.2736541478358, + z: -2014.1545270212607, + }, + }, + { + id: '3502', + data: { + label: '', + x: 5446.079115371868, + y: 1728.5016041012377, + z: -4377.342931100286, + }, + }, + { + id: '3503', + data: { + label: 'Silver King Broadcasting', + x: 3612.7704464055982, + y: -319.075060881288, + z: -809.1865184681154, + }, + }, + { + id: '3504', + data: { + label: 'SF Broadcasting', + x: 3025.9689600673105, + y: -1342.8067611690146, + z: -1485.0077621249916, + }, + }, + { + id: '3505', + data: { + label: 'October Films', + x: 3185.57905825561, + y: -236.26466036562158, + z: -1138.043176140912, + }, + }, + { + id: '3506', + data: { + label: 'Ticketmaster', + x: 3030.2269333265767, + y: -919.8545657518367, + z: -1258.2769092384274, + }, + }, + { + id: '3507', + data: { + label: 'Ticketmaster Online-CitySearch', + x: 2592.4513986710936, + y: -688.5341710189697, + z: -510.46372365376135, + }, + }, + { + id: '3508', + data: { + label: 'Internet Shopping Network', + x: 3414.967895441625, + y: -620.7130570721532, + z: -1528.0362869194214, + }, + }, + { + id: '3509', + data: { + label: 'Styleclick.com', + x: 3122.5970887680096, + y: -1425.732213298214, + z: -1030.2070342963864, + }, + }, + { + id: '3510', + data: { + label: 'Paramount Stations Group', + x: -1042.8108504677048, + y: -61.79233161284436, + z: 96.87108313248403, + }, + }, + { + id: '3511', + data: { + label: 'WUPA TV - Atlanta', + x: -1475.2744555517895, + y: 158.42314465993414, + z: 91.11670099204947, + }, + }, + { + id: '3512', + data: { + label: 'WSBK TV - Boston', + x: -1146.767921813275, + y: -457.0872884598841, + z: -120.23933430350105, + }, + }, + { + id: '3513', + data: { + label: 'WWHO TV - Chillicothe', + x: -1362.5864685355366, + y: -161.3996005478563, + z: 447.1683190088397, + }, + }, + { + id: '3514', + data: { + label: 'WWHO TV - Columbus', + x: -1399.5349624533515, + y: 154.42307451613257, + z: 353.34527024282926, + }, + }, + { + id: ' Ft. Worth', + data: { + label: 'KTXA TV - Dallas', + x: 3484.1053293490127, + y: 4430.754058108354, + z: 4007.162479843895, + }, + }, + { + id: '3516', + data: { + label: 'WKBD TV - Detroit', + x: -1074.204490243261, + y: -202.5612944821608, + z: -335.74321782140686, + }, + }, + { + id: '3517', + data: { + label: 'KTXH TV - Houston', + x: -1105.3643304938175, + y: 96.25956261513745, + z: -333.6485871560471, + }, + }, + { + id: '3518', + data: { + label: 'WNDY TV - Indianapolis', + x: -1289.1060135703801, + y: -194.88868485648496, + z: -282.9736115628454, + }, + }, + { + id: '3519', + data: { + label: 'WBFS TV - Miami', + x: -1206.562724348453, + y: 271.4708586491486, + z: -182.83214765249667, + }, + }, + { + id: '3520', + data: { + label: 'WLWC TV - New Bedford', + x: -1525.4379476443312, + y: -76.90094130447774, + z: 7.028514484842331, + }, + }, + { + id: '3521', + data: { + label: 'WUPL TV - New Orleans', + x: -1280.4478334979692, + y: 327.14164280863463, + z: 75.33724583542447, + }, + }, + { + id: '3522', + data: { + label: 'WGNT TV - Norfolk', + x: -1517.7265512446363, + y: -75.57533570474388, + z: 256.1700194080016, + }, + }, + { + id: '3523', + data: { + label: 'WPSG TV - Philadelphia', + x: -1361.1162427467787, + y: -348.9013051379308, + z: -64.27148249084746, + }, + }, + { + id: '3524', + data: { + label: 'KSTW TV - Seattle', + x: -1360.9222751988452, + y: 52.76310432499198, + z: -233.5604017592673, + }, + }, + { + id: '3525', + data: { + label: 'KMOV TV - St. Louis', + x: -1593.7179111736668, + y: 7.669509816276969, + z: -3914.134661913696, + }, + }, + { + id: '3526', + data: { + label: 'WTOG TV - Tampa', + x: -1428.2844274613617, + y: -314.88912364083063, + z: 235.24850213128425, + }, + }, + { + id: ' D.C.', + data: { + label: 'WDCA TV - Washington', + x: -2606.0216447866806, + y: 1379.3202836039159, + z: 3752.9866506521694, + }, + }, + { + id: '3528', + data: { + label: 'KMAX TV - Sacramento', + x: -1157.3514446855204, + y: -481.4988572513029, + z: 187.41958184812282, + }, + }, + { + id: '3529', + data: { + label: 'The Paramount Channel', + x: -605.8812371608517, + y: -264.07402950658394, + z: 968.6145909001702, + }, + }, + { + id: '3530', + data: { + label: 'MTV: Music Television', + x: -769.8164294026078, + y: 195.29745670675277, + z: 1252.07369966821, + }, + }, + { + id: '3531', + data: { + label: 'M2', + x: -1155.3896813904794, + y: 174.4700093499932, + z: 1555.4037539309343, + }, + }, + { + id: '3532', + data: { + label: 'MTV', + x: -1210.9354344251276, + y: 430.817046943234, + z: 1429.743712108353, + }, + }, + { + id: '3533', + data: { + label: 'MTV Europe', + x: -449.64359019492775, + y: 213.2597739231704, + z: 967.608995402351, + }, + }, + { + id: '3534', + data: { + label: 'MTV Indie', + x: -1025.392017119841, + y: 587.3683713252433, + z: 1495.72256121449, + }, + }, + { + id: '3535', + data: { + label: 'MTV Latin America', + x: -974.1352313884571, + y: 383.8187404472695, + z: 1669.467550996665, + }, + }, + { + id: '3536', + data: { + label: 'MTV Productions', + x: -30.45676896729576, + y: 4180.995163821144, + z: -2330.296846990695, + }, + }, + { + id: '3537', + data: { + label: 'MTV Ritmo', + x: -1252.9962912887663, + y: 279.9306568714893, + z: 1220.374285653657, + }, + }, + { + id: '3538', + data: { + label: 'MTV Rocks', + x: -1162.5301948722022, + y: 530.227957877526, + z: 1205.5748584471198, + }, + }, + { + id: '3539', + data: { + label: 'Nickelodeon', + x: 433.61893884099044, + y: 116.4849905270576, + z: -306.2804339491278, + }, + }, + { + id: '3540', + data: { + label: 'Nickelodeon Hungary', + x: 53.68763073682248, + y: 405.7591151847631, + z: -435.10448769153186, + }, + }, + { + id: '3541', + data: { + label: 'Nickelodeon Iceland', + x: 583.6403658679118, + y: 117.58896601507743, + z: -751.3986013998875, + }, + }, + { + id: '3542', + data: { + label: 'Nickelodeon Latin America', + x: 120.89182889097802, + y: -137.99469990714144, + z: -542.5729962612846, + }, + }, + { + id: '3543', + data: { + label: 'Nickelodeon Nordic', + x: 327.3010239534561, + y: -131.6358084723979, + z: -687.7968738420991, + }, + }, + { + id: '3544', + data: { + label: 'Nick at Nite', + x: -15.710351513206572, + y: 137.4819040661717, + z: -500.1457376812273, + }, + }, + { + id: '3545', + data: { + label: "Nick at Nite's TV Land", + x: 502.347261423622, + y: 420.25448476674734, + z: -663.0987245072191, + }, + }, + { + id: '3546', + data: { + label: 'Nick Jr.', + x: 242.62146166467812, + y: 429.85457502165167, + z: -638.8336696756119, + }, + }, + { + id: '3547', + data: { + label: 'Nickelodeon Books', + x: 326.5795246793117, + y: 147.126480012579, + z: -772.9609628314831, + }, + }, + { + id: '3548', + data: { + label: 'Nickelodeon Magazine', + x: 105.64352215321297, + y: 176.77064618687567, + z: -669.7253122255543, + }, + }, + { + id: '3549', + data: { + label: 'Nickelodeon Movies', + x: 282.6959094984587, + y: 559.5049375222732, + z: -403.36753894947265, + }, + }, + { + id: '3550', + data: { + label: 'VH1', + x: -428.20490784986987, + y: -209.0716569639858, + z: 1643.8625886189695, + }, + }, + { + id: '3551', + data: { + label: 'VH1 Country', + x: -743.7227668432156, + y: -302.83012164103167, + z: 2023.9975771058625, + }, + }, + { + id: '3552', + data: { + label: 'VH1 Soul', + x: -658.8798469906538, + y: 27.24692453684422, + z: 2029.5159558334374, + }, + }, + { + id: '3553', + data: { + label: 'VH1 United Kingdom', + x: -529.7527479442282, + y: -148.84158045452128, + z: 2121.993930771393, + }, + }, + { + id: '3554', + data: { + label: 'Showtime Networks', + x: -549.5593791259851, + y: 577.1118059959989, + z: 1049.1740632050385, + }, + }, + { + id: '3555', + data: { + label: 'SET Pay-Per-View', + x: -605.112522113295, + y: 1058.1996975036195, + z: 1226.3248003243582, + }, + }, + { + id: '3556', + data: { + label: 'Showtime', + x: -913.3834624002417, + y: 889.9302344774807, + z: 893.9357300532529, + }, + }, + { + id: '3557', + data: { + label: 'Showtime en Espanol', + x: -1004.9584352833576, + y: 821.4061613015314, + z: 1125.2097730556557, + }, + }, + { + id: '3558', + data: { + label: 'Showtime Extreme', + x: -879.7186883576926, + y: 969.9918174134078, + z: 1244.252533626172, + }, + }, + { + id: '3559', + data: { + label: 'The Movie Channel', + x: -695.9226087429544, + y: 897.7159158444945, + z: 1410.5068658202229, + }, + }, + { + id: '3560', + data: { + label: 'FLIX', + x: -721.6936255449067, + y: 1056.5355384050754, + z: 1002.1514151988098, + }, + }, + { + id: '3561', + data: { + label: 'All News Channel', + x: -382.4438263637226, + y: 214.08618251894754, + z: 1193.21795073095, + }, + }, + { + id: '3562', + data: { + label: 'Viacom Interactive Services', + x: 236.54567781848345, + y: -563.5733034146697, + z: 1192.556285201936, + }, + }, + { + id: '3563', + data: { + label: 'Paramount Pictures', + x: -208.5392966155549, + y: -864.982476846239, + z: 924.1843570265513, + }, + }, + { + id: '3564', + data: { + label: 'Paramount Television', + x: -446.840132337724, + y: -365.15490189493795, + z: 1265.99933278676, + }, + }, + { + id: '3565', + data: { + label: 'Paramount Home Video', + x: -235.696240492431, + y: 3.653602827355548, + z: 1279.5433894213677, + }, + }, + { + id: '3566', + data: { + label: 'Viacom Productions', + x: -375.4499499737962, + y: -808.1697945520717, + z: 1014.6877446185918, + }, + }, + { + id: '3567', + data: { + label: 'MTV Films', + x: -493.8014262190717, + y: -214.9851716918467, + z: 509.8519115431741, + }, + }, + { + id: '3568', + data: { + label: '', + x: 678.0362517211645, + y: 6284.200177557101, + z: 44.042868191080586, + }, + }, + { + id: '3569', + data: { + label: 'Nickelodeon Studios', + x: -523.9041503680505, + y: -669.8890439452075, + z: 930.3534399896162, + }, + }, + { + id: '3571', + data: { + label: 'Wilshire Court Productions', + x: -396.9033622388953, + y: -659.1899638692072, + z: 561.9181560817502, + }, + }, + { + id: '3572', + data: { + label: 'Spelling Entertainment Group', + x: -410.4439791811404, + y: 17.0961385753874, + z: 1115.6465263815194, + }, + }, + { + id: '3573', + data: { + label: 'Spelling Films', + x: -210.1102252165597, + y: -156.40767678476365, + z: 343.31305187186024, + }, + }, + { + id: '3574', + data: { + label: 'Spelling Television', + x: -240.89505861467393, + y: -465.2281263496121, + z: 1204.6508426061778, + }, + }, + { + id: '3575', + data: { + label: 'Republic Entertainment', + x: 142.97480287482747, + y: -287.78634647977475, + z: 1437.7345305886674, + }, + }, + { + id: '3576', + data: { + label: 'Big Ticket Television', + x: -186.57164988819216, + y: 197.1624806310268, + z: 506.56486276384413, + }, + }, + { + id: '3577', + data: { + label: 'Worldvision Enterprises', + x: -303.0466206334353, + y: -828.1812623370406, + z: 800.4011147659196, + }, + }, + { + id: '3578', + data: { + label: 'Hamilton Projects', + x: -207.06332413966086, + y: -689.2059188739298, + z: 521.9739726491091, + }, + }, + { + id: '3579', + data: { + label: 'Blockbuster Video', + x: -323.93634748375837, + y: -655.7525604249626, + z: 1238.1883238346363, + }, + }, + { + id: '3580', + data: { + label: 'Blockbuster Music', + x: -445.71054149544244, + y: -457.35022562733553, + z: 508.6827041866515, + }, + }, + { + id: '3581', + data: { + label: 'Viacom Entertainment Stores', + x: 106.27082985973341, + y: 30.91919757925784, + z: 526.2904708980238, + }, + }, + { + id: '3582', + data: { + label: 'Paramount Parks', + x: 147.36224913194232, + y: -369.1393001627868, + z: 2251.3611466607545, + }, + }, + { + id: '3583', + data: { + label: 'Paramount�s Carowinds', + x: 222.34650210246318, + y: -593.8627697843162, + z: 2676.450837845413, + }, + }, + { + id: '3584', + data: { + label: 'Paramount�s Great America', + x: 371.4334827821354, + y: -350.6372934820141, + z: 2691.6412221536384, + }, + }, + { + id: '3585', + data: { + label: 'Paramount�s Kings Dominion', + x: -64.69681740208004, + y: -672.5687599197081, + z: 2560.876481273711, + }, + }, + { + id: '3586', + data: { + label: 'Paramount�s Kings Island', + x: -186.27827581557622, + y: -415.22997175051654, + z: 2606.1159366531665, + }, + }, + { + id: '3587', + data: { + label: 'Paramount Canada�s Wonderland', + x: 68.97852195962108, + y: -372.7969621980807, + z: 2750.797327500288, + }, + }, + { + id: '3588', + data: { + label: 'Raging Waters', + x: -65.31465097840173, + y: -147.63779269605587, + z: 2624.1022023773908, + }, + }, + { + id: '3589', + data: { + label: 'Star Trek: The Experience', + x: 224.0440682335566, + y: -133.526567980037, + z: 2671.164901533048, + }, + }, + { + id: '3590', + data: { + label: 'Viacom Consumer Products', + x: -515.5246328504896, + y: -631.3049011478037, + z: 1129.0272539090697, + }, + }, + { + id: '3591', + data: { + label: 'Famous Music', + x: -191.13039349514438, + y: -836.7599930192272, + z: 1132.989331556506, + }, + }, + { + id: '3592', + data: { + label: '', + x: 5969.308244017071, + y: 3179.357517412351, + z: -1824.59933322594, + }, + }, + { + id: '3593', + data: { + label: 'Star Trek Franchise', + x: -583.0359464704445, + y: -486.8449777337813, + z: 726.1218601316992, + }, + }, + { + id: '3594', + data: { + label: 'Anne Schwartz Books', + x: -113.67683633553851, + y: -824.7723195025866, + z: 685.0498907911985, + }, + }, + { + id: '3595', + data: { + label: 'Archway Paperbacks and Minstrel Books', + x: -28.68906302769503, + y: 115.03535295974172, + z: 1178.8963778215625, + }, + }, + { + id: '3596', + data: { + label: 'Lisa Drew Books', + x: 92.64563077094093, + y: -610.6288591415589, + z: 1328.182243313884, + }, + }, + { + id: '3597', + data: { + label: 'Fireside', + x: -129.27002427683647, + y: -667.1991233792686, + z: 1321.5269755075713, + }, + }, + { + id: '3598', + data: { + label: 'The Free Press', + x: 338.0209728145113, + y: -77.68482420343071, + z: 975.4292832163305, + }, + }, + { + id: '3599', + data: { + label: 'MTV Books', + x: 158.44654520771215, + y: -770.4354690739982, + z: 802.7465526858999, + }, + }, + { + id: '3600', + data: { + label: '', + x: 6291.241952995594, + y: -699.0635415356204, + z: -3379.6638938222786, + }, + }, + { + id: '3601', + data: { + label: 'Simon & Schuster Consumer Group', + x: -604.2633804938192, + y: -388.6464556589801, + z: 1118.3431156364134, + }, + }, + { + id: '3602', + data: { + label: 'Simon & Schuster', + x: -508.8419647903146, + y: -599.9213776862717, + z: 1360.3240615497675, + }, + }, + { + id: '3603', + data: { + label: 'Simon & Schuster Audio Books', + x: -92.63668620373008, + y: 156.86957325310544, + z: 873.693415482955, + }, + }, + { + id: '3604', + data: { + label: "Simon & Schuster Children's Publishing", + x: -508.6049902492409, + y: -147.1339252899941, + z: 751.3349230278682, + }, + }, + { + id: '3605', + data: { + label: 'Simon & Schuster Editions', + x: 13.39786095734183, + y: -559.2721314225963, + z: 450.71488228622684, + }, + }, + { + id: '3606', + data: { + label: 'Simon & Schuster Interactive', + x: -117.72770943290601, + y: 206.01754826271176, + z: 775.645544346755, + }, + }, + { + id: '3607', + data: { + label: 'Simon & Schuster Interactive Distribution', + x: 121.12818746742309, + y: -82.68653885040587, + z: 1373.3802533836347, + }, + }, + { + id: '3608', + data: { + label: 'Simon & Schuster Libros en Espanol', + x: 102.29068086551756, + y: 154.59432772819778, + z: 825.3001670657119, + }, + }, + { + id: '3609', + data: { + label: 'Pocket Books', + x: -141.78912004071356, + y: -125.72420553160677, + z: 1430.0933616857121, + }, + }, + { + id: '3610', + data: { + label: 'Scribner', + x: 1.2900808542068338, + y: -371.1182482837907, + z: 1382.5018681073093, + }, + }, + { + id: '3611', + data: { + label: 'Star Trek', + x: -275.96362017433387, + y: 119.09561514493562, + z: 608.3305585439286, + }, + }, + { + id: '3612', + data: { + label: 'Touchstone', + x: 563.7376695713673, + y: -3110.4379040035856, + z: -3469.5355390512527, + }, + }, + { + id: '3613', + data: { + label: 'Washington Square Press', + x: -95.44423999302322, + y: 45.45780397220503, + z: 616.7228354887227, + }, + }, + { + id: '3614', + data: { + label: 'Paramount Theaters', + x: -663.586521183301, + y: -303.2176665854294, + z: 818.3273902716127, + }, + }, + { + id: '3615', + data: { + label: 'Paramount (Europe)', + x: -257.37256746869053, + y: -319.35129698184437, + z: 1407.322850721156, + }, + }, + { + id: '3616', + data: { + label: 'Famous Players', + x: -128.61560668057106, + y: 185.02464498326606, + z: 755.7874706203709, + }, + }, + { + id: '3617', + data: { + label: 'CBS Television', + x: -103.95339737594804, + y: -3183.8117674755067, + z: -4342.491554729748, + }, + }, + { + id: '3618', + data: { + label: 'WCBS TV - New York', + x: -211.30985333274515, + y: 266.23238999931755, + z: 718.0377378704694, + }, + }, + { + id: '3619', + data: { + label: 'KCBS TV - Los Angeles', + x: -44.183733157290014, + y: -46.98837672556812, + z: 434.4524765296166, + }, + }, + { + id: '3620', + data: { + label: 'WBBM TV - Chicago', + x: -542.4156035236857, + y: 0.3045670380962582, + z: 897.6276315460473, + }, + }, + { + id: '3621', + data: { + label: 'WCCO TV - Minneapolis', + x: -582.3571677621155, + y: -330.6197179889223, + z: 640.8103161994467, + }, + }, + { + id: '3622', + data: { + label: 'WFRV TV - Green Bay', + x: -327.82842298498855, + y: 77.95049340296653, + z: 861.8196248714403, + }, + }, + { + id: '3623', + data: { + label: 'WWJ TV - Detroit', + x: -64.05233392565461, + y: 406.2551666369721, + z: 836.4070711584225, + }, + }, + { + id: '3624', + data: { + label: 'WJZ TV - Baltimore', + x: 126.00001534910216, + y: -370.1057711594491, + z: 477.5239229687246, + }, + }, + { + id: '3625', + data: { + label: 'WBZ TV - Boston', + x: 294.6409536057946, + y: -377.934030938258, + z: 1256.9138267980577, + }, + }, + { + id: '3626', + data: { + label: 'KCNC TV - Denver', + x: -119.21388332701362, + y: -489.65425818522397, + z: 1443.5705717666049, + }, + }, + { + id: '3627', + data: { + label: 'WFOR TV - Miami', + x: -30.923965322149826, + y: -260.6624318139805, + z: 402.00496233779774, + }, + }, + { + id: '3628', + data: { + label: 'KYW TV - Philadelphia', + x: -363.98263747494406, + y: 177.28756281934625, + z: 716.1693327148871, + }, + }, + { + id: '3629', + data: { + label: 'KDKA TV - Pittsburgh', + x: -390.15630759634365, + y: -152.97734899630723, + z: 1159.0914696793845, + }, + }, + { + id: '3630', + data: { + label: 'KUTV TV - Salt Lake City', + x: -96.45264959044277, + y: 76.16284960747495, + z: 1355.9331298254112, + }, + }, + { + id: '3631', + data: { + label: 'KPIX TV - San Francisco', + x: -153.2384314742721, + y: 281.6388596985396, + z: 959.1532641010053, + }, + }, + { + id: '3632', + data: { + label: 'KEYE TV (Austin)', + x: -649.3447406702127, + y: -483.26927168115543, + z: 927.7830809845802, + }, + }, + { + id: '3633', + data: { + label: 'TNN: The National Network', + x: -289.74020177597095, + y: -309.37900319469736, + z: 410.71904193200925, + }, + }, + { + id: '3634', + data: { + label: 'CMT: Country Music Television', + x: 343.6401172347376, + y: -415.46045381237593, + z: 852.5539968308459, + }, + }, + { + id: '3635', + data: { + label: 'Group W Network Services', + x: 971.4797174446408, + y: -583.0698627721823, + z: 655.1480855000847, + }, + }, + { + id: '3636', + data: { + label: 'CBS.com', + x: 252.97144640374447, + y: -48.34433802774998, + z: 669.5507262471875, + }, + }, + { + id: '3637', + data: { + label: 'CBSNews.com', + x: 147.784212016016, + y: 178.77477376948676, + z: 1135.5837346811616, + }, + }, + { + id: '3638', + data: { + label: 'Office.com', + x: -699.3604928890871, + y: 66.71868043822428, + z: 692.1119733635132, + }, + }, + { + id: '3639', + data: { + label: '', + x: -1094.4051861702878, + y: 5216.523262273849, + z: 1763.2042675185173, + }, + }, + { + id: '3640', + data: { + label: 'Big Entertainment - Hollywood.com', + x: 250.5443533386809, + y: 92.70678381005284, + z: 938.1778831716184, + }, + }, + { + id: '3641', + data: { + label: 'Contentville.com', + x: 500.7600545974271, + y: -217.8744819738025, + z: 452.6317686304559, + }, + }, + { + id: '3642', + data: { + label: 'CBS RADIO - Infinity Broadcasting', + x: 400.15995703580853, + y: -1713.26894825227, + z: -2457.5621200336245, + }, + }, + { + id: '3643', + data: { + label: 'WAOK-AM (Atlanta)', + x: 587.6042708305528, + y: -1358.7507991218993, + z: -3170.812123361507, + }, + }, + { + id: '3644', + data: { + label: 'WVEE-FM (Atlanta)', + x: 440.665982923166, + y: -1248.0471027119772, + z: -3119.4855912436005, + }, + }, + { + id: '3645', + data: { + label: 'WZGC-FM (Atlanta)', + x: 217.83847624838057, + y: -1496.167124928218, + z: -1321.250505597548, + }, + }, + { + id: '3646', + data: { + label: 'KJCE-AM (Austin)', + x: 889.7401166222844, + y: -1668.7452719128858, + z: -2422.1163612721084, + }, + }, + { + id: '3647', + data: { + label: 'KAMX-FM (Austin)', + x: 917.4823424392083, + y: -1465.3851765004968, + z: -2269.2113157547983, + }, + }, + { + id: '3648', + data: { + label: 'KKMJ-FM (Austin)', + x: 441.296908650971, + y: -1345.8617044448993, + z: -2029.2188056362959, + }, + }, + { + id: '3649', + data: { + label: 'KQBT-FM (Austin)', + x: 676.7955022470557, + y: -1465.3004887026796, + z: -2817.9383507980606, + }, + }, + { + id: '3650', + data: { + label: 'WJFK-AM (Baltimore)', + x: 980.641034815615, + y: -1388.8828016920554, + z: -2618.3203623451614, + }, + }, + { + id: '3651', + data: { + label: 'WLIF-FM (Baltimore)', + x: 1044.8941739027694, + y: -1867.106272880389, + z: -2689.6943406480877, + }, + }, + { + id: '3652', + data: { + label: 'WXYV-FM (Baltimore)', + x: 888.5149077519951, + y: -1315.279127743674, + z: -2786.678260384689, + }, + }, + { + id: '3653', + data: { + label: 'WQSR-FM (Baltimore)', + x: 392.6755554741065, + y: -1081.052065160947, + z: -2435.9562264410156, + }, + }, + { + id: '3654', + data: { + label: 'WWMX-FM (Baltimore)', + x: 841.0796076615561, + y: -1609.5195496464848, + z: -2742.341491024056, + }, + }, + { + id: '3655', + data: { + label: 'WBZ-AM (Boston)', + x: 913.6523488399587, + y: -1388.8620094080045, + z: -2944.299360916787, + }, + }, + { + id: '3656', + data: { + label: 'WODS-FM (Boston)', + x: 125.75317233344896, + y: -1469.255477214851, + z: -2004.4727096354236, + }, + }, + { + id: '3657', + data: { + label: 'WBCN-FM (Boston)', + x: 691.4749354270125, + y: -1164.330466604663, + z: -2892.553253001368, + }, + }, + { + id: '3658', + data: { + label: 'WBMX-FM (Boston)', + x: 944.7316714417522, + y: -1399.545500482721, + z: -2473.080664340343, + }, + }, + { + id: '3659', + data: { + label: 'WZLZ-FM (Boston)', + x: 323.5880586931738, + y: -1200.6173723664954, + z: -2247.6843679584194, + }, + }, + { + id: '3660', + data: { + label: 'WECK-AM (Buffalo)', + x: 1060.7990860785328, + y: -1613.044396469547, + z: -2684.880714013344, + }, + }, + { + id: '3661', + data: { + label: 'WBLK-FM (Buffalo)', + x: 815.3830509507769, + y: -1417.0815884634508, + z: -3077.633837350577, + }, + }, + { + id: '3662', + data: { + label: 'WJYE-FM (Buffalo)', + x: 549.470812879043, + y: -1133.536571618625, + z: -2302.851566031958, + }, + }, + { + id: '3663', + data: { + label: 'WLCE-FM (Buffalo)', + x: 657.0805853893639, + y: -1720.5542058044844, + z: -2898.6717138334716, + }, + }, + { + id: '3664', + data: { + label: 'WYRK-FM (Buffalo)', + x: 847.5571847308564, + y: -1161.7193731475584, + z: -2653.499955133128, + }, + }, + { + id: '3665', + data: { + label: 'WFNZ-AM (Charlotte)', + x: 136.41038285685045, + y: -1176.5599048623164, + z: -2401.763573172684, + }, + }, + { + id: '3666', + data: { + label: 'WGIV-AM (Charlotte)', + x: 891.7707440382, + y: -1547.2858524171934, + z: -2989.627568102153, + }, + }, + { + id: '3667', + data: { + label: 'WBAV-FM (Charlotte)', + x: -27.407036933817647, + y: -1901.9068586348924, + z: -2380.430307981224, + }, + }, + { + id: '3668', + data: { + label: 'WNKS-FM (Charlotte)', + x: 654.0790175199262, + y: -1113.5616292712002, + z: -2727.4853639656285, + }, + }, + { + id: '3669', + data: { + label: 'WPEG-FM (Charlotte)', + x: 1043.350616104451, + y: -1830.2895584021835, + z: -2488.088306425071, + }, + }, + { + id: '3670', + data: { + label: 'WSOC-FM (Charlotte)', + x: 1094.2477915426828, + y: -1612.3075826643526, + z: -2493.772774788978, + }, + }, + { + id: '3671', + data: { + label: 'WSSS-FM (Charlotte)', + x: 796.2000284256835, + y: -1364.8944897607153, + z: -2127.905418926352, + }, + }, + { + id: '3672', + data: { + label: 'WBBM-AM/FM (Chicago)', + x: 489.9957493969972, + y: -1090.1685131331662, + z: -2861.4665964692713, + }, + }, + { + id: '3673', + data: { + label: 'WMAQ-AM (Chicago)', + x: 745.3601098813107, + y: -1414.9210914418481, + z: -2363.3522642363655, + }, + }, + { + id: '3674', + data: { + label: 'WSCR-AM (Chicago)', + x: -61.93228298267944, + y: -1281.0535417267135, + z: -2757.579193360149, + }, + }, + { + id: '3675', + data: { + label: 'WXRT-FM (Chicago)', + x: -176.20974674752028, + y: -1475.2584811097445, + z: -2281.7225270949725, + }, + }, + { + id: '3676', + data: { + label: 'WCKG-FM (Chicago)', + x: 610.6261699281022, + y: -1304.3194243318264, + z: -2104.525598671822, + }, + }, + { + id: '3677', + data: { + label: 'WJMK-FM (Chicago)', + x: 566.4575206536978, + y: -1060.1966399236806, + z: -2568.3334498926724, + }, + }, + { + id: '3678', + data: { + label: 'WUSN-FM (Chicago)', + x: 112.33423178519044, + y: -1424.7615765511057, + z: -1369.6789144604195, + }, + }, + { + id: '3679', + data: { + label: 'WGRR-FM (Cincinnati)', + x: 717.7242330323714, + y: -1315.4137210433685, + z: -2648.6676396795588, + }, + }, + { + id: '3680', + data: { + label: 'WKRQ-FM (Cincinnati)', + x: 880.7686858584077, + y: -1908.2536873392594, + z: -2777.6040888740235, + }, + }, + { + id: '3681', + data: { + label: 'WYLX-FM (Cincinnati)', + x: 402.43598822825044, + y: -1235.9679256340735, + z: -2574.7375304077354, + }, + }, + { + id: '3682', + data: { + label: 'WLVQ-FM (Columbus)', + x: 644.1900201444562, + y: -1420.1464138815975, + z: -3017.1469239216144, + }, + }, + { + id: '3683', + data: { + label: 'WAZU-FM (Columbus)', + x: 249.6606699935543, + y: -1294.2652785460873, + z: -2097.1821566585686, + }, + }, + { + id: '3684', + data: { + label: 'WHOK-FM (Columbus)', + x: 344.38643235487564, + y: -2066.3752302876533, + z: -3091.241513929424, + }, + }, + { + id: '3685', + data: { + label: 'KHVN-AM (Dallas)', + x: 410.19589991062634, + y: -1306.3590339692844, + z: -2915.4002440566537, + }, + }, + { + id: '3686', + data: { + label: 'KLUV-FM (Dallas)', + x: 1008.9936810727261, + y: -1667.440909166334, + z: -2824.3003366023277, + }, + }, + { + id: '3687', + data: { + label: 'KOAI-FM (Dallas)', + x: 196.21337889964462, + y: -1654.463818854789, + z: -3133.8754149395527, + }, + }, + { + id: '3688', + data: { + label: 'KOOO-AM (Dallas)', + x: -52.06496056005908, + y: -1251.0034768454946, + z: -2493.2448820425543, + }, + }, + { + id: '3689', + data: { + label: 'KRBV-FM (Dallas)', + x: 348.19630757189316, + y: -1459.50364085309, + z: -3196.6670184607383, + }, + }, + { + id: '3690', + data: { + label: 'KRLD-AM (Dallas)', + x: 323.1772145408162, + y: -1139.6869097611775, + z: -2866.4947633524407, + }, + }, + { + id: '3691', + data: { + label: 'KVIL-FM (Dallas)', + x: 647.6791318780815, + y: -1228.4311542844584, + z: -2427.8776927766876, + }, + }, + { + id: '3692', + data: { + label: 'KYNG-FM (Dallas)', + x: -237.21199902587853, + y: -1653.2320577422176, + z: -2575.3014458836597, + }, + }, + { + id: '3693', + data: { + label: 'WWJ-AM (Detroit)', + x: 315.4504458549426, + y: -1061.390637584078, + z: -2611.6866986459877, + }, + }, + { + id: '3694', + data: { + label: 'WVMV-FM (Detroit)', + x: 543.2358723105825, + y: -1820.6885457238395, + z: -3196.4050587440847, + }, + }, + { + id: '3695', + data: { + label: 'WKRK-FM (Detroit)', + x: -58.825306047276634, + y: -1630.9990212920138, + z: -2368.1767091639317, + }, + }, + { + id: '3696', + data: { + label: 'WOMC-FM (Detroit)', + x: 48.46637478221195, + y: -1364.3064113955784, + z: -3037.820626856988, + }, + }, + { + id: '3697', + data: { + label: 'WXYT-AM (Detroit)', + x: 832.1570351426402, + y: -1190.6066823476913, + z: -2364.108323367827, + }, + }, + { + id: '3698', + data: { + label: 'WYCD-FM (Detroit)', + x: 92.97278491979891, + y: -1256.1570751353004, + z: -2251.4705016666308, + }, + }, + { + id: '3699', + data: { + label: 'KMJ-AM (Fresno)', + x: 618.1008205745237, + y: -1593.0752979222875, + z: -3197.206806847034, + }, + }, + { + id: '3700', + data: { + label: 'KOOR-AM (Fresno)', + x: 900.261863710866, + y: -1926.3689364811332, + z: -2975.8696098854157, + }, + }, + { + id: '3701', + data: { + label: 'KNAX-FM (Fresno)', + x: 816.8352702945997, + y: -2125.1061649087733, + z: -2837.295855412571, + }, + }, + { + id: '3702', + data: { + label: 'KOQO-FM (Fresno)', + x: 160.754753188606, + y: -1644.8865282834222, + z: -2925.348555722622, + }, + }, + { + id: '3703', + data: { + label: 'KRNC-FM (Fresno)', + x: 1018.8924504492189, + y: -1658.6295764812642, + z: -2210.9187718166213, + }, + }, + { + id: '3704', + data: { + label: 'KSKS-FM (Fresno)', + x: 166.36168839820874, + y: -1144.5581978764317, + z: -2751.3947704608327, + }, + }, + { + id: '3705', + data: { + label: 'KVSR-FM (Fresno)', + x: 218.41287518254347, + y: -1380.851834907942, + z: -3091.8828275531746, + }, + }, + { + id: '3706', + data: { + label: 'WTIC-AM/FM (Hartford)', + x: 125.36707548063099, + y: -1169.188499736495, + z: -2588.626916883866, + }, + }, + { + id: '3707', + data: { + label: 'WZMK-FM (Hartford)', + x: -202.6722429983383, + y: -1407.8492027588288, + z: -2510.870998399952, + }, + }, + { + id: '3708', + data: { + label: 'WRCH-FM (Hartford)', + x: 535.1467928879414, + y: -2039.0239200746826, + z: -1992.0887702391929, + }, + }, + { + id: '3709', + data: { + label: 'KILT-AM/FM (Houston)', + x: 915.663853252877, + y: -1733.1637431861866, + z: -3002.5220691814575, + }, + }, + { + id: '3710', + data: { + label: 'KIKK-AM/FM (Houston)', + x: 232.05624064246524, + y: -1702.9523539424554, + z: -1912.9211449198053, + }, + }, + { + id: '3711', + data: { + label: 'KBEQ-FM (Kansas City)', + x: -76.28650668211517, + y: -2160.86304792134, + z: -2353.992672836904, + }, + }, + { + id: '3712', + data: { + label: 'KFKF-FM (Kansas City)', + x: 57.4477869874595, + y: -1919.5960175118341, + z: -1976.7309948788889, + }, + }, + { + id: '3713', + data: { + label: 'KXMV-FM (Kansas City)', + x: 876.8017115901484, + y: -1900.6099942531785, + z: -2116.8884873120332, + }, + }, + { + id: '3714', + data: { + label: 'KOZN-FM (Kansas City)', + x: 166.87335339959662, + y: -1217.3283125365797, + z: -2924.918022947141, + }, + }, + { + id: '3715', + data: { + label: 'KSFN-AM (Las Vegas)', + x: -272.20294290684853, + y: -1676.3473533627973, + z: -2319.954268401483, + }, + }, + { + id: '3716', + data: { + label: 'KXNT-AM (Las Vegas)', + x: -41.29325006338711, + y: -1484.6776910634203, + z: -2518.5585952590204, + }, + }, + { + id: '3717', + data: { + label: 'KLUC-FM (Las Vegas)', + x: 848.0830172533056, + y: -1688.2181963140997, + z: -2113.9439617630264, + }, + }, + { + id: '3718', + data: { + label: 'KMXB-FM (Las Vegas)', + x: 259.9258732295089, + y: -1884.591890538835, + z: -1879.7391220468257, + }, + }, + { + id: '3719', + data: { + label: 'KMZQ-FM (Las Vegas)', + x: 442.4857048678393, + y: -1473.6437257670545, + z: -2916.4497382250784, + }, + }, + { + id: '3720', + data: { + label: 'KXTE-FM (Las Vegas)', + x: 779.1199628780092, + y: -1530.8740398881562, + z: -2085.440940909762, + }, + }, + { + id: '3721', + data: { + label: 'KNX-AM (Los Angeles)', + x: -45.84070938659584, + y: -1461.4004037631726, + z: -2154.1439073558663, + }, + }, + { + id: '3722', + data: { + label: 'KFWB-AM (Los Angeles)', + x: 744.8265009038805, + y: -2011.7485474480663, + z: -2674.8045906971843, + }, + }, + { + id: '3723', + data: { + label: 'KCBS-FM (Los Angeles)', + x: 765.9040206147412, + y: -1707.2471431508052, + z: -3126.598356215746, + }, + }, + { + id: '3724', + data: { + label: 'KTWV-FM (Los Angeles)', + x: 288.3240648088045, + y: -2294.8473625302145, + z: -2194.563735048398, + }, + }, + { + id: '3725', + data: { + label: 'KLSX-FM (Los Angeles)', + x: 851.4809868229987, + y: -2185.7660494227403, + z: -2409.3645655263144, + }, + }, + { + id: '3726', + data: { + label: 'KRLA-AM (Los Angeles)', + x: -160.27147833899787, + y: -1872.5154948990703, + z: -2232.7070063100805, + }, + }, + { + id: '3727', + data: { + label: 'KROQ-FM (Los Angeles)', + x: 325.3202065613651, + y: -1849.0405184937194, + z: -3169.6749977061963, + }, + }, + { + id: '3728', + data: { + label: 'KRTH-FM (Los Angeles)', + x: 370.95326572031075, + y: -1646.5640705577214, + z: -3229.7210791374982, + }, + }, + { + id: '3729', + data: { + label: 'WCCO-AM (Minneapolis)', + x: 496.1553417229705, + y: -1936.4159126508164, + z: -3027.2539833262467, + }, + }, + { + id: '3730', + data: { + label: 'KSGS-AM (Minneapolis)', + x: -5.351229910035068, + y: -2051.331438435869, + z: -2154.4543742291758, + }, + }, + { + id: '3731', + data: { + label: 'KMJZ-FM (Minneapolis)', + x: 704.2526363610738, + y: -1799.472337450861, + z: -1951.755987382994, + }, + }, + { + id: '3732', + data: { + label: 'WLTE-FM (Minneapolis)', + x: -200.06778501762733, + y: -1831.3052915328203, + z: -2602.5999377804183, + }, + }, + { + id: '3733', + data: { + label: 'KLUE-FM (Monterey-Salinas)', + x: -3.6565918110413884, + y: -2192.4367157127144, + z: -2767.4103604876163, + }, + }, + { + id: '3734', + data: { + label: 'WCBS-AM/FM (New York)', + x: 448.24188931652674, + y: -1658.8907410395216, + z: -1895.5438547778547, + }, + }, + { + id: '3735', + data: { + label: 'WINS-AM (New York)', + x: 671.3985050994347, + y: -2290.9126449805785, + z: -2631.4260870029784, + }, + }, + { + id: '3736', + data: { + label: 'WNEW-FM (New York)', + x: 358.37559580833886, + y: -1495.8327880740148, + z: -1944.1790575483471, + }, + }, + { + id: '3737', + data: { + label: 'WFAN-AM (New York)', + x: -111.75282677886035, + y: -1655.9235291614386, + z: -2108.931918835809, + }, + }, + { + id: '3738', + data: { + label: 'WXRK-FM (New York)', + x: 1003.045218831536, + y: -2044.009155701993, + z: -2524.2234798393933, + }, + }, + { + id: '3739', + data: { + label: 'KEZN-FM (Palm Springs)', + x: 1015.9201677863379, + y: -1926.3272340974665, + z: -2283.9675590236347, + }, + }, + { + id: '3740', + data: { + label: 'KYW-AM (Philadelphia)', + x: 486.93582143495985, + y: -1891.8067783285107, + z: -1879.5166127930463, + }, + }, + { + id: '3741', + data: { + label: 'WPHT-AM (Philadelphia)', + x: 658.2851141462704, + y: -1592.6695834966754, + z: -1929.4013906009875, + }, + }, + { + id: '3742', + data: { + label: 'WOGL-FM (Philadelphia)', + x: 604.3569015031302, + y: -2246.6443914935317, + z: -2817.9760780451447, + }, + }, + { + id: '3743', + data: { + label: 'WIP-AM (Philadelphia)', + x: 868.1319790080121, + y: -2077.4645094663456, + z: -2219.3491728708186, + }, + }, + { + id: '3744', + data: { + label: 'WYSP-FM (Philadelphia)', + x: 122.63379452457744, + y: -2206.142875676494, + z: -2386.5943029575556, + }, + }, + { + id: '3745', + data: { + label: 'KDKA-AM (Pittsburgh)', + x: 648.2145583341922, + y: -2313.5122148643695, + z: -2252.578132212406, + }, + }, + { + id: '3746', + data: { + label: 'WBZZ-FM (Pittsburgh)', + x: 843.8296567012096, + y: -1883.736744856908, + z: -2508.5749617021647, + }, + }, + { + id: '3747', + data: { + label: 'WDSY-FM (Pittsburgh)', + x: 3.543220580845163, + y: -1680.395530826164, + z: -3098.5874122559258, + }, + }, + { + id: '3748', + data: { + label: 'WZPT-FM (Pittsburgh)', + x: 146.41893171037984, + y: -1364.825857208878, + z: -2723.291187908504, + }, + }, + { + id: '3749', + data: { + label: 'KUPL-AM (Portland)', + x: -85.68497977796011, + y: -1828.5591441665347, + z: -2053.3247380233206, + }, + }, + { + id: '3750', + data: { + label: 'KBBT-FM (Portland)', + x: 608.8329091730076, + y: -2157.1044322401917, + z: -2424.592097113407, + }, + }, + { + id: '3751', + data: { + label: 'KINK-FM (Portland)', + x: 423.83995867803833, + y: -1603.2577158837819, + z: -3015.5715700757637, + }, + }, + { + id: '3752', + data: { + label: 'KKJZ-FM (Portland)', + x: 654.4665516933194, + y: -2101.5378829511437, + z: -3017.4858153424116, + }, + }, + { + id: '3753', + data: { + label: 'KUFO-FM (Portland)', + x: 57.7241742758009, + y: -1672.6589882997212, + z: -1990.069987266065, + }, + }, + { + id: '3754', + data: { + label: 'KUPL-FM (Portland)', + x: 367.0805563835377, + y: -2337.553781304645, + z: -2761.2910702358035, + }, + }, + { + id: '3755', + data: { + label: 'KFRG-FM (Riverside)', + x: 727.2628769925645, + y: -1897.4285773084769, + z: -3075.095571605075, + }, + }, + { + id: '3756', + data: { + label: 'KXFG-FM (Riverside)', + x: 691.8843065927915, + y: -2145.65202231995, + z: -2145.6227215411664, + }, + }, + { + id: '3757', + data: { + label: 'WCMF-FM (Rochester)', + x: 111.82041964989804, + y: -1975.6731056630404, + z: -2793.4092350278074, + }, + }, + { + id: '3758', + data: { + label: 'WPXY-FM (Rochester)', + x: -239.33606996135384, + y: -1912.9979493495875, + z: -2391.0178827662357, + }, + }, + { + id: '3759', + data: { + label: 'WRMM-FM (Rochester)', + x: -180.1816465962803, + y: -1461.7337745921018, + z: -2712.775869525804, + }, + }, + { + id: '3760', + data: { + label: 'WZNE-FM (Rochester)', + x: 63.78809902639862, + y: -2079.3801175375793, + z: -2564.392188992578, + }, + }, + { + id: '3761', + data: { + label: 'KHTK-AM (Sacramento)', + x: 134.47366862728703, + y: -2125.8161564272204, + z: -2012.953565975942, + }, + }, + { + id: '3762', + data: { + label: 'KQPT-AM (Sacramento)', + x: 458.90444312046594, + y: -2323.4715773700427, + z: -2269.7746028769625, + }, + }, + { + id: '3763', + data: { + label: 'KZZO-FM (Sacramento)', + x: 870.3100324999233, + y: -2217.038261922804, + z: -2667.6306496215043, + }, + }, + { + id: '3764', + data: { + label: 'KNCI-FM (Sacramento)', + x: -99.00300834990345, + y: -1653.574423377983, + z: -2947.6274974625753, + }, + }, + { + id: '3765', + data: { + label: 'KRAK-FM (Sacramento)', + x: 19.32392915759087, + y: -1730.7306308455954, + z: -2769.9040171579272, + }, + }, + { + id: '3766', + data: { + label: 'KSFM-FM (Sacramento)', + x: -209.58450042052527, + y: -1712.5201010233282, + z: -2791.1691840215867, + }, + }, + { + id: '3767', + data: { + label: 'KYMX-FM (Sacramento)', + x: 452.97769617669394, + y: -2207.6783716384884, + z: -2051.2684890758533, + }, + }, + { + id: '3768', + data: { + label: 'KEZR-FM (San Jose)', + x: -146.81999300821062, + y: -1989.2430482762431, + z: -2729.6870160988306, + }, + }, + { + id: '3769', + data: { + label: 'KBAY-FM (San Jose)', + x: 143.9555276748523, + y: -1886.4650100340527, + z: -3085.903558793635, + }, + }, + { + id: '3770', + data: { + label: 'KCBS-AM (San Francisco)', + x: 620.7641902718059, + y: -1967.9037282108516, + z: -2860.5965481575095, + }, + }, + { + id: '3771', + data: { + label: 'KFRC-AM/FM (San Francisco)', + x: 235.41270406854053, + y: -2158.780027034869, + z: -2770.783008457995, + }, + }, + { + id: '3772', + data: { + label: 'KITS-FM (San Francisco)', + x: 150.2677646498196, + y: -2297.026191425871, + z: -2614.681288600464, + }, + }, + { + id: '3773', + data: { + label: 'KYCY-FM/AM (San Francisco)', + x: 703.1158838709672, + y: -1980.2777570205592, + z: -2000.6267294239333, + }, + }, + { + id: '3774', + data: { + label: 'KLLC-FM (San Francisco)', + x: -73.38769377778078, + y: -1446.1303663952376, + z: -2936.302493850064, + }, + }, + { + id: '3775', + data: { + label: 'KRPM-AM (Seattle)', + x: 444.0262518389306, + y: -2155.0442741015436, + z: -2655.959273423652, + }, + }, + { + id: '3776', + data: { + label: 'KBKS-FM (Seattle)', + x: 403.7542956418546, + y: -2341.9166365731385, + z: -2549.112558046204, + }, + }, + { + id: '3777', + data: { + label: 'KMPS-FM (Seattle)', + x: -49.34828228796468, + y: -1956.632799955316, + z: -2945.247305507027, + }, + }, + { + id: '3778', + data: { + label: 'KYCW-FM (Seattle)', + x: 354.25599923421674, + y: -1994.6385651057808, + z: -2881.8306712594685, + }, + }, + { + id: '3779', + data: { + label: 'KZOK-FM (Seattle)', + x: 432.1309580757352, + y: -2212.555874159403, + z: -2940.601670808673, + }, + }, + { + id: '3780', + data: { + label: 'KEZK-FM (St. Louis)', + x: 321.63854890698593, + y: -2080.578723643306, + z: -1979.5256374816495, + }, + }, + { + id: '3781', + data: { + label: 'KYKY-FM (St. Louis)', + x: 231.77219963030163, + y: -2367.848906241193, + z: -2415.6534440752844, + }, + }, + { + id: '3782', + data: { + label: 'KMOX-AM (St. Louis)', + x: 169.12022671010442, + y: -2098.7135715592212, + z: -2980.955874196532, + }, + }, + { + id: '3783', + data: { + label: 'WQYK-AM/FM (Tampa)', + x: 87.42713002108262, + y: -2231.8399373317425, + z: -2188.3847768398105, + }, + }, + { + id: ' D.C.)', + data: { + label: 'WHFS-FM (Washington', + x: -2444.647662325901, + y: 4215.026674960232, + z: 986.3725007375789, + }, + }, + { + id: '3788', + data: { + label: 'WEAT-FM (West Palm Beach)', + x: 567.1463749796554, + y: -2372.3228627875214, + z: -2468.788839201788, + }, + }, + { + id: '3789', + data: { + label: 'WIRK-FM (West Palm Beach)', + x: -149.123857786398, + y: -2091.21807557855, + z: -2542.7385420176674, + }, + }, + { + id: '3790', + data: { + label: 'Metro Networks', + x: -319.38562371127693, + y: -618.5102308052146, + z: 1511.0089169487555, + }, + }, + { + id: '3791', + data: { + label: 'TDI Worldwide', + x: -77.07359588004653, + y: -801.458383411825, + z: 253.18982846678986, + }, + }, + { + id: '3792', + data: { + label: 'Outdoor Systems', + x: 180.7422433890481, + y: -36.81332979890643, + z: 1173.6015537817839, + }, + }, + { + id: '3793', + data: { + label: 'CBS Production', + x: 27.503657601710106, + y: -851.7249454362291, + z: 973.7010495593835, + }, + }, + { + id: '3794', + data: { + label: 'EYEMARK', + x: 247.71816615467114, + y: -693.2838043966519, + z: 988.0848120949362, + }, + }, + { + id: '3795', + data: { + label: 'King World Productions', + x: -354.3506033366528, + y: -115.66026657946307, + z: 560.8239872668722, + }, + }, + { + id: '3796', + data: { + label: 'Charter Communications', + x: 3316.387154856064, + y: 1170.1168177510037, + z: 1960.1552111340768, + }, + }, + { + id: '3797', + data: { + label: 'Seattle Seahawks', + x: 4453.585379902715, + y: 1295.721465523564, + z: 1652.6341326746783, + }, + }, + { + id: '3798', + data: { + label: 'Portland Trailblazers', + x: 4188.630610973809, + y: 672.8893590589086, + z: 2166.737814967935, + }, + }, + { + id: '3799', + data: { + label: '', + x: -852.5626428530712, + y: 3071.2277233471787, + z: -3387.206710869581, + }, + }, + { + id: '3800', + data: { + label: 'The Washington Post', + x: 3758.0923945705067, + y: 136.47638973451174, + z: -1287.4343090177467, + }, + }, + { + id: '3801', + data: { + label: 'The Washington Post National Weekly Edition', + x: 4279.6335844423265, + y: 354.48045652162233, + z: -1246.3000272334068, + }, + }, + { + id: '3802', + data: { + label: 'The Washington Post Writers Group (syndication)', + x: 4532.262229132517, + y: 187.49911612251552, + z: -1217.4617094565626, + }, + }, + { + id: '3804', + data: { + label: 'Gazette Newspapers', + x: -3824.55665411252, + y: 2740.9411390462515, + z: -567.6375640174946, + }, + }, + { + id: '3805', + data: { + label: '', + x: 2438.8996497460353, + y: 4631.238369930602, + z: -3229.263786267844, + }, + }, + { + id: '3806', + data: { + label: '', + x: 5651.019050168699, + y: -1593.9890342705564, + z: 4220.1062742182885, + }, + }, + { + id: '3807', + data: { + label: 'Enterprise Newspapers', + x: 4117.601479949624, + y: 333.8830062515419, + z: -1056.1811940707605, + }, + }, + { + id: '3808', + data: { + label: 'Newsweek', + x: 3739.741849486307, + y: 215.6630777664795, + z: -1517.7805488276153, + }, + }, + { + id: '3809', + data: { + label: 'Newsweek International', + x: 4400.114269433035, + y: 281.48507793685087, + z: -1070.8759875426285, + }, + }, + { + id: '3810', + data: { + label: 'Newsweek Japan (Newsweek Nihon Ban)', + x: 4128.286030843218, + y: -75.93181092115395, + z: -1601.387774745866, + }, + }, + { + id: '3811', + data: { + label: 'Newsweek Korea (Newsweek Hankuk Pan)', + x: 3914.1103543115632, + y: 311.4227133531773, + z: -1279.5595813286548, + }, + }, + { + id: '3812', + data: { + label: 'Newsweek En Espanol', + x: 4042.0438385540087, + y: 66.68879833392847, + z: -1673.803890611647, + }, + }, + { + id: '3813', + data: { + label: 'Itogi', + x: 4255.325972367904, + y: -425.2781063751633, + z: -1463.0670895592616, + }, + }, + { + id: '3814', + data: { + label: 'Post-Newsweek Business Information', + x: 4427.812897035134, + y: 184.93298996421717, + z: -1421.833560482083, + }, + }, + { + id: '3815', + data: { + label: 'Post-Newsweek Stations', + x: 3836.090418943665, + y: -92.53824071750596, + z: -1558.3617773991887, + }, + }, + { + id: '3816', + data: { + label: 'WDIV TV (Detroit) (NBC)', + x: 4498.019812933581, + y: -242.82906659700515, + z: -1381.8075466600558, + }, + }, + { + id: '3817', + data: { + label: 'KPRC TV (Houston) (NBC)', + x: 4289.323193361473, + y: -27.64151117985143, + z: -1692.6785788108962, + }, + }, + { + id: '3818', + data: { + label: 'WPLG TV (Miami) (ABC)', + x: 3891.4451702456877, + y: 111.34481134733994, + z: -1536.5411800555235, + }, + }, + { + id: '3819', + data: { + label: 'WKMG TV (Orlando) (CBS)', + x: 4433.982528058285, + y: -36.77166419727464, + z: -1555.8174277402238, + }, + }, + { + id: '3820', + data: { + label: 'KSAT TV (San Antonio) (ABC)', + x: 3994.6933079997875, + y: -374.47294441481205, + z: -1523.0441304545068, + }, + }, + { + id: '3821', + data: { + label: 'WJXT TV (Jacksonville) (CBS)', + x: 4146.492250252592, + y: 327.9687028674551, + z: -1413.2915511181957, + }, + }, + { + id: '3822', + data: { + label: '', + x: 4664.952389594076, + y: 5140.685241034306, + z: 2350.719034598999, + }, + }, + { + id: '3823', + data: { + label: 'Newsweek Productions', + x: 4045.1584858570295, + y: -219.98198406529917, + z: -1697.089651551487, + }, + }, + { + id: '3824', + data: { + label: 'Cable One', + x: 3998.3190279891624, + y: 259.1734620311803, + z: -1493.2861523872295, + }, + }, + { + id: '3825', + data: { + label: 'Kaplan Educational Centers', + x: 3746.369431956, + y: 37.98598893811547, + z: -1401.2290024857302, + }, + }, + { + id: '3826', + data: { + label: 'Digital Ink Co.', + x: 4574.291179172218, + y: 7.779176026494974, + z: -1405.9062381268027, + }, + }, + { + id: '3827', + data: { + label: '', + x: 2262.6977457619278, + y: 5878.569470798373, + z: -1382.4788289282249, + }, + }, + { + id: '3828', + data: { + label: 'LEGI-SLATE', + x: 3776.473595209166, + y: 176.09655358252664, + z: -1302.8609574684672, + }, + }, + { + id: '3829', + data: { + label: 'Robinson Terminal Warehouse', + x: 4554.496784758679, + y: 17.72776822222964, + z: -1031.4015971760912, + }, + }, + { + id: '3830', + data: { + label: 'Capitol Fiber', + x: 4244.180008616219, + y: 186.48713161636948, + z: -1556.70090557368, + }, + }, + { + id: '3831', + data: { + label: 'Bowater Mersey Paper', + x: 4599.1918874683015, + y: -136.92747541026222, + z: -1199.492494520297, + }, + }, + { + id: '3832', + data: { + label: 'Dearborn Publishing Group', + x: 4327.965030282163, + y: -258.0196637718089, + z: -1624.376923525187, + }, + }, + { + id: '3833', + data: { + label: 'Yahoo! Portal', + x: 4125.192756498273, + y: -45.56455999388459, + z: -526.70050912617, + }, + }, + { + id: '3834', + data: { + label: 'Yahoo! Autos', + x: 4535.9638222916765, + y: -194.02874693057697, + z: 86.58704549147124, + }, + }, + { + id: '3835', + data: { + label: 'Yahoo! Auctions', + x: 4350.853398555573, + y: 141.96459613848765, + z: -513.0135473551377, + }, + }, + { + id: '3836', + data: { + label: 'Yahoo! Shopping', + x: 4481.073679939432, + y: 284.0931666072818, + z: -377.8979893805185, + }, + }, + { + id: '3837', + data: { + label: 'Yahoo! Pets', + x: 4440.648473468505, + y: 412.55610318751746, + z: -171.14776077907138, + }, + }, + { + id: '3838', + data: { + label: 'Yahoo! E-Bills', + x: 4600.843258647131, + y: 273.070222364648, + z: -30.0101517758704, + }, + }, + { + id: '3839', + data: { + label: 'Yahoo! Health', + x: 4347.9023967469275, + y: 424.3602409415249, + z: 25.717042423876592, + }, + }, + { + id: '3840', + data: { + label: 'Yahoo! Music', + x: 4552.497919999185, + y: -183.20696871422058, + z: -247.0780843727265, + }, + }, + { + id: '3841', + data: { + label: 'Yahoo! Maps', + x: 4292.414756759783, + y: -241.19775305352928, + z: -409.2569920681767, + }, + }, + { + id: '3842', + data: { + label: 'Yahooligans!', + x: 4545.0989770265605, + y: 145.28257029284876, + z: 164.7499534765491, + }, + }, + { + id: '3843', + data: { + label: 'Yahoo! World Properties', + x: 4634.905198539627, + y: 147.6499809737463, + z: -250.17584674297652, + }, + }, + { + id: '3844', + data: { + label: 'GeoCities', + x: 4662.7285529289775, + y: -1.8335119021441244, + z: -73.63109456039359, + }, + }, + { + id: '3845', + data: { + label: 'Broadcast.com', + x: 4525.674501709613, + y: -14.855410983129874, + z: -414.175601043142, + }, + }, + { + id: '3846', + data: { + label: 'egroups.com', + x: 4226.998057020728, + y: 347.45029961409847, + z: -422.699472041983, + }, + }, + { + id: '3847', + data: { + label: 'Softbank', + x: 4110.519481644023, + y: 1071.0475916172416, + z: 79.42311395965181, + }, + }, + { + id: '3848', + data: { + label: 'AOL Time Warner', + x: 2570.9792480976143, + y: 727.1231254205418, + z: 839.4553427367147, + }, + }, + { + id: '3849', + data: { + label: 'Concierge.com', + x: 24.826875203626983, + y: -3695.344269340856, + z: -109.20649070490343, + }, + }, + { + id: '3850', + data: { + label: 'Advance Internet', + x: -506.6952385595453, + y: -3166.5565091228605, + z: -43.8531134439009, + }, + }, + { + id: '3851', + data: { + label: 'Alabama Live', + x: -324.4669325745572, + y: -3279.856155701461, + z: -434.80651307146513, + }, + }, + { + id: '3852', + data: { + label: 'Cleveland Live', + x: -790.2657470283286, + y: -2956.920242502899, + z: -330.2258151479954, + }, + }, + { + id: '3853', + data: { + label: 'MassLive', + x: -654.5114416121554, + y: -3182.682031027826, + z: -475.0675194427948, + }, + }, + { + id: '3854', + data: { + label: 'Michigan Live', + x: -568.6552260121512, + y: -3487.926432980414, + z: -358.2546155872627, + }, + }, + { + id: '3855', + data: { + label: 'New Jersey Online', + x: -189.93432573013757, + y: -3033.4014188810365, + z: -305.4675395554532, + }, + }, + { + id: '3856', + data: { + label: 'NOLA Live (New Orleans)', + x: -365.7462888894778, + y: -2764.174378649128, + z: -49.123605548885216, + }, + }, + { + id: '3857', + data: { + label: 'PennLive', + x: -776.0090564596285, + y: -2815.8003374200566, + z: 20.49439897107116, + }, + }, + { + id: '3858', + data: { + label: 'Staten Island Live', + x: -431.35935192120445, + y: -2954.9845845749287, + z: -432.74346342264545, + }, + }, + { + id: '3859', + data: { + label: 'Syracuse Live', + x: -587.5227771013328, + y: -2766.10139011402, + z: -232.939250884163, + }, + }, + { + id: '3860', + data: { + label: 'Cond�Net', + x: -241.44704831120703, + y: -3641.032080395408, + z: 227.74822983443497, + }, + }, + { + id: '3861', + data: { + label: 'PHYS', + x: 1659.034848694525, + y: 4184.317050201674, + z: 4529.963052853779, + }, + }, + { + id: '3862', + data: { + label: 'Swoon', + x: -226.36159502963122, + y: -3881.095867247231, + z: -142.91022597312644, + }, + }, + { + id: '3863', + data: { + label: 'Vogue.com', + x: 94.19048553116914, + y: -3920.9300272241258, + z: 185.89721349076208, + }, + }, + { + id: '3864', + data: { + label: 'Ideas Publishing Group', + x: -1589.7125419478373, + y: -3734.0361130686597, + z: -138.51637058453656, + }, + }, + { + id: '3865', + data: { + label: 'Cartoonbank.com', + x: -66.39478737977286, + y: -3395.680635796865, + z: 827.4663297280368, + }, + }, + { + id: '3866', + data: { + label: 'Newhouse Broadcasting', + x: 3028.7263983650905, + y: 5879.0039753907095, + z: -763.5697623409535, + }, + }, + { + id: '3867', + data: { + label: 'Newhouse News Service', + x: -382.1805037551126, + y: -2869.1954194498508, + z: 668.2662160751416, + }, + }, + { + id: '3868', + data: { + label: 'Real Media', + x: -766.5259007373942, + y: -3136.4566844704564, + z: 396.0596849937155, + }, + }, + { + id: '3869', + data: { + label: 'Religion News Service', + x: -388.7931265070248, + y: -3613.668633125222, + z: 907.6744034236924, + }, + }, + { + id: '3870', + data: { + label: 'WWD/DNR The Business Newsletter for Specialty Stores', + x: -514.1631528821944, + y: -4115.391284141632, + z: 893.9578187273905, + }, + }, + { + id: '3871', + data: { + label: 'Newhouse Newspapers', + x: -162.9023051194099, + y: -2974.2565116567, + z: 549.1384434832066, + }, + }, + { + id: '3872', + data: { + label: 'Belo', + x: -1397.25107852735, + y: 930.514675601945, + z: -2115.0807429395413, + }, + }, + { + id: '3873', + data: { + label: 'DigitalConvergence.com', + x: 534.7752766993121, + y: 2716.75731829464, + z: 5254.065225556877, + }, + }, + { + id: '3875', + data: { + label: 'KTVK-TV (Independent; Phoenix)', + x: -1162.7407594245842, + y: 911.8274312004573, + z: -2591.2758363770604, + }, + }, + { + id: '3876', + data: { + label: 'KASW-TV (WB; Phoenix)', + x: -1393.403842083089, + y: 1073.5771167692233, + z: -2570.791454537341, + }, + }, + { + id: '3877', + data: { + label: 'Arlington Morning News (TX)', + x: -1068.9589918271085, + y: 1140.6304137112095, + z: -2440.4036368194006, + }, + }, + { + id: '3878', + data: { + label: 'The Providence Journal (Rhode Island)', + x: -970.3335258257712, + y: 1149.1749351633784, + z: -2218.4604072897546, + }, + }, + { + id: '3879', + data: { + label: 'AT&T WorldNet', + x: 1994.2390274723682, + y: 54.82050567694621, + z: 1505.6246682606966, + }, + }, + { + id: '3880', + data: { + label: 'ACC', + x: 2091.007500648719, + y: -113.83381857845211, + z: 1879.7474454342216, + }, + }, + { + id: '3881', + data: { + label: 'AT&T Canada', + x: 2493.143364921054, + y: -662.8140653351239, + z: 941.918367877347, + }, + }, + { + id: '3882', + data: { + label: 'AT&T Communications', + x: 1492.0139823227673, + y: 193.18414382028598, + z: 1317.5711364038355, + }, + }, + { + id: '3883', + data: { + label: 'AT&T Communications Services', + x: 4364.497880424398, + y: 3018.7475284655543, + z: -3477.133330360973, + }, + }, + { + id: '3884', + data: { + label: 'AT&T Global Communications Services', + x: 1686.8568734440298, + y: -352.5831929442922, + z: 1407.608392519892, + }, + }, + { + id: '3885', + data: { + label: 'AT&T Global Network Services', + x: 1506.5382573069048, + y: -124.07333299607751, + z: 1421.2911213147245, + }, + }, + { + id: '3886', + data: { + label: 'AT&T Istel', + x: 1675.4315143282943, + y: -559.8618612279029, + z: 1249.1722507048955, + }, + }, + { + id: '3887', + data: { + label: 'AT&T Latin America', + x: 1429.6698384115614, + y: -34.11347150351792, + z: 1242.9443061251939, + }, + }, + { + id: '3888', + data: { + label: 'AT&T Solutions', + x: 1861.0282293775374, + y: 271.0633838796027, + z: 1117.3006146093685, + }, + }, + { + id: '3889', + data: { + label: 'AT&T Wireless Services', + x: 1523.8511601988564, + y: -1203.7312199489745, + z: 1760.527746352592, + }, + }, + { + id: '3890', + data: { + label: 'Concert', + x: 2110.2608224724527, + y: -96.16642865407587, + z: 1477.5081627894428, + }, + }, + { + id: '3891', + data: { + label: 'LIN Broadcasting', + x: 1570.3024966628525, + y: 229.84923851937955, + z: 914.3779298869856, + }, + }, + { + id: '3892', + data: { + label: 'GRC International', + x: 2184.2132590767833, + y: 187.70818381126273, + z: 1217.5480065927761, + }, + }, + { + id: '3893', + data: { + label: 'BET Gospel', + x: -429.06742731892683, + y: 869.2989943263714, + z: 115.08480785509178, + }, + }, + { + id: '3894', + data: { + label: 'BET International', + x: -517.4120136187818, + y: 940.1154915720199, + z: 365.87797241361017, + }, + }, + { + id: '3895', + data: { + label: 'Black Entertainment Television (BET)', + x: -590.2832669725095, + y: -114.14248505495809, + z: 1084.667473518712, + }, + }, + { + id: '3896', + data: { + label: 'Corus Entertainment', + x: 1896.161642968809, + y: -725.3009029561852, + z: -94.90915126084745, + }, + }, + { + id: '3897', + data: { + label: 'Emmis Communications', + x: 2845.1327258501633, + y: -2103.731412295158, + z: -2227.9765293494042, + }, + }, + { + id: '3898', + data: { + label: 'BET Weekend', + x: -671.6318033108173, + y: 776.778480676594, + z: 43.933162296869, + }, + }, + { + id: '3899', + data: { + label: 'Emerge', + x: -840.1041199263544, + y: 581.5708720758323, + z: 158.30742934511122, + }, + }, + { + id: '3900', + data: { + label: 'Heart & Soul', + x: -703.7563273246426, + y: 797.8378901834996, + z: 544.5530563260758, + }, + }, + { + id: '3901', + data: { + label: 'Honey', + x: -663.9441313639915, + y: 466.21503307197327, + z: -54.068616196404854, + }, + }, + { + id: '3902', + data: { + label: 'IMPACT', + x: -470.69135070831896, + y: 648.1624313734582, + z: -85.39828241901121, + }, + }, + { + id: '3903', + data: { + label: 'Gemstar-TV Guide International', + x: 1379.2731513660735, + y: -620.730481725617, + z: 479.1082250920178, + }, + }, + { + id: '3904', + data: { + label: 'IDT', + x: 3162.501422962275, + y: -1082.2802352536248, + z: 476.6309185131954, + }, + }, + { + id: '3905', + data: { + label: 'Liberty Cablevision of Puerto Rico', + x: 2149.4803616794266, + y: -611.7150417343498, + z: -46.797381616903486, + }, + }, + { + id: '3906', + data: { + label: 'Teligent', + x: 2010.7823048114815, + y: -1136.1526307859792, + z: -715.6639778982703, + }, + }, + { + id: '3907', + data: { + label: 'USA Electronic Retailing', + x: 3643.448641552838, + y: -908.4489723834705, + z: -1506.9699313618485, + }, + }, + { + id: '3908', + data: { + label: 'USA Entertainment', + x: 3634.6217285935268, + y: -1153.2148379806822, + z: -296.10211088483913, + }, + }, + { + id: '3909', + data: { + label: 'USA Information and Services', + x: 3109.5828440153446, + y: -1035.576017438444, + z: -788.1079246794505, + }, + }, + { + id: '3910', + data: { + label: 'HSN International', + x: 3984.372068863783, + y: -1319.2414659201938, + z: -2088.67579997611, + }, + }, + { + id: '3911', + data: { + label: 'Home Order Television', + x: 4158.510791646964, + y: -1117.7776606837501, + z: -2495.080337888212, + }, + }, + { + id: '3912', + data: { + label: 'Home Shopping in Espanol', + x: 3903.424727620886, + y: -1108.4088239755376, + z: -2531.221588848855, + }, + }, + { + id: '3913', + data: { + label: 'Jupiter Shop Channel', + x: 3882.243183653401, + y: -1370.8909290948357, + z: -2560.245789730284, + }, + }, + { + id: '3914', + data: { + label: 'FirstAuction.com', + x: 3404.9155386102757, + y: -463.57134742006247, + z: -2048.627651493613, + }, + }, + { + id: '3915', + data: { + label: 'FirstJewelry.com', + x: 3529.7828584465915, + y: -680.3032396122604, + z: -2057.2754819848287, + }, + }, + { + id: '3916', + data: { + label: 'HSN.com', + x: 3650.0039078825725, + y: -440.3375757569559, + z: -1969.5409061160344, + }, + }, + { + id: '3917', + data: { + label: 'SciFi.com', + x: 3954.6888374200616, + y: -1455.8725169846718, + z: 12.054203191667199, + }, + }, + { + id: '3918', + data: { + label: 'Mothership.com', + x: 4180.327776070213, + y: -1681.7017173350268, + z: 367.20840605513035, + }, + }, + { + id: '3919', + data: { + label: 'Centropolis.com', + x: 4027.632083242396, + y: -1839.3164728669035, + z: 225.5651691743161, + }, + }, + { + id: '3920', + data: { + label: 'Precision Response', + x: 3419.5791879634294, + y: -740.9778034082807, + z: -1021.0751569366367, + }, + }, + { + id: '3921', + data: { + label: 'USA eSolutions and USA Fulfillment Services', + x: 3395.5438629397254, + y: -1281.8423650195527, + z: -1058.5707987248659, + }, + }, + { + id: ' Los Angeles', + data: { + label: 'KHSC-TV', + x: 4369.485387000235, + y: -3160.499623518326, + z: 3980.902849897651, + }, + }, + { + id: ' Houston', + data: { + label: 'KHSH-TV', + x: -819.089229698445, + y: -3084.2629213369814, + z: 3968.5912991152254, + }, + }, + { + id: ' Dallas', + data: { + label: 'KSTR-TV', + x: 4103.618831160546, + y: 2019.852953860482, + z: 3997.9674575942845, + }, + }, + { + id: ' Miami', + data: { + label: 'WAMI-TV', + x: -1645.2515044941688, + y: -3230.0489271418014, + z: 3174.0351077558066, + }, + }, + { + id: ' Tampa/St. Petersburg', + data: { + label: 'WBHS-TV', + x: 2734.942858747877, + y: 3886.624287613498, + z: 3968.8946353977353, + }, + }, + { + id: ' Orlando', + data: { + label: 'WBSF-TV', + x: 6429.934743029545, + y: -490.0266512289787, + z: -3094.0203400681976, + }, + }, + { + id: ' Chicago', + data: { + label: 'WEHS-TV', + x: -2319.2826878550386, + y: -1659.2628085611732, + z: -3147.62118856654, + }, + }, + { + id: ' Atlanta', + data: { + label: 'WHOT-TV', + x: -435.65354666209834, + y: -3152.066886792861, + z: -3906.7922891248672, + }, + }, + { + id: ' New York City', + data: { + label: 'WHSE-TV', + x: -2935.3950218848317, + y: -3096.551011576004, + z: 1137.2129873494366, + }, + }, + { + id: ' Boston', + data: { + label: 'WHSH-TV', + x: -792.5145863997084, + y: 4240.937846445805, + z: 3601.4804073226333, + }, + }, + { + id: ' Philadelphia', + data: { + label: 'WHSP-TV', + x: 5867.8314042565, + y: -463.8348576537409, + z: -4281.0063073087695, + }, + }, + { + id: ' Cleveland', + data: { + label: 'WQHS-TV', + x: 7042.334434329351, + y: 2712.219254057054, + z: -1329.2056553713232, + }, + }, + { + id: '3935', + data: { + label: 'Animal Planet Brasil', + x: 901.1003516787962, + y: -2644.250782693487, + z: -1081.9613897387085, + }, + }, + { + id: '3936', + data: { + label: 'Discovery Australia/New Zealand', + x: 750.0127930234693, + y: -3053.818139272474, + z: -319.6964831507524, + }, + }, + { + id: '3937', + data: { + label: 'Discovery Brasil', + x: 550.2536594910357, + y: -2929.7314851871956, + z: -983.7702206795917, + }, + }, + { + id: '3938', + data: { + label: 'Discovery Canada', + x: 1006.0707562591356, + y: -2868.0636645674194, + z: -1126.519231119091, + }, + }, + { + id: '3939', + data: { + label: 'Discovery Channel Middle East', + x: 692.3507211400863, + y: -3181.7004276040775, + z: -920.6351001517656, + }, + }, + { + id: '3940', + data: { + label: 'Discovery Espana (Spain)', + x: 1126.7529071783267, + y: -3111.4679840036483, + z: -887.6375243594537, + }, + }, + { + id: '3941', + data: { + label: 'Discovery Networks US', + x: 1566.5376498272753, + y: -3109.2526101693543, + z: -12.36378328979712, + }, + }, + { + id: '3942', + data: { + label: 'Discovery Networks International', + x: 910.3431573816389, + y: -2800.436925616163, + z: -656.1279848772593, + }, + }, + { + id: '3943', + data: { + label: 'Discovery Home & Leisure UK', + x: 446.86012928608096, + y: -2796.475289369726, + z: -540.530258996643, + }, + }, + { + id: '3944', + data: { + label: 'Discovery Enterprises Worldwide', + x: -495.23507091660593, + y: 3431.545157399755, + z: 2497.5564175647355, + }, + }, + { + id: '3945', + data: { + label: 'Discovery Channel Education', + x: -274.37644290551304, + y: 3696.316527351355, + z: 2256.2014479289755, + }, + }, + { + id: '3946', + data: { + label: 'Discovery Channel Interactive Media', + x: -138.99673250196275, + y: 3658.7198084627903, + z: 2601.151990000769, + }, + }, + { + id: '3947', + data: { + label: 'Discovery Channel Publishing', + x: -583.5605557351441, + y: 3756.176938823391, + z: 2749.0460139326974, + }, + }, + { + id: '3948', + data: { + label: 'Discovery Channel Retail', + x: -243.32377075068652, + y: 3411.130024911939, + z: 2839.0609527015044, + }, + }, + { + id: '3949', + data: { + label: 'Discovery Channel Video', + x: -631.1150092400262, + y: 3332.034482893036, + z: 2872.866028541098, + }, + }, + { + id: '3950', + data: { + label: 'Discovery.com', + x: -500.42875110249037, + y: 3855.9930474586245, + z: 2432.033731327799, + }, + }, + { + id: '3951', + data: { + label: 'Starz Encore Group', + x: 1630.0745071746574, + y: -1834.7508969593869, + z: 1453.522026239058, + }, + }, + { + id: '3952', + data: { + label: 'Time Life Books', + x: 3395.864679023065, + y: -163.0151825264947, + z: 2407.8264802464378, + }, + }, + { + id: '3953', + data: { + label: 'Time - Life International', + x: 3239.139854700268, + y: 81.7549752283063, + z: 2840.3306649285328, + }, + }, + { + id: '3954', + data: { + label: 'Time - Life Education', + x: 3273.747466604196, + y: -155.35741624448215, + z: 2916.158235674048, + }, + }, + { + id: '3955', + data: { + label: 'Time - Life Music', + x: 3511.5442090185466, + y: 86.0915663043419, + z: 2845.0837266613757, + }, + }, + { + id: '3956', + data: { + label: 'Time - Life AudioBooks', + x: 3549.3787996086426, + y: -183.58535169084396, + z: 2894.492347791322, + }, + }, + { + id: '3957', + data: { + label: 'Book-of-the-Month Club', + x: 3728.8515849568194, + y: 137.18720097115536, + z: 1572.6151734865814, + }, + }, + { + id: '3958', + data: { + label: 'Paperback Book Club', + x: 3699.175342689673, + y: -174.19793310973319, + z: 1955.774463459039, + }, + }, + { + id: '3959', + data: { + label: "Children's Book-of-the-Month Club", + x: 3468.116056169001, + y: -106.75383403724182, + z: 1844.7666978573054, + }, + }, + { + id: '3960', + data: { + label: 'History Book Club', + x: 4040.0113963580584, + y: -219.5829531322554, + z: 1549.3603776176042, + }, + }, + { + id: '3961', + data: { + label: 'Money Book Club', + x: 3825.6220342105, + y: 174.28525665695955, + z: 1318.7540963937054, + }, + }, + { + id: '3962', + data: { + label: 'HomeStyle Books', + x: 3343.0875117296287, + y: -71.01486367138473, + z: 842.8072494694854, + }, + }, + { + id: '3963', + data: { + label: "Crafter's Choice", + x: 3189.2049741604574, + y: -61.16731358316533, + z: 1893.3591513904707, + }, + }, + { + id: '3964', + data: { + label: 'One Spirit', + x: 3300.324271065498, + y: 96.73040637474318, + z: 1811.626660684922, + }, + }, + { + id: '3965', + data: { + label: 'International', + x: 3345.275424901083, + y: -447.62776054114823, + z: 856.2037752338784, + }, + }, + { + id: ' Brown and', + data: { + label: 'Little', + x: -755.5817194736076, + y: 2204.574306084407, + z: 4899.617220355446, + }, + }, + { + id: '3967', + data: { + label: 'Bulfinch Press', + x: 3801.338192553904, + y: -397.29356885220903, + z: 1573.4585236590829, + }, + }, + { + id: '3968', + data: { + label: 'Back Bay Books', + x: 3565.117723927978, + y: 173.63601605249627, + z: 1130.1161035174428, + }, + }, + { + id: ' Brown and Company (U.K.)', + data: { + label: 'Little', + x: -366.90664811619524, + y: 3454.247346592004, + z: -3626.372084385641, + }, + }, + { + id: '3970', + data: { + label: 'Warner Books', + x: 2998.0810724593707, + y: -244.71358846704615, + z: 1667.9258420487467, + }, + }, + { + id: '3971', + data: { + label: 'Warner Vision', + x: 3865.4155161840426, + y: -374.68447622252404, + z: 1820.4828785729349, + }, + }, + { + id: '3972', + data: { + label: 'The Mysterious Press', + x: 3760.67220851296, + y: -119.51584731866208, + z: 1794.9657179356007, + }, + }, + { + id: '3973', + data: { + label: 'Warner Aspect', + x: 3855.1250836601134, + y: -44.25534475311959, + z: 1585.5523815108781, + }, + }, + { + id: '3974', + data: { + label: 'Warner Treasures', + x: 3373.169417189444, + y: -569.8294687406274, + z: 1882.87338201443, + }, + }, + { + id: '3975', + data: { + label: 'Oxmoor House', + x: 966.6233802269118, + y: -2563.735026116946, + z: 5261.037926429366, + }, + }, + { + id: '3976', + data: { + label: 'Leisure Arts', + x: 3650.395770144796, + y: 291.22342297246456, + z: 1372.1831598437116, + }, + }, + { + id: '3977', + data: { + label: 'Sunset Books', + x: 3743.4008296411434, + y: -683.6106503557536, + z: 1548.5851636128127, + }, + }, + { + id: '3978', + data: { + label: 'TW Kids', + x: 3466.7227342886376, + y: -822.8571804563437, + z: 1338.2824851111186, + }, + }, + { + id: '3979', + data: { + label: 'HBO Home Video', + x: 5696.676143120064, + y: -2793.7195335091196, + z: -3058.893121483982, + }, + }, + { + id: '3980', + data: { + label: 'HBO Pictures/HBO Showcase', + x: 1224.2722283872658, + y: -542.762375013524, + z: 1391.7837784568555, + }, + }, + { + id: '3981', + data: { + label: 'HBO Independent Productions', + x: 3732.3848878514664, + y: 551.4516522406367, + z: 108.28624058243902, + }, + }, + { + id: '3982', + data: { + label: 'HBO Downtown Productions', + x: -598.0318135123186, + y: 4445.767352395594, + z: 2698.861559252092, + }, + }, + { + id: '3983', + data: { + label: 'HBO NYC Productions', + x: 3887.761884944041, + y: 67.91369949776069, + z: 2581.5033610576993, + }, + }, + { + id: '3984', + data: { + label: 'HBO Animation', + x: 4407.949542731596, + y: 325.3312588624234, + z: 1022.8175532867772, + }, + }, + { + id: '3985', + data: { + label: 'HBO Sports', + x: 4650.001847156725, + y: -262.90251836914797, + z: 1168.8029420923262, + }, + }, + { + id: '3986', + data: { + label: 'Cinemax', + x: -246.68573615960213, + y: 5582.091281420486, + z: 674.8255071797282, + }, + }, + { + id: '3987', + data: { + label: 'Time Warner Sports', + x: 4540.770674773101, + y: 144.17180443204452, + z: 1713.8894503279603, + }, + }, + { + id: '3988', + data: { + label: 'HBO en Espa�ol', + x: 3460.4167755993876, + y: 343.90038605885854, + z: 2526.8268596426087, + }, + }, + { + id: '3989', + data: { + label: 'HBO Hungary', + x: 4402.343372859631, + y: 27.764313026470823, + z: 695.4521427893715, + }, + }, + { + id: '3990', + data: { + label: 'Cinemax Selecciones', + x: 4503.7315588019965, + y: -693.114964844825, + z: 854.2337729107448, + }, + }, + { + id: '3991', + data: { + label: 'HBO Direct (DBS)', + x: 3002.962151326675, + y: -1580.6049676348418, + z: 1281.5239429446135, + }, + }, + { + id: '3992', + data: { + label: 'Home Box Office (HBO)', + x: 5386.924381796986, + y: -2749.857228929279, + z: -3316.532616124867, + }, + }, + { + id: '3993', + data: { + label: 'Comedy Central', + x: 1634.5246900455006, + y: -318.9214854472782, + z: 1167.4562864211948, + }, + }, + { + id: '3994', + data: { + label: 'CNN', + x: 3623.6731436855116, + y: 218.11560087322087, + z: 457.8719654283387, + }, + }, + { + id: '3996', + data: { + label: 'CNN/SI', + x: 3689.0422233819204, + y: -59.64187380826356, + z: 2110.3354634162056, + }, + }, + { + id: '3997', + data: { + label: 'CNN International', + x: 4042.536241624079, + y: 70.84121097149864, + z: 1180.8957376725982, + }, + }, + { + id: '3998', + data: { + label: 'CNN en Espanol', + x: 4158.618838572105, + y: -251.69239687024464, + z: 1333.5985774725755, + }, + }, + { + id: '3999', + data: { + label: 'CNN Headline News', + x: 3379.2085098528464, + y: -132.15190370602627, + z: 1995.9734731526726, + }, + }, + { + id: '4000', + data: { + label: 'CNN Airport Network', + x: 4060.702431098086, + y: 2.4402036496575237, + z: 1622.1673725415494, + }, + }, + { + id: '4001', + data: { + label: 'CNN fn', + x: 3426.136692222809, + y: 109.23330727174431, + z: 2050.614028132335, + }, + }, + { + id: '4002', + data: { + label: 'CNN Radio', + x: 4017.611932601221, + y: -184.35031132490147, + z: 923.804046861859, + }, + }, + { + id: '4003', + data: { + label: 'CNN Interactive', + x: 4068.851040492177, + y: -564.7037369854118, + z: 1096.1250903451587, + }, + }, + { + id: '4004', + data: { + label: 'Time Warner Cable', + x: 2780.084025654929, + y: -1204.827902954536, + z: 1098.6673858255597, + }, + }, + { + id: '4005', + data: { + label: 'Time Warner Communications', + x: 3565.3355185926866, + y: -437.05477154825616, + z: 864.6317161123384, + }, + }, + { + id: '4006', + data: { + label: 'New York City Cable Group', + x: 3970.502797843239, + y: 25.77530317303806, + z: 1422.0745699582953, + }, + }, + { + id: '4007', + data: { + label: 'New York 1 News', + x: 3128.574709850734, + y: -244.19078215596488, + z: 1930.3500682225122, + }, + }, + { + id: '4008', + data: { + label: 'Time Warner Home Theater', + x: 3194.2268380710725, + y: -759.6251834384205, + z: 1639.4606741013122, + }, + }, + { + id: '4009', + data: { + label: 'Time Warner Security', + x: 3570.2533021174904, + y: 211.60455411550177, + z: 1549.1309698873147, + }, + }, + { + id: '4010', + data: { + label: 'Kablevision', + x: 3784.6028970403277, + y: -48.566396907514765, + z: 958.2986896325971, + }, + }, + { + id: '4011', + data: { + label: 'Warner Bros.', + x: 3567.859476628927, + y: -827.9385514270921, + z: 1550.1932739296683, + }, + }, + { + id: '4012', + data: { + label: 'Warner Bros. Studios', + x: 3501.892740178481, + y: 109.44451761642827, + z: 1782.0303075272527, + }, + }, + { + id: '4013', + data: { + label: 'Warner Bros. Television', + x: 3213.6702200726813, + y: 191.55680052234197, + z: 1651.1235806119894, + }, + }, + { + id: '4014', + data: { + label: 'Warner Bros. Television Animation', + x: 3048.489657678475, + y: -575.2679970242984, + z: 1623.6099576381662, + }, + }, + { + id: '4015', + data: { + label: 'Hanna - Barbera Cartoons', + x: 3661.432029075235, + y: 126.43975967016085, + z: 998.5342435180482, + }, + }, + { + id: '4016', + data: { + label: 'Telepictures Production', + x: 3796.1477220949864, + y: 44.073018095537705, + z: 1147.6265567090622, + }, + }, + { + id: '4017', + data: { + label: 'Witt - Thomas Productions', + x: 3650.9617019025104, + y: -210.9031257681903, + z: 830.0162641311114, + }, + }, + { + id: '4018', + data: { + label: 'Castle Rock Entertainment', + x: 3288.599313428623, + y: -440.3921893431008, + z: 2162.0662238272384, + }, + }, + { + id: '4019', + data: { + label: 'Warner Home Video', + x: 3103.5142898636245, + y: 93.44197462120243, + z: 1196.016599149584, + }, + }, + { + id: '4020', + data: { + label: 'Warner Bros. Domestic Pay - TV', + x: 3311.328056255667, + y: 188.53627400276864, + z: 1107.9698347529165, + }, + }, + { + id: '4021', + data: { + label: 'Warner Bros. Domestic Television Distribution', + x: 3062.277246443035, + y: -409.78042518596305, + z: 1787.428035720816, + }, + }, + { + id: '4022', + data: { + label: 'Warner Bros. International Television Distribution', + x: 3978.2750844638385, + y: -241.46402045126564, + z: 1710.2994290854717, + }, + }, + { + id: '4023', + data: { + label: 'Warner Bros. International Theaters', + x: 3105.058121830355, + y: -540.2403656413402, + z: 1166.13717587293, + }, + }, + { + id: '4024', + data: { + label: 'Time', + x: 3712.4352601811192, + y: 72.83401831796115, + z: 3172.9772585944543, + }, + }, + { + id: '4025', + data: { + label: 'Time Asia', + x: 3747.622119166519, + y: -178.92311607342043, + z: 3561.0756002539947, + }, + }, + { + id: '4026', + data: { + label: 'Time Atlantic', + x: 3803.755744189998, + y: 497.65147859653086, + z: 3409.072265090498, + }, + }, + { + id: '4027', + data: { + label: 'Time Canada', + x: 4028.917416679216, + y: 369.9663289091686, + z: 3416.6776568554187, + }, + }, + { + id: '4028', + data: { + label: 'Time Latin America', + x: 4039.784775127709, + y: 152.29025006521493, + z: 3533.3257132993954, + }, + }, + { + id: '4029', + data: { + label: 'Time South Pacific', + x: 3852.1870110657446, + y: 225.26680399618476, + z: 3622.4137390510755, + }, + }, + { + id: '4030', + data: { + label: 'Time Money', + x: 3868.556078063816, + y: 19.651213640529573, + z: 3670.501398711632, + }, + }, + { + id: '4031', + data: { + label: 'Time For Kids', + x: 4069.1181455845817, + y: -70.34154416166915, + z: 3501.3717283341366, + }, + }, + { + id: '4032', + data: { + label: 'Fortune', + x: 3597.139239133531, + y: 426.187798844456, + z: 3492.1144695426506, + }, + }, + { + id: '4033', + data: { + label: 'Life', + x: 3505.6923763602767, + y: -3.847426746212646, + z: 3605.6885323782453, + }, + }, + { + id: '4034', + data: { + label: 'Sports Illustrated', + x: 3740.96853909634, + y: 376.49876836980496, + z: 3801.4425702432186, + }, + }, + { + id: '4035', + data: { + label: 'Sports Illustrated Women/Sport', + x: 3810.1753499586575, + y: 387.1604448827346, + z: 4262.517498649634, + }, + }, + { + id: '4036', + data: { + label: 'Sports Illustrated International', + x: 3847.169879897551, + y: 669.8961114444855, + z: 4137.406099263261, + }, + }, + { + id: '4037', + data: { + label: 'SI for Kids', + x: 3572.9311136865235, + y: 592.4338725649004, + z: 4195.56415059904, + }, + }, + { + id: '4038', + data: { + label: 'Inside Stuff', + x: 3415.6370107806056, + y: 242.08988694803978, + z: 3536.444635301779, + }, + }, + { + id: '4039', + data: { + label: 'Money', + x: 3528.7162048266036, + y: 138.9016609674809, + z: 3824.303574786788, + }, + }, + { + id: '4040', + data: { + label: 'Your', + x: 3526.034042657567, + y: 109.71603838624887, + z: 4299.101317878784, + }, + }, + { + id: '4041', + data: { + label: 'Your Future', + x: 3294.2324057167525, + y: 264.44485934604893, + z: 4236.873720230557, + }, + }, + { + id: '4042', + data: { + label: 'People', + x: 3919.485757097454, + y: 279.8904912025417, + z: 962.287693629437, + }, + }, + { + id: '4043', + data: { + label: 'Who Weekly', + x: 4210.160473112306, + y: 676.7092717626853, + z: 831.9696625582711, + }, + }, + { + id: '4044', + data: { + label: 'People en Espa�ol', + x: 4317.902418011333, + y: 468.27141032346714, + z: 707.3423181486245, + }, + }, + { + id: '4045', + data: { + label: 'Teen People', + x: 4066.0056435258234, + y: 618.0340807142986, + z: 622.114883887238, + }, + }, + { + id: '4046', + data: { + label: 'Entertainment Weekly', + x: 3993.1857332326945, + y: -86.09214978629556, + z: 1891.707999627652, + }, + }, + { + id: '4047', + data: { + label: 'EW Metro', + x: 4398.58941542461, + y: 34.73984160856332, + z: 2207.8655963527144, + }, + }, + { + id: '4048', + data: { + label: 'The Ticket', + x: 3424.066672492324, + y: -394.3316164630551, + z: 1968.3562736819079, + }, + }, + { + id: '4049', + data: { + label: 'In Style', + x: 3929.7136522957885, + y: -351.78973458593606, + z: 1217.1843852875306, + }, + }, + { + id: '4050', + data: { + label: 'Southern Living', + x: 3890.6886177587357, + y: -606.0626447161713, + z: 1439.4295557296284, + }, + }, + { + id: '4051', + data: { + label: 'Progressive Farmer', + x: 3419.3206328214706, + y: 309.73123032028985, + z: 1606.4804529714977, + }, + }, + { + id: '4052', + data: { + label: 'Southern Accents', + x: 3005.8583443137286, + y: -19.750511561243293, + z: 1544.614155474636, + }, + }, + { + id: '4053', + data: { + label: 'Cooking Light', + x: 3807.3585993606007, + y: 200.22880488040363, + z: 1712.0640685055448, + }, + }, + { + id: '4054', + data: { + label: 'The Parent Group', + x: 4284.46244345674, + y: -6.881789471863037, + z: 1104.5075347181294, + }, + }, + { + id: '4055', + data: { + label: 'Parenting', + x: 4663.257412556476, + y: 249.15323711461704, + z: 896.904761632657, + }, + }, + { + id: '4056', + data: { + label: 'Baby Talk', + x: 4712.592656834135, + y: -24.302622731922195, + z: 814.2821046856287, + }, + }, + { + id: '4057', + data: { + label: 'Baby on the Way', + x: 4774.952460408406, + y: 96.88512011216686, + z: 1061.4082771461447, + }, + }, + { + id: '4058', + data: { + label: 'This Old House', + x: 3643.278689533008, + y: -387.63515261523503, + z: 2005.6427687957448, + }, + }, + { + id: '4059', + data: { + label: 'Sunset', + x: 3349.075785112153, + y: 234.59171846026837, + z: 1416.2495562874842, + }, + }, + { + id: '4060', + data: { + label: 'Sunset Garden Guide', + x: 3911.360008167065, + y: -502.05564495252315, + z: 1309.5241560270892, + }, + }, + { + id: '4061', + data: { + label: 'The Health Publishing Group', + x: 3675.498617704219, + y: -49.25061260364417, + z: 574.999787624224, + }, + }, + { + id: '4062', + data: { + label: 'Health', + x: 3776.7973108582614, + y: -138.48804475773608, + z: 139.75444613535302, + }, + }, + { + id: '4063', + data: { + label: 'Hippocrates', + x: 3870.790991883027, + y: 298.92514197058995, + z: 291.05807742589946, + }, + }, + { + id: '4064', + data: { + label: 'Coastal Living', + x: 3908.1482525655742, + y: 74.55588292740893, + z: 196.76217856915, + }, + }, + { + id: '4065', + data: { + label: 'Weight Watchers', + x: 4059.7782510720754, + y: 108.0092630841167, + z: 382.2187154785925, + }, + }, + { + id: '4066', + data: { + label: 'Real Simple', + x: 2947.16715362412, + y: -323.37363852938546, + z: 1405.980410772134, + }, + }, + { + id: '4067', + data: { + label: 'Asiaweek', + x: 3843.9821687727613, + y: -671.5720465611025, + z: 1194.5677134215266, + }, + }, + { + id: '4068', + data: { + label: 'President', + x: 3357.3496889659523, + y: -783.6264248711608, + z: 1151.9709771653697, + }, + }, + { + id: '4069', + data: { + label: 'Dancyu', + x: 3229.996853148147, + y: -786.5480971996752, + z: 1315.911439434209, + }, + }, + { + id: '4070', + data: { + label: 'Wallpaper', + x: 3912.2242112858007, + y: -572.2382376566358, + z: 1670.7622942650535, + }, + }, + { + id: '4071', + data: { + label: 'eCompany Now', + x: 3075.598974543401, + y: 22.752304447479496, + z: 1731.8906643746946, + }, + }, + { + id: '4072', + data: { + label: 'American Express Publishing', + x: 3163.4630944058767, + y: -5147.012051873606, + z: -1795.0805642431646, + }, + }, + { + id: '4073', + data: { + label: 'Travel & Leisure', + x: 1909.1113060912242, + y: -2848.1174411260904, + z: 5059.757873944295, + }, + }, + { + id: '7747', + data: { + label: 'TALX', + x: 4824.009252884626, + y: -1254.5044216123063, + z: -4002.830765717462, + }, + }, + { + id: '4076', + data: { + label: 'Departures', + x: -2394.306937062532, + y: 3903.791586156558, + z: -1917.0765830852206, + }, + }, + { + id: '4077', + data: { + label: 'SkyGuide', + x: 2766.0890975666357, + y: 1963.0263698922154, + z: 4340.233168875127, + }, + }, + { + id: '4078', + data: { + label: 'DC Comics', + x: 3359.292891867906, + y: -833.8468883060992, + z: 1496.6139797745977, + }, + }, + { + id: '4079', + data: { + label: 'Vertigo', + x: 4037.135058193389, + y: -476.62035262381, + z: 1478.9532318005172, + }, + }, + { + id: '4080', + data: { + label: 'Paradox', + x: 3781.491450543419, + y: -143.39729976501107, + z: 1232.4616632958832, + }, + }, + { + id: '4081', + data: { + label: 'Milestone', + x: 3730.229870734827, + y: -510.6341765284165, + z: 864.7629049776722, + }, + }, + { + id: '4082', + data: { + label: 'Mad Magazine', + x: 3395.7565556444624, + y: -759.4049811653554, + z: 1788.1835684633022, + }, + }, + { + id: '4083', + data: { + label: 'Warner Music Group', + x: 4570.131504520822, + y: -2141.5360829138085, + z: -281.4520774810601, + }, + }, + { + id: '4084', + data: { + label: 'The Atlantic Group', + x: 4203.106164205973, + y: -2206.276200583392, + z: -580.3621517798116, + }, + }, + { + id: '4085', + data: { + label: 'Atlantic Classics', + x: 4464.829101691323, + y: -1904.872048581671, + z: -676.4169182658891, + }, + }, + { + id: '4086', + data: { + label: 'Atlantic Jazz', + x: 4700.6247383000555, + y: -1809.0550527687328, + z: -627.6644043416625, + }, + }, + { + id: '4087', + data: { + label: 'Atlantic Nashville', + x: 4588.255902768831, + y: -2667.1619209909445, + z: -446.7080480481527, + }, + }, + { + id: '4088', + data: { + label: 'Atlantic Theater', + x: 4577.709470803552, + y: -1694.940347775434, + z: -422.6297845654849, + }, + }, + { + id: '4089', + data: { + label: 'Big Beat', + x: 4540.58597766329, + y: -1753.8171365872693, + z: -71.91735162455505, + }, + }, + { + id: '4090', + data: { + label: 'Blackground', + x: 4847.797146799006, + y: -1742.3788148729795, + z: -356.4619089899974, + }, + }, + { + id: '4091', + data: { + label: 'Breaking', + x: 4193.323154435383, + y: -2440.685362759103, + z: -509.9457523970373, + }, + }, + { + id: '4092', + data: { + label: 'Curb', + x: 4515.779484192488, + y: -2286.558157137009, + z: -808.1564091271234, + }, + }, + { + id: '4093', + data: { + label: 'Igloo', + x: 4256.987226471121, + y: -2542.2973441465188, + z: -271.60384896215396, + }, + }, + { + id: '4094', + data: { + label: 'Lava', + x: 4738.464406963503, + y: -2340.191186899921, + z: -924.5329778602736, + }, + }, + { + id: '4095', + data: { + label: 'Mesa/Bluemoon', + x: 4711.815587167948, + y: -2454.5790912135567, + z: -699.7473732756253, + }, + }, + { + id: '4096', + data: { + label: 'Modern', + x: 4373.789957894832, + y: -2435.5259476664814, + z: -710.2559374495899, + }, + }, + { + id: '4097', + data: { + label: '1 43', + x: 4268.057332444319, + y: -2301.043473167984, + z: 20.36151994200504, + }, + }, + { + id: '4098', + data: { + label: 'Rhino Records', + x: 4479.784413853449, + y: -2454.8276555022753, + z: 105.61533624387869, + }, + }, + { + id: '4099', + data: { + label: 'Elektra Entertainment Group', + x: 5043.478107862666, + y: -2075.910832834454, + z: -53.25981010601164, + }, + }, + { + id: '4100', + data: { + label: 'Elektra', + x: 6842.171521914982, + y: 474.48617336095066, + z: -2841.387555162756, + }, + }, + { + id: '4101', + data: { + label: 'EastWest', + x: 4365.22533277409, + y: -2592.916845703763, + z: -483.83577895598944, + }, + }, + { + id: '4102', + data: { + label: 'Asylum', + x: 4980.369292233238, + y: -2451.5364468651655, + z: -530.6283334852834, + }, + }, + { + id: '4103', + data: { + label: 'Elektra/Sire', + x: 2941.0904970189627, + y: 3379.0289844589265, + z: 4077.9510394206986, + }, + }, + { + id: '4104', + data: { + label: 'Warner Brothers Records', + x: 4562.9027655415375, + y: -2042.7767866825068, + z: -792.8317303981974, + }, + }, + { + id: '4105', + data: { + label: 'Warner Brothers', + x: 4764.864924672988, + y: -2600.4187789077796, + z: -555.7015697850887, + }, + }, + { + id: '4106', + data: { + label: 'Warner Nashville', + x: 4976.359824527645, + y: -2342.2148518219055, + z: 13.069563827587306, + }, + }, + { + id: '4107', + data: { + label: 'Warner Alliance', + x: 5096.720769636802, + y: -2308.895115741753, + z: -449.6771050022389, + }, + }, + { + id: '4108', + data: { + label: 'Warner Resound', + x: 5122.602658317028, + y: -2080.3915275408112, + z: -318.44856460192733, + }, + }, + { + id: '4109', + data: { + label: 'Warner Sunset', + x: 4360.839103181626, + y: -2568.784636687263, + z: -72.99426320544794, + }, + }, + { + id: '4110', + data: { + label: 'Reprise', + x: 4616.326826503221, + y: -2622.125080455847, + z: -45.10693752355365, + }, + }, + { + id: '4111', + data: { + label: 'Reprise Nashville', + x: 5092.557400121861, + y: -2251.173995807507, + z: -192.35530168836954, + }, + }, + { + id: '4112', + data: { + label: 'American Recordings', + x: 4728.323901410479, + y: -2350.852491558009, + z: 158.27356710284664, + }, + }, + { + id: '4113', + data: { + label: 'Giant', + x: 4503.132676942432, + y: -2686.4914091061505, + z: -250.0122540497308, + }, + }, + { + id: '4114', + data: { + label: 'Maverick', + x: 4846.057651491943, + y: -2620.972408112024, + z: -393.49194837127044, + }, + }, + { + id: '4115', + data: { + label: 'Revolution', + x: 5013.443176821182, + y: -1901.8103966046156, + z: -462.56286212292406, + }, + }, + { + id: '4116', + data: { + label: 'Qwest', + x: 4377.744855926838, + y: -858.0310433868272, + z: 130.8181107272422, + }, + }, + { + id: '4117', + data: { + label: 'Warner Music International', + x: 4282.1164383529285, + y: -1875.474371967266, + z: -476.2635612620376, + }, + }, + { + id: '4118', + data: { + label: 'WEA Telegram', + x: 4934.334050748181, + y: -1923.0239865589265, + z: 11.935734323635257, + }, + }, + { + id: '4119', + data: { + label: 'East West ZTT', + x: 4535.710436451988, + y: -2536.5172030055937, + z: -659.8092452667037, + }, + }, + { + id: '4120', + data: { + label: 'Coalition', + x: 4802.471865974817, + y: -1730.3544459959949, + z: -119.46898494605585, + }, + }, + { + id: '4121', + data: { + label: 'CGD East West', + x: 4698.950259885045, + y: -1895.3382212441222, + z: 106.91412205737879, + }, + }, + { + id: '4122', + data: { + label: 'China', + x: 4141.88603993988, + y: -2285.665340219001, + z: -257.99713663692074, + }, + }, + { + id: '4123', + data: { + label: 'Continential', + x: 5085.964825271853, + y: -2090.443586905694, + z: -527.0876998374903, + }, + }, + { + id: '4124', + data: { + label: 'DRO East West', + x: 4787.373362701479, + y: -2101.5646961045036, + z: -799.3367516373283, + }, + }, + { + id: '4125', + data: { + label: 'Erato', + x: 5032.316583584919, + y: -1872.6253461572512, + z: -232.25875588754812, + }, + }, + { + id: '4126', + data: { + label: 'Fazer', + x: 4859.435553772579, + y: -2140.9480277604125, + z: 140.731754674545, + }, + }, + { + id: '4127', + data: { + label: 'Finlandia', + x: 4557.356334122853, + y: -2175.6799957408844, + z: 191.6962955432634, + }, + }, + { + id: '4128', + data: { + label: 'Magneoton', + x: 4318.806732050082, + y: -2164.7299559644784, + z: -746.7907226619437, + }, + }, + { + id: '4129', + data: { + label: 'MCM', + x: 5096.165222137505, + y: -2551.541176457717, + z: -176.74079004787606, + }, + }, + { + id: '4130', + data: { + label: 'Nonesuch', + x: 4807.27469158667, + y: -2517.9263019602904, + z: 14.951972165430558, + }, + }, + { + id: '4131', + data: { + label: 'Teldec', + x: 4875.232218362637, + y: -2365.1026240621686, + z: -704.1710554032042, + }, + }, + { + id: '4132', + data: { + label: 'Warner/Chappell Music', + x: 4877.537494730604, + y: -1933.5112896720636, + z: -660.4285936002284, + }, + }, + { + id: '4133', + data: { + label: 'WEA', + x: 4816.084382057096, + y: -2609.2429952306948, + z: -189.63166494359314, + }, + }, + { + id: '4134', + data: { + label: 'Ivy Hill', + x: 4956.961647160066, + y: -2178.9806456729348, + z: -691.8786117343154, + }, + }, + { + id: '4135', + data: { + label: 'Warner Special Products', + x: 4962.552645837376, + y: -2415.1721600141336, + z: -255.21167955339592, + }, + }, + { + id: '4136', + data: { + label: 'Heartland Music', + x: 3408.911305942054, + y: -250.06047206239646, + z: 831.2611826301926, + }, + }, + { + id: '4137', + data: { + label: 'Channel V', + x: -2650.8299588099358, + y: 1048.283601466214, + z: 2988.6072171001815, + }, + }, + { + id: '4138', + data: { + label: 'Warner Bros. Consumer Products', + x: 3687.264330085231, + y: 84.6355531502238, + z: 1868.8266479261097, + }, + }, + { + id: '4139', + data: { + label: 'Warner Bros. Studio Stores', + x: 3636.1700465039435, + y: -783.687873605059, + z: 1367.9092696246385, + }, + }, + { + id: '4140', + data: { + label: 'Warner Brothers Recreation Enterprises', + x: 3917.7546671758373, + y: -93.47020177877867, + z: 1170.1894105290432, + }, + }, + { + id: '4141', + data: { + label: 'Turner Entertainment', + x: 2905.8319593121755, + y: -852.600062456561, + z: 3460.6009535728144, + }, + }, + { + id: '4142', + data: { + label: 'TBS Superstation', + x: 2885.7663467391785, + y: -428.3301114304575, + z: 3723.042668182944, + }, + }, + { + id: '4143', + data: { + label: 'Turner Network Television (TNT)', + x: 3019.029238818472, + y: -942.5426137956772, + z: 4000.8049252783344, + }, + }, + { + id: '4144', + data: { + label: 'Turner South', + x: 2463.836966598861, + y: -794.0330024197472, + z: 3732.1859839049466, + }, + }, + { + id: '4145', + data: { + label: 'Cartoon Network', + x: 2509.229812893906, + y: -598.7284729701208, + z: 3630.5202211266783, + }, + }, + { + id: '4146', + data: { + label: 'Turner Classic Movies', + x: 3208.044239343472, + y: -818.5610624629146, + z: 3874.6100623559432, + }, + }, + { + id: '4147', + data: { + label: 'Cartoon Network in Europe', + x: 2456.811168237065, + y: -987.9767959130336, + z: 3534.157208164106, + }, + }, + { + id: '4148', + data: { + label: 'Cartoon Network in Latin America', + x: 2628.526072945191, + y: -641.0658559659407, + z: 3913.8930650915386, + }, + }, + { + id: '4149', + data: { + label: 'TNT & Cartoon Network in Asia/Pacific', + x: 2920.1433242262874, + y: -571.7887398859596, + z: 3934.845242254311, + }, + }, + { + id: '4150', + data: { + label: 'New Line Cinema', + x: 3074.0338672691696, + y: -629.9718909426634, + z: 3163.8371999036685, + }, + }, + { + id: '4151', + data: { + label: 'Fine Line Features', + x: 2700.275569589062, + y: -492.16661259684724, + z: 3808.132310616063, + }, + }, + { + id: '4152', + data: { + label: 'Turner Original Productions', + x: 3090.7335953105317, + y: -681.1731483186495, + z: 3921.953301145217, + }, + }, + { + id: '4153', + data: { + label: 'Atlanta Braves', + x: 2547.799519171071, + y: -947.8956394573689, + z: 3834.3500675085697, + }, + }, + { + id: '4154', + data: { + label: 'Atlanta Hawks', + x: 2851.0822659078376, + y: -809.0562422714327, + z: 4012.898593175426, + }, + }, + { + id: '4155', + data: { + label: 'Atlanta Thrashers', + x: 2671.175955233119, + y: -835.4160627240394, + z: 3964.7774015990435, + }, + }, + { + id: '4156', + data: { + label: 'Turner Sports', + x: 3122.329029333354, + y: -1082.7458560154773, + z: 3848.507147282416, + }, + }, + { + id: '4157', + data: { + label: 'World Championship Wrestling', + x: 3273.3343767596725, + y: -1070.827986905703, + z: 3643.6205287679663, + }, + }, + { + id: '4158', + data: { + label: 'Good Will Games', + x: 3329.2497291198965, + y: -798.4248758543175, + z: 3658.5242159863437, + }, + }, + { + id: '4159', + data: { + label: 'Philips Arena', + x: 2917.5337796927365, + y: -1166.8960092043421, + z: 3857.346190583294, + }, + }, + { + id: '4160', + data: { + label: 'Turner Learning', + x: 2812.0018423541387, + y: -1010.4896286009258, + z: 4000.177612842837, + }, + }, + { + id: '4161', + data: { + label: 'CNN Newsroom', + x: 2816.426745022679, + y: -1279.9186574448076, + z: 3629.531585630586, + }, + }, + { + id: '4162', + data: { + label: 'Turner Adventure Learning', + x: 2705.967952428955, + y: -1085.4134242152736, + z: 3886.2219920830153, + }, + }, + { + id: '4163', + data: { + label: 'Turner Home Satellite', + x: 2603.190983832453, + y: -1157.9587059104122, + z: 3703.0457837160106, + }, + }, + { + id: '4164', + data: { + label: 'Turner Network Sales', + x: 3157.1066840622566, + y: -529.0857223407893, + z: 3737.526538883466, + }, + }, + { + id: '4165', + data: { + label: '', + x: 4208.282404266251, + y: 2733.4605297557564, + z: 4386.729161886751, + }, + }, + { + id: '4166', + data: { + label: 'barnesandnoble.com', + x: -1037.9779856291566, + y: 1153.0930188683376, + z: -4748.283526728927, + }, + }, + { + id: '4167', + data: { + label: 'Family Circle', + x: -349.09921701509137, + y: 3193.111112567936, + z: 4591.959450854739, + }, + }, + { + id: '4168', + data: { + label: "McCall's", + x: -57.99576488581518, + y: 2472.595538966769, + z: -4852.348421727351, + }, + }, + { + id: '4169', + data: { + label: 'Parents', + x: -1204.1730491761514, + y: -901.6012639148082, + z: -4656.649391781783, + }, + }, + { + id: '4170', + data: { + label: 'YM Magazines', + x: 2894.7070788426354, + y: 4418.389966095556, + z: -3419.9217225887405, + }, + }, + { + id: '4171', + data: { + label: 'Inc.', + x: 1866.405572198123, + y: 3546.0618554599714, + z: -660.5903340375837, + }, + }, + { + id: '4172', + data: { + label: 'Vivendi Universal', + x: 3472.2404408022617, + y: 2325.4729272179566, + z: 232.6286351024658, + }, + }, + { + id: '4173', + data: { + label: 'Clear Channel Communications', + x: 450.6139235526381, + y: -1347.8114593113469, + z: 3241.0060729993097, + }, + }, + { + id: '4174', + data: { + label: 'Cox Communications', + x: 1610.3576797354283, + y: -226.3311366986054, + z: 290.81624138784264, + }, + }, + { + id: '4175', + data: { + label: 'ESPN2', + x: 4867.538259885245, + y: -2603.1091522814986, + z: -2524.1366607364766, + }, + }, + { + id: '4176', + data: { + label: 'ESPN News', + x: 5599.595555798313, + y: 4013.213784994235, + z: -2655.6808597764452, + }, + }, + { + id: '4177', + data: { + label: 'ESPN Now', + x: -385.14240023480255, + y: 1308.0767574260822, + z: 591.9454197446674, + }, + }, + { + id: '4178', + data: { + label: 'ESPN Extreme', + x: -253.41625502836868, + y: 1326.9396164278469, + z: 834.8450895564536, + }, + }, + { + id: '4179', + data: { + label: 'Tele-Munchen', + x: -1809.1115549247027, + y: -2187.822890406219, + z: 2803.7413388508185, + }, + }, + { + id: '4180', + data: { + label: 'Hamster Productions', + x: 1936.2981924974877, + y: 1952.9720502017653, + z: -5295.341377400507, + }, + }, + { + id: '4181', + data: { + label: 'TV Sport of France', + x: 3292.8966383890834, + y: 5242.6085332020575, + z: -3068.1303547901607, + }, + }, + { + id: '4182', + data: { + label: 'Tesauro of Spain', + x: -3236.6104379284247, + y: -1202.6765070307652, + z: -2682.495632951201, + }, + }, + { + id: '4183', + data: { + label: 'Scandinavian Broadcasting System', + x: 5560.620411661471, + y: -1562.8208045926756, + z: -3328.2291798868596, + }, + }, + { + id: '4184', + data: { + label: 'Eurosport of London', + x: -1122.9907950358572, + y: -3447.0609087597695, + z: -2943.1822576326035, + }, + }, + { + id: '4185', + data: { + label: 'Japan Sports Channel', + x: 6000.199534507282, + y: 2279.791608996657, + z: -3643.396459739876, + }, + }, + { + id: '4186', + data: { + label: 'Toysmart', + x: 5719.104978041863, + y: 3093.673443788669, + z: -3003.045370113151, + }, + }, + { + id: '4187', + data: { + label: 'OptiMark Trading System', + x: 3865.8165739949654, + y: 1561.1090066777585, + z: 5336.572745065832, + }, + }, + { + id: '4188', + data: { + label: 'Q101-FM (Chicago)', + x: 4189.9160331475805, + y: 4408.728115778438, + z: 3180.283636943515, + }, + }, + { + id: '4189', + data: { + label: 'WENS-FM (Indianapolis)', + x: 879.5964500066493, + y: 5670.63991341161, + z: 2426.0458823928025, + }, + }, + { + id: '4190', + data: { + label: 'WIBC-FM (Indianapolis)', + x: 2818.751077813862, + y: 5350.537829005866, + z: -210.65465998197217, + }, + }, + { + id: '4191', + data: { + label: 'WNOU-FM (Indianapolis)', + x: 183.41297180414853, + y: 5195.88646489652, + z: -1924.0784928721728, + }, + }, + { + id: '4192', + data: { + label: 'WTLC-AM/FM (Indianapolis)', + x: 2379.2209457111185, + y: -2101.7729713013355, + z: -2496.33490602987, + }, + }, + { + id: '4193', + data: { + label: 'Network Indiana (Indianapolis)', + x: 2641.4963809836217, + y: -2427.2930415622195, + z: -2597.5671101970597, + }, + }, + { + id: '4194', + data: { + label: 'AgriAmerica (Indianapolis)', + x: 2687.2618524616164, + y: -2578.950113192875, + z: -2319.5317509856773, + }, + }, + { + id: '4195', + data: { + label: 'KPWR-FM (Los Angeles)', + x: 5902.681534310622, + y: -2365.9283059230124, + z: 3680.259077305372, + }, + }, + { + id: '4196', + data: { + label: 'KZLA-FM (Los Angeles)', + x: 2396.770150974647, + y: -2255.5142930261663, + z: -2242.1794388038315, + }, + }, + { + id: '4197', + data: { + label: 'WRKS-FM (New York)', + x: 3322.815216653388, + y: 3411.9485520966714, + z: -4808.348340520406, + }, + }, + { + id: '4198', + data: { + label: 'WQHT-FM (New York)', + x: 849.4094775288257, + y: 5204.011121136656, + z: 3275.732801317564, + }, + }, + { + id: '4199', + data: { + label: 'WQCD-FM (New York)', + x: 2970.4879260144166, + y: -2593.807093461166, + z: -2338.7683038072364, + }, + }, + { + id: '4200', + data: { + label: 'KKLT-FM (Phoenix)', + x: 984.1038845024638, + y: -3918.9604515066476, + z: -4344.754635507146, + }, + }, + { + id: '4201', + data: { + label: 'KMVP-AM (Phoenix)', + x: 6444.3312157527735, + y: -1876.5034287099575, + z: -2447.4927304849166, + }, + }, + { + id: '4202', + data: { + label: 'KTAR-AM (Phoenix)', + x: 266.38462848266767, + y: -3235.9631797554057, + z: 3687.9738601025297, + }, + }, + { + id: '4203', + data: { + label: 'KKFR-FM (Phoenix)', + x: 2655.786982764349, + y: -2402.6326555585256, + z: 5206.54568288388, + }, + }, + { + id: '4204', + data: { + label: 'KSHE-FM (St. Louis)', + x: 4027.210050123069, + y: -3902.911746824448, + z: -3963.615764401437, + }, + }, + { + id: '4205', + data: { + label: 'KIHT-FM (St. Louis)', + x: 2898.4131641234376, + y: -1644.480625999663, + z: -2302.13025534814, + }, + }, + { + id: '4206', + data: { + label: 'KFTK-FM (St. Louis)', + x: 2514.584591661874, + y: -2191.237790050916, + z: -1965.4776396374211, + }, + }, + { + id: '4207', + data: { + label: 'KPNT-FM (St. Louis)', + x: 2711.869899002723, + y: -1708.9565178399216, + z: -2617.121138359517, + }, + }, + { + id: '4208', + data: { + label: 'WMLL-FM (St. Louis)', + x: 3219.982175345963, + y: -1747.1703735906597, + z: -2348.231812831915, + }, + }, + { + id: ' IN)', + data: { + label: 'WTHI-FM (Terre Haute', + x: -2938.5854277253497, + y: 3299.0517718187903, + z: 443.1853870242209, + }, + }, + { + id: '4211', + data: { + label: 'Radio 10 (Argentina)', + x: 2655.5146110271858, + y: -1677.8050951397329, + z: -2413.243395380837, + }, + }, + { + id: '4212', + data: { + label: 'Mega 98.3 (Argentina)', + x: 3320.712410550667, + y: -2146.1285869986996, + z: -2443.064399582002, + }, + }, + { + id: '4213', + data: { + label: 'Slager Radio (Hungary)', + x: 3056.436542107704, + y: -1755.6470912253467, + z: -2091.085538549376, + }, + }, + { + id: '4214', + data: { + label: 'WALA-TV (Alabama)', + x: 2562.8673244012366, + y: -1764.6565941984425, + z: -2190.530893081273, + }, + }, + { + id: '4215', + data: { + label: 'KGUN-TV (Arizona)', + x: 2457.4351566826745, + y: -2378.4221573143814, + z: -2466.6767143917814, + }, + }, + { + id: '4216', + data: { + label: 'WFTX-TV (Florida)', + x: 2764.479719557961, + y: -2046.1337547732746, + z: -2773.57316294484, + }, + }, + { + id: '4217', + data: { + label: 'WKCF-TV (Florida)', + x: 2921.8818841183956, + y: -1666.0630169306442, + z: -2615.6178323904205, + }, + }, + { + id: '4218', + data: { + label: 'KHON-TV (Hawaii)', + x: 3308.208727114904, + y: -1928.2739837157708, + z: -2169.9678524191363, + }, + }, + { + id: '4219', + data: { + label: 'KGMB-TV (Hawaii)', + x: 3063.534642706834, + y: -1663.4340288839871, + z: -2488.276422108444, + }, + }, + { + id: '4220', + data: { + label: 'WTHI-TV (Indiana)', + x: 3192.8673169228446, + y: -2132.913414543308, + z: -2667.3936166758344, + }, + }, + { + id: '4221', + data: { + label: 'KSNT-TV (Kansas)', + x: 2979.670557909115, + y: -2334.720810085417, + z: -1858.532807086554, + }, + }, + { + id: '4222', + data: { + label: 'KSNW-TV (Kansas)', + x: 3254.9038631158464, + y: -2388.7408106911316, + z: -2272.2741793028536, + }, + }, + { + id: '4223', + data: { + label: 'WVUE-TV (Louisiana)', + x: 2505.5334551302244, + y: -1840.1194147824363, + z: -2567.122176745533, + }, + }, + { + id: '4224', + data: { + label: 'KMTV-TV (Nebraska)', + x: 2957.588337599102, + y: -1842.0141457165796, + z: -2808.462100512534, + }, + }, + { + id: '4225', + data: { + label: 'KRQE-TV (New Mexico)', + x: 3100.970391813281, + y: -2517.729057431414, + z: -2122.4979042512587, + }, + }, + { + id: '4226', + data: { + label: 'KOIN-TV (Oregon)', + x: 3287.342284790452, + y: -1963.9163230827614, + z: -2471.6056938355196, + }, + }, + { + id: '4227', + data: { + label: 'WSAZ-TV (West Virginia)', + x: 2578.6528154991393, + y: -2106.999566941274, + z: -2617.503642359151, + }, + }, + { + id: '4228', + data: { + label: 'WLUK-TV (Wisconsin)', + x: 2404.563675961117, + y: -1938.3237059256285, + z: -2312.350678749753, + }, + }, + { + id: '4229', + data: { + label: 'Atlanta', + x: 2924.416507913518, + y: -2202.9487670992476, + z: -2739.4364121178432, + }, + }, + { + id: '4230', + data: { + label: 'Country Sampler', + x: 3002.535565572622, + y: -1898.7948104371696, + z: -2632.30172269026, + }, + }, + { + id: '4231', + data: { + label: 'Indianapolis Monthly', + x: 2588.3488527890654, + y: -2467.2056863170346, + z: -2102.4139819738616, + }, + }, + { + id: '4232', + data: { + label: 'Los Angeles Magazine', + x: 3152.4931477912014, + y: -2323.273236535012, + z: -2612.433411117249, + }, + }, + { + id: '4233', + data: { + label: 'Cincinnati Texas Monthly', + x: 3072.456305770601, + y: -2064.5299919137074, + z: -2793.5043360012937, + }, + }, + { + id: '4234', + data: { + label: 'Big Hit Marketing', + x: 2726.999940412265, + y: -1848.8887605377995, + z: -2743.9759292008475, + }, + }, + { + id: '4235', + data: { + label: 'jobcityusa.com', + x: 2831.221453478723, + y: -2540.979393564751, + z: -2524.0294173535453, + }, + }, + { + id: '4236', + data: { + label: 'United Media', + x: 6338.051981935092, + y: -2976.257308901135, + z: 1103.938855646625, + }, + }, + { + id: '4237', + data: { + label: 'Scripps Productions and Cinetel Studios', + x: 6529.373967803751, + y: -2744.1409814632534, + z: 1167.3589471538219, + }, + }, + { + id: '4238', + data: { + label: 'SunShine Pages', + x: 6295.605627016918, + y: -2822.141818793573, + z: 1898.3258478529885, + }, + }, + { + id: '4239', + data: { + label: 'Scripps Ventures', + x: 6586.037305657882, + y: -3083.7755969064765, + z: 2020.1839388201981, + }, + }, + { + id: '4240', + data: { + label: 'Chum', + x: 2743.943647182299, + y: 1844.36966563043, + z: 3066.671377532455, + }, + }, + { + id: '4241', + data: { + label: 'TV Azteca', + x: 1631.5931445725755, + y: 2492.1906678393993, + z: 3212.8889508084167, + }, + }, + { + id: '4242', + data: { + label: '24/7 Media', + x: 147.0309888047046, + y: 4983.784891364868, + z: -996.7255234279994, + }, + }, + { + id: '4243', + data: { + label: 'Hoovers', + x: 2720.7372015578326, + y: -1427.1639601327854, + z: -1812.5591600403145, + }, + }, + { + id: '4244', + data: { + label: 'Ralph Lauren Media', + x: 7577.756502534305, + y: -470.1843580383097, + z: 2363.206508555822, + }, + }, + { + id: '4245', + data: { + label: 'Marie Claire', + x: -348.88607217000333, + y: -324.0569093914022, + z: -2080.8407688342677, + }, + }, + { + id: '4246', + data: { + label: 'COMAG', + x: 3708.6994504941804, + y: 2878.9970093859147, + z: 4952.948310047694, + }, + }, + { + id: '4247', + data: { + label: 'TVA', + x: -3038.515034801326, + y: 2553.6970749424136, + z: 2089.868332107499, + }, + }, + { + id: '4248', + data: { + label: 'Locomotion', + x: -1431.5910920623671, + y: -1336.8257515343269, + z: 4615.5563450099025, + }, + }, + { + id: '4249', + data: { + label: 'Fort Wayne Newspapers', + x: 3681.1255118272056, + y: 1915.469921819509, + z: 4682.617536103611, + }, + }, + { + id: '4250', + data: { + label: 'Knight Ridder/Tribune Information Services', + x: 2746.77354579285, + y: -2851.228740875591, + z: 887.2297423031929, + }, + }, + { + id: '4251', + data: { + label: 'Landmark Communications (LCNI)', + x: -233.4029054950831, + y: 3223.2524208073582, + z: 405.839807361909, + }, + }, + { + id: '4252', + data: { + label: 'The Virginian-Pilot (Norfolk)', + x: -159.93060992512136, + y: 3617.5829093395782, + z: 105.82521870980175, + }, + }, + { + id: '4253', + data: { + label: 'The Roanoke Times (Virginia)', + x: 71.99389527915142, + y: 3537.2909124119165, + z: 246.74631747341397, + }, + }, + { + id: ' N.C)', + data: { + label: 'News & Record (Greensboro', + x: 5931.409320220537, + y: 1855.928099497674, + z: -3519.7571223619916, + }, + }, + { + id: ' Md.)', + data: { + label: 'The Carroll County Times (Westminster', + x: -1135.8697750237502, + y: 4763.663040071833, + z: -2301.92996413547, + }, + }, + { + id: ' Ky.)', + data: { + label: 'News-Enterprise (Elizabethtown', + x: 6754.8520791290875, + y: -3114.3324430423963, + z: -222.16552820207804, + }, + }, + { + id: '4258', + data: { + label: 'Los Alamos Monitor (New Mexico)', + x: -140.97510108591823, + y: 3401.3040598451644, + z: 833.3957756115573, + }, + }, + { + id: ' Va.)', + data: { + label: 'Bedford Bulletin (Bedford', + x: -9.711030519762184, + y: 5305.832520302704, + z: -2616.7506113393038, + }, + }, + { + id: ' Colo.)', + data: { + label: 'Evergreen Newspapers (Evergreen', + x: -3193.427991035107, + y: -1785.6284177744599, + z: -2082.37870692792, + }, + }, + { + id: ' Ark.)', + data: { + label: 'The Trucker (Little Rock', + x: 584.9435362345871, + y: 2128.386879918494, + z: 5435.790036948148, + }, + }, + { + id: '4276', + data: { + label: 'Gator Bait', + x: -109.67039968835095, + y: 3702.02912807565, + z: 426.70257479576304, + }, + }, + { + id: '4277', + data: { + label: 'Gator Talk', + x: -71.28638557874021, + y: 3371.690734105436, + z: -4.0183854618022155, + }, + }, + { + id: '4278', + data: { + label: 'Osceola', + x: -306.78326553235837, + y: 3211.554326799274, + z: -51.7827517716735, + }, + }, + { + id: '4279', + data: { + label: 'Inside Indiana', + x: -485.18024339161957, + y: 3046.4376944015034, + z: 746.7215604544211, + }, + }, + { + id: '4280', + data: { + label: 'The Voice of the Hawkeyes', + x: -647.8483920357377, + y: 3301.480173679489, + z: 650.9624185318683, + }, + }, + { + id: '4281', + data: { + label: 'Huskers Illustrated', + x: -537.2607211510517, + y: 3120.91865167644, + z: 80.17157782174633, + }, + }, + { + id: '4282', + data: { + label: 'Carolina Blue', + x: 46.3899184325507, + y: 3551.2448989272266, + z: 573.5041048466562, + }, + }, + { + id: '4283', + data: { + label: "Cats' Pause magazine", + x: -333.6842616671308, + y: 3201.1792913348777, + z: 875.3659673265192, + }, + }, + { + id: '4284', + data: { + label: 'Travel', + x: -597.2079854052333, + y: 3424.6840306889985, + z: 142.49415228931392, + }, + }, + { + id: '4285', + data: { + label: 'Weather Channel', + x: -528.3393619913801, + y: 3625.010941652349, + z: 294.1548936571489, + }, + }, + { + id: '4286', + data: { + label: 'KLAS-TV (Las Vegas)', + x: -403.45936412541846, + y: 3455.4181600602424, + z: 793.3957049697208, + }, + }, + { + id: '4287', + data: { + label: 'WTVF-TV (Nashville)', + x: -325.2151147973483, + y: 3725.3325146036245, + z: 257.96178459359714, + }, + }, + { + id: '4288', + data: { + label: 'NewsChannel 5+ (Nashville)', + x: -682.5579255160037, + y: 3368.364043982606, + z: 385.12111114769516, + }, + }, + { + id: '4289', + data: { + label: 'NewsChannel 5 Radio (Nashville)', + x: -366.8615902697459, + y: 3707.0930911092205, + z: 530.0941055101433, + }, + }, + { + id: '4290', + data: { + label: 'American Outdoor Advertising', + x: -619.2775708142887, + y: 3006.177745976182, + z: 427.31682468971127, + }, + }, + { + id: '4291', + data: { + label: 'Church Impressions', + x: -571.280728805284, + y: 3569.5311725170277, + z: 560.552541642166, + }, + }, + { + id: '4292', + data: { + label: 'Landmark Education Services', + x: -384.6830590187935, + y: 3490.4328983534283, + z: 4.9581795205340065, + }, + }, + { + id: '4293', + data: { + label: 'Trader Publishing', + x: 182.33000528803285, + y: 2165.292735815122, + z: 385.12020329421375, + }, + }, + { + id: '4294', + data: { + label: 'Capital-Gazette Communications', + x: -271.0258140855065, + y: 3661.1689746568213, + z: 741.1214549567551, + }, + }, + { + id: '4295', + data: { + label: 'Washingtonian magazine', + x: -365.2373669803449, + y: 4055.375350824529, + z: 943.7231569616399, + }, + }, + { + id: ' Md)', + data: { + label: 'The Capital (Annapolis', + x: 7235.920032392656, + y: -202.93173945943317, + z: -2349.194890663296, + }, + }, + { + id: '4298', + data: { + label: 'Lee Enterprises', + x: 3969.3182778661094, + y: -5317.824632603068, + z: 647.7901653362321, + }, + }, + { + id: '4299', + data: { + label: 'MediaNews Group', + x: -927.2058720035842, + y: 651.121380778332, + z: 3076.958521759215, + }, + }, + { + id: '4300', + data: { + label: 'Fairbanks Daily News-Miner (Alaska)', + x: -1283.542058076879, + y: 849.7262601384775, + z: 2731.567500200316, + }, + }, + { + id: '4301', + data: { + label: 'Kodiak Daily Mirror (Alaska)', + x: -1316.6391254188345, + y: 585.9240114347168, + z: 2754.2755679528855, + }, + }, + { + id: '4304', + data: { + label: 'Chico Enterprise-Record (California)', + x: -1052.519280378072, + y: 157.41344946262305, + z: 3034.4091048719242, + }, + }, + { + id: '4307', + data: { + label: 'Eureka Times-Standard (California)', + x: -591.1920679269259, + y: 355.9233868232892, + z: 2935.8488634126475, + }, + }, + { + id: '4309', + data: { + label: 'L.A. Daily News (California)', + x: -630.0100190474052, + y: 890.7153533436987, + z: 2875.4809048027664, + }, + }, + { + id: '4311', + data: { + label: 'Long Beach Press-Telegram (California)', + x: -775.6068392032535, + y: 667.5270264570388, + z: 2653.2324113545947, + }, + }, + { + id: '8189', + data: { + label: 'Frederick A. Moran', + x: 1483.7215640027223, + y: -3222.1486681813526, + z: 4704.735671815023, + }, + }, + { + id: '4313', + data: { + label: 'Oakland Tribune (California)', + x: -546.0200349034473, + y: 490.56484458630393, + z: 3406.435897377652, + }, + }, + { + id: '4314', + data: { + label: 'Oroville Mercury-Register (California)', + x: -464.8763573725693, + y: 532.3844030108752, + z: 3124.2941831571925, + }, + }, + { + id: '4315', + data: { + label: 'Pasadena Star-News (California)', + x: -1024.6001488556074, + y: 238.10232349835596, + z: 3379.620297344797, + }, + }, + { + id: '4316', + data: { + label: 'Red Bluff Daily News (California)', + x: -608.5564087825773, + y: 293.976301979489, + z: 3264.6651687963763, + }, + }, + { + id: '4317', + data: { + label: 'Redlands Daily Facts (California)', + x: -1085.7304518377045, + y: 796.1910654901238, + z: 2619.856456530705, + }, + }, + { + id: '4318', + data: { + label: 'San Bernardino County Sun (California)', + x: -845.0419483588196, + y: 1102.506314520616, + z: 2928.772840604673, + }, + }, + { + id: '4319', + data: { + label: 'San Gabriel Valley Tribune(California)', + x: -1231.7188488603417, + y: 447.5512643237102, + z: 3491.6480594421923, + }, + }, + { + id: '4320', + data: { + label: 'San Mateo County Times (California)', + x: -1202.3524577303374, + y: 247.2604209732098, + z: 3271.75420021684, + }, + }, + { + id: '4324', + data: { + label: 'Whittier Daily News(California)', + x: -1358.101603634052, + y: 968.2253965437905, + z: 2907.154751252945, + }, + }, + { + id: '4325', + data: { + label: 'The Denver Post (Colorado)', + x: -1283.6127196764628, + y: 298.3187211718851, + z: 3007.6372623043644, + }, + }, + { + id: '4326', + data: { + label: 'Fort Morgan Times (Colorado)', + x: -1238.151575359333, + y: 1053.3230537009615, + z: 2844.907390794235, + }, + }, + { + id: '4328', + data: { + label: 'Lamar Daily News (Colorado)', + x: -1290.2209913739125, + y: 1099.3394616067494, + z: 3072.6319530771448, + }, + }, + { + id: '4330', + data: { + label: 'Darien News-Review (Connecticut)', + x: -1051.5865812219301, + y: 516.2938927738513, + z: 2641.715233997996, + }, + }, + { + id: '4331', + data: { + label: 'Fairfield Citizen-News (Connecticut)', + x: -1179.5810909176985, + y: 330.3987257008884, + z: 2796.781474424092, + }, + }, + { + id: '4332', + data: { + label: 'Norwalk Citizen-News (Connecticut)', + x: -517.8599760279557, + y: 762.043702368968, + z: 3279.4745653315604, + }, + }, + { + id: '4333', + data: { + label: 'Westport-News (Connecticut)', + x: -645.5557386426577, + y: 676.6785831372695, + z: 3550.079890255525, + }, + }, + { + id: '4334', + data: { + label: 'Berkshire Eagle (Pittsfield. MA)', + x: -1353.526850575336, + y: 832.4401343115333, + z: 3399.2468726903053, + }, + }, + { + id: '4335', + data: { + label: 'Devens Commerce Journal (Massachusetts)', + x: -977.5702269059834, + y: 414.02306243660803, + z: 3554.3906788904023, + }, + }, + { + id: '4336', + data: { + label: 'The Groton Landmark (Massachusetts)', + x: -1442.9156766928481, + y: 679.0725319845782, + z: 2918.4210681766162, + }, + }, + { + id: '4337', + data: { + label: 'The Harvard Hillside(Massachusetts)', + x: -1430.3669780884484, + y: 461.78857998891647, + z: 3093.3680163988656, + }, + }, + { + id: '4338', + data: { + label: 'Lowell Sun (Massachusetts)', + x: -628.6119603108255, + y: 872.2135326793384, + z: 3454.897642665929, + }, + }, + { + id: '4339', + data: { + label: 'North Adams Transcript (Massachusetts)', + x: -852.3108437588138, + y: 884.524950651324, + z: 3573.9697470459846, + }, + }, + { + id: '4340', + data: { + label: 'Pepperell Free Press (Massachusetts)', + x: -935.6765176588041, + y: 988.765321048427, + z: 2706.0331067995735, + }, + }, + { + id: '4342', + data: { + label: 'Carlsbad Current-Argus (New Mexico)', + x: -868.0206062335384, + y: 644.9382516067622, + z: 3629.3687947929334, + }, + }, + { + id: '4343', + data: { + label: 'Deming Headlight (New Mexico)', + x: -1366.87347676347, + y: 416.899966537753, + z: 3297.7736171517, + }, + }, + { + id: '4344', + data: { + label: 'Farmington Daily Times (New Mexico)', + x: -1204.0027723475184, + y: 1020.4057076192531, + z: 3415.251954974753, + }, + }, + { + id: '4345', + data: { + label: 'Las Cruces Sun-News (New Mexico)', + x: -780.2746299137932, + y: 178.0715165729029, + z: 3116.5695754453614, + }, + }, + { + id: '4346', + data: { + label: 'Silver City Sun-News (New Mexico)', + x: -739.2915532263297, + y: 453.30836797455595, + z: 3538.8486354009888, + }, + }, + { + id: '4349', + data: { + label: 'Lebanon Daily News (Pennsylvania)', + x: -827.8499954776711, + y: 227.4609813756275, + z: 3373.8268530881846, + }, + }, + { + id: '4350', + data: { + label: 'York Daily Record (Pennsylvania)', + x: -1061.985479572955, + y: 719.5622750112205, + z: 3615.0477079656475, + }, + }, + { + id: '4351', + data: { + label: 'York Dispatch (Pennsylvania)', + x: -1363.4198491847255, + y: 975.1136021964071, + z: 3232.6319757179945, + }, + }, + { + id: '4352', + data: { + label: 'York Sunday News (Pennsylvania)', + x: -1125.5131071546855, + y: 1153.6769181173045, + z: 3273.61170641808, + }, + }, + { + id: '4353', + data: { + label: 'The Park Record (Utah)', + x: -1062.2721909750949, + y: 1181.1531462704088, + z: 3071.7400648250095, + }, + }, + { + id: '4354', + data: { + label: 'Salt Lake Tribune (Utah)', + x: 4284.60004845567, + y: -1613.320431874695, + z: -3492.4815218706494, + }, + }, + { + id: '4355', + data: { + label: 'Bennington Banner (Vermont)', + x: -1068.1492984451938, + y: 1120.54651573422, + z: 2858.275658786914, + }, + }, + { + id: '4356', + data: { + label: 'Brattleboro Reformer (Vermont)', + x: -859.8328420749731, + y: 259.57302865723057, + z: 2830.008988019387, + }, + }, + { + id: '4357', + data: { + label: 'Charleston Daily Mail', + x: -1471.228662233597, + y: 671.9218544221209, + z: 3141.7120360406675, + }, + }, + { + id: '4358', + data: { + label: 'Affiliated Newspapers Investments', + x: -1070.673101188763, + y: 939.9294038303422, + z: 3530.8104099953757, + }, + }, + { + id: '4359', + data: { + label: 'Denver Newspapers', + x: -1435.3546479444408, + y: 892.0042890689216, + z: 3065.4689974707476, + }, + }, + { + id: '4360', + data: { + label: 'Fairbanks Publishing', + x: -884.980908832933, + y: 1062.9362509847006, + z: 3428.553557007229, + }, + }, + { + id: '4361', + data: { + label: 'Garden State Newspapers', + x: -889.1086031297418, + y: 1171.151841030282, + z: 3241.244162411383, + }, + }, + { + id: '4362', + data: { + label: 'News Technologies', + x: -717.9109576486293, + y: 1033.1763136520356, + z: 3244.5696982143822, + }, + }, + { + id: '4363', + data: { + label: 'StreamSearch.com', + x: -989.7757768713931, + y: 4471.188921694626, + z: 2735.795694833521, + }, + }, + { + id: '4364', + data: { + label: 'Fox Television Stations', + x: 1099.7397583280774, + y: 3276.5331887145817, + z: 1194.539638148027, + }, + }, + { + id: '4365', + data: { + label: 'MCI Worldcom', + x: 2622.6982755989166, + y: 983.651836756588, + z: -177.23721259941647, + }, + }, + { + id: '4366', + data: { + label: 'iSyndicate', + x: -3696.740707903368, + y: -2004.8240384568335, + z: 925.0159987372043, + }, + }, + { + id: '4367', + data: { + label: 'Media Central', + x: -1674.0882610662309, + y: -1050.9135121004895, + z: -461.28709606818296, + }, + }, + { + id: '4368', + data: { + label: 'Brill Media Holdings', + x: 96.58132828140445, + y: -146.23916371057544, + z: -22.03754377472837, + }, + }, + { + id: '4369', + data: { + label: "Brill's Content", + x: -248.83072691240554, + y: 42.75640121756736, + z: -298.9032081010251, + }, + }, + { + id: '4370', + data: { + label: 'Kagan World Media', + x: -2312.7875366741755, + y: -503.7377093132159, + z: 1685.8869063065758, + }, + }, + { + id: '4371', + data: { + label: 'Broadband Technology', + x: -2870.9873316937446, + y: -354.7292334799552, + z: 1594.116826880789, + }, + }, + { + id: '4372', + data: { + label: 'Broadcast Banker/Broker', + x: -2633.7344167894507, + y: -424.976165639412, + z: 1282.2386241434467, + }, + }, + { + id: '4373', + data: { + label: 'Broadcast Investor', + x: -2587.0312316325226, + y: -988.0418849888566, + z: 1643.1211768837413, + }, + }, + { + id: '4374', + data: { + label: 'B-Stats', + x: -2732.4586772661746, + y: -849.9689308974437, + z: 1755.615714614116, + }, + }, + { + id: '4375', + data: { + label: 'Cable Program Investor', + x: -2694.0241163486303, + y: -845.3945215812802, + z: 1936.464152032174, + }, + }, + { + id: '4376', + data: { + label: 'Cable TV Advertising', + x: -2806.6463638954183, + y: -743.3717647663619, + z: 1554.4767655135265, + }, + }, + { + id: '4377', + data: { + label: 'Cable TV Finance', + x: -2514.7774914046645, + y: -902.1073729535054, + z: 2053.2810837306015, + }, + }, + { + id: '4378', + data: { + label: 'Cable TV Investor', + x: -2632.4644428973047, + y: -710.9678187006227, + z: 2109.5363669627804, + }, + }, + { + id: '4379', + data: { + label: 'Cable TV Law Reporter', + x: -2853.5566110482064, + y: -552.2965040096427, + z: 1554.5733855250548, + }, + }, + { + id: '4380', + data: { + label: 'The DBS Report', + x: -2400.3749845492716, + y: -1050.0354830142567, + z: 1637.0928621382095, + }, + }, + { + id: '4381', + data: { + label: 'Digital Television', + x: -2760.1561795623575, + y: -361.6451289316326, + z: 2039.8443153986805, + }, + }, + { + id: '4382', + data: { + label: 'Interactive TV Investor', + x: -2259.563512431334, + y: -410.5239611146111, + z: 2254.0441557996282, + }, + }, + { + id: '4383', + data: { + label: 'Internet Advertising', + x: -2349.4169756428723, + y: -1018.2400225606079, + z: 1953.9033752161579, + }, + }, + { + id: '4384', + data: { + label: 'Internet Media Investor', + x: -2078.9152135506765, + y: -820.0878376024888, + z: 2076.3536727486444, + }, + }, + { + id: '4385', + data: { + label: 'The Kagan Media', + x: -2477.8466081117513, + y: -1018.2742867870395, + z: 1813.329568077045, + }, + }, + { + id: '4386', + data: { + label: 'Index Kagan Media Investor', + x: -2832.4751240084543, + y: -675.447517464755, + z: 1798.6377755973613, + }, + }, + { + id: '4387', + data: { + label: 'Media Mergers & Acquisitions', + x: -2082.1024388886462, + y: -892.2093826914476, + z: 1393.023180432695, + }, + }, + { + id: '4388', + data: { + label: 'Media Sports Business', + x: -2270.421648597105, + y: -1001.1750890280664, + z: 1506.6916348393913, + }, + }, + { + id: '4389', + data: { + label: 'Motion Picture Investor', + x: -2202.6864825614543, + y: -1056.3227428193927, + z: 1760.298039789018, + }, + }, + { + id: '4390', + data: { + label: 'Newspaper Investor', + x: -2792.817458617778, + y: -589.4454345742278, + z: 2007.391191378583, + }, + }, + { + id: '4391', + data: { + label: 'The Pay TV Newsletter', + x: -2280.0802866476056, + y: -804.9717194934271, + z: 2177.3333784149386, + }, + }, + { + id: '4392', + data: { + label: 'Streaming Media Investor', + x: -2517.965193392638, + y: -716.5041202596391, + z: 1266.8729711816554, + }, + }, + { + id: '4393', + data: { + label: 'Tower Investor', + x: -2782.5999670875035, + y: -401.5509461182179, + z: 1378.3238962449689, + }, + }, + { + id: '4394', + data: { + label: 'TV Program Investor', + x: -1910.830236273502, + y: -811.4661770322475, + z: 1580.3964127417112, + }, + }, + { + id: '4395', + data: { + label: 'Video Investor', + x: -2162.8021763600364, + y: -758.3036804620999, + z: 1239.9780429161783, + }, + }, + { + id: '4396', + data: { + label: 'VOD Investor', + x: -2165.5450932368094, + y: -571.8158720671712, + z: 2240.2748408510206, + }, + }, + { + id: '4397', + data: { + label: 'Wireless Data & Messaging', + x: -2684.166029453542, + y: -714.042179617274, + z: 1342.2012010581057, + }, + }, + { + id: '4398', + data: { + label: 'Wireless Market Stats', + x: -2050.5576500573293, + y: -936.4326680663268, + z: 1902.9403737689038, + }, + }, + { + id: '4399', + data: { + label: 'Wireless/Private Cable Investor', + x: -2564.432623166509, + y: -931.644023734108, + z: 1461.3944710895237, + }, + }, + { + id: '4400', + data: { + label: 'Wireless Telecom Investor', + x: -2001.77360430072, + y: -630.96665510267, + z: 2161.669894669082, + }, + }, + { + id: '4401', + data: { + label: 'Advertising Forecast Beyond 2000', + x: -1862.6440823227163, + y: -586.9018638331592, + z: 1968.8482086936856, + }, + }, + { + id: '4402', + data: { + label: 'The Broadband Internet 2000', + x: -1808.919670812119, + y: -585.9170658826826, + z: 1678.361160110627, + }, + }, + { + id: '4403', + data: { + label: 'The Business of Auto Racing 2000', + x: -2872.9249127045214, + y: -466.06114402774074, + z: 1812.0411456673257, + }, + }, + { + id: '4404', + data: { + label: 'The Business of Baseball 2001', + x: -2439.733493898079, + y: -730.7128932926174, + z: 2184.4940655647774, + }, + }, + { + id: '4405', + data: { + label: 'The Business of Basketball 1999', + x: -2008.3916120512479, + y: -949.4570269862209, + z: 1688.927004433848, + }, + }, + { + id: '4406', + data: { + label: 'The Business of Football', + x: -2237.664850738571, + y: -944.530932385171, + z: 2016.6581094038147, + }, + }, + { + id: '4407', + data: { + label: 'The Business of Golf', + x: -2045.5704122471186, + y: -280.7646377197653, + z: 1329.0839969717954, + }, + }, + { + id: '4408', + data: { + label: 'The Business of Hockey', + x: -2224.7631575310284, + y: -29.143383044304336, + z: 1445.7073511114365, + }, + }, + { + id: '4409', + data: { + label: 'The Business of Newspaper Publishing 2001', + x: -2640.733519967411, + y: -501.76718003765063, + z: 2200.484356435763, + }, + }, + { + id: '4410', + data: { + label: 'The Business of Outdoor & Out-of-Home Advertising 2000', + x: -1869.5289142367164, + y: -761.3394842080329, + z: 1885.0256555336778, + }, + }, + { + id: '4411', + data: { + label: 'The Business of Soccer', + x: -1914.2813463845046, + y: -178.01601438477996, + z: 1596.4294749880833, + }, + }, + { + id: '4412', + data: { + label: 'The Business of Video Store Retailing 2000', + x: -1864.6780672735854, + y: -393.0318564799533, + z: 1966.069536977625, + }, + }, + { + id: '4413', + data: { + label: 'Cable Network Start-Up Strategies and Business Models', + x: -1936.1926235607302, + y: -606.8813977453482, + z: 1368.4481215461558, + }, + }, + { + id: '4414', + data: { + label: 'Cable TV Advertising Report 2000', + x: 498.6687480809302, + y: -4318.186635043098, + z: 2875.7460477758614, + }, + }, + { + id: '4415', + data: { + label: 'Cable TV Financial Databook 2000', + x: -2382.2825616702235, + y: -528.338320779666, + z: 2247.2849242836846, + }, + }, + { + id: '4416', + data: { + label: 'Cellular Telephone Atlas 1998', + x: -2166.3546557945438, + y: -461.57650893034855, + z: 1188.7040473038091, + }, + }, + { + id: '4417', + data: { + label: '1999 Cellular/PCS Pop Book', + x: -1998.8479624407353, + y: -386.6993505417414, + z: 2149.4313977388206, + }, + }, + { + id: '4418', + data: { + label: "Kagan's Communications Tower Databook 2001", + x: -1872.4758463377884, + y: -379.6634849070126, + z: 1504.5655788549884, + }, + }, + { + id: '4419', + data: { + label: "Competitive Rates in Wireless Telecom '99", + x: -2271.9823082982434, + y: -145.36615429117325, + z: 1271.896353948956, + }, + }, + { + id: '4420', + data: { + label: 'The Connected Household - 2000 Edition', + x: -2473.592468518638, + y: 56.89361324070352, + z: 1765.9591505953472, + }, + }, + { + id: '4421', + data: { + label: 'The Connected Household', + x: 1993.0968257168126, + y: -5375.894733307483, + z: -1786.0235775212848, + }, + }, + { + id: '4422', + data: { + label: 'The PPV Household', + x: -2420.631851798478, + y: -25.161824012304674, + z: 1374.8331406282055, + }, + }, + { + id: '4423', + data: { + label: 'Digital Tier Strategies 2000', + x: -2371.9593435253705, + y: 29.88434724529056, + z: 1905.5140641602225, + }, + }, + { + id: '4424', + data: { + label: 'Economics of Basic Cable Networks 2001', + x: -1814.0096467506344, + y: -422.46020897415417, + z: 1755.6038422140064, + }, + }, + { + id: '4425', + data: { + label: 'The Economics of TV Programming & Syndication 2000', + x: -2410.2875620909467, + y: -918.061684926521, + z: 1344.4274863235814, + }, + }, + { + id: '4426', + data: { + label: 'Future of Web Retailing & Home Shopping 2001', + x: -2082.995037241763, + y: -98.99426089059419, + z: 2023.7768532083587, + }, + }, + { + id: '4427', + data: { + label: 'International TV Markets', + x: -2308.6912062253678, + y: -611.7661126025934, + z: 1185.6502227383596, + }, + }, + { + id: '4428', + data: { + label: 'International Video Markets:', + x: -2653.935663273061, + y: -212.18219082656003, + z: 2016.2093566602957, + }, + }, + { + id: '4429', + data: { + label: 'Trends in Global Demand for VHS and DVD', + x: -2449.245278373758, + y: -93.33259350381768, + z: 2104.203453717031, + }, + }, + { + id: '4430', + data: { + label: 'The Future of Digital Entertainment', + x: -2715.9931946021225, + y: -104.65949578093944, + z: 1788.6150353423, + }, + }, + { + id: '4431', + data: { + label: "Kagan's MediaCast 2008", + x: -2605.344429760211, + y: -21.644844197376266, + z: 1928.4734797902097, + }, + }, + { + id: '4432', + data: { + label: 'Media Mergers & Acquisitions: Beyond 2000', + x: -2607.062962083643, + y: -182.96667343398772, + z: 1333.933299985694, + }, + }, + { + id: '4433', + data: { + label: 'Media Sports Business 1998', + x: -2047.9306569678795, + y: -94.18365260369542, + z: 1491.1985248448882, + }, + }, + { + id: '4434', + data: { + label: 'Media Trends 2001', + x: -2516.8892018978822, + y: 0.6180110530833927, + z: 1557.2928475239212, + }, + }, + { + id: '4435', + data: { + label: 'Online Music: A Strategic and Economic Analysis', + x: -2781.497575680253, + y: -199.69056936608249, + z: 1475.4680826554356, + }, + }, + { + id: '4436', + data: { + label: '1998 PCS Atlas & Databook', + x: -2417.653170788874, + y: -266.78925164754327, + z: 2227.174013210478, + }, + }, + { + id: '4437', + data: { + label: "Kagan's Radio Financial Databook 2001", + x: -1933.985496301468, + y: -203.12215059929744, + z: 1961.846863835931, + }, + }, + { + id: '4438', + data: { + label: 'The State of Home Video: Beyond 2000', + x: -2174.4685112932307, + y: -221.23792936770022, + z: 2190.2862377180813, + }, + }, + { + id: '4439', + data: { + label: 'The State of DBS 2001', + x: -2827.613757391405, + y: -269.8061256598361, + z: 1836.177437253685, + }, + }, + { + id: '4440', + data: { + label: 'The State of Digital TV', + x: -2151.3726971083124, + y: 35.316874983513394, + z: 1737.938577696765, + }, + }, + { + id: '4441', + data: { + label: 'Trends in Consumer Media Technology 2001', + x: -2426.1632605095388, + y: -333.93885014108105, + z: 1203.5918682562462, + }, + }, + { + id: '4442', + data: { + label: "Kagan's TV Financial Databook 2001", + x: -2249.546790590039, + y: 59.04885689578469, + z: 1873.2145818547688, + }, + }, + { + id: '4443', + data: { + label: 'Video E-tailing & Retailing', + x: -2329.886482675612, + y: 80.32936365674414, + z: 1583.1468110424328, + }, + }, + { + id: '4444', + data: { + label: 'Video-On-Demand: A Strategic & Economic Analysis', + x: -2259.899549620713, + y: -71.56062468118517, + z: 2083.1039077348278, + }, + }, + { + id: '4445', + data: { + label: 'The 1999 Wireless Cable Databook', + x: -1978.5558853613409, + y: -90.48922938623403, + z: 1805.7052578114315, + }, + }, + { + id: '4446', + data: { + label: 'Wireless Telecom Atlas & Databook 2001', + x: -2675.536679114499, + y: -54.61007115107814, + z: 1591.4773051197128, + }, + }, + { + id: '4447', + data: { + label: 'Wireless Telecom Financial Databook 2000', + x: -2580.208591262767, + y: -324.7785797369687, + z: 2145.4206130456637, + }, + }, + { + id: '4448', + data: { + label: 'Kagan Moviedata', + x: -2549.5888111565137, + y: -513.6449375740015, + z: 952.9796701465351, + }, + }, + { + id: '4449', + data: { + label: 'Bottom Line Blockbusters', + x: -2667.0577621700218, + y: -882.0756674894095, + z: 686.0700314479337, + }, + }, + { + id: '4450', + data: { + label: 'Box Office Champions 2000', + x: -2962.854627830145, + y: -702.2555962254102, + z: 799.7956216110648, + }, + }, + { + id: '4451', + data: { + label: 'The Kagan Box Office Report 2000', + x: -2833.4751976305083, + y: -161.96857258634256, + z: 787.0550113568867, + }, + }, + { + id: '4452', + data: { + label: 'Business of Movie Exhibition: Beyond 2000', + x: -2601.3983199204567, + y: -636.1604543432321, + z: 508.1248539372086, + }, + }, + { + id: '4453', + data: { + label: 'Business of Movie Production and Distribution: Beyond 2000', + x: -3013.7083476601847, + y: -393.66531605086294, + z: 861.1269124499885, + }, + }, + { + id: '4454', + data: { + label: 'Trends in Independent Film Profitability', + x: -2848.214659099694, + y: -480.04380474193084, + z: 585.0354003459612, + }, + }, + { + id: '4455', + data: { + label: 'Trends in Movie Profitability 2000', + x: -2598.5783025978017, + y: -310.907788793386, + z: 543.0541715602009, + }, + }, + { + id: '4456', + data: { + label: 'Asia Cable & Satellite World Magazine', + x: -2133.715326862039, + y: -882.6075358334128, + z: -457.8542447597751, + }, + }, + { + id: '4457', + data: { + label: 'Asia Pacific Wireless', + x: -2050.935400678599, + y: -898.9353040445436, + z: -197.2040725015253, + }, + }, + { + id: '4458', + data: { + label: 'Asia Pacific Media Investor', + x: -1951.9704183313593, + y: -1120.0790210485873, + z: -841.1556794927999, + }, + }, + { + id: '4459', + data: { + label: 'Euromedia Acquisitions & Finance', + x: -1265.7037762462417, + y: -1234.5166474841303, + z: -540.644829088525, + }, + }, + { + id: '4460', + data: { + label: 'Euromedia� Magazine', + x: -1950.4940965769242, + y: -692.5446143760081, + z: -637.2506268356469, + }, + }, + { + id: '4461', + data: { + label: 'European Cable/Pay TV', + x: -1315.9688015130332, + y: -915.6269905793115, + z: -318.19066955188475, + }, + }, + { + id: '4462', + data: { + label: 'European Cellular', + x: -1740.9084776639233, + y: -598.5921215296331, + z: -477.75149864348583, + }, + }, + { + id: '4463', + data: { + label: 'European Television', + x: -1317.421680487413, + y: -902.9896456057359, + z: -694.7267423656285, + }, + }, + { + id: '4464', + data: { + label: 'Kagan European Sports', + x: -1747.028473669773, + y: -1178.4860567634385, + z: -19.613914068252285, + }, + }, + { + id: '4465', + data: { + label: 'The Kagan/Solomon TV Program Report', + x: -2136.377458043004, + y: -1179.3406249001093, + z: -550.911013241847, + }, + }, + { + id: '4466', + data: { + label: 'The Kagan Interactive Summit', + x: -1960.4999471476522, + y: -1380.996563774032, + z: -666.9608253806971, + }, + }, + { + id: '4467', + data: { + label: 'Broadband Technology & Finance', + x: -1922.4972163631628, + y: -1006.481611921503, + z: -56.76973379825852, + }, + }, + { + id: '4468', + data: { + label: "Kagan World Media's European Sports Business", + x: -1699.1488656097852, + y: 87.01974182931706, + z: -4352.887789338324, + }, + }, + { + id: '4469', + data: { + label: "Kagan's Sports Values", + x: -1977.9187806034718, + y: -698.6988847559919, + z: -352.46770944246276, + }, + }, + { + id: '4470', + data: { + label: 'Sizing Up Streaming Media Values & Finance', + x: -1425.3761623330008, + y: -1436.7103525865784, + z: -370.48668720534243, + }, + }, + { + id: '4471', + data: { + label: "Cable in the Broadband Millennium '99", + x: -1701.7625903405014, + y: -1515.7202781975363, + z: -508.1915085956149, + }, + }, + { + id: '4472', + data: { + label: 'Digital Household Summit II', + x: -1630.8446742761378, + y: -1029.2837061533792, + z: -941.7160829875376, + }, + }, + { + id: '4473', + data: { + label: 'The Cable Broadband Future 1999', + x: -2112.7178424139724, + y: -1142.8250150154545, + z: -251.02438034900464, + }, + }, + { + id: '4474', + data: { + label: "Broadband Access '99", + x: -2042.3923997190009, + y: -1375.9913186064018, + z: -405.52486480172377, + }, + }, + { + id: '4475', + data: { + label: 'Digital Entertainment Summit East', + x: -1734.5998945531833, + y: -688.1249030714959, + z: -761.8922187042524, + }, + }, + { + id: '4476', + data: { + label: 'Digital Entertainment Summit West', + x: -1948.8632748187763, + y: -1367.2606356901624, + z: -182.27927990932795, + }, + }, + { + id: '4477', + data: { + label: 'Radio Acquisitions & Finance', + x: -1716.150273123316, + y: -1464.5141051524852, + z: -231.8148987956499, + }, + }, + { + id: '4478', + data: { + label: 'TV Acquisitions & Finance', + x: -1689.3545311495911, + y: -1298.6709908806151, + z: -860.6910156224096, + }, + }, + { + id: '4479', + data: { + label: 'The State of the Tower Industry', + x: -1519.0509596135341, + y: -794.4077973645271, + z: -825.6503153295106, + }, + }, + { + id: '4480', + data: { + label: 'Simba', + x: -1746.1477884603999, + y: -1931.7270414752045, + z: -1306.0912744927168, + }, + }, + { + id: '4481', + data: { + label: 'Business/Professional Online Information Markets 2001-2005', + x: -2189.912472830923, + y: -2089.4666169542816, + z: -1245.0507395891693, + }, + }, + { + id: '4482', + data: { + label: 'College Publishing Market', + x: -2048.9076468544104, + y: -1831.752693857222, + z: -1705.5467965864857, + }, + }, + { + id: '4483', + data: { + label: 'Computer Publishing Market Forecast 2001', + x: -2039.8416041423484, + y: -1875.254071573741, + z: -924.9894415124412, + }, + }, + { + id: '4484', + data: { + label: 'Corporate Training Markets - 2001', + x: -2044.6955190431488, + y: -1641.893929858088, + z: -1624.3852137662016, + }, + }, + { + id: '4485', + data: { + label: 'Electronic Commerce Report/Web Advertising', + x: -1384.7727776837066, + y: -1774.1772449274008, + z: -1056.9058518072006, + }, + }, + { + id: '4486', + data: { + label: 'Electronic Media for the School Market 2001', + x: -1278.6805313517311, + y: -2079.60717490117, + z: -1461.0596629013455, + }, + }, + { + id: '4487', + data: { + label: 'Independent Yellow Pages Markets 2000', + x: -1720.6379449708616, + y: -1495.945170011504, + z: -1530.0922517637907, + }, + }, + { + id: '4488', + data: { + label: 'International Online Markets 2000', + x: -1991.7079432581156, + y: -1509.0695172200637, + z: -1392.4145573466672, + }, + }, + { + id: '4489', + data: { + label: 'Internet Yellow Pages 2001', + x: -1539.2716959796176, + y: -1649.7604219418731, + z: -1665.0386445483673, + }, + }, + { + id: '4490', + data: { + label: 'Intranet Publishing', + x: -1652.6730085805164, + y: -1501.2395758024857, + z: -1272.9833853543728, + }, + }, + { + id: '4491', + data: { + label: 'Online Markets Overview', + x: -1267.9737710002682, + y: -1997.3272230596451, + z: -1211.1139070665063, + }, + }, + { + id: '4492', + data: { + label: 'Print Publishing for the School Market 2001', + x: -2104.578970004479, + y: -1689.394175313731, + z: -1143.9092787261222, + }, + }, + { + id: '4493', + data: { + label: 'Publishing for Library Markets 2001', + x: -2206.6928261998287, + y: -1936.2512978288355, + z: -1452.1843837583574, + }, + }, + { + id: '4494', + data: { + label: 'Publishing for the Professional Markets 2001', + x: -2195.261075620087, + y: -1732.8986211612487, + z: -1404.5658870147156, + }, + }, + { + id: '4495', + data: { + label: 'Specialty Directory Publishing', + x: -1835.6317309035219, + y: -2040.1144583113426, + z: -841.6648996703822, + }, + }, + { + id: '4496', + data: { + label: 'Technology for the Corporate Training Market', + x: -1423.753230097548, + y: -1596.510893007047, + z: -1421.1855189974874, + }, + }, + { + id: '4497', + data: { + label: 'Trade Book Publishing 2001', + x: -1821.6310712917643, + y: -2207.242308133576, + z: -1710.5958210187848, + }, + }, + { + id: '4498', + data: { + label: 'Web Advertising 2000', + x: -1289.8309223134272, + y: -1819.4539426717986, + z: -1341.17221681908, + }, + }, + { + id: ' 2001', + data: { + label: 'Worldwide Yellow Pages Markets', + x: 5880.5681275689, + y: -2911.8957567027114, + z: 2811.2983818871326, + }, + }, + { + id: '4500', + data: { + label: 'Yellow Pages Market Forecast 2001', + x: -1919.263283742118, + y: -2284.134258891252, + z: -1020.6190222985183, + }, + }, + { + id: '4501', + data: { + label: 'E-Books White Paper', + x: -1658.4737335483433, + y: -2380.834787456861, + z: -1505.9610989032496, + }, + }, + { + id: '4502', + data: { + label: 'EER White Paper', + x: -1767.7643840280205, + y: -1862.4559324777877, + z: -1823.1118074209317, + }, + }, + { + id: '4503', + data: { + label: 'Online Testing (k-12) White Paper', + x: -1614.4614656409096, + y: -1977.3829948716993, + z: -862.1671742817266, + }, + }, + { + id: '4504', + data: { + label: 'Printer/Supplier White Paper', + x: -1389.5061980737848, + y: -2129.8434961632756, + z: -1027.268663428436, + }, + }, + { + id: '4505', + data: { + label: 'Simba Online Publishing', + x: -1780.0486066663327, + y: -1624.58440593358, + z: -1743.5047831346526, + }, + }, + { + id: '4506', + data: { + label: 'Inside the Yellow Pages', + x: -1966.9765300333256, + y: -2020.0681058651342, + z: -1757.8090097960478, + }, + }, + { + id: '4507', + data: { + label: 'National Directory Conference', + x: -1369.6631613660675, + y: -2269.394991063025, + z: -1292.4678846873865, + }, + }, + { + id: '4508', + data: { + label: 'Inside the Yellow Pages Europe', + x: -2129.254593233568, + y: -2157.8208706357714, + z: -1022.1054658525011, + }, + }, + { + id: '4509', + data: { + label: 'Book Publishing Report', + x: -1606.5468238655772, + y: -2396.4327714149545, + z: -1226.1721247303185, + }, + }, + { + id: '4510', + data: { + label: 'Computer Publishing and Advertising Report', + x: -2068.65392757615, + y: -2309.2480247088397, + z: -1302.457707160971, + }, + }, + { + id: '4511', + data: { + label: 'Educational Marketer', + x: -1913.8146595098074, + y: -2342.570229103727, + z: -1533.222950690345, + }, + }, + { + id: '4512', + data: { + label: 'Electronic Advertising and Marketplace Report', + x: -1445.2634112915407, + y: -2263.5291997977124, + z: -1563.6539620202016, + }, + }, + { + id: '4513', + data: { + label: 'Electronic Education Report', + x: -1548.103967526025, + y: -2128.414794275653, + z: -1734.188636845674, + }, + }, + { + id: '4514', + data: { + label: 'Electronic Information Report', + x: -2095.1364190252166, + y: -2160.8368791910843, + z: -1556.6139824480074, + }, + }, + { + id: '4515', + data: { + label: 'Lifelong Learning Market Report', + x: -1373.766551652088, + y: -1874.2807660086116, + z: -1618.1353500713278, + }, + }, + { + id: '4516', + data: { + label: 'Professional Publishing Report', + x: -2174.3748464878995, + y: -1997.9709186279038, + z: -1096.7281698244908, + }, + }, + { + id: '4517', + data: { + label: 'Report on Directory Publishing', + x: -1625.9962615993024, + y: -2273.439804897996, + z: -988.7959389267871, + }, + }, + { + id: '4518', + data: { + label: 'School Technology Market Report', + x: -1536.103441092602, + y: -1889.6394615025245, + z: -1777.2999850034153, + }, + }, + { + id: '4519', + data: { + label: 'Yellow Pages and Directory Report', + x: -1838.273800146264, + y: -2413.010436983172, + z: -1293.2573824237904, + }, + }, + { + id: '4520', + data: { + label: 'American Demographics', + x: -1875.310166356484, + y: -853.4517875433123, + z: -1030.961471032962, + }, + }, + { + id: '4521', + data: { + label: 'American Demographics Magazine', + x: -2089.2315881719783, + y: -835.6090920946181, + z: -1459.3554460214452, + }, + }, + { + id: '4522', + data: { + label: 'Forecast Newsletter', + x: -1960.5802306725684, + y: -606.1696659960985, + z: -1415.4880217987536, + }, + }, + { + id: '4523', + data: { + label: 'Folio', + x: 33.186912323779644, + y: -720.6360090581492, + z: -1144.0895404444343, + }, + }, + { + id: '4524', + data: { + label: 'Folio: Magazine', + x: 178.410975273309, + y: -835.9382693137906, + z: -1536.9581902413913, + }, + }, + { + id: '4525', + data: { + label: 'Folio: Mag.com', + x: 368.25781391794584, + y: -962.5978147638846, + z: -1207.7407389685366, + }, + }, + { + id: '4526', + data: { + label: 'Folio: First Day', + x: -247.48464166038445, + y: -926.3843020370485, + z: -1431.8476315978014, + }, + }, + { + id: '4527', + data: { + label: 'Folio: Financial Report - Quarterly Supplement', + x: -360.418542190323, + y: -965.7525897663861, + z: -1268.9031535761133, + }, + }, + { + id: '4528', + data: { + label: 'Folio: Fall Show', + x: 422.66079144069033, + y: -668.3410546759517, + z: -1348.5564963618742, + }, + }, + { + id: '4529', + data: { + label: 'Folio: Midwest Show', + x: -432.5446120919114, + y: -845.101382533214, + z: -1084.4694639155045, + }, + }, + { + id: '4530', + data: { + label: 'Folio: West Show', + x: -232.31487442317166, + y: -1070.4893530558045, + z: -1023.0089278123338, + }, + }, + { + id: '4531', + data: { + label: 'Circulation Management', + x: -2234.472269092813, + y: -1001.1752324615428, + z: -667.877798054214, + }, + }, + { + id: '4532', + data: { + label: 'Circulation Management Magazine', + x: -2582.649679003963, + y: -1017.1461397168039, + z: -951.0336219240278, + }, + }, + { + id: '4533', + data: { + label: 'Circulation Management Show', + x: -2652.2842723027884, + y: -849.4106926742743, + z: -690.6525119645681, + }, + }, + { + id: '4534', + data: { + label: 'Cable World', + x: -2101.2861870233937, + y: -824.2619203306123, + z: -867.476851364208, + }, + }, + { + id: '4535', + data: { + label: 'Cable World Magazine', + x: -2400.662046672982, + y: -790.6603211077924, + z: -1225.964049418822, + }, + }, + { + id: '4536', + data: { + label: 'Cableworld.com', + x: -2364.967328114471, + y: -534.9946178052378, + z: -1121.4179946223849, + }, + }, + { + id: '4537', + data: { + label: 'MediaCentral.com', + x: -1382.8452871519564, + y: -1206.9800415846748, + z: -800.7029054550402, + }, + }, + { + id: '4538', + data: { + label: 'American Baby', + x: 4457.758030903917, + y: -968.2823881792028, + z: 2743.7600224801513, + }, + }, + { + id: '4539', + data: { + label: 'Chicago', + x: 5029.698413184305, + y: -806.5230006848966, + z: 2474.467478451425, + }, + }, + { + id: '4540', + data: { + label: 'Healthy Kids', + x: 4266.363246836086, + y: -1367.0387952123922, + z: 2326.9122632677254, + }, + }, + { + id: '4541', + data: { + label: 'Modern Bride', + x: 4335.442764502808, + y: -1097.720714251089, + z: 2459.5495590809637, + }, + }, + { + id: '4542', + data: { + label: 'New York', + x: 5156.180175935379, + y: -1267.787292093078, + z: 1966.8697890486421, + }, + }, + { + id: '4543', + data: { + label: 'Seventeen', + x: 4367.275454689659, + y: -1756.2714363069938, + z: 2267.3569831865984, + }, + }, + { + id: '4544', + data: { + label: 'Soap Opera Digest', + x: 4491.994333804667, + y: -1589.208743968666, + z: 2012.9526052257029, + }, + }, + { + id: '4545', + data: { + label: 'Soap Opera Weekly', + x: 5041.628263085881, + y: -1418.1664762174923, + z: 1873.4022948940792, + }, + }, + { + id: '4546', + data: { + label: 'The Youth Entertainment Group', + x: 5354.089821335509, + y: -1936.0312456086156, + z: 1543.5182862873976, + }, + }, + { + id: '4547', + data: { + label: 'BB', + x: 5824.398509501844, + y: -1821.2523946748227, + z: 1545.7802456606173, + }, + }, + { + id: '4548', + data: { + label: 'Bop', + x: 5681.041482514477, + y: -1832.7472499381304, + z: 1219.6821716891905, + }, + }, + { + id: '4549', + data: { + label: 'entertainmenteen', + x: 5324.134853401762, + y: -2192.9805284513536, + z: 1149.5628250868242, + }, + }, + { + id: '4550', + data: { + label: '16 Magazine', + x: 5689.902993854538, + y: -1641.8099346651998, + z: 1384.9535129010653, + }, + }, + { + id: '4551', + data: { + label: '16 Superstars', + x: 5261.983027300959, + y: -2366.143827274934, + z: 1375.9621086694726, + }, + }, + { + id: '4552', + data: { + label: 'SuperTeen', + x: 5490.330345173224, + y: -2369.6892879076104, + z: 1623.6103126840908, + }, + }, + { + id: '4553', + data: { + label: 'Teen Beat', + x: 5810.136932351794, + y: -2030.7259837065194, + z: 1421.4525145971659, + }, + }, + { + id: '4554', + data: { + label: 'Teen Beat All-Stars', + x: 5752.905809713602, + y: -2128.9746623868105, + z: 1699.365373397683, + }, + }, + { + id: '4555', + data: { + label: 'Teen Machine', + x: 5618.58036585439, + y: -2284.178647436266, + z: 1354.6015627932604, + }, + }, + { + id: '4556', + data: { + label: 'Tiger Beat', + x: 5586.100048427657, + y: -2084.406407470467, + z: 1145.7737977144373, + }, + }, + { + id: '4557', + data: { + label: 'Bodyboarding', + x: 4988.65199623151, + y: -1092.7273131698716, + z: 2970.0805211921934, + }, + }, + { + id: '4558', + data: { + label: 'Canoe & Kayak', + x: 4874.439583648516, + y: -1293.1354007060636, + z: 3078.0582392217743, + }, + }, + { + id: '4559', + data: { + label: 'Climbing', + x: 4728.375721231771, + y: -796.1018293083821, + z: 2381.883912008563, + }, + }, + { + id: '4560', + data: { + label: 'KITPLANES', + x: 4317.906066917737, + y: -1509.5195575084267, + z: 2179.55632883352, + }, + }, + { + id: '4561', + data: { + label: 'Splash', + x: 4958.148175818011, + y: -1492.5435319013739, + z: 2024.3236087622222, + }, + }, + { + id: '4562', + data: { + label: 'Surfing', + x: 4984.355016079614, + y: -1112.6474148323284, + z: 1978.448141924952, + }, + }, + { + id: '4563', + data: { + label: 'Volleyball', + x: 4844.846099310815, + y: -803.0890348650131, + z: 2555.375481461318, + }, + }, + { + id: '4564', + data: { + label: '4 Wheel Drive & Sport Utility', + x: 4788.248228089517, + y: -946.8474346841358, + z: 2306.437291863647, + }, + }, + { + id: '4565', + data: { + label: 'Audio Video Interiors', + x: 4463.076156598758, + y: -1391.567498203583, + z: 2040.0630025526239, + }, + }, + { + id: '4566', + data: { + label: 'Auto Sound & Security', + x: 4338.909816069384, + y: -1128.0544993729334, + z: 2658.5750128530653, + }, + }, + { + id: '4567', + data: { + label: 'Automobile Magazine', + x: 4574.3124841701265, + y: -1138.10301477589, + z: 2091.0242726499587, + }, + }, + { + id: '4568', + data: { + label: 'Car Audio and Electronics', + x: 4842.387112748558, + y: -1586.3734858753126, + z: 1863.2758236612258, + }, + }, + { + id: '4569', + data: { + label: 'Classic Trucks', + x: 4371.736098103976, + y: -1419.313570039032, + z: 2683.701976302097, + }, + }, + { + id: '4570', + data: { + label: 'Custom Rodder', + x: 4827.488775506881, + y: -1343.4515534570482, + z: 1870.1558436331898, + }, + }, + { + id: '4571', + data: { + label: 'Drag Racing USA', + x: 4202.739616657529, + y: -1401.1418035771233, + z: 2539.3625790795245, + }, + }, + { + id: '4572', + data: { + label: 'European Car', + x: 4481.813547846509, + y: -1947.1507106570089, + z: 2286.7234288893824, + }, + }, + { + id: '4573', + data: { + label: 'High Performance Mopar', + x: 4425.966637360128, + y: -1158.0156471700877, + z: 2888.74536875222, + }, + }, + { + id: '4574', + data: { + label: 'High Performance Pontiac', + x: 4650.110606623212, + y: -1144.7795185311095, + z: 2773.3491227560735, + }, + }, + { + id: '4575', + data: { + label: 'High-Tech Performance', + x: 5037.034890289498, + y: -965.2877133619631, + z: 2817.7835794279868, + }, + }, + { + id: '4576', + data: { + label: 'Hot Bike', + x: 5058.338256426908, + y: -1192.3553722408924, + z: 2126.633721460961, + }, + }, + { + id: '4577', + data: { + label: 'Import Tuner', + x: 4796.517883357628, + y: -956.915243732721, + z: 2909.521398170191, + }, + }, + { + id: '4578', + data: { + label: 'Kit Car Illustrated', + x: 4522.949247554389, + y: -1031.0179899793764, + z: 2296.8071542350367, + }, + }, + { + id: '4579', + data: { + label: 'Lowrider', + x: 4537.34777884183, + y: -2037.744866581461, + z: 2462.874394788451, + }, + }, + { + id: '4580', + data: { + label: 'Lowrider Euro', + x: 4360.354847957595, + y: -1194.7617203201658, + z: 2216.204245535182, + }, + }, + { + id: '4581', + data: { + label: "Mini Truckin'", + x: 4266.998780843746, + y: -1639.7765251548851, + z: 2561.1168540944823, + }, + }, + { + id: '4582', + data: { + label: 'Muscle Mustangs & Fast Fords', + x: 4786.715716800956, + y: -1919.6623937175389, + z: 2059.294603454116, + }, + }, + { + id: '4583', + data: { + label: 'Mustang Illustrated', + x: 4614.873181833048, + y: -891.3821575374407, + z: 2619.5601783030547, + }, + }, + { + id: '4584', + data: { + label: 'Off-Road', + x: 4525.811536875995, + y: -1738.6983712858055, + z: 2052.0052983075634, + }, + }, + { + id: '4585', + data: { + label: 'Popular Hot Rodding', + x: 4265.0772167063205, + y: -1326.9623231929675, + z: 2813.073468429127, + }, + }, + { + id: '4586', + data: { + label: 'Sport Compact Car', + x: 4828.346301201815, + y: -1031.1024657317246, + z: 2711.3789681985845, + }, + }, + { + id: '4587', + data: { + label: 'Street Rodder', + x: 4440.8005650361865, + y: -1713.6317441636625, + z: 2846.5158628245536, + }, + }, + { + id: '4588', + data: { + label: 'Super Chevy', + x: 5290.1276778084675, + y: -1295.095708640054, + z: 2337.2885837739727, + }, + }, + { + id: '4589', + data: { + label: "Today's SUV", + x: 4504.3450606278675, + y: -941.4797190860887, + z: 2412.0699198137413, + }, + }, + { + id: '4590', + data: { + label: "Truckin'", + x: 4415.062256900529, + y: -1834.2560600878878, + z: 2410.6130763554306, + }, + }, + { + id: '4591', + data: { + label: 'Turbo & High Tech Performance', + x: 4767.418199447938, + y: -1182.4334840063427, + z: 1979.644216014194, + }, + }, + { + id: '4592', + data: { + label: 'Vette Magazine', + x: 5167.966149527979, + y: -1109.6430062991494, + z: 2575.25611554447, + }, + }, + { + id: '4593', + data: { + label: 'VW Trends', + x: 4696.1127456399, + y: -1203.1186890031486, + z: 2971.4520967797794, + }, + }, + { + id: '4594', + data: { + label: 'Doll Reader', + x: 5215.2438313907705, + y: -1573.2654122094332, + z: 2748.6234691375844, + }, + }, + { + id: '4595', + data: { + label: 'Teddy Bear and Friends', + x: 5325.553096553847, + y: -999.7845521454386, + z: 2417.126659578906, + }, + }, + { + id: '4596', + data: { + label: 'Crafts & Jewelry', + x: 4582.499712714013, + y: -964.7699734688151, + z: 2909.436330640522, + }, + }, + { + id: '4597', + data: { + label: 'Colored Stone', + x: 4454.181031737831, + y: -1495.5912570952628, + z: 3019.7939475411167, + }, + }, + { + id: '4598', + data: { + label: 'Crafts Magazine', + x: 5245.96448316568, + y: -1448.5129300635062, + z: 2049.410694775335, + }, + }, + { + id: '4599', + data: { + label: 'CrafTrends', + x: 4916.741016770626, + y: -1743.150107924385, + z: 2013.1561315635988, + }, + }, + { + id: '4600', + data: { + label: 'Lapidary Journal', + x: 4683.615332341482, + y: -1400.0586664852847, + z: 3097.98529697567, + }, + }, + { + id: '4601', + data: { + label: 'Arabian Horse World', + x: 5438.59882598098, + y: -1518.2101295952195, + z: 2697.2802806302984, + }, + }, + { + id: '4602', + data: { + label: 'Dressage Today', + x: 5154.4716739422465, + y: -1962.0884486082612, + z: 2727.0279198683265, + }, + }, + { + id: '4603', + data: { + label: 'EQUUS', + x: 5377.008475027525, + y: -1147.393310783315, + z: 2180.03510738526, + }, + }, + { + id: '4604', + data: { + label: 'Horse & Rider', + x: 4424.969650941684, + y: -1314.710118925207, + z: 2978.5267640907746, + }, + }, + { + id: '4605', + data: { + label: 'Practical Horseman', + x: 5076.877423797933, + y: -901.424481900327, + z: 2615.2131706121627, + }, + }, + { + id: '4606', + data: { + label: 'Country Journal', + x: 5448.050291815923, + y: -1317.3454959913204, + z: 2598.5373828035385, + }, + }, + { + id: '4607', + data: { + label: 'Horticulture', + x: 4632.3569144841895, + y: -2006.368556454995, + z: 2618.2966012808997, + }, + }, + { + id: '4608', + data: { + label: 'American History', + x: 4739.871684316478, + y: -1752.5653453480454, + z: 1969.3458198188248, + }, + }, + { + id: '4609', + data: { + label: "America's Civil War", + x: 5195.185758693007, + y: -1057.661199347712, + z: 2085.256361278979, + }, + }, + { + id: '4610', + data: { + label: 'Aviation History', + x: 5001.657245771012, + y: -896.4963222666976, + z: 2248.5653210234855, + }, + }, + { + id: '4611', + data: { + label: 'British Heritage', + x: 4854.278077614095, + y: -830.349196624321, + z: 2733.874537008707, + }, + }, + { + id: '4612', + data: { + label: 'Civil War Times', + x: 4332.396998681581, + y: -1593.0976080240382, + z: 2892.6310900764815, + }, + }, + { + id: '4613', + data: { + label: 'Columbiad', + x: 4593.0933181338405, + y: -1894.6193794965116, + z: 2115.228041950269, + }, + }, + { + id: '4614', + data: { + label: 'MHQ: The Quarterly Journal of Military History', + x: 4699.511220615523, + y: -1912.7493955505636, + z: 2318.355351568811, + }, + }, + { + id: '4615', + data: { + label: 'Military History', + x: 4291.698450265137, + y: -1765.9000541393082, + z: 2719.274769260658, + }, + }, + { + id: '4616', + data: { + label: 'Vietnam', + x: 4234.603246632211, + y: -1644.2689162757358, + z: 2363.6906688341282, + }, + }, + { + id: '4617', + data: { + label: 'Wild West', + x: 5312.6769485123405, + y: -1821.7170205933587, + z: 2357.4910477968524, + }, + }, + { + id: '4618', + data: { + label: 'World War II', + x: 5215.205402601373, + y: -1335.0831184175393, + z: 2859.700441913613, + }, + }, + { + id: '4619', + data: { + label: 'Bowhunter', + x: 5484.333223076237, + y: -1500.4559294633602, + z: 2333.8650695216097, + }, + }, + { + id: '4620', + data: { + label: 'Catfish Insider', + x: 4973.502409430111, + y: -1975.4551172617346, + z: 2135.833677258842, + }, + }, + { + id: '4621', + data: { + label: 'Florida Sportsman', + x: 5113.432678933417, + y: -1877.9804580124953, + z: 2101.932558661694, + }, + }, + { + id: '4622', + data: { + label: 'Fly Fisherman', + x: 5017.597527795859, + y: -2013.5021840457507, + z: 2636.975278116976, + }, + }, + { + id: '4623', + data: { + label: 'Game & Fish', + x: 5305.932865825862, + y: -1446.7800124187804, + z: 2488.3296061846286, + }, + }, + { + id: '4624', + data: { + label: 'In Fisherman', + x: 5209.197385370871, + y: -952.0787338328995, + z: 2278.2686723980446, + }, + }, + { + id: '4625', + data: { + label: 'In Fisherman Bass Guide', + x: 5093.4418572676, + y: -1235.2019549371857, + z: 3054.4617842912603, + }, + }, + { + id: '4626', + data: { + label: 'In Fisherman Catfish Guide', + x: 4722.759715146172, + y: -1627.6388257449937, + z: 3086.3777135498744, + }, + }, + { + id: '4627', + data: { + label: 'In Fisherman Ice Fishing Guide', + x: 4768.69227039917, + y: -2086.375310497889, + z: 2470.2341527215167, + }, + }, + { + id: '4628', + data: { + label: 'In Fisherman Walleye Guide', + x: 5171.806924234433, + y: -1117.5328798059627, + z: 2853.1187220943034, + }, + }, + { + id: '4629', + data: { + label: 'North American Whitetail', + x: 5388.043289276114, + y: -1706.0626109582113, + z: 2732.3131905543983, + }, + }, + { + id: '4630', + data: { + label: 'Walleye In-Sider', + x: 4453.840918567438, + y: -1919.0813672783897, + z: 2805.7383182214185, + }, + }, + { + id: '4631', + data: { + label: 'Power & Motoryacht', + x: 5383.615211203591, + y: -1389.4811469732706, + z: 2870.1296578797583, + }, + }, + { + id: '4632', + data: { + label: 'Sail', + x: 4814.194625062501, + y: -978.8760849471872, + z: 2080.3050661700427, + }, + }, + { + id: '4633', + data: { + label: 'Cats', + x: 5386.2671493339385, + y: -1411.781408767416, + z: 2134.545843279076, + }, + }, + { + id: '4634', + data: { + label: 'Dog World', + x: 5094.344285076189, + y: -1674.6284294075585, + z: 1973.2261586632424, + }, + }, + { + id: '4635', + data: { + label: 'Shutterbug', + x: 5013.7189438874175, + y: -1305.5156651556786, + z: 2883.9140494925723, + }, + }, + { + id: '4636', + data: { + label: "McCall's Quilting", + x: 4656.07604749443, + y: -1469.7308860693258, + z: 1920.6397315681263, + }, + }, + { + id: '4637', + data: { + label: 'Quick Quilts', + x: 5027.928374221325, + y: -1001.7123608424168, + z: 2414.306887485037, + }, + }, + { + id: '4638', + data: { + label: "Quilter's Newsletter Magazine", + x: 4694.262365245134, + y: -1992.3168811468897, + z: 2820.0575290145694, + }, + }, + { + id: '4639', + data: { + label: 'Quiltmaker', + x: 5018.632631129708, + y: -1853.0657599336278, + z: 2316.609077959506, + }, + }, + { + id: '4640', + data: { + label: 'Sew News', + x: 5101.435409034719, + y: -1655.3615733056376, + z: 2986.8623478103614, + }, + }, + { + id: '4641', + data: { + label: 'Shooting Times', + x: 5179.046327428848, + y: -1950.7580844157092, + z: 2441.6711514613553, + }, + }, + { + id: '4642', + data: { + label: 'Shotgun News', + x: 4712.219267446306, + y: -1820.7257541407826, + z: 2958.2160164797324, + }, + }, + { + id: '4643', + data: { + label: 'Basketball News', + x: 4823.289095525325, + y: -2079.3933544872616, + z: 2238.592055162173, + }, + }, + { + id: '4644', + data: { + label: 'Pro Football Weekly', + x: 5425.692726500338, + y: -1634.3206468098876, + z: 2477.7788257814145, + }, + }, + { + id: '4645', + data: { + label: 'Intertec Publishing', + x: 5194.601999189665, + y: -1623.4381735172901, + z: 2295.112324599654, + }, + }, + { + id: '4646', + data: { + label: 'Workplace Learning', + x: 5259.2760262495585, + y: -1673.328756090882, + z: 2074.387866627359, + }, + }, + { + id: '4647', + data: { + label: 'IndustryClick', + x: 4540.124053560086, + y: -1156.4450876243382, + z: 3156.1356713244545, + }, + }, + { + id: '4648', + data: { + label: 'HPC Publications', + x: 5085.792960620514, + y: -1808.2462710134787, + z: 2681.3082881264095, + }, + }, + { + id: '4649', + data: { + label: 'Channel One Network', + x: 5168.737798725678, + y: -1799.4433367428908, + z: 2880.660605817852, + }, + }, + { + id: '4650', + data: { + label: 'Films for the Humanities', + x: 5402.996946114691, + y: -1708.8792685587482, + z: 2238.7237811146015, + }, + }, + { + id: '4651', + data: { + label: 'Primedia Digital Video', + x: 4585.7309532712825, + y: -1668.4029518998277, + z: 2994.4284238718274, + }, + }, + { + id: '4652', + data: { + label: 'PRIMEDIA Ventures', + x: 4938.140324225171, + y: -1611.639676969838, + z: 2853.257565664521, + }, + }, + { + id: '4653', + data: { + label: 'CarsDirect', + x: 5225.413267378752, + y: -950.1105634431773, + z: 3116.6020370878437, + }, + }, + { + id: '4654', + data: { + label: 'fourthchannel', + x: 5220.572338563807, + y: -1514.9204455588883, + z: 2990.7780268247884, + }, + }, + { + id: '4655', + data: { + label: 'Metapa', + x: 5283.728145223525, + y: -1822.0611898606746, + z: 2576.153392388335, + }, + }, + { + id: '4656', + data: { + label: 'Military.com', + x: 5384.180071571007, + y: -1150.9161401632539, + z: 2564.3437972165852, + }, + }, + { + id: '4657', + data: { + label: 'MobileSpring', + x: 5328.9121973047395, + y: -1154.7790429676052, + z: 2723.9659376685136, + }, + }, + { + id: '4658', + data: { + label: 'MyPoints', + x: 5558.538452463161, + y: -1198.873771730475, + z: 2400.366727919425, + }, + }, + { + id: '4659', + data: { + label: 'NextVenue', + x: 4036.7874051420868, + y: -1104.41713149509, + z: 1418.993652884136, + }, + }, + { + id: '4660', + data: { + label: 'perfect.com', + x: 4560.303483161274, + y: -1730.5447192834868, + z: 2733.326816688651, + }, + }, + { + id: '4661', + data: { + label: 'Sandlot', + x: 5053.314703598124, + y: -1402.0816701101387, + z: 3072.1153283049484, + }, + }, + { + id: '4662', + data: { + label: 'Scan.com', + x: 4933.7454529909, + y: -1720.4359072563796, + z: 3041.784030399225, + }, + }, + { + id: '4663', + data: { + label: 'SocialNet', + x: 5034.111287609431, + y: -2050.7991482007496, + z: 2397.358190276781, + }, + }, + { + id: '4664', + data: { + label: 'StickyNetworks', + x: 4962.906819591742, + y: -1890.1778595929143, + z: 2917.9439741134956, + }, + }, + { + id: '4665', + data: { + label: 'Utility.com', + x: 4640.229173935138, + y: -1454.4360215709908, + z: 2879.923458291461, + }, + }, + { + id: '4666', + data: { + label: 'PRIMEDIA Productions', + x: 4873.703435146966, + y: -1988.7492048466372, + z: 2752.1991425244732, + }, + }, + { + id: '4667', + data: { + label: 'About', + x: 5308.100432387513, + y: -867.8761037746858, + z: 2738.201357464373, + }, + }, + { + id: '4668', + data: { + label: 'About.com', + x: 5357.398083479583, + y: 2783.840616467617, + z: -3539.0046564903882, + }, + }, + { + id: '4669', + data: { + label: 'Lexis-Nexis', + x: 2040.134903654751, + y: 2098.699145602798, + z: -2501.5816308778067, + }, + }, + { + id: '4670', + data: { + label: 'Cahners Publishing', + x: 1849.6398040609233, + y: 1919.4905640570255, + z: -2226.5182299395933, + }, + }, + { + id: '4671', + data: { + label: 'Asia Image', + x: 2155.3817283205517, + y: 1860.998742577529, + z: -2201.37626669525, + }, + }, + { + id: '4672', + data: { + label: 'Book Wire', + x: 2422.643596803832, + y: 1591.2052013535535, + z: -2597.235303344147, + }, + }, + { + id: '4673', + data: { + label: 'Broadcasting & Cable', + x: 2055.798601273565, + y: 1359.1695165951817, + z: -2878.0336411722383, + }, + }, + { + id: '4674', + data: { + label: 'Cablevision Magazine', + x: 2176.298283927852, + y: 1234.194454101915, + z: -2743.491378793808, + }, + }, + { + id: '4675', + data: { + label: 'CED', + x: 2367.42360968479, + y: 1740.1129475875568, + z: -2304.292759846193, + }, + }, + { + id: '4676', + data: { + label: 'Creative Handbook', + x: 1820.6284241827764, + y: 1915.8490752863217, + z: -2730.516348706786, + }, + }, + { + id: '4677', + data: { + label: 'Daily Variety', + x: 2004.498404763062, + y: 1577.274519523943, + z: -3113.9262366003804, + }, + }, + { + id: '4678', + data: { + label: 'Variety', + x: 1906.2080917191367, + y: 1534.7131531920377, + z: -3583.3918033021264, + }, + }, + { + id: '4679', + data: { + label: 'Variety Junior', + x: 2106.575033341876, + y: 1726.1443212816318, + z: -3557.883968896435, + }, + }, + { + id: '4681', + data: { + label: 'Entertainment Marketplace', + x: 2374.8966173667327, + y: 1333.6756268057861, + z: -2590.824869312603, + }, + }, + { + id: '4682', + data: { + label: 'Frequent Flyer', + x: 1648.3172211022395, + y: 1483.618782996147, + z: -2872.5794697894257, + }, + }, + { + id: '4683', + data: { + label: 'Hotel & Travel Index', + x: 1870.5583415345984, + y: 1610.5543154177017, + z: -2885.289268156899, + }, + }, + { + id: '4684', + data: { + label: 'Hotel & Travel Index International', + x: 2271.841468315789, + y: 2176.602632028756, + z: -4352.205487431953, + }, + }, + { + id: '4685', + data: { + label: 'Hotels', + x: 2415.594279112278, + y: 1537.842710370818, + z: -2230.72210976502, + }, + }, + { + id: '4686', + data: { + label: 'Kemps Film & Video Handbook', + x: 1702.6002175604833, + y: 1728.0967620768404, + z: -2869.9533019255355, + }, + }, + { + id: '4687', + data: { + label: 'Library Journal', + x: 1933.815874752833, + y: 1828.0740279776783, + z: -2836.3068303507935, + }, + }, + { + id: '4688', + data: { + label: 'Moving Pictures International', + x: 2328.484263546152, + y: 1490.1607782088763, + z: -2772.6909841436413, + }, + }, + { + id: '8238', + data: { + label: 'Clearview Cinemas', + x: -1988.087545892268, + y: -112.07533762315765, + z: 4500.282796971307, + }, + }, + { + id: '4690', + data: { + label: 'Multichannel News International', + x: 5027.357189147081, + y: 5354.411726290461, + z: -1265.626539618151, + }, + }, + { + id: '4691', + data: { + label: 'Official Cruise Guide', + x: 1588.1763082250561, + y: 1215.759589195013, + z: -2484.932476294642, + }, + }, + { + id: '4692', + data: { + label: 'Official Hotel Guide', + x: 1500.6930800074463, + y: 1421.9479501966564, + z: -2646.913686877426, + }, + }, + { + id: '4693', + data: { + label: 'Official Meeting Facilities Guide', + x: 1479.0263380059794, + y: 1506.3102902341648, + z: -2445.5181466764975, + }, + }, + { + id: '4694', + data: { + label: 'On Production', + x: 2181.7402605691354, + y: 1767.7484440643884, + z: -2810.6917926347164, + }, + }, + { + id: '4695', + data: { + label: 'Publishers Weekly', + x: 2270.5322040346996, + y: 1893.902496705328, + z: -2436.2210156708184, + }, + }, + { + id: '4696', + data: { + label: 'Restaurants & Institutions', + x: 1821.2385738958146, + y: 1059.7725387726787, + z: -2468.824648326405, + }, + }, + { + id: '4697', + data: { + label: 'School Library Journal', + x: 2416.782032937537, + y: 1356.6008538401638, + z: -2375.9713408559874, + }, + }, + { + id: '4698', + data: { + label: 'STAR Service', + x: 1544.3305306090144, + y: 1721.7512236330522, + z: -2338.8451067257665, + }, + }, + { + id: '4699', + data: { + label: 'Television Asia', + x: 2104.0381638751865, + y: 1924.3564545583592, + z: -2690.513910177313, + }, + }, + { + id: '4700', + data: { + label: 'Television Europe', + x: 1842.0552319479934, + y: 1378.3391983521292, + z: -2944.589459063888, + }, + }, + { + id: '4701', + data: { + label: 'Television International', + x: 1794.0253037142297, + y: 1207.773724482207, + z: -2809.583178261233, + }, + }, + { + id: '4702', + data: { + label: 'TWICE', + x: 1761.3628740259985, + y: 1978.3563393601814, + z: -2428.112355894706, + }, + }, + { + id: '4703', + data: { + label: 'Weissmann Travel Reports', + x: 1961.6434271783742, + y: 1101.8094720776924, + z: -2705.921646020348, + }, + }, + { + id: '4704', + data: { + label: 'Wireless Week', + x: 1607.617735014095, + y: 1271.7640398346798, + z: -2752.9694249358513, + }, + }, + { + id: '4705', + data: { + label: 'Reed Consumer Books', + x: 2510.9707601821065, + y: 2092.3521288352645, + z: -2623.0933368497285, + }, + }, + { + id: '4706', + data: { + label: "Philip's", + x: 2909.1218260917444, + y: 2053.2677588598312, + z: -2878.702709129665, + }, + }, + { + id: '4707', + data: { + label: 'Mitchell Beazley', + x: 2883.401746862109, + y: 2360.52610102912, + z: -2700.6899755125055, + }, + }, + { + id: '4708', + data: { + label: 'Conran Octopus', + x: 2544.0769393991695, + y: 2188.174239032757, + z: -3090.620498660985, + }, + }, + { + id: '4709', + data: { + label: 'Osprey', + x: 2636.929945986192, + y: 2504.481147654802, + z: -2841.3408212653567, + }, + }, + { + id: '4710', + data: { + label: 'Pitkin', + x: 2397.0632997596867, + y: 2418.796290684728, + z: -2962.774476469679, + }, + }, + { + id: '4711', + data: { + label: 'Hamlyn', + x: 2770.904177482602, + y: 2271.968655601485, + z: -2990.5350251920727, + }, + }, + { + id: '4712', + data: { + label: 'Reed Business Publishing', + x: 2314.3567946786184, + y: 1748.3800966759686, + z: -2634.926771720118, + }, + }, + { + id: '4713', + data: { + label: 'Reed Exhibition', + x: -1315.451416007683, + y: 4878.947706901663, + z: 1949.9795604394697, + }, + }, + { + id: '4714', + data: { + label: 'Reed Travel Group', + x: -245.21710580043657, + y: -4554.038265515644, + z: 1303.4326042188848, + }, + }, + { + id: '4715', + data: { + label: 'Congressional Information Service', + x: 2136.3055018456907, + y: 1551.1765964994831, + z: -2879.3176612841103, + }, + }, + { + id: '4716', + data: { + label: 'Reed Reference Publishing', + x: 1519.9493628274447, + y: 1616.5211485762634, + z: -2740.359585939551, + }, + }, + { + id: '4717', + data: { + label: 'Elsevier Science', + x: 1565.7552573239814, + y: 1795.0927009210836, + z: -2658.11251643175, + }, + }, + { + id: '4718', + data: { + label: 'Excerpta Medica Communications', + x: 2158.387942502899, + y: 1099.0067862993974, + z: -2481.4701249773393, + }, + }, + { + id: '4719', + data: { + label: 'Jim Henson Productions', + x: 6725.0128240556, + y: 3598.986288879443, + z: -1431.9989393955818, + }, + }, + { + id: '4720', + data: { + label: 'Mandalay Entertainment', + x: -177.48508505796585, + y: -2748.2920523565886, + z: 4757.153163867761, + }, + }, + { + id: '4721', + data: { + label: 'Phoenix Pictures', + x: 5559.874509912186, + y: -3108.184817672748, + z: -2393.3887511447447, + }, + }, + { + id: '4722', + data: { + label: 'Wheel of Fortune Online', + x: 4905.522744573723, + y: 2514.5443359390674, + z: -1057.3738911860994, + }, + }, + { + id: '4723', + data: { + label: 'Sony Music Publishing', + x: 883.0624888314655, + y: -4038.541633686653, + z: -2869.0907252844295, + }, + }, + { + id: '4724', + data: { + label: 'Warner Channel - Latin America', + x: 4437.603841557921, + y: 2806.0408890470794, + z: -1000.1675945429765, + }, + }, + { + id: '4725', + data: { + label: 'UPN', + x: -471.3215439334819, + y: -738.8443947241442, + z: 753.5592342147145, + }, + }, + { + id: '4726', + data: { + label: 'Noggin', + x: 4049.8492950320624, + y: 2611.72468960861, + z: 4887.0312276237, + }, + }, + { + id: '4727', + data: { + label: 'VH1 Germany', + x: -3131.220692870566, + y: 2369.340384755635, + z: -2368.8185005971873, + }, + }, + { + id: '4728', + data: { + label: 'Hubbard Broadcasting', + x: -553.8546526441188, + y: 564.7225982651686, + z: 1534.7662699490545, + }, + }, + { + id: '4729', + data: { + label: 'CIC Video', + x: 2277.1115350254718, + y: 5237.523824622322, + z: -3460.8069076700044, + }, + }, + { + id: '4730', + data: { + label: 'CBSSportsLine.Com', + x: 4703.393197209609, + y: -2856.0111476753323, + z: -4202.717974807394, + }, + }, + { + id: '4731', + data: { + label: 'CBSMarketWatch.com', + x: -3395.031677889858, + y: 881.6701350327046, + z: 2683.6009151037338, + }, + }, + { + id: '4732', + data: { + label: 'CBSHealthWatch.com', + x: -43.476858840683704, + y: 5775.346537360195, + z: -1427.9424568270845, + }, + }, + { + id: '4733', + data: { + label: 'Winstar', + x: -1078.8499943606555, + y: 383.1802675709926, + z: 478.58442013823935, + }, + }, + { + id: '4734', + data: { + label: 'StoreRunner.com', + x: 497.4000478119153, + y: 5785.419170070594, + z: -2063.2116402335055, + }, + }, + { + id: '4735', + data: { + label: 'Westwood One', + x: -515.5011493854845, + y: -795.5936301902517, + z: 2002.9235121568856, + }, + }, + { + id: '4736', + data: { + label: 'Canal+', + x: 3763.835953193866, + y: 2727.4043445214397, + z: 13.258048283651611, + }, + }, + { + id: '4737', + data: { + label: 'Star Channel (Japan)', + x: -1098.230417014186, + y: 2178.3959231585495, + z: -4249.859911285605, + }, + }, + { + id: '4738', + data: { + label: 'Havas Press', + x: 3419.285486474452, + y: 2967.7414518693126, + z: 1569.0958573578016, + }, + }, + { + id: '4739', + data: { + label: "L'Express", + x: 3279.321960979215, + y: 3426.1300821436853, + z: 1658.1745177689934, + }, + }, + { + id: '4740', + data: { + label: "L'Expansion", + x: 3544.57217843256, + y: 3408.2572906302685, + z: 1778.8637999174605, + }, + }, + { + id: '4741', + data: { + label: 'Courrier International', + x: 3677.802916713601, + y: 2954.1931920727325, + z: 1986.4737494179055, + }, + }, + { + id: '4742', + data: { + label: "L'Etudiant", + x: 3394.0519563395014, + y: 2918.264929429471, + z: 2051.4474451819638, + }, + }, + { + id: '4743', + data: { + label: 'Bonjour', + x: 3855.0365188504516, + y: 3045.800540363266, + z: 1527.8004932149397, + }, + }, + { + id: '4744', + data: { + label: 'Le Moniteur', + x: 3659.857359517142, + y: 3375.336136489096, + z: 1547.7253713817133, + }, + }, + { + id: '4745', + data: { + label: 'Building', + x: 2985.889863355352, + y: 3095.3982976995508, + z: 1660.0848990209352, + }, + }, + { + id: '4746', + data: { + label: "L'Usine Nouvelle", + x: 3308.273159800125, + y: 3242.4493543324907, + z: 1934.7743762033008, + }, + }, + { + id: '4747', + data: { + label: 'Automatica e Instrumentacion', + x: 3090.336476117737, + y: 3239.6336572182195, + z: 1841.862570177075, + }, + }, + { + id: '4748', + data: { + label: 'LSA', + x: 3298.475088502004, + y: 3468.2708263545924, + z: 1946.9483349935513, + }, + }, + { + id: '4749', + data: { + label: 'La France Agricole', + x: 3342.5053398364435, + y: 3363.1400664849753, + z: 1353.7948624471837, + }, + }, + { + id: '4750', + data: { + label: '01 Informatique', + x: 3809.2204150261077, + y: 3216.3822462890917, + z: 1749.7289165837087, + }, + }, + { + id: '4751', + data: { + label: 'Linea EDP', + x: 3146.3674527172993, + y: 3005.2997375110776, + z: 1959.1446113212376, + }, + }, + { + id: '4752', + data: { + label: 'Le Quotidien du Medecin', + x: 3836.064226798347, + y: 2937.9582213353838, + z: 1794.2868540838278, + }, + }, + { + id: '4753', + data: { + label: 'Jano', + x: 3667.6480645318625, + y: 3235.4708805026658, + z: 1934.6242124095108, + }, + }, + { + id: '4754', + data: { + label: 'Medical Progress', + x: 3085.0353344365417, + y: 3298.040192774831, + z: 1492.30201138686, + }, + }, + { + id: '4755', + data: { + label: 'Tempo Medico', + x: 3481.013631137809, + y: 3168.9650107348384, + z: 2059.4936546795543, + }, + }, + { + id: '4756', + data: { + label: 'Havas Book', + x: 3476.4022810372944, + y: 3424.9795226101282, + z: 700.520934141281, + }, + }, + { + id: '4757', + data: { + label: 'Havas Business Information', + x: 3622.158444818305, + y: 3836.5611836308885, + z: 394.21371893099297, + }, + }, + { + id: '4758', + data: { + label: 'Dalloz', + x: 3870.6279665737347, + y: 4111.857387249876, + z: 133.64376482040473, + }, + }, + { + id: '4759', + data: { + label: 'Dunod', + x: 3559.5587411276047, + y: 4188.526343329095, + z: 120.97036656899766, + }, + }, + { + id: '4760', + data: { + label: 'Havas MediMedia', + x: 3179.896075580939, + y: 3861.1022408336885, + z: 1046.7765650252131, + }, + }, + { + id: '4761', + data: { + label: 'Masson', + x: 2849.076727968484, + y: 4172.455695954415, + z: 1164.5735895469804, + }, + }, + { + id: '4762', + data: { + label: 'Doyma', + x: 2916.948107283575, + y: 4030.154669437136, + z: 1384.4938796261167, + }, + }, + { + id: '4763', + data: { + label: 'Vidal', + x: 3070.2056119332187, + y: 4313.502978082141, + z: 1066.0636194592566, + }, + }, + { + id: '4764', + data: { + label: 'MIMS', + x: 3170.9058745572925, + y: 4217.696883021371, + z: 1347.0727355729114, + }, + }, + { + id: '4765', + data: { + label: 'Havas Education et Reference', + x: 3710.092532113043, + y: 3866.9127680722604, + z: 1250.1540672320411, + }, + }, + { + id: '4766', + data: { + label: 'Nathan', + x: 4004.205047141138, + y: 3966.668605745908, + z: 928.8033569542762, + }, + }, + { + id: '4767', + data: { + label: 'Bordas', + x: 4068.0019526822543, + y: 4179.843675472012, + z: 1324.5206822793652, + }, + }, + { + id: '4768', + data: { + label: 'Anaya', + x: 3664.871215690971, + y: 4316.94437222473, + z: 1136.9614828396777, + }, + }, + { + id: '4769', + data: { + label: 'Atica', + x: 3940.1463322838044, + y: 4231.968579169047, + z: 1036.0321314657256, + }, + }, + { + id: '4770', + data: { + label: 'Scipione', + x: 3876.25294473456, + y: 4249.848680058241, + z: 1498.3264542390555, + }, + }, + { + id: '4771', + data: { + label: 'Aique', + x: 4038.2449279961297, + y: 3985.017281899237, + z: 1573.0793834245537, + }, + }, + { + id: '4772', + data: { + label: 'Larousse', + x: 4146.147062916475, + y: 3875.3320167655525, + z: 1104.2155712324027, + }, + }, + { + id: '4773', + data: { + label: 'Le Robert', + x: 3668.039657736255, + y: 4336.265170044853, + z: 1356.7652902609586, + }, + }, + { + id: '4774', + data: { + label: 'Harrap', + x: 3836.095682143537, + y: 3927.3522217376853, + z: 834.2249776105272, + }, + }, + { + id: '4775', + data: { + label: 'Chambers', + x: 3719.8546629467096, + y: 4055.5441014798153, + z: 1682.9218651742817, + }, + }, + { + id: '4776', + data: { + label: 'Kingfisher', + x: 3505.910416603294, + y: 4184.6406312165545, + z: 1523.412361785139, + }, + }, + { + id: '4777', + data: { + label: 'Literature', + x: 3468.005572422119, + y: 4114.153100582334, + z: 625.291175725004, + }, + }, + { + id: '4778', + data: { + label: 'Laffont', + x: 3762.585954902001, + y: 4386.827603720345, + z: 387.6003291355416, + }, + }, + { + id: '4779', + data: { + label: 'Plon', + x: 3686.570205563311, + y: 4473.100457743627, + z: 808.652040669967, + }, + }, + { + id: '4780', + data: { + label: 'Presses de la Cite', + x: 3398.9785354666583, + y: 4576.421596351302, + z: 712.8315159392977, + }, + }, + { + id: '4781', + data: { + label: 'Solar', + x: 3228.3240558726698, + y: 4473.9393777422165, + z: 452.12302214877235, + }, + }, + { + id: '4782', + data: { + label: 'Belfond', + x: 3453.3246760170728, + y: 4477.036157894037, + z: 320.85188608555063, + }, + }, + { + id: '4783', + data: { + label: 'Pocket', + x: 3602.5772437610285, + y: 4568.7141730073, + z: 541.1821964818162, + }, + }, + { + id: '4784', + data: { + label: '10/18', + x: 3880.5275341960546, + y: 4318.947571669087, + z: 640.6930415826434, + }, + }, + { + id: '4785', + data: { + label: 'Fleuve Noir', + x: 3182.8939229666607, + y: 4453.755816075169, + z: 765.4527720226619, + }, + }, + { + id: '4786', + data: { + label: 'Havas Multimedia', + x: 3885.3509628047104, + y: 3010.621873639515, + z: 672.3146534208233, + }, + }, + { + id: '4787', + data: { + label: 'Havas Interactive', + x: 4110.210983447415, + y: 3575.1194727232028, + z: 779.8618185248905, + }, + }, + { + id: '4788', + data: { + label: 'Coktel', + x: 4566.486267348018, + y: 3691.115339244926, + z: 759.6719279727416, + }, + }, + { + id: '4789', + data: { + label: 'Knowledge Adventure', + x: 4178.148269927946, + y: 4011.0811770348887, + z: 630.1089901521551, + }, + }, + { + id: '4790', + data: { + label: 'Larousse Multimedia', + x: 3500.071537739231, + y: -4067.5040728980052, + z: -1399.0289488732658, + }, + }, + { + id: '4791', + data: { + label: "Harrap's Multimedia", + x: 483.1785555180508, + y: -2669.826089656036, + z: -3934.9258369416957, + }, + }, + { + id: '4792', + data: { + label: 'Nathan Multimedia', + x: 516.9085107544739, + y: -2975.0826150156704, + z: -4082.4137917773505, + }, + }, + { + id: '4793', + data: { + label: 'Syracuse Language', + x: 4466.060544625467, + y: 3766.93345978728, + z: 526.7947521027615, + }, + }, + { + id: '4794', + data: { + label: 'Blizzard', + x: 4392.272393409109, + y: 3967.9066671610667, + z: 796.0185070237487, + }, + }, + { + id: '4795', + data: { + label: 'Sierra', + x: 4229.733035944877, + y: 3824.5492242511145, + z: 405.19609333556105, + }, + }, + { + id: '4796', + data: { + label: 'Won.net', + x: 4469.373513562894, + y: 3790.9496117589442, + z: 1005.4345174048814, + }, + }, + { + id: '4797', + data: { + label: 'Havas eContent Multimedia', + x: 4335.78785411945, + y: 3217.2701038672594, + z: 815.1930206360373, + }, + }, + { + id: '4798', + data: { + label: 'ePocket', + x: 4726.725750471103, + y: 3395.855089993111, + z: 979.9660792442899, + }, + }, + { + id: '4799', + data: { + label: 'Havas Numerique', + x: 3890.255893135219, + y: 3228.451386255164, + z: 1176.6546586148258, + }, + }, + { + id: '4800', + data: { + label: 'Atmedica', + x: 4191.30455803934, + y: 3543.760382459184, + z: 1326.6999695148459, + }, + }, + { + id: '4801', + data: { + label: 'Cadres On Line', + x: 4286.888723145799, + y: 3311.775507800134, + z: 1401.8726644838102, + }, + }, + { + id: '4802', + data: { + label: 'Bonjour.fr', + x: 6465.490146231729, + y: -3242.2147584736977, + z: -1013.6714646798132, + }, + }, + { + id: '4803', + data: { + label: '01Net', + x: 3950.2066405890905, + y: 3658.3145859019173, + z: 1252.8114760121282, + }, + }, + { + id: '4804', + data: { + label: 'Vizzavi', + x: 3739.44988736424, + y: 2846.731544279062, + z: 243.8454288558552, + }, + }, + { + id: '4805', + data: { + label: 'Education.com', + x: 3210.892768272936, + y: 2426.673473602145, + z: 613.3155308948069, + }, + }, + { + id: '4806', + data: { + label: 'Flipside.com', + x: 3132.295394681785, + y: 2631.9579939679443, + z: 424.8206997500124, + }, + }, + { + id: '4807', + data: { + label: '@viso', + x: 3776.4448185838487, + y: 1689.3911056618704, + z: 137.00984723121616, + }, + }, + { + id: '4808', + data: { + label: 'Allocine', + x: 3930.922710254054, + y: 2416.729655833977, + z: 92.04444393324394, + }, + }, + { + id: '4809', + data: { + label: 'Ad2-One', + x: 3393.414295481059, + y: 2765.861103129488, + z: -69.64928236484985, + }, + }, + { + id: '4810', + data: { + label: 'Scoot', + x: 2607.188483646348, + y: 1930.5040479242411, + z: 418.200538011106, + }, + }, + { + id: '4811', + data: { + label: 'Polygram', + x: 3831.5520691727693, + y: 3636.742009767842, + z: -1001.6567690820573, + }, + }, + { + id: '4812', + data: { + label: 'Sega Game Works', + x: -2995.2236436467847, + y: -1431.7035968208154, + z: -1590.4105516068942, + }, + }, + { + id: '4813', + data: { + label: 'Vivendi Telecom International', + x: 3518.950697681694, + y: 2510.471496301435, + z: 711.9659326748114, + }, + }, + { + id: '4814', + data: { + label: 'Cegetel', + x: 3297.5656657650075, + y: 2816.2630039171117, + z: 392.11496066533374, + }, + }, + { + id: '4815', + data: { + label: 'Vivendi Environnement', + x: 1925.257090823244, + y: -4834.961982675658, + z: -3112.366936900911, + }, + }, + { + id: '4816', + data: { + label: 'Viventures', + x: 3429.295637570201, + y: 2872.639378221067, + z: 283.2675697568194, + }, + }, + { + id: '4817', + data: { + label: 'Microsoft', + x: 2495.476288727208, + y: -100.33268880598838, + z: -338.98251156703896, + }, + }, + { + id: '4818', + data: { + label: '800.com', + x: 4507.691094641253, + y: 1153.8116456380933, + z: 2048.6735812892075, + }, + }, + { + id: '4819', + data: { + label: 'Allegiance Telecom', + x: 4751.6043467368445, + y: 996.3332685714589, + z: 1366.8924878554433, + }, + }, + { + id: '4820', + data: { + label: 'ARI Network Services', + x: 4156.898135080659, + y: 1328.6825806188724, + z: 1656.699280391451, + }, + }, + { + id: '4821', + data: { + label: 'Avio Digital', + x: 4066.556496102326, + y: 967.8921636971902, + z: 2116.4861544999044, + }, + }, + { + id: '4822', + data: { + label: 'Beyond.com', + x: 4670.430732522029, + y: 996.0230980510416, + z: 1867.4650173128275, + }, + }, + { + id: '4823', + data: { + label: 'CNET', + x: 5145.924037519993, + y: 475.97156287464753, + z: 1515.9266336724106, + }, + }, + { + id: '4824', + data: { + label: 'Click2learn.com', + x: 4616.573652722249, + y: 1370.752218110281, + z: 1837.8769200009688, + }, + }, + { + id: '4825', + data: { + label: 'Command Audio', + x: 4007.124318262779, + y: 1199.0336550808104, + z: 1939.1870248742307, + }, + }, + { + id: '4826', + data: { + label: 'Cybersource', + x: 4386.676744011318, + y: 1277.6207128395065, + z: 2342.517804758798, + }, + }, + { + id: '4827', + data: { + label: 'Darwin Networks', + x: 4273.722361556534, + y: 1364.149465547478, + z: 1836.4269772040577, + }, + }, + { + id: '4828', + data: { + label: 'Egghead Software', + x: 4170.175849415604, + y: 1295.2020077265481, + z: 2013.0557392527353, + }, + }, + { + id: '4829', + data: { + label: 'EStyle.com', + x: 4567.982366596044, + y: -267.99520912232134, + z: 2107.1411932300575, + }, + }, + { + id: '4830', + data: { + label: 'Fatbrain.com', + x: 4625.368390106548, + y: 969.4354202584187, + z: 2106.44446148833, + }, + }, + { + id: '4831', + data: { + label: 'Go2net', + x: 4783.414118353806, + y: 1438.165945870848, + z: 1413.6694957712991, + }, + }, + { + id: '4832', + data: { + label: 'High Speed Access', + x: 4601.5300143990435, + y: 780.0745952655988, + z: 1428.4809647628529, + }, + }, + { + id: '4833', + data: { + label: 'Liquid Audio', + x: 4183.286303418792, + y: 1144.3493884763723, + z: 2139.1796805782656, + }, + }, + { + id: '4834', + data: { + label: 'Mercata', + x: 4558.795930342185, + y: 1106.452395736382, + z: 1495.2751478233192, + }, + }, + { + id: '4835', + data: { + label: 'MultiEmedia.com', + x: 4647.059485418781, + y: 627.9528244173026, + z: 1746.568477691375, + }, + }, + { + id: '4836', + data: { + label: 'NetPodium', + x: 4436.207418212666, + y: 682.008830678489, + z: 2168.454804982724, + }, + }, + { + id: '4837', + data: { + label: 'North Point Communications', + x: 4455.1838421485145, + y: 922.5380006277078, + z: 2135.567073416962, + }, + }, + { + id: '4838', + data: { + label: 'Oxygen Media', + x: 4415.304649903763, + y: 996.6076397105583, + z: 2369.190407872597, + }, + }, + { + id: '4839', + data: { + label: 'RCN', + x: 4729.250804813943, + y: 901.8027333408867, + z: 1662.2328932027115, + }, + }, + { + id: '4840', + data: { + label: 'Rocket Network', + x: 4515.64647275406, + y: 560.449184888412, + z: 1999.7978827047455, + }, + }, + { + id: '4841', + data: { + label: 'ScienceMedia', + x: 4238.767090535745, + y: 875.8974961882554, + z: 2224.247852128598, + }, + }, + { + id: '4842', + data: { + label: 'Stamps.com', + x: 3806.1373802495987, + y: 1240.9970821298573, + z: 1424.1783186389684, + }, + }, + { + id: '4843', + data: { + label: 'USSB', + x: 4670.455648342816, + y: 765.4393289884891, + z: 1980.7336537693795, + }, + }, + { + id: '4844', + data: { + label: 'Vulcan Northwest', + x: 4428.995800584565, + y: 1262.2009470428836, + z: 1921.593005723037, + }, + }, + { + id: '4845', + data: { + label: 'Vulcan Ventures', + x: 4142.044650571081, + y: 1279.9761877943588, + z: 872.2610154930923, + }, + }, + { + id: '4846', + data: { + label: 'ZDTV', + x: 4335.799976124007, + y: 1212.283839077179, + z: 1391.4026838485624, + }, + }, + { + id: '4847', + data: { + label: 'Ziff Davis', + x: 5270.683599921537, + y: 843.5659989289798, + z: 1789.9918309442317, + }, + }, + { + id: '4848', + data: { + label: 'Bluelight.com', + x: -3011.8079967828426, + y: 1622.3670089773962, + z: -2826.9426292424027, + }, + }, + { + id: '4855', + data: { + label: 'KMWB TV (Minneapolis)', + x: -628.1229151305707, + y: 3985.414422093505, + z: -611.6216206476763, + }, + }, + { + id: '4856', + data: { + label: 'WPGH TV (Minneapolis)', + x: -347.1857741485531, + y: 3763.7201366827535, + z: -1399.114065744723, + }, + }, + { + id: '4857', + data: { + label: 'KOVR TV (Sacramento)', + x: -580.0808785374551, + y: 4259.796780485614, + z: -1316.5735805572876, + }, + }, + { + id: '4858', + data: { + label: 'KDNL TV (St. Louis)', + x: -156.277066733383, + y: 4125.520412262359, + z: -955.861603465977, + }, + }, + { + id: '4859', + data: { + label: 'WBFF TV (St. Louis)', + x: -358.8171499229229, + y: 4326.491941023746, + z: -1027.3303483573982, + }, + }, + { + id: '4860', + data: { + label: 'WLFL TV (Indianapolis)', + x: -895.7686191486079, + y: 3723.0685813538526, + z: -1176.4841473877543, + }, + }, + { + id: '4861', + data: { + label: 'WCGV TV (Nashville)', + x: -720.673792608079, + y: 4322.692515939015, + z: -1035.3824562753787, + }, + }, + { + id: '4862', + data: { + label: 'WSTR TV (Cincinnati)', + x: -1729.6002934233657, + y: -2516.9523354108364, + z: 3689.504986631621, + }, + }, + { + id: '4867', + data: { + label: 'WTTO TV (San Antonio)', + x: -239.66384727435434, + y: 4180.970869206554, + z: -1257.1197904821986, + }, + }, + { + id: '4871', + data: { + label: 'WCHS TV (Las Vegas)', + x: -870.0725558808783, + y: 4125.482727493126, + z: -838.40055246117, + }, + }, + { + id: '4875', + data: { + label: 'KDSM TV (Des Moines)', + x: -905.3176767773539, + y: 3762.7683714260943, + z: -865.8447001456611, + }, + }, + { + id: '4876', + data: { + label: 'WSYT TV (Des Moines)', + x: -146.58889510193148, + y: 3970.7101804518607, + z: -1219.3592224692918, + }, + }, + { + id: '4877', + data: { + label: 'KBSI TV (Syracuse)', + x: -722.7816256055386, + y: 3978.3306957465493, + z: -1436.4162272146737, + }, + }, + { + id: ' ME)', + data: { + label: 'WGME TV (Portland', + x: -2876.4387283269725, + y: -2313.91033261353, + z: 2590.79152272647, + }, + }, + { + id: '4884', + data: { + label: 'WTTA TV (Tampa)', + x: 1892.0230792359794, + y: -2511.6498822976055, + z: 4768.102466655611, + }, + }, + { + id: '4885', + data: { + label: 'WCWB TV (Pittsburgh)', + x: 4240.12265729723, + y: -2312.8049062803716, + z: 4805.085829730318, + }, + }, + { + id: '4886', + data: { + label: 'WNUV TV (Baltimore)', + x: 3950.181976090779, + y: 4376.577237774579, + z: -3421.5832890337974, + }, + }, + { + id: '4887', + data: { + label: 'WTTV TV (Baltimore)', + x: 6638.230343849072, + y: -183.16539587726683, + z: -3638.968371255487, + }, + }, + { + id: '4888', + data: { + label: 'WTTK TV (Indianapolis)', + x: 390.2441560286435, + y: 4671.891126809334, + z: 3759.0105154637813, + }, + }, + { + id: '4891', + data: { + label: 'WUXP TV (Nashville)', + x: 3881.234088261016, + y: 2328.249724508104, + z: 3805.710101834401, + }, + }, + { + id: '4892', + data: { + label: 'WVTV TV (Milwaukee)', + x: 6613.096383365007, + y: 3050.679876552426, + z: 1876.0050780662698, + }, + }, + { + id: '4895', + data: { + label: 'KRRT TV (San Antonio)', + x: -1625.8376906623178, + y: 5022.868579290518, + z: 1488.1764555373904, + }, + }, + { + id: '4896', + data: { + label: 'WABM TV (San Antonio)', + x: -2157.0509822965596, + y: -3642.550893678677, + z: 1736.2600191968831, + }, + }, + { + id: '4899', + data: { + label: 'KOKH TV (Oklahoma City)', + x: 2527.3727782686356, + y: -3857.4412145631554, + z: -3113.456896139878, + }, + }, + { + id: '4900', + data: { + label: 'WXLV TV (Oklahoma City)', + x: -2979.5762623582837, + y: -3028.7094885485308, + z: -914.5385951966997, + }, + }, + { + id: '4904', + data: { + label: 'KFBT TV (Las Vegas)', + x: -2569.597615181332, + y: -2199.6195932311375, + z: 3007.1595155283912, + }, + }, + { + id: ' WV)', + data: { + label: 'WVAH TV (Charleston', + x: -3660.9385385962023, + y: -826.4287296412774, + z: -1465.9358778027886, + }, + }, + { + id: '4908', + data: { + label: 'WNYS TV (Syracuse)', + x: 5383.4480421959925, + y: -1824.9323200382946, + z: -3070.59710742723, + }, + }, + { + id: '4913', + data: { + label: 'WICS', + x: -424.63258989310464, + y: 1555.9072624331402, + z: 5119.417122793448, + }, + }, + { + id: '4916', + data: { + label: 'Paramount Communications', + x: -179.41694095607772, + y: 129.95748136790735, + z: 761.4026473575902, + }, + }, + { + id: '4917', + data: { + label: 'Jacor Communications', + x: 107.17143066601338, + y: -1641.2739045729725, + z: 3170.013994501754, + }, + }, + { + id: '8226', + data: { + label: 'Galaxy Engineering Services', + x: 439.7727512112462, + y: -522.1551301112337, + z: 3904.8823973018443, + }, + }, + { + id: '4919', + data: { + label: 'Warner Communications', + x: -695.8334262138258, + y: 2060.9141948221245, + z: -4771.454270670026, + }, + }, + { + id: '4920', + data: { + label: 'Turner Broadcasting', + x: 3210.794281487841, + y: -543.6962991659401, + z: 2714.696121964108, + }, + }, + { + id: '4921', + data: { + label: 'DirecTV', + x: -477.4766932026559, + y: -3892.022804783907, + z: -3677.015862448526, + }, + }, + { + id: '4922', + data: { + label: 'CBS', + x: 1304.0794161978451, + y: -223.03981676659296, + z: 462.96363235555333, + }, + }, + { + id: '4923', + data: { + label: 'Evite', + x: 3176.144461545586, + y: -1110.2175431003504, + z: -1757.9983738557635, + }, + }, + { + id: '4924', + data: { + label: 'Nynex', + x: 23.969565411342902, + y: -766.8513345455815, + z: 1171.4842923252456, + }, + }, + { + id: '4925', + data: { + label: 'Bell Atlantic', + x: 7466.11031489268, + y: -1915.1607260657704, + z: -235.39882578424326, + }, + }, + { + id: '4926', + data: { + label: 'BellSouth', + x: 4318.609891917794, + y: -1585.292428981662, + z: 270.6649082046489, + }, + }, + { + id: '4927', + data: { + label: 'Ameritech', + x: 3604.7560233660734, + y: -2061.6301958979484, + z: -1138.904867689111, + }, + }, + { + id: '4928', + data: { + label: 'Southwestern Bell', + x: 4345.353024268642, + y: 1253.475247156815, + z: -4260.246130535457, + }, + }, + { + id: '4929', + data: { + label: 'USWest', + x: 2843.8726610961407, + y: 3536.1155682840567, + z: 4824.652491799149, + }, + }, + { + id: '4930', + data: { + label: 'Pacific Telesis', + x: 3375.1421676220107, + y: -2128.3927850171876, + z: -936.5606894976275, + }, + }, + { + id: '4931', + data: { + label: 'AT&T Business', + x: 6629.562015262148, + y: 2378.9405493352915, + z: 3074.400658049249, + }, + }, + { + id: '4932', + data: { + label: 'AT&T Consumer', + x: 6313.4194965521565, + y: 540.883564072577, + z: 3417.4268407774757, + }, + }, + { + id: '4933', + data: { + label: 'NTT DoCoMo', + x: 591.6319499553153, + y: -2256.386448570724, + z: 2976.908707437384, + }, + }, + { + id: '4934', + data: { + label: 'FirstCom', + x: 1703.528636935629, + y: 200.51111064033833, + z: 1475.0536940406923, + }, + }, + { + id: '4935', + data: { + label: 'Keytech', + x: 1611.5907372848599, + y: 334.4823857270668, + z: 1146.4441729298105, + }, + }, + { + id: '4936', + data: { + label: 'Promon Tecnologia S.A.', + x: -2456.945420430393, + y: -3323.809581570313, + z: -1233.0401477146138, + }, + }, + { + id: '4937', + data: { + label: 'Lenfest Communications', + x: 2137.343978379136, + y: -475.0681512669168, + z: 1352.6023298785537, + }, + }, + { + id: '4938', + data: { + label: 'ACC TelEnterprises', + x: 1470.9762090854108, + y: 123.95219214198058, + z: 1087.4660181428771, + }, + }, + { + id: '4940', + data: { + label: 'Fox/Liberty Sports Networks', + x: 1851.9911968200763, + y: 435.49361014963625, + z: 23.982676311312844, + }, + }, + { + id: '4941', + data: { + label: 'British Telecommunications plc (BT)', + x: 1577.3830319438257, + y: 258.5264347072855, + z: -575.4085652379923, + }, + }, + { + id: '4942', + data: { + label: 'UnitedGlobalCom', + x: 2011.1717818944303, + y: -1961.3309120125143, + z: 723.8383737640683, + }, + }, + { + id: '4943', + data: { + label: 'TCI Cablevision', + x: 723.184948476536, + y: -255.40489127992635, + z: 1810.592286583776, + }, + }, + { + id: '4944', + data: { + label: 'TCG', + x: 3159.371261218803, + y: -4445.849169439465, + z: -3500.9686000621045, + }, + }, + { + id: '2282', + data: { + label: 'DAP', + x: 7800.377899429286, + y: 1130.6885850533804, + z: 275.6212878172384, + }, + }, + { + id: '8188', + data: { + label: 'Issanni Communications', + x: 4964.095468431577, + y: 3635.9905273476975, + z: -3401.606615327628, + }, + }, + { + id: '8307', + data: { + label: 'Web 21', + x: 5154.2604245513, + y: 1674.8361562588002, + z: 1493.7953134317397, + }, + }, + { + id: '8183', + data: { + label: 'Telstra Corp.', + x: 1429.4751715450652, + y: 1171.2763337762456, + z: 5552.188541483553, + }, + }, + { + id: '8251', + data: { + label: 'Scripps Cable', + x: 1368.7325730090731, + y: -412.6756080399085, + z: 2040.5238634811965, + }, + }, + { + id: '8308', + data: { + label: 'HealthAnswers', + x: 5090.159764056764, + y: 1766.6812981175296, + z: 1716.2659169674637, + }, + }, + { + id: '8184', + data: { + label: 'Trimble Navigation', + x: 5974.2925306100215, + y: 4048.431152237971, + z: 835.9574042729209, + }, + }, + { + id: '8252', + data: { + label: 'Prime Communications', + x: 1177.5817126663098, + y: -77.92426875240638, + z: 1783.3412450140222, + }, + }, + { + id: '8181', + data: { + label: 'Clayton Dubilier & Rice', + x: 5345.398970443014, + y: 3163.8420819713765, + z: -2931.158216675143, + }, + }, + { + id: '8179', + data: { + label: 'Boise Cascade', + x: 5648.368601995054, + y: 3370.7713240781504, + z: -2214.0737380666537, + }, + }, + { + id: '8180', + data: { + label: 'ICO-Teledesic Global', + x: 5539.329882047572, + y: 3211.1109195110303, + z: -2570.1248142638506, + }, + }, + { + id: '8224', + data: { + label: 'RTS Wireless', + x: -2435.2558611221325, + y: 521.5742305277405, + z: 4053.041305420195, + }, + }, + { + id: '8175', + data: { + label: 'Pegaso PCS', + x: 820.2581602509432, + y: -1619.1180706430562, + z: 4165.978248664261, + }, + }, + { + id: '8177', + data: { + label: 'Investor group', + x: 3741.6567014437305, + y: 2257.5893684188363, + z: -3194.158203363894, + }, + }, + { + id: '8225', + data: { + label: 'Cerulean', + x: 422.1519207121627, + y: -2660.323863931254, + z: 1934.8601660041977, + }, + }, + { + id: '8305', + data: { + label: 'Telenetworks', + x: 2534.271166290708, + y: -113.92263300040027, + z: 715.3430566140603, + }, + }, + { + id: '8233', + data: { + label: 'Yago', + x: 6650.059506961394, + y: -1540.549035480821, + z: 229.72570131653998, + }, + }, + { + id: '8232', + data: { + label: 'NetVantage', + x: 7076.9037691878275, + y: -1711.6235052424922, + z: -159.14869794869605, + }, + }, + { + id: '8171', + data: { + label: 'Sierra Atlantic', + x: -1279.425807239934, + y: 3017.1908567302917, + z: 3074.1172759687993, + }, + }, + { + id: '8172', + data: { + label: 'New Enterprise Associates', + x: -1552.823202627896, + y: 3178.449159154679, + z: 2824.4393553652367, + }, + }, + { + id: '8169', + data: { + label: 'Datum Telegraphic', + x: 3724.791099717208, + y: -2476.2242746514694, + z: 1007.9983416879784, + }, + }, + { + id: '8170', + data: { + label: 'General Electric Equity', + x: -1583.995832531667, + y: 2815.888156605155, + z: 3238.6094442976314, + }, + }, + { + id: '8166', + data: { + label: 'Enliven', + x: 4826.295038993086, + y: 2341.2912348074888, + z: -3168.94310499638, + }, + }, + { + id: '8167', + data: { + label: 'Brown Simpson Strategic Growth Funds', + x: -904.4394396384689, + y: 4947.026160174311, + z: -890.9071419138024, + }, + }, + { + id: '8265', + data: { + label: 'TEA Group', + x: 3511.365815851144, + y: -2374.0149857332267, + z: -307.4653513708641, + }, + }, + { + id: '8266', + data: { + label: 'Millennium Communications', + x: 3869.3531070752447, + y: -3916.1430401199905, + z: -2341.8040245504767, + }, + }, + { + id: '8160', + data: { + label: 'Rackspace Managed Hosting', + x: -2876.1385930819047, + y: 677.229692136579, + z: -2604.83417713917, + }, + }, + { + id: '8165', + data: { + label: 'Sage Hill Partners', + x: 5199.919956325302, + y: 2491.0338743739303, + z: -3094.347709119932, + }, + }, + { + id: '8164', + data: { + label: 'GATX Capital', + x: 4968.224760932185, + y: 950.2879936763167, + z: 446.9074593726668, + }, + }, + { + id: '8317', + data: { + label: 'Hypermart', + x: 4935.692179507667, + y: 1649.5707564046218, + z: 1857.616006121274, + }, + }, + { + id: '8229', + data: { + label: 'APM', + x: -2838.307212682597, + y: -2328.1510561105297, + z: 619.6561089165461, + }, + }, + { + id: '8162', + data: { + label: 'Sequioa Capital', + x: -3235.9522661048486, + y: 845.4437138137187, + z: -2680.3775789441447, + }, + }, + { + id: '8158', + data: { + label: 'Oak Investment Partners', + x: 5238.231822581967, + y: -387.36046595285444, + z: -213.07168458708142, + }, + }, + { + id: '8159', + data: { + label: 'Norwest Venture Partners', + x: -2576.6980181910476, + y: 701.9402994950386, + z: -2869.7027762234993, + }, + }, + { + id: '8228', + data: { + label: 'Executive Branch Webcasting', + x: -3198.278670536649, + y: -736.5781449426682, + z: -1409.4165809322815, + }, + }, + { + id: '8155', + data: { + label: 'PSINet Ventures', + x: 1820.869013046334, + y: 954.5106109255174, + z: 5543.639001831492, + }, + }, + { + id: '8156', + data: { + label: 'WorldByNET.com', + x: 1465.127666819861, + y: -2335.8363005116917, + z: 3202.5877059250874, + }, + }, + { + id: '8154', + data: { + label: 'Streampipe.com', + x: 1888.8156325456773, + y: 548.6712550829067, + z: 5561.997238963576, + }, + }, + { + id: '8325', + data: { + label: 'Harcourt Brace', + x: 5932.010266517072, + y: -643.5913708204041, + z: -1926.7241744250866, + }, + }, + { + id: '8152', + data: { + label: 'Bekkoame Internet', + x: 671.1280800632259, + y: 4730.889188483458, + z: -3730.01130084406, + }, + }, + { + id: '8326', + data: { + label: 'GartnerLearning', + x: 5933.910408246969, + y: -331.37412438410144, + z: -2237.03726861146, + }, + }, + { + id: '8250', + data: { + label: 'Maclean Hunter', + x: 1581.1633836989222, + y: -253.6881620196131, + z: 2110.6173865519263, + }, + }, + { + id: '8295', + data: { + label: 'WALC-AM', + x: 3302.2284484670045, + y: -4303.696321438649, + z: -1710.8018156505327, + }, + }, + { + id: '8149', + data: { + label: 'PNV.net', + x: 1947.6139147056215, + y: 6288.629933744834, + z: 970.3641220249514, + }, + }, + { + id: '8333', + data: { + label: 'Union-Street.com', + x: 5883.4054996291725, + y: 1608.563297944922, + z: 1371.8286271707243, + }, + }, + { + id: '8267', + data: { + label: 'Crown Communication', + x: 3418.904830107773, + y: -2565.3235235120974, + z: -59.12047155687516, + }, + }, + { + id: '8263', + data: { + label: 'Ascent', + x: 1884.4391242608401, + y: -1298.5862330217021, + z: 854.154145928846, + }, + }, + { + id: '8264', + data: { + label: 'Crown Castle UK Holdings', + x: 3877.4912077442696, + y: -2599.4634335787696, + z: 42.206152240411235, + }, + }, + { + id: '8144', + data: { + label: 'Jenzabar.com', + x: -1913.458075471789, + y: -351.3589515489376, + z: -2995.164864794363, + }, + }, + { + id: '8145', + data: { + label: 'Pegasus Capital Advisors L.P.', + x: -1632.6676018266785, + y: -283.863426173346, + z: -3294.9378273259717, + }, + }, + { + id: '8143', + data: { + label: 'Omnicom Group', + x: -1890.2565566782184, + y: -6.083598702240062, + z: -3175.034555997827, + }, + }, + { + id: '8321', + data: { + label: 'First American Media', + x: -617.7702465316124, + y: -2608.061347210812, + z: 2789.675678656678, + }, + }, + { + id: '8320', + data: { + label: 'TeleRoss', + x: 4109.03207146278, + y: -3547.069101459447, + z: 2445.475925112776, + }, + }, + { + id: '8140', + data: { + label: 'Orckit Communications', + x: -2924.916767551645, + y: -747.426848551814, + z: -2610.1942491578825, + }, + }, + { + id: '8141', + data: { + label: 'United States Israel Science and Technology Foundation', + x: -2615.737733608403, + y: -484.9996505074138, + z: -2550.9789647722537, + }, + }, + { + id: '8319', + data: { + label: 'USAOnline', + x: 4709.752675671794, + y: 1934.927123406672, + z: 1485.9430575094502, + }, + }, + { + id: '8138', + data: { + label: 'United States-Israel Science and Technology Foundation', + x: -3225.022356835152, + y: -596.7067051110747, + z: -2383.4957562408945, + }, + }, + { + id: '8268', + data: { + label: 'CCUK', + x: 3648.7701522006037, + y: -2668.223366349664, + z: -13.960407762614047, + }, + }, + { + id: '8136', + data: { + label: 'individual investors', + x: 921.7993821173586, + y: -693.8828864452595, + z: 5187.469580903013, + }, + }, + { + id: '8135', + data: { + label: 'News Corp.', + x: 521.492442793703, + y: -2593.769569429151, + z: 2392.198187035586, + }, + }, + { + id: '8272', + data: { + label: 'FMAS', + x: -1009.1567481928743, + y: 4622.4700923154405, + z: 144.93810458545397, + }, + }, + { + id: '8271', + data: { + label: 'Concept Development', + x: 2663.6838053417882, + y: -4481.809820555477, + z: -2575.8418502846985, + }, + }, + { + id: '8132', + data: { + label: 'Blue Pumpkin Software', + x: 4956.746269055559, + y: 3633.220441612048, + z: 3794.033614895554, + }, + }, + { + id: '8239', + data: { + label: 'MSG Network', + x: 5448.731411250374, + y: -3468.789768127087, + z: -2562.487102500558, + }, + }, + { + id: '8227', + data: { + label: 'AMFM', + x: 103.35722146289828, + y: -1320.4841868873264, + z: 3545.7161087963464, + }, + }, + { + id: '8276', + data: { + label: 'Slager Radio', + x: -2113.5489143566783, + y: 288.6712925722102, + z: -4475.710852511406, + }, + }, + { + id: '8128', + data: { + label: 'Netia Holdings SA', + x: 4614.5354151939855, + y: -2421.625858322797, + z: 4358.365807850901, + }, + }, + { + id: '8273', + data: { + label: 'Transition Systems', + x: 2108.785796901496, + y: -45.33171047562511, + z: 3247.8003049655085, + }, + }, + { + id: '8274', + data: { + label: 'SDK Medical Computer Services', + x: 2152.165486545622, + y: 63.952597441367814, + z: 3064.6562935716156, + }, + }, + { + id: '8302', + data: { + label: 'Customer Analytics', + x: 1668.3608574904993, + y: -3064.3134210534777, + z: 4225.733153623719, + }, + }, + { + id: '8303', + data: { + label: 'FirstMark', + x: 2035.1700599673468, + y: -1331.9812539734155, + z: -1157.2036994310579, + }, + }, + { + id: '8126', + data: { + label: 'AcNet SA de CV of Mexico', + x: 4300.281538499446, + y: 1850.6726753433643, + z: 4320.988977918039, + }, + }, + { + id: '8125', + data: { + label: 'Murdock Communications', + x: 202.87656295267394, + y: 6063.8964302798995, + z: -823.9265436520521, + }, + }, + { + id: '8124', + data: { + label: 'Openia', + x: 1817.2193628664227, + y: -4359.675831814075, + z: -3056.0036325394667, + }, + }, + { + id: '8122', + data: { + label: 'Return.com', + x: 1728.279938457302, + y: 5114.939558642362, + z: -2377.6930580846547, + }, + }, + { + id: '8123', + data: { + label: 'Marconi plc', + x: 518.7199625707755, + y: -4431.546830446786, + z: -2275.816019325079, + }, + }, + { + id: '8285', + data: { + label: 'Network Indiana', + x: -2528.371266326096, + y: 739.3691685438658, + z: -4086.0540091705325, + }, + }, + { + id: '8121', + data: { + label: 'Mail Boxes Etc.', + x: 1836.3177798775505, + y: 4778.734779854735, + z: -2577.3358967787717, + }, + }, + { + id: '8118', + data: { + label: 'OutlookSoft', + x: 2466.184879816447, + y: -3195.5968390802477, + z: 3486.2682749786727, + }, + }, + { + id: '8119', + data: { + label: 'Kensington International Holding', + x: -32.63171734335623, + y: -2585.4270802780325, + z: 4376.150096313137, + }, + }, + { + id: '8117', + data: { + label: 'GE Equity', + x: 2460.1847818706083, + y: -3543.556994414258, + z: 3265.4538942167555, + }, + }, + { + id: '8116', + data: { + label: 'eritmo.com', + x: 90.38254805631166, + y: -4752.022650383119, + z: 547.227951049693, + }, + }, + { + id: '8115', + data: { + label: 'Merrill Lynch Global Emerging Markets Partners LP', + x: 3216.803973489163, + y: 3618.6189664317326, + z: -1821.498229612458, + }, + }, + { + id: '8278', + data: { + label: 'Votionis', + x: 3237.7692855203013, + y: -2277.195206054239, + z: -2003.9583109480361, + }, + }, + { + id: '8282', + data: { + label: 'AgriAmerica', + x: -666.7536142336018, + y: -4375.271310996776, + z: -900.5158975404842, + }, + }, + { + id: '8279', + data: { + label: 'Wabash', + x: 2891.3487319193437, + y: -2408.8557088285975, + z: -2690.8763343643163, + }, + }, + { + id: '8283', + data: { + label: 'WKCF-TV', + x: 3239.9804338860827, + y: 5259.746326410871, + z: -1748.3718939513928, + }, + }, + { + id: '8255', + data: { + label: 'Jones Interacble', + x: 1998.8371983016254, + y: -5132.57401304919, + z: -2264.9127988813893, + }, + }, + { + id: '8111', + data: { + label: 'Telespree Communications', + x: 3967.090734580388, + y: -1787.6798792654558, + z: 4047.9514815641874, + }, + }, + { + id: '8110', + data: { + label: 'Lucent Venture Partners', + x: 3619.7898762275217, + y: -1671.181816554999, + z: 4223.533764741562, + }, + }, + { + id: '8109', + data: { + label: 'Consystant', + x: 3325.4035169424224, + y: -1932.370295443892, + z: 4318.518135655325, + }, + }, + { + id: '8108', + data: { + label: 'Intel Communications Fund', + x: 3028.337272379298, + y: -1775.701478696057, + z: 4530.045094031201, + }, + }, + { + id: '8286', + data: { + label: 'SF Multistations', + x: 3118.327746385253, + y: -2476.844956294371, + z: -2468.6487944295795, + }, + }, + { + id: '8107', + data: { + label: 'Siros Technology', + x: -2038.6734590160343, + y: -3111.0893792052257, + z: -1664.3463711573143, + }, + }, + { + id: '8106', + data: { + label: 'EMC Corp-Lucent', + x: 4210.15222921232, + y: 321.3736400545856, + z: 5191.7216507687845, + }, + }, + { + id: '8105', + data: { + label: 'Virtual Media Technologies', + x: -1801.4104244530768, + y: -1945.6980047060954, + z: -3165.4246388237425, + }, + }, + { + id: '8103', + data: { + label: 'I/O Magic', + x: -1133.5893981179781, + y: -3074.451538844194, + z: 2896.7051542787517, + }, + }, + { + id: '8323', + data: { + label: 'GulfLink Communications', + x: -723.4052371564547, + y: -2190.162333019228, + z: 2735.2049705151335, + }, + }, + { + id: '8245', + data: { + label: 'Central NY News', + x: 2536.59981179955, + y: -4551.9728123877085, + z: 2726.63820651307, + }, + }, + { + id: '8099', + data: { + label: 'Novo Media Group', + x: -2717.842839874709, + y: 3411.259447524087, + z: -1338.9832055354982, + }, + }, + { + id: ' Kansas', + data: { + label: 'KSNW-TV (NBC) in Wichita', + x: 195.99922056516345, + y: -3372.1471572974215, + z: -4350.864895877189, + }, + }, + { + id: '8098', + data: { + label: 'Freei.Net', + x: -1524.9764683423675, + y: 3842.6580176357365, + z: -1384.746510979262, + }, + }, + { + id: '8281', + data: { + label: 'WQCD-FM', + x: 7134.2061119136115, + y: -1201.1530742635032, + z: -2262.5582997767633, + }, + }, + { + id: '8097', + data: { + label: 'American Express AXP Strategy Aggressive Fund', + x: -1405.525460362958, + y: 4123.573272637914, + z: -1657.294758764873, + }, + }, + { + id: '8096', + data: { + label: 'Spaceway', + x: 4058.421973868933, + y: -1081.7470546818722, + z: -1916.9421416308835, + }, + }, + { + id: '8094', + data: { + label: 'StockPower', + x: -2080.9859663497155, + y: -1113.0247125049284, + z: -3532.2126768240405, + }, + }, + { + id: '8092', + data: { + label: 'Harris Venture Partners', + x: 1765.9779659210499, + y: 5522.18283111631, + z: 1170.7657773895605, + }, + }, + { + id: '8091', + data: { + label: 'ResQNet.com', + x: 1787.9663141357917, + y: 5277.712048915895, + z: 1489.729500837349, + }, + }, + { + id: '8090', + data: { + label: 'Capital Consultants', + x: 1571.7624250102315, + y: 4996.888116879202, + z: 1684.6267152288951, + }, + }, + { + id: '8089', + data: { + label: 'Harris Black International', + x: -3412.7793826931857, + y: 1029.643415490721, + z: -2306.1441996013386, + }, + }, + { + id: '8284', + data: { + label: 'Mediatex Communications', + x: 2802.4210206925713, + y: -2111.260394658876, + z: -2949.555815121061, + }, + }, + { + id: '8087', + data: { + label: 'DirecTV Latin America', + x: -2127.575212305023, + y: 2542.4242251790884, + z: 1672.9347269259442, + }, + }, + { + id: '8086', + data: { + label: 'Grupo Clarin', + x: -1944.837595335011, + y: 2858.0040111375097, + z: 1841.3525243332288, + }, + }, + { + id: '8085', + data: { + label: 'GoAmerica Communiactions', + x: 5886.459338768869, + y: -2026.8659609264844, + z: -2651.63585352091, + }, + }, + { + id: '8084', + data: { + label: 'CIBC Capital Partners', + x: -1605.8175644654982, + y: 2962.398044873036, + z: -2326.5091839200213, + }, + }, + { + id: '8080', + data: { + label: 'GigaMedia', + x: -2452.479961492349, + y: -1816.5811926528977, + z: 2470.188163395593, + }, + }, + { + id: '8083', + data: { + label: 'Telecom Italia Mobile SpA', + x: 6747.156656884887, + y: -2849.1654972441197, + z: -1448.584042615311, + }, + }, + { + id: '8081', + data: { + label: 'Gamania Digital Entertainment', + x: -2387.3241775389997, + y: -2016.0161113219074, + z: 2118.66624540088, + }, + }, + { + id: '8082', + data: { + label: 'Knowledge Net Holdings', + x: 3767.1753832711665, + y: 2791.443659201482, + z: 3680.465809843514, + }, + }, + { + id: '8079', + data: { + label: 'Rhythms Net Connections', + x: 6163.924118847661, + y: 3105.6307295501574, + z: 3213.5691565175425, + }, + }, + { + id: '8290', + data: { + label: 'Country Marketplace', + x: 3213.2056664451716, + y: -1838.897833630182, + z: -2622.9900425963597, + }, + }, + { + id: '8291', + data: { + label: 'KZLA', + x: 5407.746012525493, + y: -3185.4310986338655, + z: -3012.766377873317, + }, + }, + { + id: '8076', + data: { + label: 'CGMI', + x: 5978.904632994821, + y: 28.2735804427053, + z: -1574.11876831449, + }, + }, + { + id: '8075', + data: { + label: 'iParty', + x: 2518.0145706877465, + y: 6209.0532161960955, + z: 674.5043204800744, + }, + }, + { + id: ' NM)', + data: { + label: 'KRQE-TV (Albuquerque', + x: -1153.6053447648653, + y: 4375.114095958895, + z: 3220.4381504414414, + }, + }, + { + id: '8070', + data: { + label: 'Freeserve plc', + x: -3952.641872954165, + y: -273.37876197746243, + z: 1244.8032083054372, + }, + }, + { + id: '8071', + data: { + label: 'TelePost', + x: 4061.0275112963686, + y: -2358.4451990197304, + z: -1485.8116821350698, + }, + }, + { + id: '8072', + data: { + label: 'Freeserve', + x: 135.295655953567, + y: 6083.629418549885, + z: -166.6568113117213, + }, + }, + { + id: '8262', + data: { + label: 'InaCom', + x: 5050.463548717815, + y: 3096.742073650878, + z: 2149.1117621056023, + }, + }, + { + id: '8067', + data: { + label: 'Franklin Covey Co.', + x: -1895.186784020683, + y: -2463.3348854700284, + z: 3200.332676986277, + }, + }, + { + id: '8299', + data: { + label: 'WTLC-FM and AM', + x: -2133.2323027755942, + y: 2221.4210053918223, + z: 3073.145395642777, + }, + }, + { + id: '8066', + data: { + label: 'Capital Investment Group', + x: -1602.4924731949334, + y: -2724.941821319884, + z: 3274.720762110906, + }, + }, + { + id: ' AZ)', + data: { + label: 'KGUN-TV (Tucson', + x: -314.53721213901053, + y: -4108.842793445436, + z: 3110.659698046125, + }, + }, + { + id: '8065', + data: { + label: 'Global Network Services', + x: -722.9764731408978, + y: 194.31282411388017, + z: -4338.138261766598, + }, + }, + { + id: '8301', + data: { + label: 'Knowledge Stream Partners', + x: 1841.928691454921, + y: -3624.47191677646, + z: 3713.4465101353676, + }, + }, + { + id: '8063', + data: { + label: 'Popwire', + x: 6253.7901916726, + y: 3762.2204022109554, + z: 1960.1861366634446, + }, + }, + { + id: '8061', + data: { + label: 'Digital Entertainment Network', + x: -3582.229950432406, + y: -756.6258150237965, + z: 268.9175336787161, + }, + }, + { + id: '8062', + data: { + label: 'Enron Broadcasting', + x: -3786.4925341070816, + y: -978.5101702822423, + z: 546.387795257338, + }, + }, + { + id: '8060', + data: { + label: 'Chase Capital Partners', + x: -3507.2281402525114, + y: -623.6759881789741, + z: -110.36944667444273, + }, + }, + { + id: '8059', + data: { + label: 'Ision Internet', + x: -2065.2204123019646, + y: 2752.6637348188474, + z: 2749.217089454368, + }, + }, + { + id: '8058', + data: { + label: 'Energis plc', + x: 6848.593687931534, + y: -1483.399768486352, + z: -2516.3435352767124, + }, + }, + { + id: '8275', + data: { + label: 'ALLTEL Healthcare Information Services', + x: 2760.9752827400644, + y: 2651.626618402763, + z: -5223.981018012698, + }, + }, + { + id: '8287', + data: { + label: 'WXTM-FM', + x: 2629.6516641502635, + y: -2275.2669563588843, + z: -2734.7729637823318, + }, + }, + { + id: '8235', + data: { + label: 'Northcoast Communications', + x: 2587.9910066132497, + y: 1777.7777466243276, + z: 1979.8649432451457, + }, + }, + { + id: '8055', + data: { + label: 'Kleiner Perkins', + x: 2702.9186592468554, + y: 1037.4065796797747, + z: -1031.0903841032045, + }, + }, + { + id: '8053', + data: { + label: 'HotOffice Technologies', + x: 2268.200030928155, + y: -331.4618461074428, + z: -2557.4948712323067, + }, + }, + { + id: '8306', + data: { + label: 'DragonSurf.com', + x: 3297.244210442759, + y: 3253.5938245371053, + z: -3394.3321513880815, + }, + }, + { + id: '8311', + data: { + label: 'Virtual Avenue', + x: 5033.30950167566, + y: 1887.0521922664782, + z: 1328.6956387096136, + }, + }, + { + id: '8049', + data: { + label: 'Sandler Capital Management', + x: -147.3636018767667, + y: 1829.5038406613828, + z: 667.8793069004739, + }, + }, + { + id: '8048', + data: { + label: 'Brightstreet', + x: 242.35001160801252, + y: 1514.4726897262622, + z: 601.2125829278609, + }, + }, + { + id: '8047', + data: { + label: 'CNI Ventures', + x: -9.590633457031434, + y: 1838.0027416892074, + z: 872.1835176129229, + }, + }, + { + id: '8309', + data: { + label: 'Playsite', + x: 5220.534514413638, + y: 1558.051777511992, + z: 1275.8196435950224, + }, + }, + { + id: '8044', + data: { + label: 'Internet Communications Technologies', + x: -3478.883212018893, + y: 2113.608002367003, + z: 1983.0707025713916, + }, + }, + { + id: '8043', + data: { + label: 'Cox Technologies', + x: -3348.4638872836936, + y: 1953.5830191465584, + z: 1637.9738134020756, + }, + }, + { + id: '8280', + data: { + label: 'Wabash Valley Broadcasting', + x: -2248.0939131643713, + y: 2458.995993683702, + z: -2940.148281645381, + }, + }, + { + id: '8041', + data: { + label: 'ExciteAtHome', + x: 5723.770087129161, + y: 4693.427371745002, + z: -1678.4088047366083, + }, + }, + { + id: '8237', + data: { + label: 'SportsChannel Florida', + x: 2658.437265112463, + y: 1659.7308899367265, + z: 2387.414182869211, + }, + }, + { + id: '8039', + data: { + label: 'iBeam', + x: -2247.4920494290627, + y: 3546.421202014863, + z: -2751.3348356818497, + }, + }, + { + id: '8312', + data: { + label: 'Dogpile', + x: 5257.398864393419, + y: 1440.656647731525, + z: 1581.0776132283263, + }, + }, + { + id: '8313', + data: { + label: 'Haggle Online', + x: 4941.135668235999, + y: 1849.7782939358449, + z: 1522.5897306420813, + }, + }, + { + id: '8221', + data: { + label: 'Inciscent', + x: 945.2083141734828, + y: -3172.230166725886, + z: 1953.8345283802153, + }, + }, + { + id: '8220', + data: { + label: 'Advance Telecom Holdings', + x: 2450.177144127497, + y: -252.48821129619978, + z: 2284.263682627368, + }, + }, + { + id: '8314', + data: { + label: 'Free Yellow', + x: 5131.0803821980635, + y: 1461.9138460470456, + z: 1807.2234472900093, + }, + }, + { + id: '8036', + data: { + label: 'Morgan Stanley Dean Witter Private Equity', + x: -591.4443366929318, + y: -3615.4313642024035, + z: -1665.5062213918975, + }, + }, + { + id: '8034', + data: { + label: 'Fleet Equity Partners', + x: -359.81923873833, + y: -3276.8016160649813, + z: -2078.5450229203448, + }, + }, + { + id: '8315', + data: { + label: 'AskMe.com', + x: 4596.091124089418, + y: 1417.6955674770036, + z: 979.9554383523723, + }, + }, + { + id: '8244', + data: { + label: 'Capital Ventures International', + x: 1788.900576644817, + y: -137.02016824158244, + z: -1986.724269762005, + }, + }, + { + id: '8324', + data: { + label: 'WITN-TV', + x: -399.9425623033755, + y: -2458.298982540589, + z: 3439.214448157944, + }, + }, + { + id: '8031', + data: { + label: 'DishnetDSL', + x: 3531.802983452985, + y: 1610.001340830422, + z: 2194.6236375452663, + }, + }, + { + id: '8028', + data: { + label: 'Rainbow Media', + x: -50.933119686604044, + y: 5367.01505271269, + z: 2495.83227446842, + }, + }, + { + id: '8222', + data: { + label: 'Riverbed', + x: 337.06857381170846, + y: -2892.744041583655, + z: 1721.3009492416556, + }, + }, + { + id: '8223', + data: { + label: 'SunPro', + x: 532.8551594793414, + y: -3090.463749421141, + z: 1504.450427246898, + }, + }, + { + id: '8231', + data: { + label: 'Tradex Technologies', + x: 1161.187565913868, + y: 634.8552042935974, + z: -2581.1434848803674, + }, + }, + { + id: '8230', + data: { + label: 'Digitivity', + x: -3011.144091546388, + y: -2053.7807921351136, + z: 374.7788690678542, + }, + }, + { + id: '8025', + data: { + label: 'Broadview Capital Partners', + x: 1700.647798719826, + y: 1940.0088437098284, + z: 5145.4830507154675, + }, + }, + { + id: '8024', + data: { + label: 'Internet Group do Brasil', + x: -3600.6528749969093, + y: -179.15416306536423, + z: -717.8167802664753, + }, + }, + { + id: '8253', + data: { + label: 'Scripps Cable', + x: 3238.279430188766, + y: 6083.8669342083185, + z: -1312.7292500665546, + }, + }, + { + id: '8023', + data: { + label: 'Brasil Telecom Participacoes S.A.', + x: -3433.116621810131, + y: -147.39856753683418, + z: -1089.4453193753573, + }, + }, + { + id: '8236', + data: { + label: 'News 12 Networks', + x: 2088.4744947575114, + y: 1543.8358409396951, + z: 2492.8925996387115, + }, + }, + { + id: '8020', + data: { + label: 'U.S. West', + x: 3802.4211387463315, + y: -1905.6955539857665, + z: -610.7489595659578, + }, + }, + { + id: '8019', + data: { + label: 'TDC A/S', + x: 2815.6238446666334, + y: 5808.218140506623, + z: 330.87087987892716, + }, + }, + { + id: '8018', + data: { + label: 'Netverk', + x: 2807.0807052410964, + y: 5793.646453528257, + z: 738.9722945621662, + }, + }, + { + id: '8016', + data: { + label: 'MPACT Immedia', + x: 3783.568500372358, + y: -1862.9221148117902, + z: -1713.1112166341575, + }, + }, + { + id: '8017', + data: { + label: 'Belgacom SA', + x: 2754.5220014739034, + y: 5841.688847980446, + z: 1138.583278981492, + }, + }, + { + id: '8015', + data: { + label: 'BCE/Bell Canada', + x: 3655.904175387411, + y: -1794.2111694776218, + z: -1279.6502021862807, + }, + }, + { + id: '8014', + data: { + label: 'RedChip.com', + x: -1274.9058504988454, + y: -1122.7180174272169, + z: -3803.0857059323566, + }, + }, + { + id: '8277', + data: { + label: 'Cincinnati Magazine', + x: 3332.7973252346796, + y: -2129.3258424712885, + z: -2211.270720405224, + }, + }, + { + id: '8009', + data: { + label: 'Asia Online', + x: 5093.63557561283, + y: 1313.0440116389495, + z: -3639.8646812764177, + }, + }, + { + id: '8008', + data: { + label: 'Sonicbox', + x: 1592.163502567873, + y: 3816.9822616051742, + z: -3207.183623732385, + }, + }, + { + id: '8013', + data: { + label: 'Celestial Asia Securities Holdings On-Line', + x: -968.4837752244964, + y: -1092.9296319463444, + z: -4068.2377775424543, + }, + }, + { + id: '8011', + data: { + label: 'Citicorp Capital Asia', + x: -404.0509268002324, + y: -2032.8831399557748, + z: 3366.1146044765314, + }, + }, + { + id: '8010', + data: { + label: 'Utisan Melayu', + x: 4772.098971657483, + y: 1174.6750221817667, + z: -3829.582661818762, + }, + }, + { + id: '8007', + data: { + label: 'Hambrecht & Quist Asia Pacific', + x: 1465.8266590957633, + y: 3558.2361157399955, + z: -3487.5671319728253, + }, + }, + { + id: '8327', + data: { + label: 'The Neiman Marcus Group', + x: 5742.0507691107205, + y: -974.0382159353472, + z: -2080.2098436293377, + }, + }, + { + id: '8006', + data: { + label: 'JAFCO Co.', + x: 4013.6768788589015, + y: -3061.7483948249483, + z: -2418.6904151170547, + }, + }, + { + id: '8005', + data: { + label: 'Hypernix Technologies', + x: 3936.8572289229473, + y: -3294.6402455374077, + z: -2093.1516745169793, + }, + }, + { + id: '8328', + data: { + label: 'Risk Data', + x: 4397.897373831202, + y: 4017.607288872156, + z: 2634.4776750468613, + }, + }, + { + id: '8003', + data: { + label: 'Sorento', + x: -3544.346521493475, + y: -1347.411511681686, + z: 2005.5977124654903, + }, + }, + { + id: '8330', + data: { + label: 'Quality Semiconductor', + x: 3534.9080970986283, + y: -1284.6280503890086, + z: 285.85340704680084, + }, + }, + { + id: '8002', + data: { + label: 'SeatAdvisor.com', + x: -3441.5116663300696, + y: -1694.8719122565708, + z: 1792.8338246990186, + }, + }, + { + id: '8331', + data: { + label: 'Giraudy SA', + x: -448.1534429967751, + y: -1321.727509716024, + z: -295.67371219343784, + }, + }, + { + id: '8269', + data: { + label: 'Automata International', + x: -427.2629780027283, + y: 1851.7100112903752, + z: 4899.502147872418, + }, + }, + { + id: '8332', + data: { + label: 'Waterman Broadcasting', + x: -346.1403620353561, + y: -1582.333007932845, + z: -143.29593126210312, + }, + }, + { + id: '7998', + data: { + label: 'VManage', + x: -199.72479371665014, + y: -2724.477563570853, + z: 3146.2090797092587, + }, + }, + { + id: '7997', + data: { + label: 'ADC Ventures', + x: -94.58697770187041, + y: -2789.566176984726, + z: 3538.9060606879784, + }, + }, + { + id: '7996', + data: { + label: 'Sonera', + x: 4477.530525685724, + y: 3214.0880976220014, + z: 4455.5176464075985, + }, + }, + { + id: '7995', + data: { + label: 'Jazztel', + x: -3728.9444713276425, + y: 529.7381890582042, + z: 1392.150098353531, + }, + }, + { + id: '7994', + data: { + label: 'EXCEL Communications', + x: -3193.07458387484, + y: 3358.4044163563, + z: 72.23179755217429, + }, + }, + { + id: '7993', + data: { + label: 'Teleglobe', + x: 6228.964704144844, + y: -1172.3255763950508, + z: -3675.666827021045, + }, + }, + { + id: '7992', + data: { + label: 'Viatel', + x: -3491.1663215624408, + y: -1530.9995901662692, + z: -1534.8271960289765, + }, + }, + { + id: '7991', + data: { + label: 'ViaSat', + x: -3936.2288876032158, + y: 274.7128516222487, + z: -1079.4503469198048, + }, + }, + { + id: '7990', + data: { + label: 'United States Cellular', + x: 4893.404940388272, + y: 3215.556006514819, + z: 4182.45742120578, + }, + }, + { + id: '7988', + data: { + label: 'SCC Communications', + x: 5338.361847675796, + y: -1358.6765537852336, + z: -2941.608760153017, + }, + }, + { + id: '7989', + data: { + label: 'Telesoft', + x: 6817.585256902174, + y: 821.1753710842645, + z: 3263.1241518759116, + }, + }, + { + id: '7987', + data: { + label: 'APT', + x: 4030.8574017048136, + y: 5980.155947922538, + z: 140.9327886087298, + }, + }, + { + id: '7986', + data: { + label: 'RSL Communications Ltd', + x: 5034.413786797051, + y: -433.78765390854255, + z: -3264.459109186705, + }, + }, + { + id: '7985', + data: { + label: 'P-Com', + x: 1722.6648512333154, + y: -3827.50900419647, + z: -4305.094790722187, + }, + }, + { + id: '7984', + data: { + label: 'Uniden', + x: 3950.781380826824, + y: 4740.982885695253, + z: 3473.0834186467605, + }, + }, + { + id: '7983', + data: { + label: 'Carso Global Telecom', + x: 6516.821400235008, + y: 1964.8307660529763, + z: 3444.9325211067826, + }, + }, + { + id: '7982', + data: { + label: 'Telstra', + x: -1166.5646075902357, + y: 633.4606356470246, + z: -4804.259846651664, + }, + }, + { + id: '7981', + data: { + label: 'PLIANT SYSTEMS', + x: 2755.207601515839, + y: 3724.896008488581, + z: -4662.783578673449, + }, + }, + { + id: '7980', + data: { + label: 'Nucentrix Broadband Networks', + x: -2310.495053603308, + y: -3537.0922207696435, + z: -1884.167225059993, + }, + }, + { + id: '7979', + data: { + label: 'Nextel International', + x: 334.9632337561164, + y: -4571.607983551508, + z: -3103.149595999402, + }, + }, + { + id: '7978', + data: { + label: 'Metromedia Fiber Network I', + x: 2318.347868483335, + y: 3851.301670103334, + z: -4655.550239591528, + }, + }, + { + id: '7977', + data: { + label: 'OneTel', + x: 3058.477688938803, + y: 3001.316889030198, + z: -4987.95004465095, + }, + }, + { + id: '7975', + data: { + label: 'Leap Wireless International', + x: 3394.854441200108, + y: -4956.524020075814, + z: -2278.1954152410644, + }, + }, + { + id: '7976', + data: { + label: 'Telex-Chile', + x: -209.42591279345302, + y: -4708.011175362013, + z: -2129.7362811503285, + }, + }, + { + id: '7974', + data: { + label: 'LCC International', + x: 7204.105624120359, + y: -2130.637569537861, + z: 559.6013430482303, + }, + }, + { + id: '7973', + data: { + label: 'International FiberCom', + x: 2379.2069371817224, + y: 2585.944696984983, + z: -5046.515124651445, + }, + }, + { + id: '7971', + data: { + label: 'HARRIS', + x: -1521.996935314844, + y: -3203.616751652096, + z: -3395.142406056659, + }, + }, + { + id: '7972', + data: { + label: 'Hector Communications', + x: 6527.474621992912, + y: -966.0486860860144, + z: 3525.4465756671593, + }, + }, + { + id: '7970', + data: { + label: 'GLOBAL TELESYSTEMS', + x: 1122.69612590154, + y: -2566.662206585125, + z: 4882.1862269502935, + }, + }, + { + id: '7969', + data: { + label: 'ChoiceTel Communications', + x: -3113.1259164362573, + y: 1076.8128255198799, + z: 3149.8210387993972, + }, + }, + { + id: '7968', + data: { + label: 'D&E Communications', + x: 3566.5159148000266, + y: -3763.6010678177445, + z: -2106.8933879100255, + }, + }, + { + id: '7967', + data: { + label: 'D E Communications', + x: -665.7987701834272, + y: -3969.856073099596, + z: 2606.515958884357, + }, + }, + { + id: '7966', + data: { + label: 'Comtech Telecommunications', + x: 3411.9862076296663, + y: 1562.2916901132423, + z: -4553.658987247101, + }, + }, + { + id: '7965', + data: { + label: 'Classic Communications', + x: 938.6474163084873, + y: -4659.730877203173, + z: -2510.8577645981068, + }, + }, + { + id: '8318', + data: { + label: 'National Discount Brokers', + x: 4473.036784409315, + y: 1583.5651814680305, + z: 1078.4024250536709, + }, + }, + { + id: '7963', + data: { + label: 'Liberty Media International', + x: 7062.575200943518, + y: -2682.4260638086284, + z: -170.64405600182042, + }, + }, + { + id: '7962', + data: { + label: 'ANTEC', + x: -1344.1816517744342, + y: 3976.0554822729546, + z: 3327.4096314779026, + }, + }, + { + id: '7960', + data: { + label: 'AMERICAN TOWER', + x: 2209.3036064884723, + y: 1358.4506194992352, + z: 5687.682716717145, + }, + }, + { + id: '7961', + data: { + label: 'Swisscom', + x: -2090.9256863741884, + y: -1907.9819116204144, + z: -3286.2988991231105, + }, + }, + { + id: '7957', + data: { + label: 'eFrames.com', + x: 7134.656184541807, + y: 910.7559776462726, + z: 2199.302623606479, + }, + }, + { + id: '7955', + data: { + label: 'Roundview', + x: 1121.2883206268193, + y: 6249.612712837932, + z: -203.5487102994671, + }, + }, + { + id: '7956', + data: { + label: 'Zing', + x: 7303.570869589215, + y: 626.6631817775439, + z: 1959.0067905560402, + }, + }, + { + id: '7954', + data: { + label: 'Zhone', + x: 1355.23470138943, + y: 6257.122294208376, + z: -532.3833246103526, + }, + }, + { + id: '7953', + data: { + label: 'Arthas.com', + x: 4165.749639185653, + y: 459.8718163279275, + z: -214.6351743920795, + }, + }, + { + id: '7951', + data: { + label: 'Selfware', + x: -1258.018124482892, + y: -2482.7731634608635, + z: -4564.216057369523, + }, + }, + { + id: '7952', + data: { + label: 'Kimo', + x: 4016.7410439675627, + y: 191.64030337634614, + z: -474.03479687931184, + }, + }, + { + id: '7950', + data: { + label: 'Xybernaut', + x: -1456.8260931967145, + y: -2134.344027098546, + z: -4611.624152941238, + }, + }, + { + id: '7949', + data: { + label: 'Kinderhook Systems', + x: 1122.1311123974863, + y: -2633.8294477382815, + z: 4022.3853193762275, + }, + }, + { + id: '7948', + data: { + label: 'Team Integration', + x: -1601.1320080605178, + y: 4010.59300065873, + z: 1559.11483253316, + }, + }, + { + id: '7947', + data: { + label: 'WRQ', + x: -1807.0140924996203, + y: 4048.5783169261554, + z: 1900.2916477492488, + }, + }, + { + id: '7946', + data: { + label: 'Ego Media', + x: 998.1895294945206, + y: 5713.2967949231115, + z: -1482.9675580112253, + }, + }, + { + id: '7945', + data: { + label: 'HMG Worldwide', + x: 1010.4363776036587, + y: 5775.745366262777, + z: -1878.0296427670337, + }, + }, + { + id: '7944', + data: { + label: 'Women.com Networks', + x: 4922.511711151307, + y: 4051.638959181569, + z: -2559.9922991819526, + }, + }, + { + id: '7941', + data: { + label: 'Wire One', + x: 3466.6934007057657, + y: 3443.2862036948814, + z: -4217.926408010519, + }, + }, + { + id: '7942', + data: { + label: 'GeoVideo', + x: -365.48353055760526, + y: 3021.1949956819394, + z: 3930.3581901808493, + }, + }, + { + id: '7938', + data: { + label: 'Bluefly', + x: 242.01883728516282, + y: 703.4453353370614, + z: -5059.795682221659, + }, + }, + { + id: '7943', + data: { + label: 'ezSharing', + x: -44.203244969035495, + y: -409.1704783008751, + z: -974.8236994213729, + }, + }, + { + id: '7940', + data: { + label: 'Liquor.com', + x: 3720.0441252410565, + y: 3377.8719057228695, + z: -3028.0695532819873, + }, + }, + { + id: '7939', + data: { + label: 'Liquor by Wire', + x: 3892.5731728977803, + y: 3254.545579151859, + z: -3376.464871929258, + }, + }, + { + id: '7934', + data: { + label: 'IAnalyst', + x: -1185.532648550216, + y: 4945.099062132503, + z: -1454.0701952509542, + }, + }, + { + id: '7937', + data: { + label: 'Soros Fund Management', + x: 180.8100344278118, + y: 303.751443210638, + z: -5034.036214960841, + }, + }, + { + id: '7935', + data: { + label: 'Price Wireless', + x: 7373.54503239971, + y: -928.8422567691784, + z: -871.668760353645, + }, + }, + { + id: '7936', + data: { + label: 'Wireless One', + x: 4096.783714373784, + y: 1960.15851543424, + z: 2296.6682708473954, + }, + }, + { + id: '7933', + data: { + label: 'Track Data', + x: -1103.381912192825, + y: 4701.243055444743, + z: -1773.7152027041022, + }, + }, + { + id: '7932', + data: { + label: 'Wink Communications', + x: 2249.0730524691694, + y: 98.41853151169556, + z: -700.5568420769748, + }, + }, + { + id: '7931', + data: { + label: 'Equity Investment', + x: -1411.1840292969598, + y: 2107.962264514747, + z: 4014.227409297507, + }, + }, + { + id: '7930', + data: { + label: 'E-Media', + x: -1263.218599018111, + y: 2164.276978985659, + z: 4389.31978759808, + }, + }, + { + id: '7929', + data: { + label: 'Funding', + x: 6052.327600990154, + y: -862.0226219963021, + z: 4007.424493876834, + }, + }, + { + id: '7928', + data: { + label: 'Andiamo', + x: 5767.029007078165, + y: -778.8787043593239, + z: 4280.699499120229, + }, + }, + { + id: '7926', + data: { + label: 'Tianrong', + x: 6657.11524159354, + y: 112.26757088293678, + z: -2108.591989736284, + }, + }, + { + id: '7927', + data: { + label: 'A-web', + x: 6388.199195606969, + y: 384.9676740422337, + z: -2246.655129198784, + }, + }, + { + id: '7925', + data: { + label: 'Auclaud', + x: 3749.2929019764774, + y: 850.5707167586183, + z: -1452.1674914781772, + }, + }, + { + id: '8257', + data: { + label: 'CenturyTel Alaska properties', + x: 1215.1377538505203, + y: 3331.105838702229, + z: -5147.6438489346665, + }, + }, + { + id: '7924', + data: { + label: 'Artprice.com', + x: -2648.533242340064, + y: -2947.8266720705847, + z: -456.82752115725424, + }, + }, + { + id: '7923', + data: { + label: 'Europ@Web', + x: -2716.481500167563, + y: -3329.193778285899, + z: -583.2534250586582, + }, + }, + { + id: '7922', + data: { + label: 'Website Results', + x: 168.23922259114883, + y: 4996.892361225943, + z: -1396.953437598029, + }, + }, + { + id: '7921', + data: { + label: 'Webridge', + x: 2663.8818755046555, + y: 171.34591233455492, + z: -3012.2866102680596, + }, + }, + { + id: '7920', + data: { + label: 'Intelliframe', + x: 1506.4236004286995, + y: 5686.254059402863, + z: -560.3203083183876, + }, + }, + { + id: '7919', + data: { + label: 'Active Software', + x: 1103.3701875876868, + y: 5685.512910673161, + z: -2.3841369313499867, + }, + }, + { + id: '7918', + data: { + label: 'WebMethods', + x: 4594.399063338191, + y: 3685.9704873969054, + z: 3963.307597385898, + }, + }, + { + id: '7917', + data: { + label: 'ENVOY', + x: 2931.524768709946, + y: -96.69586190021657, + z: -1905.8356122703271, + }, + }, + { + id: '7916', + data: { + label: 'Medical Manager', + x: 3090.841354283442, + y: 192.38921563140536, + z: -1818.9176723303879, + }, + }, + { + id: '7915', + data: { + label: 'OnHealth Network', + x: 2885.2275591553826, + y: 113.27156822875948, + z: -1975.0110304026027, + }, + }, + { + id: '7914', + data: { + label: 'Direct Medical Knowledge', + x: 2694.197024266942, + y: 266.66081439725383, + z: -1936.9060585499622, + }, + }, + { + id: '7912', + data: { + label: 'WebGain', + x: 353.80997992626055, + y: -4027.815095585227, + z: -3405.9323967211058, + }, + }, + { + id: '7913', + data: { + label: 'Bloomsbury Software', + x: 266.3055338265573, + y: -4162.171247187411, + z: -3048.1549861887343, + }, + }, + { + id: '7909', + data: { + label: 'Webb Interactive', + x: -1794.5282844063627, + y: 4615.417612990524, + z: 1961.6252046308066, + }, + }, + { + id: '7911', + data: { + label: 'WebEx Communications', + x: 6277.9576268647825, + y: 3105.2865449300907, + z: 81.94426889519545, + }, + }, + { + id: '7910', + data: { + label: 'Update Systems', + x: -1558.7949902919763, + y: 4516.8424616974935, + z: 1645.531553666295, + }, + }, + { + id: '7908', + data: { + label: 'WorldAccess', + x: -1220.55832394242, + y: -2355.5820697765707, + z: 3570.059825903032, + }, + }, + { + id: '7907', + data: { + label: 'Indigo', + x: 2439.2994801269006, + y: 398.23189117875796, + z: 3427.1547135389387, + }, + }, + { + id: '7905', + data: { + label: 'WatchGuard', + x: 4121.616730139938, + y: -1345.3679894656805, + z: -4011.2166057755903, + }, + }, + { + id: '7906', + data: { + label: 'BeadleNet', + x: 4122.930929428969, + y: -1625.604674824122, + z: -4303.276744325716, + }, + }, + { + id: '7904', + data: { + label: 'VSI Holdings', + x: -1240.2882361957177, + y: 4287.974377928189, + z: -2452.9257836024176, + }, + }, + { + id: '7902', + data: { + label: '50 Percent Interest in Internet Publisher Medical Media', + x: 1029.6432663641876, + y: 4786.332504859461, + z: 1955.9106374270991, + }, + }, + { + id: '7903', + data: { + label: 'SPX', + x: -967.9410805312809, + y: 4158.983105885201, + z: -2723.4826529788725, + }, + }, + { + id: '7901', + data: { + label: 'Startpagina', + x: 596.5601733276312, + y: 5355.717239885004, + z: 1604.8184210093473, + }, + }, + { + id: '7900', + data: { + label: 'PWR', + x: 2119.381755291459, + y: 5621.760728143292, + z: -1023.1927319282427, + }, + }, + { + id: '7899', + data: { + label: 'Versatile Optical Networks', + x: -441.54560224596395, + y: -1387.9235131370838, + z: 4007.161743923029, + }, + }, + { + id: '7898', + data: { + label: 'Orologic for $450 Million', + x: 91.14508422501338, + y: -931.8400942162174, + z: 4426.8877771326825, + }, + }, + { + id: '7897', + data: { + label: 'Sitera', + x: -386.1504071831036, + y: -1452.7132598120415, + z: 4599.064528183062, + }, + }, + { + id: '7896', + data: { + label: 'Vitesse Semiconductor', + x: 858.5155838806332, + y: 1259.905124862849, + z: 5621.923320186706, + }, + }, + { + id: '7895', + data: { + label: 'eTesting Labs', + x: -2644.8390943408435, + y: 1597.264316339144, + z: 3093.2859546482814, + }, + }, + { + id: '7894', + data: { + label: 'Remaining 49 Percent of EDNet Subsidiary', + x: -54.87821329826393, + y: -3012.1472884170953, + z: 4181.773759362506, + }, + }, + { + id: '7893', + data: { + label: 'CyberHomes', + x: 4565.81424218638, + y: 2702.742827631383, + z: -2964.4260525598097, + }, + }, + { + id: '7892', + data: { + label: 'Agranat Systems', + x: -593.1166609041727, + y: -1660.519411741023, + z: -4222.986102432516, + }, + }, + { + id: '7891', + data: { + label: 'Virata', + x: -853.934371751243, + y: -1364.1699979233383, + z: -4255.221020753737, + }, + }, + { + id: '7888', + data: { + label: 'MetaCreations', + x: 9.89792701837434, + y: 782.3095980409552, + z: -4538.28678914011, + }, + }, + { + id: '7890', + data: { + label: 'OnDisplay', + x: 2084.1338326453097, + y: -2909.41638194478, + z: -3473.558566158018, + }, + }, + { + id: '7889', + data: { + label: 'Canoma', + x: -164.02574501715185, + y: 568.0968088063881, + z: -4826.774925889987, + }, + }, + { + id: '7887', + data: { + label: 'NetCreate', + x: 2646.4771163416594, + y: 2923.75763300559, + z: -3981.7849614914567, + }, + }, + { + id: '7886', + data: { + label: 'Vicinity', + x: 2555.398832074545, + y: 3106.4763015965777, + z: -3630.68451315102, + }, + }, + { + id: '7885', + data: { + label: 'Vialog', + x: -1174.699205086139, + y: -1749.6180201086113, + z: -4236.472594157062, + }, + }, + { + id: '7884', + data: { + label: 'Genesys SA', + x: -1063.3649056548197, + y: -1990.4217548478318, + z: -4541.550271659731, + }, + }, + { + id: '7883', + data: { + label: 'Two New Vertical Portals', + x: 1326.1963255791034, + y: 310.52499444218324, + z: -1748.7825594258745, + }, + }, + { + id: '7882', + data: { + label: 'LabX.com', + x: 1605.6801967992178, + y: 362.48810346261394, + z: -1769.937956932897, + }, + }, + { + id: '7881', + data: { + label: 'CertiSource', + x: 1459.8036280662811, + y: 586.9033803489898, + z: -1754.20639434157, + }, + }, + { + id: '7880', + data: { + label: 'Cereus Technology Partners', + x: -2276.4246291761947, + y: 3946.7601745372253, + z: -894.5311274489114, + }, + }, + { + id: '7879', + data: { + label: 'Eltrax', + x: -1926.599364342545, + y: 3834.2953745399923, + z: -720.8186226904738, + }, + }, + { + id: '7878', + data: { + label: 'MessageClick', + x: 5154.079198619979, + y: 4680.067684461045, + z: -2099.1246710683477, + }, + }, + { + id: '7877', + data: { + label: 'Verso', + x: -2232.8752645734835, + y: 3431.1827890391555, + z: 2795.799074611846, + }, + }, + { + id: '7875', + data: { + label: 'NuView', + x: 4093.154483002459, + y: 910.6716814459562, + z: 5045.005267571916, + }, + }, + { + id: '7876', + data: { + label: 'Versata', + x: -1816.15292029496, + y: -3357.7292130101987, + z: 1954.8123625700389, + }, + }, + { + id: '7874', + data: { + label: 'Veritas Software', + x: 428.60988150505824, + y: 622.6641779554616, + z: -4349.129714523083, + }, + }, + { + id: '7872', + data: { + label: 'GreatDomains.com', + x: 6204.206672293301, + y: 3114.3553319421326, + z: -1136.0630131577707, + }, + }, + { + id: '7873', + data: { + label: 'Network Solutions for $21 Billion', + x: -3435.6449442401176, + y: -46.12581790755979, + z: 2790.2162710130765, + }, + }, + { + id: '7871', + data: { + label: 'VeriSIgn', + x: 2835.1912578362926, + y: 3001.3661111135016, + z: 5092.955261317627, + }, + }, + { + id: '7870', + data: { + label: 'Thawte Consulting', + x: 6449.825066588333, + y: 2826.4842973955288, + z: -1186.5995310552503, + }, + }, + { + id: '7869', + data: { + label: 'Signio', + x: 6724.454952146148, + y: 3049.7145385224144, + z: -1126.7855295462416, + }, + }, + { + id: '7868', + data: { + label: 'NTT', + x: -2656.0960850301462, + y: -2543.217886900444, + z: -900.2206936127618, + }, + }, + { + id: '7867', + data: { + label: 'Webcom', + x: 2268.051995129876, + y: -1030.1997940921674, + z: -2866.721020781141, + }, + }, + { + id: '7866', + data: { + label: 'Digitalnation', + x: 2048.4423460008716, + y: -1031.1392065783289, + z: -2891.231087123135, + }, + }, + { + id: '7865', + data: { + label: 'Unnamed Private Telephony Carrier', + x: 1298.4243510446554, + y: -3683.7003721655365, + z: 4048.933198628279, + }, + }, + { + id: '7863', + data: { + label: 'IdentiKey', + x: 1505.0076840830443, + y: -3103.3658191622694, + z: -3816.2862415957334, + }, + }, + { + id: '7862', + data: { + label: 'Vasco', + x: 1422.1377249324107, + y: -3443.986863309778, + z: -3502.144725827701, + }, + }, + { + id: '7860', + data: { + label: 'ValiCert', + x: -2215.6684792254287, + y: -3014.751130937727, + z: -2849.567295676272, + }, + }, + { + id: '7861', + data: { + label: 'Receipt.com', + x: -1929.3799812335885, + y: -3090.3201756524572, + z: -3121.1152692142373, + }, + }, + { + id: '7859', + data: { + label: 'ISOPIA', + x: 900.1236254929871, + y: -5092.294350534422, + z: 828.7515552779811, + }, + }, + { + id: '7858', + data: { + label: 'Automotive Information Center', + x: -2017.895343427663, + y: 4271.962127546748, + z: -509.79055896752817, + }, + }, + { + id: '7857', + data: { + label: 'Corporate Intelligence', + x: 4438.144642465495, + y: -1859.4806203457151, + z: -2679.014838649032, + }, + }, + { + id: '7856', + data: { + label: 'Information Holdings', + x: 4687.884990282049, + y: -2052.1124313868963, + z: -2403.640684652513, + }, + }, + { + id: '7855', + data: { + label: 'CapRock', + x: 3152.0136740536996, + y: -3350.2418920379946, + z: 3873.383082796981, + }, + }, + { + id: '7852', + data: { + label: 'Vicuna Industries', + x: 1872.8681086101587, + y: 1459.8505412715506, + z: -4599.2333515567125, + }, + }, + { + id: '7854', + data: { + label: 'McLeod USA', + x: 3361.880988453705, + y: -3140.9832918821826, + z: 4148.97886447496, + }, + }, + { + id: '7853', + data: { + label: 'Telesis USA', + x: 1687.5819302227724, + y: 1638.3588467019183, + z: -4282.63711645791, + }, + }, + { + id: '7850', + data: { + label: 'Fair Auction', + x: 1105.865941593637, + y: 3926.074059595755, + z: -3899.443421887407, + }, + }, + { + id: '7851', + data: { + label: 'Uproar', + x: 3917.4178777327293, + y: 2658.714118064855, + z: 205.66157865762472, + }, + }, + { + id: '7849', + data: { + label: 'IJNT.net', + x: 1151.4106830234498, + y: 4040.1264630710193, + z: -3513.621374039115, + }, + }, + { + id: '7848', + data: { + label: 'Vericom', + x: 997.4059440665579, + y: -2639.2260655263003, + z: 4541.235244385002, + }, + }, + { + id: '7847', + data: { + label: 'BroadSoft', + x: 905.0073198331346, + y: -3340.052077195474, + z: -3958.3893806062924, + }, + }, + { + id: '7846', + data: { + label: 'Unisphere Networks', + x: 1131.866189312086, + y: -3533.1668118413777, + z: -4239.837462004835, + }, + }, + { + id: '7844', + data: { + label: 'Mindtronics', + x: 7037.536955512411, + y: -2178.6526639871718, + z: -1234.5069018612344, + }, + }, + { + id: '7842', + data: { + label: 'VIA Wireless', + x: 2879.784691678644, + y: -2867.6203647705906, + z: -3448.672897363935, + }, + }, + { + id: '7845', + data: { + label: 'ClickSmart.com', + x: 7007.031423812621, + y: -1649.523674062559, + z: -1847.0691226521494, + }, + }, + { + id: '7843', + data: { + label: 'Ubrandit', + x: 253.50750542410157, + y: 1487.1761141934403, + z: 5470.723826345718, + }, + }, + { + id: '7841', + data: { + label: 'Cole-Layer-Trumble', + x: -2619.2203749628407, + y: 2962.145075814359, + z: -2248.243107310136, + }, + }, + { + id: '7839', + data: { + label: 'Total EMed', + x: -183.63468810899514, + y: 4012.39518458782, + z: -3042.916575660621, + }, + }, + { + id: '7840', + data: { + label: 'Tyler Technologies', + x: -2324.295086484074, + y: 2922.651033105555, + z: -2514.9953888131804, + }, + }, + { + id: '7838', + data: { + label: 'MedicaLogic', + x: -309.0767005949591, + y: 3976.8950684964243, + z: -3421.4881943365967, + }, + }, + { + id: '7837', + data: { + label: 'SkyMall', + x: 985.217253904403, + y: -960.4252398698452, + z: 405.20537681136904, + }, + }, + { + id: '7836', + data: { + label: 'Vintel Communications', + x: -1708.0560091194707, + y: 2721.448297461022, + z: 3807.875093941274, + }, + }, + { + id: '7835', + data: { + label: 'FreeGate', + x: -2027.3639869343538, + y: 2219.2684238689285, + z: 4042.936221001976, + }, + }, + { + id: '7833', + data: { + label: 'Backus Turner', + x: -2274.3408872170457, + y: 3836.7327438497027, + z: 520.3694844108654, + }, + }, + { + id: '7834', + data: { + label: 'Tut Systems', + x: -1905.1837057828438, + y: 2390.665060145356, + z: 3697.9868979397, + }, + }, + { + id: '7832', + data: { + label: 'E Com', + x: -2069.5124185787463, + y: 1261.3640662935684, + z: 3828.845933732909, + }, + }, + { + id: '7831', + data: { + label: 'TransWestern Publishing Company', + x: 6416.469872471802, + y: -459.8730343238248, + z: -3982.9492982669767, + }, + }, + { + id: '7830', + data: { + label: 'MessagingDirect', + x: -1889.201203128375, + y: -2507.8846522141057, + z: 2044.2339979710532, + }, + }, + { + id: '7829', + data: { + label: 'Transaction Systems Architects', + x: -1611.9131473946818, + y: -2342.8592267241866, + z: 2299.9430577870567, + }, + }, + { + id: '7828', + data: { + label: 'Transaction Network Services', + x: 1605.631923406467, + y: -2729.8003251036534, + z: 3423.6825815383854, + }, + }, + { + id: '7826', + data: { + label: 'LineOne', + x: 3174.3057856424552, + y: 1184.7224706035804, + z: -1930.464194606155, + }, + }, + { + id: '7822', + data: { + label: 'Israel Security', + x: 6257.214494134858, + y: -3442.7228362279775, + z: 179.8948627712144, + }, + }, + { + id: '7827', + data: { + label: 'Tomax', + x: 5775.810063372151, + y: 3320.219435292657, + z: -0.34671076975786796, + }, + }, + { + id: '7825', + data: { + label: 'Tiscali', + x: 5590.056471597652, + y: 5012.808408338891, + z: -988.0121299523778, + }, + }, + { + id: '7824', + data: { + label: 'EPlay', + x: -819.1453795816792, + y: 3186.4744237473014, + z: 3236.100848534733, + }, + }, + { + id: '7823', + data: { + label: 'E-Trade Group', + x: -1099.5761791683321, + y: 3450.356801169522, + z: 3104.0173410095053, + }, + }, + { + id: '7821', + data: { + label: 'M-Systems', + x: 6341.534339665527, + y: -3073.314148479524, + z: 61.08796652144734, + }, + }, + { + id: '7820', + data: { + label: 'Africana.com', + x: 3903.935485417874, + y: -424.5266706469508, + z: 950.1926986716743, + }, + }, + { + id: '7819', + data: { + label: 'ReserveAmerica', + x: 3488.465828036289, + y: -1661.816101976835, + z: -176.20339769139133, + }, + }, + { + id: '7818', + data: { + label: 'Ticketweb', + x: -370.7706161318943, + y: 3599.5727771894367, + z: -4248.299300787195, + }, + }, + { + id: '7817', + data: { + label: 'Ticketmaster-CitySearch', + x: 1869.372805376699, + y: 5533.103002831059, + z: -2586.788316231229, + }, + }, + { + id: '7816', + data: { + label: 'Match.com', + x: 2903.0845929938223, + y: -745.2975076848109, + z: -880.5665609181834, + }, + }, + { + id: '7814', + data: { + label: 'TMCS', + x: 3255.0873378863826, + y: -1386.303958662906, + z: -434.62120309774036, + }, + }, + { + id: '7815', + data: { + label: 'One & Only Network', + x: 2950.0179692733045, + y: -1046.9721151434578, + z: -550.426128980636, + }, + }, + { + id: ' ActiveUSA.com', + data: { + label: 'RaceGate.com', + x: -767.8619077567927, + y: -4272.126246647389, + z: -2812.100819717774, + }, + }, + { + id: '7812', + data: { + label: 'TicketMaster Online', + x: -244.5909968344829, + y: -3821.3364894860056, + z: 3582.091164140445, + }, + }, + { + id: '7811', + data: { + label: 'Genetic Anomalies', + x: 1941.3753457806254, + y: 3333.405536053519, + z: 4937.379929707899, + }, + }, + { + id: '7810', + data: { + label: 'THQ', + x: 1863.4674136946353, + y: 3394.123308036729, + z: 4544.433579567119, + }, + }, + { + id: '7807', + data: { + label: 'The Thomson', + x: 6073.664520255258, + y: 1331.4783095381176, + z: -2831.168042593084, + }, + }, + { + id: '7809', + data: { + label: 'Carlton Communications PLC', + x: -3717.552036843059, + y: -1160.1034032288521, + z: 1352.7969397607599, + }, + }, + { + id: '7808', + data: { + label: 'Wave Technologies International', + x: 5950.0207515060365, + y: 1522.3009085674291, + z: -3161.384629980038, + }, + }, + { + id: '7806', + data: { + label: 'BigFish Management', + x: 3564.1892991739855, + y: 1333.2470277806951, + z: -640.182777098464, + }, + }, + { + id: '7805', + data: { + label: 'Haaretz', + x: 3397.407091071112, + y: 1545.069296049801, + z: -693.4638435916982, + }, + }, + { + id: '7804', + data: { + label: 'Voice FX', + x: 3589.8930841971032, + y: -2560.1234849436314, + z: 4253.5853550731845, + }, + }, + { + id: '7803', + data: { + label: 'Student Advantage', + x: 3596.191165377796, + y: -2237.8263363193078, + z: 4498.043491172856, + }, + }, + { + id: '7802', + data: { + label: 'The Nets Best', + x: 559.2566628336141, + y: 3662.5361617382614, + z: -4603.343344903044, + }, + }, + { + id: '7801', + data: { + label: 'Valassis Communications', + x: 561.3996492493928, + y: 3700.982476750254, + z: -4200.36991606776, + }, + }, + { + id: '7799', + data: { + label: 'Fingerhut Companies', + x: 4619.212630755956, + y: 4054.4307060500173, + z: -2222.446000990763, + }, + }, + { + id: '7800', + data: { + label: 'Hand Technologies', + x: 6687.559756324191, + y: -1691.2252677102683, + z: 2887.7427958505377, + }, + }, + { + id: '7797', + data: { + label: '1-800Birthday.com', + x: 6416.915903986288, + y: -1654.6577798811581, + z: 3309.4677245032353, + }, + }, + { + id: '7798', + data: { + label: 'Federated Department Stores', + x: 6353.067697417843, + y: -2362.1913574406653, + z: 3164.302626665417, + }, + }, + { + id: '7796', + data: { + label: 'Fingerhut', + x: 6461.622724170698, + y: -1980.5781349169802, + z: 3068.2542343381756, + }, + }, + { + id: '7794', + data: { + label: 'Interactive Flight Technologies', + x: 1172.081903913598, + y: 3225.5836315655765, + z: -3242.8692442688907, + }, + }, + { + id: '7795', + data: { + label: 'TNCi', + x: 1241.7046683736326, + y: 3571.5333197486093, + z: -3039.5303033888636, + }, + }, + { + id: '7793', + data: { + label: 'U.K. ISP', + x: 2108.8138434233915, + y: -33.63532474896959, + z: -1511.515839821443, + }, + }, + { + id: '7792', + data: { + label: 'Concentric', + x: 4995.178109932055, + y: -3364.274359840522, + z: -3705.1888483795547, + }, + }, + { + id: '7791', + data: { + label: 'Internet Profiles', + x: 5615.460190354969, + y: 2850.521559577844, + z: 1702.1393532876582, + }, + }, + { + id: '7790', + data: { + label: 'Shopping.com', + x: 5131.494115798807, + y: 2980.9161483307425, + z: 1638.7339169828695, + }, + }, + { + id: '7789', + data: { + label: 'MrJet.com', + x: 4404.99182963058, + y: 4634.594573392473, + z: 2788.9934078162955, + }, + }, + { + id: '7788', + data: { + label: 'Ebookers.com', + x: 4707.05989624523, + y: 4520.104627844061, + z: 2540.7089948552016, + }, + }, + { + id: '7787', + data: { + label: 'Global Investors Guide', + x: 6664.858717394366, + y: -1925.9442186792717, + z: -1862.623468359704, + }, + }, + { + id: '7786', + data: { + label: 'Ubrandit.com', + x: 6934.7744792639005, + y: -1939.6293756457576, + z: -1560.5807881773944, + }, + }, + { + id: '7785', + data: { + label: 'Compaq Product Line', + x: 6314.953080765127, + y: 4373.263523343758, + z: 378.68169579073964, + }, + }, + { + id: '7784', + data: { + label: 'Smart Modular Technologies', + x: 6254.136548471662, + y: 4400.649526585795, + z: -25.652328993519376, + }, + }, + { + id: '7783', + data: { + label: 'Vmailer.com', + x: 3569.235184659665, + y: -3547.9422593437284, + z: -3993.676783012602, + }, + }, + { + id: '7782', + data: { + label: 'Byron Preiss', + x: 3912.2599593350433, + y: -3473.524850651823, + z: -3792.223614167313, + }, + }, + { + id: '7781', + data: { + label: 'Chello', + x: 107.95974372136119, + y: 3777.3553389338667, + z: -3303.791050206077, + }, + }, + { + id: '7779', + data: { + label: 'LSC', + x: 333.5185148848188, + y: -5495.132939655343, + z: 1005.2524294938249, + }, + }, + { + id: '7780', + data: { + label: 'UPC Media', + x: 123.1797011052713, + y: 3549.7905805112855, + z: -2965.5156914371205, + }, + }, + { + id: '7778', + data: { + label: 'BroadBand Office', + x: 646.7877887589865, + y: -5249.203254094476, + z: 654.3870900156985, + }, + }, + { + id: '7777', + data: { + label: 'DealerKid', + x: 2991.9329220923937, + y: -2793.314095020163, + z: 4630.209841676591, + }, + }, + { + id: '7776', + data: { + label: 'Reynolds and Reynolds', + x: 2965.7521953416986, + y: -2864.3129925266335, + z: 4235.369838555006, + }, + }, + { + id: '7775', + data: { + label: 'CarClub.com', + x: -2568.523156451264, + y: 2051.1953184594954, + z: 2636.330578208648, + }, + }, + { + id: '7774', + data: { + label: 'Ford', + x: -2963.0209070878786, + y: 2075.751702337589, + z: 2554.0816322062597, + }, + }, + { + id: '7773', + data: { + label: 'Terremark', + x: -398.8692608792953, + y: -2547.7495429181567, + z: -4329.5478739622595, + }, + }, + { + id: '7770', + data: { + label: 'Terra Networks', + x: 3064.6692790288166, + y: -673.4790836675095, + z: -4153.28078969259, + }, + }, + { + id: '7772', + data: { + label: 'KB Technology Partners', + x: -246.10250113178716, + y: -2878.229954622554, + z: -4508.614162966412, + }, + }, + { + id: '7771', + data: { + label: 'Chevere', + x: 3267.7586989082356, + y: -757.4387104984307, + z: -4536.784861810705, + }, + }, + { + id: '7769', + data: { + label: 'Bumeran.com', + x: 6463.516552619955, + y: 2221.8883409325426, + z: -2752.1215269779186, + }, + }, + { + id: '7768', + data: { + label: 'Terra Lycos', + x: 5628.400147969881, + y: 2206.5168472969945, + z: -3150.3295693760156, + }, + }, + { + id: '7767', + data: { + label: 'DeRemate', + x: -1036.3538426381685, + y: 4989.193402563087, + z: 451.14629200227404, + }, + }, + { + id: '7766', + data: { + label: 'Terra', + x: -865.1528352619323, + y: 4882.426772768056, + z: 803.4433359956723, + }, + }, + { + id: '7765', + data: { + label: 'Columbus Group', + x: 1728.5082700039536, + y: -1661.5209233420476, + z: 2918.8272035403747, + }, + }, + { + id: '7764', + data: { + label: 'Daedalian eSolutions', + x: 1969.1710662868968, + y: -1746.9407201674558, + z: 2915.8610879808016, + }, + }, + { + id: '7763', + data: { + label: 'Salix Technologies', + x: 117.52980309095574, + y: -2023.0776147495617, + z: -4394.529114823561, + }, + }, + { + id: '7762', + data: { + label: 'Executive Conference', + x: 1849.7882079515912, + y: -1145.7214833213427, + z: -1173.2630741832168, + }, + }, + { + id: '7761', + data: { + label: 'InvesTools', + x: 4360.2567766786115, + y: -1698.7250484504857, + z: -1482.157174238228, + }, + }, + { + id: '7760', + data: { + label: 'Trading Technologies', + x: 4536.898400467333, + y: -1851.9015297916924, + z: -1394.4012407678865, + }, + }, + { + id: '7759', + data: { + label: 'Continuus', + x: -1845.4643689676332, + y: 4405.870645818634, + z: 971.23065588985, + }, + }, + { + id: '7758', + data: { + label: 'Telelogic AB', + x: -1466.129196669364, + y: 4314.74052505975, + z: 1084.5131854328836, + }, + }, + { + id: '7757', + data: { + label: 'Telegroup', + x: 6721.400079091771, + y: -337.47209053551086, + z: 2470.2863156567396, + }, + }, + { + id: '7756', + data: { + label: 'Applied Telecom', + x: -1416.4849518514045, + y: -1153.7792719353006, + z: -4243.061768276351, + }, + }, + { + id: '7755', + data: { + label: 'Popwire for Entertainment Broadcasting', + x: 6090.408375913507, + y: 2399.155326131308, + z: 2045.2902188950516, + }, + }, + { + id: '7749', + data: { + label: 'EITele Ost', + x: 6814.015998528333, + y: 1917.5807764893086, + z: 2956.3593090529716, + }, + }, + { + id: '7754', + data: { + label: 'Magic Earth', + x: 4023.6272765413687, + y: -2073.986229626863, + z: -4220.258961364571, + }, + }, + { + id: '7753', + data: { + label: 'Assets of Memory Card Technology', + x: 3569.8253490858992, + y: 1821.4713958897719, + z: 5208.77981041391, + }, + }, + { + id: '7752', + data: { + label: 'Dataram', + x: 3299.3010439360696, + y: 1626.9001222179204, + z: 5436.274737697534, + }, + }, + { + id: '7751', + data: { + label: 'Oakwood Technical Services for $2 Million', + x: 4344.392045200086, + y: 1860.5284192799986, + z: -5085.786873844737, + }, + }, + { + id: '7750', + data: { + label: 'UBICS', + x: 4045.905788719646, + y: 2091.055901771957, + z: -4978.987878043292, + }, + }, + { + id: '7744', + data: { + label: 'T-NETIX', + x: 5456.0689582459945, + y: -3202.6124014615702, + z: 2612.6459321005395, + }, + }, + { + id: '7746', + data: { + label: 'WorldPages.com', + x: 4938.399191389556, + y: 2475.3914442345176, + z: -4035.7550127181044, + }, + }, + { + id: '7748', + data: { + label: 'Tele Danmark', + x: 6936.526801881719, + y: 2115.891031073563, + z: 2627.618131854324, + }, + }, + { + id: '7745', + data: { + label: 'Cell Genesys', + x: 5378.716530568653, + y: -3576.5248288493267, + z: 2765.76524221107, + }, + }, + { + id: '7743', + data: { + label: 'Sameday.com', + x: 5422.588316534028, + y: 3909.5434501797736, + z: 1981.2716683604747, + }, + }, + { + id: '7742', + data: { + label: 'Ryder System', + x: 5417.565732319688, + y: 3998.984540981367, + z: 1581.0283167347322, + }, + }, + { + id: '7741', + data: { + label: 'Sports Capital Partners', + x: 1467.2742821838117, + y: 5030.233217236593, + z: -3366.5181061692465, + }, + }, + { + id: '7740', + data: { + label: 'Calpers', + x: 1477.0370590785692, + y: 5164.25637580434, + z: -2988.1148180891987, + }, + }, + { + id: '7738', + data: { + label: 'Fi System', + x: 5986.974051763524, + y: 3995.218854153911, + z: 2089.0223199413717, + }, + }, + { + id: '7737', + data: { + label: 'Objective Systems Integrators', + x: -2902.106221359538, + y: -1798.1109338338654, + z: -1508.483165179871, + }, + }, + { + id: '7739', + data: { + label: 'Mediaitaly', + x: 5864.767289984127, + y: 3798.107006128095, + z: 1753.6211206876749, + }, + }, + { + id: '7732', + data: { + label: 'Sycamore', + x: 2599.0710534699174, + y: -3379.9981451014714, + z: -3020.000270097188, + }, + }, + { + id: '7736', + data: { + label: 'IMG', + x: 1599.958323568341, + y: 1630.2023615435826, + z: 4671.247090834352, + }, + }, + { + id: '7735', + data: { + label: 'Metier', + x: 1425.951574905169, + y: 905.2172294663085, + z: 4968.627704686564, + }, + }, + { + id: '7734', + data: { + label: 'Syntel', + x: 1514.3499129652766, + y: 1257.5605699680143, + z: 4819.817194960528, + }, + }, + { + id: '7733', + data: { + label: 'Sirocco', + x: 2730.354434553615, + y: -3651.7441670474554, + z: -2728.769581273543, + }, + }, + { + id: '7731', + data: { + label: 'Marketplace Systems', + x: 130.45588414193088, + y: 4312.515892986136, + z: -3521.0011368456967, + }, + }, + { + id: '7730', + data: { + label: 'SVI', + x: 228.32523845366688, + y: 4222.859783229454, + z: -3140.681595849005, + }, + }, + { + id: '7729', + data: { + label: 'Superior Consultant Holdings', + x: 2712.1399611496954, + y: -0.8152317656833529, + z: -1979.5656535866815, + }, + }, + { + id: '7728', + data: { + label: 'InfraSearch', + x: 412.7872866052956, + y: -5199.119945111325, + z: 1155.1854756711862, + }, + }, + { + id: '7727', + data: { + label: 'Ensemble Studios', + x: 2887.2654014208274, + y: -183.66192593579117, + z: -580.3358143836156, + }, + }, + { + id: '7726', + data: { + label: 'Web Street', + x: -1625.5484833682594, + y: -834.5046115028667, + z: -3693.9405304193447, + }, + }, + { + id: '7725', + data: { + label: 'E-Trade', + x: -1424.8997269213467, + y: -712.7064624415284, + z: -4054.702756709153, + }, + }, + { + id: '7724', + data: { + label: '17th Street Productions', + x: -2617.6813128000545, + y: 3668.5221139886266, + z: 792.2541201642509, + }, + }, + { + id: '7721', + data: { + label: 'eLeaders', + x: -1778.0066095965835, + y: -1582.776888689323, + z: 2979.4561330270494, + }, + }, + { + id: '7723', + data: { + label: 'ViaGrafix', + x: -1966.577126865679, + y: -2622.7753639182433, + z: -3315.7582450576974, + }, + }, + { + id: '7722', + data: { + label: '7th Street.com', + x: -1798.2959914106116, + y: -2594.4375955919704, + z: -3678.0630154195615, + }, + }, + { + id: '7720', + data: { + label: 'Eons Ahead', + x: -1664.1276114225507, + y: -1227.7633832773472, + z: 3686.2033933566186, + }, + }, + { + id: '7719', + data: { + label: 'Strategic Innovations', + x: 4177.472954895991, + y: 4070.5775623915683, + z: -2476.831903536072, + }, + }, + { + id: '7718', + data: { + label: 'Meritage', + x: 3914.0225975170415, + y: 3801.5871745976697, + z: -2629.013193226955, + }, + }, + { + id: '7717', + data: { + label: 'SigmaNet', + x: 3342.0044550462667, + y: 2801.714944333584, + z: -3203.8262992466475, + }, + }, + { + id: '7716', + data: { + label: 'Startec Global', + x: 4595.296331736527, + y: -1864.6454449548835, + z: -4421.977417403177, + }, + }, + { + id: '7715', + data: { + label: 'Adnet', + x: 5240.519286635846, + y: -1929.881869473903, + z: 791.7426317918869, + }, + }, + { + id: '7714', + data: { + label: 'Paisas', + x: 5349.832704163408, + y: -1682.4588667229755, + z: 653.3708818482315, + }, + }, + { + id: '7713', + data: { + label: 'Ola Turista Guides', + x: 5290.740218499913, + y: -1307.739619453536, + z: 726.8582069244164, + }, + }, + { + id: '7711', + data: { + label: 'Premia', + x: 659.2816590502096, + y: 1209.072614638603, + z: 5095.7241387320055, + }, + }, + { + id: '7710', + data: { + label: 'London Telecom', + x: 6568.63124518141, + y: 220.36123908653803, + z: 2215.9894235664506, + }, + }, + { + id: '7712', + data: { + label: 'Chilean Network', + x: 5439.693867546291, + y: -1421.355943494737, + z: 890.9832195026943, + }, + }, + { + id: '7709', + data: { + label: 'Telephone Savings', + x: 6549.393156480372, + y: 167.92706094444978, + z: 1883.9062776500964, + }, + }, + { + id: '8249', + data: { + label: 'CMG plc', + x: 1549.459102482961, + y: -433.2022385000288, + z: -1862.1943721734194, + }, + }, + { + id: ' Strategy Plus', + data: { + label: 'Chips & Bits', + x: 4098.833425228899, + y: 5113.818899047003, + z: -2692.349776583795, + }, + }, + { + id: '7706', + data: { + label: 'Theglobe.com', + x: 2313.3618697678535, + y: 401.09396997001784, + z: 5699.598947303053, + }, + }, + { + id: '7705', + data: { + label: 'Register.com', + x: 2507.0956403961236, + y: -284.93348171244963, + z: -2561.7151593727085, + }, + }, + { + id: '7702', + data: { + label: 'WBS America Subsidiaries', + x: 513.4053946671302, + y: -2040.6812685286563, + z: 1592.9069435079975, + }, + }, + { + id: '7704', + data: { + label: 'Media DVX', + x: 4362.2330015227, + y: 347.3924060565672, + z: -3928.9059330342457, + }, + }, + { + id: '7703', + data: { + label: 'StarNet', + x: 4641.640861135778, + y: 424.06638654690556, + z: -3652.3650983209427, + }, + }, + { + id: '7701', + data: { + label: 'Transworld', + x: 363.9221285933467, + y: -1997.8736186024244, + z: 1398.388366686029, + }, + }, + { + id: '7698', + data: { + label: 'MVP.com', + x: 6908.505986682578, + y: -1125.771662004217, + z: 2687.7861931584516, + }, + }, + { + id: '7700', + data: { + label: 'The Sportsmans Guide', + x: -2756.8107438942593, + y: 3553.204808816889, + z: -49.228099711307664, + }, + }, + { + id: '7699', + data: { + label: 'SportsLine.com', + x: 6823.110304431131, + y: -814.655938694303, + z: 2932.861601701821, + }, + }, + { + id: '7697', + data: { + label: 'Fogdog', + x: 1349.1311002561868, + y: -25.141175073469952, + z: 2854.3300368880027, + }, + }, + { + id: '7696', + data: { + label: 'Starport.com', + x: 2056.8462498296813, + y: -2609.0177570256483, + z: -1794.4703177697163, + }, + }, + { + id: '7695', + data: { + label: 'Explorezone.com', + x: 2314.5399562306175, + y: -2813.5878915129897, + z: -1857.8978220439376, + }, + }, + { + id: '7693', + data: { + label: 'CDnow', + x: 6431.121642316084, + y: 2547.531388187317, + z: -2978.757856232914, + }, + }, + { + id: '7694', + data: { + label: 'Space.com', + x: -2048.294899171019, + y: -2636.728541193423, + z: 2426.2212795084383, + }, + }, + { + id: '7691', + data: { + label: 'Phobos', + x: 6859.640019049251, + y: 1182.4942307615938, + z: 2595.081734877009, + }, + }, + { + id: '7692', + data: { + label: 'Ignyte Technology', + x: 6511.169823851454, + y: 1432.9696193223958, + z: 2661.0897104559103, + }, + }, + { + id: '7689', + data: { + label: 'Breeze Software', + x: 3075.407269378935, + y: 1850.3370870695708, + z: 1621.7832989485066, + }, + }, + { + id: '7690', + data: { + label: 'SonicWall', + x: 6669.478861049681, + y: 1212.2768280755372, + z: 2950.6153986174018, + }, + }, + { + id: '7686', + data: { + label: 'Terabeam', + x: 4360.898294815163, + y: 1453.9716680800996, + z: 101.61032391055737, + }, + }, + { + id: '7688', + data: { + label: 'Noah Software', + x: 1860.4414000039935, + y: 3916.264116453204, + z: -3717.567016923018, + }, + }, + { + id: '7687', + data: { + label: 'Workscape', + x: 1816.4602023174632, + y: 3715.294258036632, + z: -4064.9564519088176, + }, + }, + { + id: '7685', + data: { + label: 'Xpeed', + x: 4447.328433737207, + y: 1306.7266195081122, + z: -171.1206393799797, + }, + }, + { + id: '7684', + data: { + label: 'Mentum', + x: 4276.748677589582, + y: 1139.6432764780914, + z: -353.00723689899297, + }, + }, + { + id: '7683', + data: { + label: 'i-Socket', + x: 274.69035072783004, + y: 3494.5685474092484, + z: 4039.2974232871034, + }, + }, + { + id: '7682', + data: { + label: 'Cyberplex', + x: 130.97795280330376, + y: 3777.1411782812684, + z: 3795.3885093797758, + }, + }, + { + id: '7681', + data: { + label: 'Wireless Location Leader SnapTrack', + x: 820.1399411406715, + y: -4690.0867917860105, + z: 1956.5691219282999, + }, + }, + { + id: '7680', + data: { + label: 'Smart Technologies', + x: 884.3312783452617, + y: 5653.556304130333, + z: 1169.2542178099711, + }, + }, + { + id: '7679', + data: { + label: 'I2 Technologies', + x: 960.6057274030035, + y: 5723.07888314974, + z: 1560.3281253751095, + }, + }, + { + id: '7678', + data: { + label: 'SkyStream', + x: 2731.7351585634783, + y: 420.4486945660317, + z: -3004.6327959733076, + }, + }, + { + id: '7677', + data: { + label: 'Ins-Site Insurance Solutions', + x: 2888.8294318061667, + y: 1830.5445647366291, + z: -4447.89985188109, + }, + }, + { + id: '7676', + data: { + label: 'ebix.com', + x: 2871.718773617513, + y: 1475.4638476838695, + z: -4636.307237193984, + }, + }, + { + id: '7673', + data: { + label: 'GemLogic', + x: 3603.9948588349403, + y: -3191.614434366045, + z: -3624.193788325311, + }, + }, + { + id: '7675', + data: { + label: 'Wireless Division of Waptop Holding', + x: 3652.979478986164, + y: -2992.873769072712, + z: -4176.141924041609, + }, + }, + { + id: '7674', + data: { + label: 'eObject', + x: 3883.324404618938, + y: -2878.042094290982, + z: -3422.2072295138696, + }, + }, + { + id: '7672', + data: { + label: 'SilverStream', + x: 3693.890536802029, + y: -2831.7668783458507, + z: -3795.230293667603, + }, + }, + { + id: '7671', + data: { + label: 'Magnolia Broadband', + x: 3743.9242060723736, + y: 842.8075001288879, + z: -714.1469732196238, + }, + }, + { + id: '7670', + data: { + label: 'BFound.com', + x: 370.39506569587536, + y: 1862.1788224808479, + z: 5072.609404075052, + }, + }, + { + id: '7668', + data: { + label: 'e-Chem.com', + x: 4348.456835092179, + y: 402.66639607599905, + z: 4539.928066344366, + }, + }, + { + id: '7669', + data: { + label: 'SignalSoft', + x: 303.83477807209385, + y: 2176.38005934751, + z: 4837.443635646811, + }, + }, + { + id: '7665', + data: { + label: 'Siemens AG', + x: 2232.391090202744, + y: 4874.346615238581, + z: -2845.9740006893912, + }, + }, + { + id: '7667', + data: { + label: 'Sierra Imaging', + x: -1372.2494135069949, + y: -1843.0285689406194, + z: -4579.899390519722, + }, + }, + { + id: '7666', + data: { + label: 'Conexant', + x: -1464.2275251113613, + y: -1531.262341528275, + z: -4352.614775223528, + }, + }, + { + id: '7662', + data: { + label: 'Janna Systems', + x: 2062.145352032471, + y: -3286.193866414448, + z: -3796.661820042839, + }, + }, + { + id: '7664', + data: { + label: 'Omnipoint Technologies', + x: 2552.533438727675, + y: 5071.381087750435, + z: -1768.9476110134676, + }, + }, + { + id: '7663', + data: { + label: 'Opensite Technologies for $444 Million', + x: 2116.2905055622946, + y: -3595.1406933890244, + z: -3970.862931441748, + }, + }, + { + id: '7661', + data: { + label: 'Siebel Systems', + x: 2193.5963562688457, + y: -3592.987061303556, + z: -3562.1686392739225, + }, + }, + { + id: '7660', + data: { + label: 'Moffat Communications', + x: 5568.8471830096005, + y: -3685.1183040443666, + z: 2364.57640896828, + }, + }, + { + id: '7659', + data: { + label: 'Shaw Communications', + x: 5767.5083788289485, + y: -3390.6619383509637, + z: 2579.1073125441544, + }, + }, + { + id: '7658', + data: { + label: 'WizShop.com', + x: -1290.6057117383107, + y: 4726.773404943368, + z: -254.45545578519184, + }, + }, + { + id: '7656', + data: { + label: 'WaresOnTheWeb', + x: 3408.781584285212, + y: 2279.531956269989, + z: -3786.7969252941134, + }, + }, + { + id: '7654', + data: { + label: 'Joseph E. Seagram & Sons', + x: 3655.6417059602745, + y: 2247.4875846752993, + z: -207.7248739084663, + }, + }, + { + id: '7657', + data: { + label: 'Semotus Solutions', + x: -1091.1995708360964, + y: 4951.186307914181, + z: -527.4334617624445, + }, + }, + { + id: '7655', + data: { + label: 'Mozart Systems', + x: 822.5643583302831, + y: -3465.367622046031, + z: 4042.562323010609, + }, + }, + { + id: '7653', + data: { + label: 'Transparent Languages E-Translation Division', + x: -1332.6872968367109, + y: 4005.9765291260037, + z: 124.3095607412875, + }, + }, + { + id: '7652', + data: { + label: 'Queensgate Instruments', + x: -1421.362795489436, + y: 3876.1834401296032, + z: 518.107991651005, + }, + }, + { + id: '7651', + data: { + label: 'Dazzle Multimedia', + x: 6597.91435942304, + y: -2638.631429280652, + z: 205.57529981367387, + }, + }, + { + id: '7650', + data: { + label: 'SCM', + x: 6715.287274629447, + y: -2524.9859562531556, + z: -171.72624577514821, + }, + }, + { + id: '7649', + data: { + label: 'SonicBlue', + x: -1457.1023123101409, + y: -4053.653461066243, + z: -2296.948171225695, + }, + }, + { + id: '7648', + data: { + label: 'Sensory Science', + x: 6729.369111186407, + y: -786.0326857384113, + z: -1169.9743843419142, + }, + }, + { + id: '7647', + data: { + label: 'High School Alumni.com', + x: 2866.0913543215543, + y: -1258.3430644990274, + z: 2994.01676420822, + }, + }, + { + id: '7646', + data: { + label: 'Rao Consulting', + x: 3468.627357427367, + y: 5528.986291996534, + z: -1386.3784950988072, + }, + }, + { + id: '7645', + data: { + label: 'Radiofone', + x: 3661.068269353606, + y: -2179.109673961176, + z: -962.8776753007879, + }, + }, + { + id: '7644', + data: { + label: 'Reach Satellite Network', + x: -277.7866497697367, + y: -2065.812599644799, + z: -160.08968799867364, + }, + }, + { + id: '7643', + data: { + label: 'Human Code', + x: 2842.139071644691, + y: -3692.720809207159, + z: -3457.3947795082017, + }, + }, + { + id: '7642', + data: { + label: 'Adjacency', + x: 2698.261845457173, + y: -3737.698783416172, + z: -4060.4417513130115, + }, + }, + { + id: '7641', + data: { + label: 'E-Lab', + x: 3099.7073462184853, + y: -3755.707062597239, + z: -3845.0186299111565, + }, + }, + { + id: '7640', + data: { + label: 'Internet Marketing Associates', + x: 6478.870469074917, + y: 2463.765699252147, + z: 2526.5829160630915, + }, + }, + { + id: '7639', + data: { + label: 'Sapiens', + x: 6306.053160451367, + y: 2479.2951266948216, + z: 2892.707104258428, + }, + }, + { + id: '7638', + data: { + label: 'Saga Systems', + x: 6004.493291654062, + y: -2019.5750943116511, + z: -1978.648190271209, + }, + }, + { + id: '7637', + data: { + label: 'Atarey Hasharon Chevra Lepituach Vehashkaot Benadlan', + x: 3947.514325422373, + y: 934.8720712887225, + z: 2329.0239066183995, + }, + }, + { + id: '7636', + data: { + label: 'Centura Banks', + x: 2427.930071546483, + y: 1536.0345610175098, + z: 4687.315252860073, + }, + }, + { + id: '7633', + data: { + label: 'Rodale', + x: 1247.5688998777389, + y: -3124.004906342454, + z: -4052.395251532069, + }, + }, + { + id: '7635', + data: { + label: 'Royal Bank of Canada', + x: 2418.59411860365, + y: 1927.2640534696425, + z: 4586.35305977251, + }, + }, + { + id: '7634', + data: { + label: 'MotherNature.com', + x: 992.7815934892045, + y: -3253.010044675276, + z: -4345.635460941709, + }, + }, + { + id: '7628', + data: { + label: 'Wind River', + x: 4847.588706609714, + y: 4403.5040804323435, + z: -3158.570522621304, + }, + }, + { + id: '7632', + data: { + label: 'Assets of BSDi for $50 Million', + x: -3372.52442021874, + y: -1964.7756901108742, + z: -717.2796986509716, + }, + }, + { + id: '7631', + data: { + label: 'AudeSi Technologies', + x: -3578.0561973549766, + y: -1774.6100801866796, + z: -126.5705263184663, + }, + }, + { + id: '7630', + data: { + label: 'ICEsoft', + x: -3375.0675422559284, + y: -1736.774757596781, + z: -444.40221407903294, + }, + }, + { + id: '7629', + data: { + label: 'RouterWare', + x: -3698.4328055337414, + y: -2064.7015249889714, + z: -750.7240319082692, + }, + }, + { + id: '7627', + data: { + label: 'HighTouch Technologies', + x: 3731.5876175661556, + y: 4386.289547959033, + z: 2726.2147985715274, + }, + }, + { + id: '7626', + data: { + label: 'WebCam Resource', + x: 2183.375122106397, + y: 5800.962947153161, + z: 1342.470501536729, + }, + }, + { + id: '7625', + data: { + label: 'Surveyor', + x: 2309.7701378392403, + y: 6041.976610514123, + z: 1046.292431795952, + }, + }, + { + id: '7624', + data: { + label: 'Structural Dynamics', + x: -2257.8644304286754, + y: -2994.948775222363, + z: -2313.2527239894057, + }, + }, + { + id: '7623', + data: { + label: 'Logos Research Systems', + x: -1853.5886929480678, + y: 3487.7926864869996, + z: -1128.1291225716952, + }, + }, + { + id: '7620', + data: { + label: 'Vizacom', + x: 2253.1394865336997, + y: 5734.364398857017, + z: -649.2378006337468, + }, + }, + { + id: '7618', + data: { + label: 'Renaissance Worldwide', + x: -1634.4449256726593, + y: 1056.655659288316, + z: -3745.5515118689336, + }, + }, + { + id: '7622', + data: { + label: 'WSRN', + x: 2391.872867941675, + y: 3086.0934666335597, + z: 3252.3462420481096, + }, + }, + { + id: '7621', + data: { + label: 'Renaissance', + x: 2405.3357889014233, + y: 5841.480623463123, + z: -281.33280436051143, + }, + }, + { + id: '7619', + data: { + label: 'Arcadus', + x: 6887.367421359079, + y: -591.3547069202682, + z: -754.1838624219254, + }, + }, + { + id: '7617', + data: { + label: 'ZEFER', + x: -1804.283000524399, + y: 776.7985753870432, + z: -3483.235029715967, + }, + }, + { + id: '7616', + data: { + label: 'Deodis', + x: 5579.053625557831, + y: -2939.3331744098086, + z: 1392.4170160022409, + }, + }, + { + id: '7615', + data: { + label: 'Assets of Simmonds Capital', + x: 6626.211563691479, + y: 1540.95507422245, + z: -2108.8773882473774, + }, + }, + { + id: '7614', + data: { + label: 'RELM Wireless', + x: 6995.150344182587, + y: 1395.8759302863023, + z: -2045.9230238476705, + }, + }, + { + id: '7613', + data: { + label: 'Abatis', + x: 4097.4289708964125, + y: -4198.039552865713, + z: 2485.379824421551, + }, + }, + { + id: '7612', + data: { + label: 'Renaissance Interactive', + x: 6846.877642647598, + y: -406.3653866043777, + z: -1129.313782094248, + }, + }, + { + id: '7611', + data: { + label: 'Impressa', + x: 6818.899756077258, + y: -298.1635911166731, + z: -1521.3085165042123, + }, + }, + { + id: '7610', + data: { + label: 'C2Net', + x: -3176.4489289590165, + y: 284.2901619550379, + z: -1996.7174155444789, + }, + }, + { + id: '7609', + data: { + label: 'Red Hat', + x: -2918.389253790448, + y: 444.4568624939755, + z: -2276.509075644578, + }, + }, + { + id: '7608', + data: { + label: 'Aegisoft', + x: 575.6694437199974, + y: -1089.866621577718, + z: 2132.3505489096997, + }, + }, + { + id: '7607', + data: { + label: 'Netzip', + x: 715.5384053623741, + y: -1286.0687528466897, + z: 2194.0422014346977, + }, + }, + { + id: '7606', + data: { + label: 'Xing', + x: 436.12459704790757, + y: -1324.001879508648, + z: 2007.6863865891555, + }, + }, + { + id: '7605', + data: { + label: 'RealNetworks', + x: 811.1005531275555, + y: -1200.6629513464277, + z: 1721.006190559996, + }, + }, + { + id: '7604', + data: { + label: 'Catapulse', + x: 7391.090245188452, + y: 324.4942627230833, + z: -1934.8404524880802, + }, + }, + { + id: '7603', + data: { + label: 'Rational Software', + x: 7129.0741062982, + y: 21.554075503547878, + z: -1983.7236733143695, + }, + }, + { + id: '7602', + data: { + label: 'Xpit.com', + x: 119.62180677450762, + y: -4446.773783177183, + z: 2828.832055888615, + }, + }, + { + id: '7601', + data: { + label: 'RateXchange', + x: -222.580909642852, + y: -4298.2625704190405, + z: 2696.984707804273, + }, + }, + { + id: '7600', + data: { + label: 'NetAmerica.com', + x: -502.1136995108823, + y: -4287.094386651626, + z: 2415.548405531693, + }, + }, + { + id: '7599', + data: { + label: 'Xlibris', + x: 939.7624867277545, + y: 4430.828696248372, + z: -641.6156330883646, + }, + }, + { + id: '7595', + data: { + label: 'MountainZone.com', + x: 2523.9011952268484, + y: -1039.1579731561096, + z: -625.287369635007, + }, + }, + { + id: '7598', + data: { + label: 'Internet Ramp', + x: 1064.790331019159, + y: -1698.6302581365221, + z: 3975.9405147734847, + }, + }, + { + id: '7597', + data: { + label: 'OneMain', + x: 617.9508289330275, + y: 3581.1296160639613, + z: 4174.267383523259, + }, + }, + { + id: '7596', + data: { + label: 'Imagine Radio', + x: -219.99977373093606, + y: -485.6796583643415, + z: 363.2254594039781, + }, + }, + { + id: '7594', + data: { + label: 'EquiSearch.com', + x: 4855.36790699443, + y: -1856.431127494327, + z: 2616.501546627445, + }, + }, + { + id: '7593', + data: { + label: 'Small Business ISP', + x: 2586.5617979777016, + y: 296.45912917087793, + z: 5436.183062318503, + }, + }, + { + id: '7592', + data: { + label: 'Howard Press', + x: -523.7305095136762, + y: 5797.889862453023, + z: -163.94050020274196, + }, + }, + { + id: '7591', + data: { + label: 'ImageX', + x: 3676.3906451487946, + y: 2259.3296382125736, + z: 5121.688615015559, + }, + }, + { + id: '7590', + data: { + label: 'e-Mobile.com', + x: 4932.618557041633, + y: 1569.6307429711733, + z: 4591.604608131757, + }, + }, + { + id: '7588', + data: { + label: 'Unibanco - Uniao de Bancos Brasileiros S.A.', + x: -2943.367910252802, + y: -1074.8090467110978, + z: -3323.708049425479, + }, + }, + { + id: '7589', + data: { + label: 'Western Power & Equipment', + x: 5175.264876492421, + y: 1303.2490086286539, + z: 4401.184586491415, + }, + }, + { + id: '7585', + data: { + label: 'Solution42', + x: 5802.906545607362, + y: 2604.3716226092415, + z: -449.143222800405, + }, + }, + { + id: '7587', + data: { + label: 'Tilden Park Software', + x: 1306.0848990415884, + y: 4938.842772747945, + z: 3322.072075284263, + }, + }, + { + id: '7586', + data: { + label: 'Portera Systems', + x: 1394.1840690882104, + y: 5327.810846027642, + z: 3367.0277537088664, + }, + }, + { + id: '7584', + data: { + label: 'AANet.com for $900 Million', + x: 3710.535313387918, + y: -2634.987196904654, + z: 677.5717453156346, + }, + }, + { + id: '7583', + data: { + label: 'SwitchOn Networks', + x: 3500.070272771403, + y: -2649.929589471988, + z: 927.3894159511844, + }, + }, + { + id: '7582', + data: { + label: 'Malleable Technologies', + x: 3466.3591275720523, + y: -2627.944132759464, + z: 530.2997466247195, + }, + }, + { + id: '7581', + data: { + label: 'Sebring Networks', + x: 5110.315919327091, + y: 5407.662610317447, + z: -655.5317252122916, + }, + }, + { + id: '7580', + data: { + label: 'PLX Technology', + x: 5020.703332941194, + y: 5462.450067762096, + z: -258.20903806104775, + }, + }, + { + id: '7579', + data: { + label: 'Plumtree Software', + x: 6352.734084867031, + y: 1122.2552410790888, + z: -3266.063035977622, + }, + }, + { + id: '7578', + data: { + label: 'The Procter & Gamble', + x: 6025.945753986487, + y: 1210.8759514860415, + z: -3502.500614344942, + }, + }, + { + id: '7577', + data: { + label: 'Circa Communications', + x: -224.39099990035655, + y: 2658.163207444285, + z: -3802.1815364583736, + }, + }, + { + id: '7576', + data: { + label: 'Pen Interconnect', + x: -689.979460977318, + y: 2674.3678061379214, + z: -3269.163127489483, + }, + }, + { + id: '7575', + data: { + label: 'Exactium', + x: 2027.2375519606849, + y: 4371.881818973292, + z: 2877.093616651611, + }, + }, + { + id: '7574', + data: { + label: 'REpipeline.com', + x: 3696.667294265879, + y: 235.6090581713473, + z: -4748.274455139587, + }, + }, + { + id: '7572', + data: { + label: 'Persistence', + x: -1915.5800629056037, + y: -3775.36340822789, + z: -2173.0309024360963, + }, + }, + { + id: '7573', + data: { + label: '10BaseJ', + x: 6142.923631728913, + y: -188.98942582560136, + z: 1329.3543881389946, + }, + }, + { + id: '7571', + data: { + label: 'Persistence Software', + x: 5702.920671034848, + y: -260.9688911277011, + z: 1383.0409302014182, + }, + }, + { + id: '7570', + data: { + label: 'Solutions Consulting', + x: 2378.408860655552, + y: 5324.386795178154, + z: 955.8200562634547, + }, + }, + { + id: '7569', + data: { + label: 'Perot Systems', + x: 2537.3262782841393, + y: 5407.7623229373185, + z: 589.1488965140024, + }, + }, + { + id: '7568', + data: { + label: 'Human Performance Technologies', + x: -1614.876636763173, + y: -1323.0116049868889, + z: -2979.863842515745, + }, + }, + { + id: '7567', + data: { + label: 'Saba', + x: 4052.3878101075534, + y: -766.4497141139512, + z: -4780.0917418271365, + }, + }, + { + id: '7566', + data: { + label: 'Compete', + x: -1016.9132329055903, + y: -817.2277353368019, + z: 4792.395931609342, + }, + }, + { + id: '7565', + data: { + label: 'Loredata', + x: -303.6868273062545, + y: -630.2639157055229, + z: 5209.698883690829, + }, + }, + { + id: '7564', + data: { + label: 'Perficient', + x: -660.51060398852, + y: -739.9084931536069, + z: 5002.623740679578, + }, + }, + { + id: '7563', + data: { + label: 'Harbinger', + x: 5558.536876603112, + y: -3892.777712536947, + z: 848.4667206723814, + }, + }, + { + id: '7561', + data: { + label: 'Peregrine', + x: -3205.214769610027, + y: 513.7693014776708, + z: 2984.199360790603, + }, + }, + { + id: '7562', + data: { + label: 'Prototype', + x: 5166.508903314494, + y: -4015.79938558268, + z: 961.1136421686267, + }, + }, + { + id: '7560', + data: { + label: 'Tech Conferences', + x: 3603.673398287053, + y: 3565.6506777004597, + z: 3255.5453820222056, + }, + }, + { + id: '7559', + data: { + label: 'Streaming Media', + x: 3252.7142136316047, + y: 3959.5962556510335, + z: 3781.088581075745, + }, + }, + { + id: '7558', + data: { + label: 'Stardust.com', + x: 3253.5637566456576, + y: 3594.849717830866, + z: 3587.9089079555015, + }, + }, + { + id: '7557', + data: { + label: 'Penton Media', + x: -2370.661692815202, + y: 3588.8404515994735, + z: 2373.3853755811724, + }, + }, + { + id: '7556', + data: { + label: 'HDE', + x: 6880.683267717871, + y: -1926.0997675142892, + z: -2461.5908586823125, + }, + }, + { + id: '7555', + data: { + label: 'Peerless Systems', + x: 6859.740291771949, + y: -2145.925735782246, + z: -2132.642669800983, + }, + }, + { + id: '7554', + data: { + label: 'Family Education Network', + x: 465.3795111240033, + y: 213.0660366549945, + z: -4628.614401926548, + }, + }, + { + id: '7553', + data: { + label: 'Pearson', + x: 4556.335691153975, + y: 382.409097238245, + z: -4952.368180463848, + }, + }, + { + id: '7552', + data: { + label: 'NovaNet', + x: 7607.818591854014, + y: -338.5661707657272, + z: 1388.7426571927733, + }, + }, + { + id: '7551', + data: { + label: 'NCS', + x: 7322.779420210922, + y: -467.4515558754148, + z: 1125.5238750285505, + }, + }, + { + id: '7550', + data: { + label: 'Streamline Operations in Two Cities', + x: 2913.2189677166457, + y: -2523.265507555875, + z: 1399.805541720033, + }, + }, + { + id: '7548', + data: { + label: 'eGrocer.com', + x: -305.49271433952725, + y: 4347.851434446996, + z: 3548.942752547222, + }, + }, + { + id: '7549', + data: { + label: 'Royal Ahold N.V.', + x: 2642.994013659012, + y: -2630.0542262427357, + z: 1309.2737416294983, + }, + }, + { + id: '7547', + data: { + label: 'Peachtree Network', + x: -0.14921862366279437, + y: 4104.7367082694345, + z: 3448.6688761832606, + }, + }, + { + id: '7546', + data: { + label: 'Voyager', + x: 5371.058679684367, + y: 3977.0820265556617, + z: -3162.645980204133, + }, + }, + { + id: '7545', + data: { + label: 'PCtel', + x: 3131.789510751498, + y: 927.2244292984519, + z: 3655.1345381012584, + }, + }, + { + id: '7544', + data: { + label: 'Baumgartner & Partner Personalberatung GmbH', + x: 6182.876495093724, + y: 1212.044409196896, + z: 3279.7704699113538, + }, + }, + { + id: '7543', + data: { + label: 'Paragon Software and Asset Growth', + x: 2387.244549835307, + y: -4104.617717089009, + z: -4122.811460566903, + }, + }, + { + id: '7542', + data: { + label: 'DTN', + x: 2007.36689410338, + y: -4164.387230447546, + z: -4228.93831359458, + }, + }, + { + id: '7541', + data: { + label: 'Control Resources', + x: -3839.645105550894, + y: -232.06063060174614, + z: -1314.2467960921053, + }, + }, + { + id: '7540', + data: { + label: 'Paradyne', + x: -3609.9350934004406, + y: -329.235262761712, + z: -1633.2590367737394, + }, + }, + { + id: '7539', + data: { + label: 'Pamet River', + x: 747.644014724109, + y: 2944.576776643816, + z: -3280.889863173583, + }, + }, + { + id: '7538', + data: { + label: 'TeleTech', + x: 734.6366471035499, + y: 2663.3296352999623, + z: -3571.746804136793, + }, + }, + { + id: '7537', + data: { + label: 'Actual Software', + x: 5483.261349837514, + y: -1974.6320300498971, + z: -4049.738112983593, + }, + }, + { + id: '7535', + data: { + label: 'PaeTec', + x: 2229.7226724953307, + y: 1579.5253092204762, + z: -4790.304790774224, + }, + }, + { + id: '7536', + data: { + label: 'Pinnacle Software', + x: 2274.6935975960732, + y: 1694.463511390792, + z: -4404.766925346324, + }, + }, + { + id: '7533', + data: { + label: 'LVMH Mo�t Hennessy Louis Vuitton SA', + x: 4535.310823298319, + y: 1138.421879563329, + z: 2837.041729792851, + }, + }, + { + id: '7534', + data: { + label: 'IntelliPay', + x: 4289.111271835582, + y: 1311.4228467396385, + z: -3759.3188032960347, + }, + }, + { + id: '7532', + data: { + label: 'Orca Systems', + x: 4556.973895749834, + y: -3531.195429539778, + z: -2961.3277305392508, + }, + }, + { + id: '7531', + data: { + label: 'Muscato and Translink', + x: 3464.5948857059357, + y: 2634.7147006160876, + z: -4794.401751038881, + }, + }, + { + id: '7530', + data: { + label: 'Optio Software', + x: 3436.8736126718445, + y: 2885.713406239338, + z: -4473.568177341899, + }, + }, + { + id: '7529', + data: { + label: 'Avogadro', + x: -135.97738890837888, + y: -4526.435842096672, + z: -381.9043645216639, + }, + }, + { + id: '7528', + data: { + label: 'Openwave', + x: 6380.116489449706, + y: 397.15398697254, + z: -3634.305363899493, + }, + }, + { + id: '7525', + data: { + label: 'atMotion', + x: 10.187473438034312, + y: -3902.2942724980744, + z: -876.776445850675, + }, + }, + { + id: '7527', + data: { + label: 'Onebox.box', + x: -218.31250948376604, + y: -3782.8405672907757, + z: -1279.4256911355517, + }, + }, + { + id: '7526', + data: { + label: 'Software.com', + x: -644.7020164652889, + y: -3807.936772331227, + z: -1162.0366405207897, + }, + }, + { + id: '7524', + data: { + label: 'Phone.com', + x: -351.1863015628613, + y: -4026.9696308152816, + z: -981.7971185674132, + }, + }, + { + id: '7523', + data: { + label: 'Merlin Systems', + x: 3998.172308972197, + y: -4097.878546708121, + z: 3224.151787327849, + }, + }, + { + id: '7522', + data: { + label: 'Redback Networks', + x: 4166.689100797624, + y: -4087.662659449605, + z: 2861.1035167614327, + }, + }, + { + id: '7519', + data: { + label: 'Blue Pumpkin', + x: -1487.8855107092552, + y: 2489.2958501912035, + z: 387.84813915111437, + }, + }, + { + id: '7521', + data: { + label: 'Lara Networks', + x: -623.1847841810296, + y: -1892.77115259869, + z: -3641.2598025597576, + }, + }, + { + id: '7520', + data: { + label: 'Cypress', + x: 5390.388961900279, + y: -3472.2622714333065, + z: 1961.0496913297557, + }, + }, + { + id: '7518', + data: { + label: 'Slam Dunk Networks', + x: 6480.397657573274, + y: 3349.7010886167673, + z: -1031.4467460271262, + }, + }, + { + id: '7516', + data: { + label: 'YouthStream', + x: 5248.381415955549, + y: 5119.816105571851, + z: 973.9847761059111, + }, + }, + { + id: '7515', + data: { + label: 'Market Guide', + x: 2289.0391384856703, + y: -3120.757881023884, + z: 3842.4650718698376, + }, + }, + { + id: '7517', + data: { + label: 'Sixdegrees', + x: 5469.131089627256, + y: 5003.988405212483, + z: 652.5599895491686, + }, + }, + { + id: '7513', + data: { + label: 'Open Text', + x: 4895.002118013173, + y: -2465.364634541889, + z: -1372.1928740872588, + }, + }, + { + id: '7514', + data: { + label: 'Lava Systems', + x: -1035.4524509844352, + y: 5212.81195741192, + z: -1838.558269760349, + }, + }, + { + id: '7512', + data: { + label: 'FutureTense', + x: 1896.6308969231345, + y: -413.1354887600933, + z: -1923.1927427714359, + }, + }, + { + id: '7510', + data: { + label: 'Versametrix', + x: 7345.828931668723, + y: -1400.525869013915, + z: -576.1562871160152, + }, + }, + { + id: '7511', + data: { + label: 'RevenueLab', + x: 6954.274506890435, + y: -1729.4663854040268, + z: -1188.443190319716, + }, + }, + { + id: '7509', + data: { + label: 'Onyx Software', + x: 7121.094945043542, + y: -1649.716938793113, + z: -819.9504548776425, + }, + }, + { + id: '7508', + data: { + label: 'Onyx Internet', + x: 2896.4417283364187, + y: -4961.788764763222, + z: 2527.848485168378, + }, + }, + { + id: '7507', + data: { + label: 'Pacific Gateway Exchange', + x: 3101.3105333930034, + y: -4944.476608317195, + z: 2177.2017338260134, + }, + }, + { + id: '7506', + data: { + label: 'Ya.com', + x: 3216.9943497917607, + y: 5835.173812181775, + z: 900.632890782849, + }, + }, + { + id: '7505', + data: { + label: 'T-Online', + x: 3334.844960121921, + y: 5986.824274645175, + z: 1260.7420337368324, + }, + }, + { + id: '7504', + data: { + label: 'Online Transaction Technologies', + x: 4960.345720800656, + y: 4181.682349352099, + z: -1828.7522666543132, + }, + }, + { + id: '7503', + data: { + label: 'Vsource', + x: 5221.944267326565, + y: 4136.248404315587, + z: -1524.7475609309622, + }, + }, + { + id: '7502', + data: { + label: 'Physicians Online', + x: -814.4866148518026, + y: -3213.9714531777404, + z: -3026.5368882291345, + }, + }, + { + id: '7500', + data: { + label: 'Etensity', + x: -2496.742668604519, + y: 514.983241750053, + z: -3338.671939839045, + }, + }, + { + id: '7501', + data: { + label: 'OneSoft', + x: -2315.2940794495503, + y: 591.462009504793, + z: -3692.828875010226, + }, + }, + { + id: '7496', + data: { + label: 'On2.com', + x: 6221.884521012791, + y: -2832.376379779456, + z: -239.7249156252229, + }, + }, + { + id: '7498', + data: { + label: 'EuropAtWeb', + x: 3772.9254815989184, + y: 712.4822606920467, + z: -944.8995642496373, + }, + }, + { + id: '7499', + data: { + label: 'Accord Networks', + x: -123.46656747279641, + y: 2196.262269323899, + z: -3561.409868961127, + }, + }, + { + id: '7497', + data: { + label: 'MetaVisual', + x: 6414.930107508987, + y: -2703.9379482730455, + z: -568.219440999218, + }, + }, + { + id: '7495', + data: { + label: 'Nomad IQ', + x: 686.8213547378707, + y: -2861.3822195372536, + z: 2500.0812911606695, + }, + }, + { + id: '7492', + data: { + label: '1G Networks', + x: 567.707366265373, + y: -3821.819496956059, + z: 1588.2785692358377, + }, + }, + { + id: '7494', + data: { + label: 'SpeechFront for $10.5 Million', + x: 1145.4950003612526, + y: 1557.4628564673599, + z: 4909.097281137338, + }, + }, + { + id: '7493', + data: { + label: 'Nuance', + x: 1142.9214792976056, + y: 1957.0375466436967, + z: 4835.614167236659, + }, + }, + { + id: '7491', + data: { + label: 'Heart of Virginia', + x: 1217.002619235263, + y: -2892.778758406779, + z: 5079.455375790351, + }, + }, + { + id: '7490', + data: { + label: 'CFW', + x: 999.891884518872, + y: -3153.7924971878874, + z: 4843.832756638304, + }, + }, + { + id: '7489', + data: { + label: 'WebProject', + x: 6397.842836386688, + y: -199.97973503683298, + z: -2568.8124330234896, + }, + }, + { + id: '7488', + data: { + label: 'Novient', + x: 6357.574972222964, + y: -537.6984866022452, + z: -2346.4915801093002, + }, + }, + { + id: '7487', + data: { + label: 'Novetrix', + x: -1120.1215855905407, + y: 3936.0740634090284, + z: 2148.5789688471455, + }, + }, + { + id: '7486', + data: { + label: 'JustOn', + x: -658.2285547478912, + y: 3697.9060383065853, + z: 1839.7438130579592, + }, + }, + { + id: '7485', + data: { + label: 'PRSoft', + x: -1096.7448740036104, + y: 3556.5241809534086, + z: 2292.4141860827544, + }, + }, + { + id: '7484', + data: { + label: 'Food.com', + x: -1231.370655251525, + y: 3904.893452556105, + z: 1665.0459132785172, + }, + }, + { + id: '7482', + data: { + label: 'Clarify', + x: -1186.560936548998, + y: 2701.3632777998882, + z: 445.4009023310829, + }, + }, + { + id: '7483', + data: { + label: 'Photonic Technologies', + x: -1424.7989875691765, + y: 2952.0778099132563, + z: 188.90148769975164, + }, + }, + { + id: '7481', + data: { + label: 'Promatory', + x: -1669.828037703561, + y: 2693.928025036584, + z: 5.014838056060928, + }, + }, + { + id: '7480', + data: { + label: 'Epicon', + x: -1601.298934644395, + y: 2758.456785364238, + z: 258.16992790048755, + }, + }, + { + id: '7479', + data: { + label: 'Universal Broadband Networks', + x: -1380.3857691711944, + y: 2626.0379544396565, + z: -389.2091817124242, + }, + }, + { + id: '7478', + data: { + label: 'Shasta Networks', + x: -1139.0087253284084, + y: 2939.088625008815, + z: 228.3004406386718, + }, + }, + { + id: '7477', + data: { + label: 'Nortel', + x: 763.8153014528547, + y: 3243.087836234528, + z: -4570.060203889481, + }, + }, + { + id: '7476', + data: { + label: 'Periphonics', + x: -1081.289871654913, + y: 2747.5186300935757, + z: -338.9001095744749, + }, + }, + { + id: '7475', + data: { + label: 'Telekol', + x: -1862.5890271802848, + y: -4503.354298285581, + z: 666.6267747336688, + }, + }, + { + id: '7474', + data: { + label: 'TeamWare Security Software Division', + x: -1238.232416921974, + y: -4569.928480120138, + z: 1185.7099799204632, + }, + }, + { + id: '7473', + data: { + label: 'NewMedia Spark', + x: 4142.444407100799, + y: -1426.4977672331515, + z: -1146.7528514977691, + }, + }, + { + id: '7472', + data: { + label: 'Mobilee', + x: 1485.1625541722303, + y: 4935.1937860813605, + z: 318.6377468212769, + }, + }, + { + id: '7471', + data: { + label: 'Legal Anywhere', + x: 6967.586114560807, + y: 2283.0894190169424, + z: -2395.706281712307, + }, + }, + { + id: '7470', + data: { + label: 'Niku', + x: 7062.58921567152, + y: 2264.0177748629108, + z: -1992.5452353241787, + }, + }, + { + id: '7469', + data: { + label: 'Centerpoint Solutions', + x: 1358.051589385685, + y: 5792.999272022739, + z: 787.666014841391, + }, + }, + { + id: '7468', + data: { + label: 'Nice', + x: 1362.4807005064345, + y: 5863.168863829924, + z: 388.4547917032699, + }, + }, + { + id: '7467', + data: { + label: 'Music of the World', + x: 3758.430434272799, + y: 3603.667652062246, + z: -1937.2401841775397, + }, + }, + { + id: '7466', + data: { + label: 'EMusic.com', + x: 3638.102064187454, + y: 3436.7652906882754, + z: -1512.628441255475, + }, + }, + { + id: '7465', + data: { + label: 'Signal9 Solutions', + x: 5358.232326297372, + y: -1104.4003887508766, + z: -3592.1986737492807, + }, + }, + { + id: '7464', + data: { + label: 'McAfee.com', + x: 5124.273538789612, + y: -981.3246471212774, + z: -3911.9573184003148, + }, + }, + { + id: '7463', + data: { + label: 'Williams Communications', + x: 1857.2859562419646, + y: -1970.3488299418693, + z: 2911.5640696748537, + }, + }, + { + id: '7462', + data: { + label: 'Telus', + x: 7617.628991869058, + y: -329.45211049047106, + z: -1511.3171147438593, + }, + }, + { + id: '7461', + data: { + label: 'AT&T Canada', + x: 2500.54153637513, + y: -976.2712489103452, + z: 1308.7224668491372, + }, + }, + { + id: '7460', + data: { + label: 'SOFTBANK Marketing Solutions', + x: 2515.0523572773213, + y: -3187.8170461821433, + z: 4397.154538192622, + }, + }, + { + id: '7459', + data: { + label: 'Naviant', + x: 2350.8882136587017, + y: -3526.1505701814162, + z: 4234.8576043449175, + }, + }, + { + id: '7458', + data: { + label: 'AdTrackMedia.com', + x: 282.48015038178823, + y: 4594.1557893864065, + z: 1726.1779499677812, + }, + }, + { + id: '7456', + data: { + label: 'GreaterGood.com', + x: -3478.1065938898937, + y: 2505.026032063014, + z: 1740.3973964198472, + }, + }, + { + id: '7457', + data: { + label: 'Alternate Marketing Networks', + x: 326.5715395135114, + y: 4440.020519914646, + z: 2098.0816878657415, + }, + }, + { + id: '7455', + data: { + label: 'Live On Line', + x: 5150.214204369351, + y: -1662.6838541117893, + z: -2573.9298641198793, + }, + }, + { + id: '7454', + data: { + label: 'New Era of Networks ( NEON )', + x: -2387.6894575861247, + y: 2358.3644988765386, + z: 3678.132487361099, + }, + }, + { + id: '7453', + data: { + label: 'Ofoto', + x: 1549.3614825476918, + y: -2197.3766091307634, + z: 4672.352378380868, + }, + }, + { + id: '7452', + data: { + label: 'Eastman Kodak', + x: 1287.6101940776161, + y: -2188.1265559602957, + z: 4982.026463305936, + }, + }, + { + id: '7451', + data: { + label: 'CareerBuilder', + x: 3049.4769983036385, + y: -3140.866798219203, + z: 1826.9244163384471, + }, + }, + { + id: '7450', + data: { + label: 'Petroleum Place', + x: 4249.373633663027, + y: -1916.1770155080605, + z: -3854.9530341389186, + }, + }, + { + id: '7449', + data: { + label: 'Halliburton', + x: 4209.120052645727, + y: -2308.3512818644735, + z: -3892.9739690120887, + }, + }, + { + id: '8258', + data: { + label: 'MACtel', + x: 3099.6993501416277, + y: 772.3408354895091, + z: 1766.2632702590179, + }, + }, + { + id: '7448', + data: { + label: 'ImproveNet', + x: 4173.861322650522, + y: 4861.431605787347, + z: -3139.7104223251094, + }, + }, + { + id: '7447', + data: { + label: 'Argentina On-Line', + x: 1640.494480035256, + y: -2444.2820162255057, + z: 2963.9555772400104, + }, + }, + { + id: '7446', + data: { + label: 'Organizational Diagnostics Online', + x: 1809.4506433096092, + y: 5451.7024909439515, + z: 3021.583121024446, + }, + }, + { + id: '7445', + data: { + label: 'Fitability Systems', + x: 1669.4922115212448, + y: 5085.559146237644, + z: 2953.2158616157503, + }, + }, + { + id: '7444', + data: { + label: 'Carnegie', + x: -2820.7391310882786, + y: 4022.7758630772273, + z: 856.3269149812638, + }, + }, + { + id: '7443', + data: { + label: 'Alloy', + x: 161.1489445511277, + y: 2604.2344171901836, + z: -5210.638732166134, + }, + }, + { + id: '7442', + data: { + label: 'InsiderTrader', + x: 3479.9386029590464, + y: 1861.9494873545243, + z: -4339.6050982038905, + }, + }, + { + id: '7441', + data: { + label: 'Edgar Online', + x: 3652.0823182520126, + y: 2076.530747217668, + z: -4044.330493594553, + }, + }, + { + id: '7440', + data: { + label: 'Online USA', + x: 756.1767254818551, + y: 1725.9818173700635, + z: 5253.382529807688, + }, + }, + { + id: '7439', + data: { + label: 'Snowball.com', + x: 2948.6805724548544, + y: -1009.1849623655752, + z: 3297.2834634613528, + }, + }, + { + id: '7438', + data: { + label: 'CWtel', + x: 5966.167036475924, + y: -2574.517844239115, + z: 3107.5776235845733, + }, + }, + { + id: '7437', + data: { + label: 'Quest', + x: 6221.862267980874, + y: -2478.615091611279, + z: 2807.9430156092253, + }, + }, + { + id: '7436', + data: { + label: 'New Com', + x: 1549.1823451961761, + y: -2977.528708829972, + z: 3401.964264473226, + }, + }, + { + id: '7435', + data: { + label: 'Simpli.com', + x: 295.42600646590887, + y: -4594.652887919224, + z: 1885.7900343797664, + }, + }, + { + id: '7434', + data: { + label: 'RocketCash', + x: 144.2106818880587, + y: -4805.486960691851, + z: 2092.975168621613, + }, + }, + { + id: '7433', + data: { + label: 'Freeinternet.com', + x: -66.79258329708239, + y: -4822.659992300096, + z: 1813.9095207782864, + }, + }, + { + id: '7432', + data: { + label: 'AimTV', + x: 78.99654440416634, + y: -4741.721900634388, + z: 1506.736639138321, + }, + }, + { + id: '7431', + data: { + label: 'SmartRay Network', + x: 5081.046745494058, + y: 3719.111309480485, + z: 3366.052830934905, + }, + }, + { + id: '7430', + data: { + label: 'Lifeminders', + x: 5039.876034389642, + y: 3736.3762594675077, + z: 2960.256800256109, + }, + }, + { + id: '7429', + data: { + label: 'Sullivan Group', + x: -2890.8093046141166, + y: -3267.181884441967, + z: 465.29517499675524, + }, + }, + { + id: '7428', + data: { + label: 'NetWolves', + x: -2845.1033578414467, + y: -3172.4202998573387, + z: 68.8303232806712, + }, + }, + { + id: '7427', + data: { + label: 'Supernet', + x: 1553.234166332537, + y: 1945.8290182955407, + z: -5167.520634471579, + }, + }, + { + id: '7426', + data: { + label: 'Netsol', + x: -1841.1762943946685, + y: 1921.2442666666927, + z: -3484.7593386215244, + }, + }, + { + id: '7424', + data: { + label: 'Netera', + x: 1670.188372443648, + y: 2122.129166690201, + z: -4468.423680483176, + }, + }, + { + id: '7425', + data: { + label: 'NetSol', + x: 1706.7458185304272, + y: 1871.856834460245, + z: -4798.4346288673, + }, + }, + { + id: '7423', + data: { + label: 'PSI Softworks Technology', + x: 3003.928883932055, + y: 5015.916285366149, + z: -3283.117965055602, + }, + }, + { + id: '7422', + data: { + label: 'NetSilicon', + x: 2801.8025101474677, + y: 4834.2213377876415, + z: -2984.5467118817896, + }, + }, + { + id: '7421', + data: { + label: 'NextPoint Networks', + x: 3200.7514136081545, + y: -1571.894554919786, + z: 5002.066173065267, + }, + }, + { + id: '7420', + data: { + label: 'NetScout Systems', + x: 3396.973808018508, + y: -1745.2398411921215, + z: 4697.547403840976, + }, + }, + { + id: '7419', + data: { + label: 'Majority Interest in Cellcom', + x: 3333.4456522656255, + y: 1858.2775570399924, + z: 4326.462981272544, + }, + }, + { + id: '7418', + data: { + label: 'Tricom', + x: 3075.1910977035805, + y: 1711.4384640781632, + z: 4610.253826179336, + }, + }, + { + id: '7417', + data: { + label: 'Additional Shares of InfoInterActive', + x: -1147.1345519674423, + y: 1662.6876787422955, + z: 4978.372428851024, + }, + }, + { + id: '7416', + data: { + label: 'Centigram', + x: 35.251803510000855, + y: 3425.250054994589, + z: -3841.855669113369, + }, + }, + { + id: '7415', + data: { + label: 'US West', + x: 219.2919143987653, + y: -1694.40152551592, + z: 4053.610700845332, + }, + }, + { + id: '7414', + data: { + label: 'WebOrder', + x: 2746.7343634600516, + y: 1288.3842015898472, + z: 1050.7153656452863, + }, + }, + { + id: '7413', + data: { + label: 'MyComputer.com', + x: 5967.913345677378, + y: 2359.9751466469274, + z: 2785.629208759899, + }, + }, + { + id: '7410', + data: { + label: 'Wall Data', + x: 2575.5398938263043, + y: 4025.435731087618, + z: -3196.272411764489, + }, + }, + { + id: '7412', + data: { + label: 'Sitematic', + x: 5234.555130296835, + y: 2464.8217525898026, + z: 3025.1506068380777, + }, + }, + { + id: '7411', + data: { + label: 'Simware', + x: 2430.7809826507996, + y: 3513.433657366452, + z: -3810.450563521927, + }, + }, + { + id: '7409', + data: { + label: 'NetManage', + x: 2498.698498202635, + y: 3747.858848828727, + z: -3490.6847475070513, + }, + }, + { + id: '7407', + data: { + label: 'NetLibrary', + x: 1432.2285594840466, + y: 5615.493183920023, + z: -2820.3281360489773, + }, + }, + { + id: '7408', + data: { + label: 'peanutpress', + x: 1404.9501684612842, + y: 5783.272735593481, + z: -2453.4755837210964, + }, + }, + { + id: '7405', + data: { + label: 'Sirana Software', + x: -2278.7126627634098, + y: -1854.7549957608906, + z: -2706.481611182736, + }, + }, + { + id: '7406', + data: { + label: 'WebTrends', + x: -2916.6110910306884, + y: -2059.4415918230816, + z: -2280.8086580078525, + }, + }, + { + id: '7404', + data: { + label: 'NetIQ', + x: -2601.1379248985527, + y: -1895.5113335380106, + z: -2468.8056624151504, + }, + }, + { + id: '7402', + data: { + label: 'NetGenesis', + x: 1484.330178958027, + y: 3494.008544761313, + z: 4106.644598800932, + }, + }, + { + id: '7403', + data: { + label: 'E-dynamics', + x: 1308.9785663479877, + y: 3829.9907677973624, + z: 3969.065911139273, + }, + }, + { + id: '7401', + data: { + label: 'Odisei', + x: 4671.753514009654, + y: -401.4132172495954, + z: 4808.862350980708, + }, + }, + { + id: '7400', + data: { + label: '8x8', + x: 4973.998354827373, + y: -418.1268071703266, + z: 4545.068166270245, + }, + }, + { + id: '7399', + data: { + label: 'FreBon', + x: 5273.528578875241, + y: -3120.2298913951154, + z: 2281.1925994093103, + }, + }, + { + id: '7398', + data: { + label: 'Vision I.T.', + x: 4806.988539212079, + y: -3418.8178474508495, + z: 1713.9578282183177, + }, + }, + { + id: '7397', + data: { + label: 'Net2000', + x: 4994.259153183511, + y: -3289.7250421014373, + z: 2042.5539145853102, + }, + }, + { + id: '7396', + data: { + label: 'Pacific Bridge Net', + x: -1945.7566638507158, + y: 4489.771923695764, + z: -54.93578507375361, + }, + }, + { + id: '7395', + data: { + label: 'Worldwide Wireless', + x: -1588.9266076770075, + y: 4550.93759927443, + z: 134.7189518449878, + }, + }, + { + id: '7394', + data: { + label: 'Worldweb.net', + x: 1012.841607121221, + y: 506.28777630878614, + z: 4999.781532910676, + }, + }, + { + id: '7393', + data: { + label: 'Telemate.Net Software', + x: 4651.571737268787, + y: 4510.007217229058, + z: -2578.1246354436275, + }, + }, + { + id: '7391', + data: { + label: 'ClearWorks', + x: -3516.1490498814455, + y: 1694.534323206529, + z: 2293.6479667795325, + }, + }, + { + id: '7392', + data: { + label: 'Link2', + x: -3372.0047136568687, + y: 1535.263830912851, + z: 2634.370526706615, + }, + }, + { + id: '7390', + data: { + label: 'Star Systems', + x: -961.349834619293, + y: 1890.5732811921023, + z: -3762.374114952345, + }, + }, + { + id: '7389', + data: { + label: 'Concord EFS', + x: -751.341133827297, + y: 1803.3877696110187, + z: -4094.9191316525057, + }, + }, + { + id: '7388', + data: { + label: 'TelenComm', + x: 4509.406468134159, + y: 3593.5844509664435, + z: 3304.5920669665065, + }, + }, + { + id: '7387', + data: { + label: 'Cray', + x: 5351.4170723202105, + y: -539.8315951527928, + z: -2429.500370674569, + }, + }, + { + id: '7385', + data: { + label: 'NBC', + x: 4955.574905137929, + y: 1644.9039726355502, + z: 4169.404645142008, + }, + }, + { + id: '7386', + data: { + label: 'Flooz.com', + x: 4864.550641236767, + y: 1653.8536560351067, + z: 3770.6038518973482, + }, + }, + { + id: '7383', + data: { + label: 'Husdawg Communications', + x: 4940.952581393984, + y: -560.4744672926447, + z: -347.46250515188405, + }, + }, + { + id: '7381', + data: { + label: 'Knowledge Universe', + x: 2711.8302906748145, + y: -1236.0170161729377, + z: -2302.295343533902, + }, + }, + { + id: '7384', + data: { + label: 'Hollywood Stock Exchange', + x: 2589.3145457133164, + y: -1844.3827930727116, + z: -1507.862481382909, + }, + }, + { + id: '7382', + data: { + label: 'Flyswat', + x: 4960.89540918157, + y: -785.5393936683057, + z: 22.23827577330538, + }, + }, + { + id: '7380', + data: { + label: 'Damgaard', + x: -606.579967065177, + y: -2812.221577449789, + z: -4483.227538033262, + }, + }, + { + id: '7379', + data: { + label: 'Navision', + x: -296.0309064293042, + y: -2787.870602989997, + z: -4214.433663051176, + }, + }, + { + id: '7378', + data: { + label: 'Journeylink.com', + x: 5683.233050907475, + y: 4519.390535942918, + z: -1102.46094529103, + }, + }, + { + id: '7377', + data: { + label: 'Navidec', + x: 5730.51444195964, + y: 4196.683167464347, + z: -1342.2362267961378, + }, + }, + { + id: '7376', + data: { + label: 'USA Networks TV Broadcast Division', + x: 2758.7941102462673, + y: -4730.74227532516, + z: -1297.4553504896862, + }, + }, + { + id: '7375', + data: { + label: 'Univision', + x: 2894.1915305206417, + y: -4976.963051683029, + z: -1009.9817343630355, + }, + }, + { + id: '7373', + data: { + label: 'Romtec', + x: 1622.5509569758804, + y: 2190.30748178879, + z: 4592.3400986242195, + }, + }, + { + id: '8270', + data: { + label: 'Golden Manufacturing', + x: 5540.3826436528625, + y: -3244.7852446595266, + z: -7.388050241423853, + }, + }, + { + id: '7372', + data: { + label: 'Total Research', + x: 1795.1244896198848, + y: 2557.768195629887, + z: 4580.205020590284, + }, + }, + { + id: '7371', + data: { + label: 'VistaInfo', + x: -2460.417500275919, + y: 905.7414082520397, + z: 3819.876292532201, + }, + }, + { + id: '7369', + data: { + label: 'Forit', + x: 1142.4709936619006, + y: 4740.330107264664, + z: 2894.1739211105305, + }, + }, + { + id: '7370', + data: { + label: 'Fidelity National Financial', + x: -2787.9027939775333, + y: 808.1155466948053, + z: 3605.9480116099858, + }, + }, + { + id: '7367', + data: { + label: 'Research in Motion', + x: -1082.245158859845, + y: 2956.5304147197903, + z: -87.89299175446033, + }, + }, + { + id: '7368', + data: { + label: 'Forrester Research', + x: 1077.9962227319704, + y: 4749.178343922629, + z: 2498.249641747674, + }, + }, + { + id: '7366', + data: { + label: 'Nielsen Media Research', + x: 840.409962928619, + y: 5040.791655856049, + z: 1309.8344394656347, + }, + }, + { + id: '7365', + data: { + label: 'VNU', + x: 5597.208774180062, + y: -2706.598877246602, + z: -3621.7346426481176, + }, + }, + { + id: '7363', + data: { + label: 'TownPagesNet.com', + x: 3642.249570849952, + y: -2089.6105009065923, + z: -4086.1723361748845, + }, + }, + { + id: '7364', + data: { + label: 'Rasmussen Research', + x: 3554.696308798274, + y: -2397.531821058758, + z: -4324.770640197022, + }, + }, + { + id: '7362', + data: { + label: 'Saba Press Photos', + x: -1444.2947128861258, + y: -1043.8492987993216, + z: -3236.3232572534075, + }, + }, + { + id: '7361', + data: { + label: 'Corbis', + x: -1143.7739533192096, + y: -864.6171897659995, + z: -3453.4312354089507, + }, + }, + { + id: '7360', + data: { + label: 'Girl Press', + x: -2945.7689592055913, + y: 3922.2511145595727, + z: 95.71677247031671, + }, + }, + { + id: '7359', + data: { + label: 'Alloy Online', + x: -2826.301951462974, + y: 3854.0551239535785, + z: 485.3645972123094, + }, + }, + { + id: '7358', + data: { + label: 'Algorex', + x: -2837.767902714562, + y: 1387.6845664328537, + z: 2706.9949874353383, + }, + }, + { + id: '7357', + data: { + label: 'National Semiconductor', + x: -3009.6153783116747, + y: 1038.8796198898715, + z: 2585.2184136865053, + }, + }, + { + id: '7356', + data: { + label: 'Textron National Bank', + x: 284.0921495615869, + y: -3786.8422046108467, + z: -4066.177328121986, + }, + }, + { + id: '7355', + data: { + label: 'NextCard', + x: 56.02575042005739, + y: -3837.2671514449203, + z: -3725.0982806515913, + }, + }, + { + id: '7354', + data: { + label: 'Bay Area Print Brokerage', + x: -650.4215899116253, + y: 5349.601048083268, + z: -616.9912611981106, + }, + }, + { + id: '7353', + data: { + label: 'ImageX.com', + x: -457.1945088215273, + y: 5695.256943678447, + z: -542.4697985165835, + }, + }, + { + id: '7352', + data: { + label: 'iseek', + x: 2442.820769322895, + y: -3096.7557146862882, + z: 4992.822858876109, + }, + }, + { + id: '7351', + data: { + label: 'N2H2', + x: 2052.8021153690206, + y: -3212.2217654804767, + z: 5016.546369058259, + }, + }, + { + id: '7349', + data: { + label: 'Murdock', + x: 4089.4462804682594, + y: 1713.757042171223, + z: 4635.373997113063, + }, + }, + { + id: '7348', + data: { + label: 'Enthusiasm Technologies', + x: 4889.825561021403, + y: -1118.2029692448036, + z: 4375.920875321729, + }, + }, + { + id: '7350', + data: { + label: 'Mexicos AcNet', + x: 4201.057628649774, + y: 1738.047747397885, + z: 5029.023196227217, + }, + }, + { + id: '7347', + data: { + label: 'Metro One Telecommunications', + x: 5148.226573745216, + y: -1432.1968054042784, + z: 4292.884765440873, + }, + }, + { + id: '7343', + data: { + label: 'InsWeb', + x: 2429.587030180569, + y: 159.55936873663313, + z: -907.957240543865, + }, + }, + { + id: '7346', + data: { + label: 'Mobility Concepts', + x: 3909.019168520332, + y: 5155.79332220007, + z: 2579.391909283573, + }, + }, + { + id: '7345', + data: { + label: 'ActiveLink Communications', + x: 4101.755489436134, + y: 5350.052906881564, + z: 2276.3989171459316, + }, + }, + { + id: '7344', + data: { + label: 'MMC Networks', + x: -1371.2855097843442, + y: -4485.515639852884, + z: -577.9610104111484, + }, + }, + { + id: '7342', + data: { + label: 'Marsh & McLennan Companies', + x: 2383.4042572117587, + y: 383.61303655926935, + z: -1356.9505745437643, + }, + }, + { + id: '7341', + data: { + label: 'Photonics Developer Optenia', + x: 1505.119470220739, + y: -4864.218831761533, + z: -2584.2262322394863, + }, + }, + { + id: '7339', + data: { + label: 'Calvin Alexander Networking', + x: 5470.1871386482435, + y: -2044.772661248723, + z: -3533.5605013416152, + }, + }, + { + id: '7340', + data: { + label: 'Vertex Networks', + x: 1337.0405977001233, + y: -4230.158084087038, + z: -3023.6807797574797, + }, + }, + { + id: '7338', + data: { + label: 'Micromuse', + x: 5487.96514676915, + y: -2311.8420003661117, + z: -3840.4077660502053, + }, + }, + { + id: '7337', + data: { + label: 'Micro-Integration', + x: -1464.695569948532, + y: 1084.221673344802, + z: -4499.924469364585, + }, + }, + { + id: '7336', + data: { + label: 'BiznessOnline.com', + x: -1797.087203156056, + y: 1212.1286860017713, + z: -4276.309982391567, + }, + }, + { + id: '7335', + data: { + label: 'LPJ', + x: 1487.0692627463395, + y: 2802.033339765191, + z: 4990.426156979869, + }, + }, + { + id: '7334', + data: { + label: 'MGI Software and Trans Cosmos', + x: 1520.6932227686102, + y: 3111.8332294989013, + z: 4726.702954730928, + }, + }, + { + id: '7333', + data: { + label: 'M.I.B.H.', + x: -3429.748135260584, + y: -1234.5639843094673, + z: 571.2634921745753, + }, + }, + { + id: '7332', + data: { + label: 'AGENTics', + x: 2306.8311281782967, + y: 2344.8105546447223, + z: 5147.190125785377, + }, + }, + { + id: '7331', + data: { + label: 'Mercado Software', + x: 2368.2042030512484, + y: 1996.6065728959409, + z: 5333.497456237103, + }, + }, + { + id: '7330', + data: { + label: 'NetObjects Division', + x: -2396.0773629736245, + y: 1081.194747742837, + z: 3315.4126625171566, + }, + }, + { + id: '7329', + data: { + label: 'NetObjects', + x: 5571.886714631887, + y: 2330.9185485206494, + z: 2835.4156668818855, + }, + }, + { + id: '7328', + data: { + label: 'MERANT plc', + x: 801.6537087354944, + y: -3999.963836152602, + z: 3501.046534428989, + }, + }, + { + id: '7326', + data: { + label: 'Penton', + x: 3471.054014834649, + y: 3903.77888517675, + z: 3435.2642647289904, + }, + }, + { + id: '7327', + data: { + label: 'WirelessDeveloper Conference', + x: 3763.4746228566923, + y: 4128.268384622557, + z: 3251.47669918974, + }, + }, + { + id: '7325', + data: { + label: 'Westwind Media', + x: -149.51156496240327, + y: -589.2855253480354, + z: 3971.0286017353756, + }, + }, + { + id: '7324', + data: { + label: 'Getgo', + x: 4098.965501330738, + y: 2196.857854274823, + z: -3595.6241287934463, + }, + }, + { + id: '7323', + data: { + label: 'Mediacom Communications', + x: 1469.096204423391, + y: 2418.009969642783, + z: 5239.4987428006725, + }, + }, + { + id: '7322', + data: { + label: 'Mbrane', + x: 3406.5587845852424, + y: 4428.32129197019, + z: 3201.3975188525146, + }, + }, + { + id: '7321', + data: { + label: 'Platinum Equity Holdings', + x: 3057.829262013454, + y: 4327.374847675993, + z: 3379.430040805327, + }, + }, + { + id: '7320', + data: { + label: 'MarketFirst Software', + x: 6875.084517037946, + y: -755.6737382696587, + z: 1780.9228987461017, + }, + }, + { + id: '7318', + data: { + label: 'Whittman-Hart', + x: -236.61891789825697, + y: 2130.22392118541, + z: -2215.4515237379755, + }, + }, + { + id: '7319', + data: { + label: 'SBi', + x: -490.7487249147197, + y: 4221.300804923533, + z: 1764.5662153312976, + }, + }, + { + id: '7316', + data: { + label: 'Volendam', + x: 740.2984847869334, + y: 339.4528375766381, + z: 5364.550288126496, + }, + }, + { + id: '7317', + data: { + label: 'Madge', + x: 605.1010909976611, + y: 690.2774899522991, + z: 5517.936770572391, + }, + }, + { + id: '7314', + data: { + label: 'Time4', + x: 6153.513199838055, + y: -2432.9530169473687, + z: -2198.562078297926, + }, + }, + { + id: '7315', + data: { + label: 'Allaire', + x: 6328.557866813957, + y: -2456.4884238812733, + z: -1541.3592603997897, + }, + }, + { + id: '7312', + data: { + label: 'Ortel', + x: 4722.2695413174315, + y: -3249.026359979944, + z: 2809.8063785620698, + }, + }, + { + id: '7311', + data: { + label: 'DeltaKabel', + x: 4623.5321403654325, + y: -3600.646563996022, + z: 3304.414252142918, + }, + }, + { + id: '7313', + data: { + label: 'Elemental Software', + x: 6206.29953735541, + y: -2997.1018460892096, + z: -1646.3136542631592, + }, + }, + { + id: '7310', + data: { + label: 'Remaining Stake of Ignitus', + x: 5034.4190980713765, + y: -3306.4521151338276, + z: 2837.8807618843507, + }, + }, + { + id: '7309', + data: { + label: 'Chromatis Networks', + x: 4854.791609977725, + y: -3526.81982851625, + z: 2526.530017092287, + }, + }, + { + id: '7308', + data: { + label: 'Spring Tide', + x: 4399.374687972096, + y: -3731.4908143278585, + z: 3050.612687994546, + }, + }, + { + id: '7307', + data: { + label: 'Ascend', + x: 4486.322047006938, + y: -3413.197248893044, + z: 3080.4424118731167, + }, + }, + { + id: '7306', + data: { + label: 'Nexabit Networks', + x: 5188.361691046649, + y: -3640.331335197261, + z: 3070.99559358781, + }, + }, + { + id: '7303', + data: { + label: 'Rapid Logic', + x: -3744.574481788671, + y: -1764.2967433899933, + z: -498.88170374427244, + }, + }, + { + id: '7305', + data: { + label: 'Soundlogic', + x: 4457.686423138782, + y: -3506.9584957404268, + z: 2739.630614550679, + }, + }, + { + id: '7304', + data: { + label: 'DiscoverMusic.com', + x: 687.204025212255, + y: -1680.9876518913572, + z: 2813.1070534604346, + }, + }, + { + id: '7302', + data: { + label: 'Computect', + x: 1786.5457812522777, + y: 4442.034414366502, + z: -4082.6427235217952, + }, + }, + { + id: '7301', + data: { + label: 'Logic Solutions', + x: 1623.4699295163475, + y: 4164.199528384374, + z: -4327.20436735949, + }, + }, + { + id: '7300', + data: { + label: 'Quantum Logic Division', + x: 3970.444028059019, + y: -1128.8591531359143, + z: 4672.095990596272, + }, + }, + { + id: '7298', + data: { + label: 'cyberTours', + x: -1907.4235212457163, + y: 2800.0234699163107, + z: 817.3226553911408, + }, + }, + { + id: '7299', + data: { + label: 'Paradux Concepts', + x: 3940.18939623269, + y: -1428.585019752518, + z: 4946.289474105414, + }, + }, + { + id: '7297', + data: { + label: 'LivePerson', + x: 2670.9698916587668, + y: -1143.4732919552828, + z: -1809.7510892610762, + }, + }, + { + id: '7296', + data: { + label: 'Biz Interactive', + x: -1863.3518996701332, + y: 3410.4857866710577, + z: 2033.6580925427868, + }, + }, + { + id: '7295', + data: { + label: 'Litronic', + x: -1846.0846299645887, + y: 3460.6011153015447, + z: 1635.6885121788125, + }, + }, + { + id: '7294', + data: { + label: 'Linuxcare', + x: 6147.330226360921, + y: 601.3568937622601, + z: -1777.8741999151384, + }, + }, + { + id: '7293', + data: { + label: 'TurboLinux', + x: 6097.685906499947, + y: 309.2003242484613, + z: -1463.1707002216745, + }, + }, + { + id: '7292', + data: { + label: 'United System Engineers', + x: -2766.574125203816, + y: 1099.8552351730932, + z: 2115.969260187702, + }, + }, + { + id: '7291', + data: { + label: 'FirePlug Computers', + x: -3296.7511824950184, + y: 1371.3788963850734, + z: 1860.2726921267654, + }, + }, + { + id: '7290', + data: { + label: 'INUP', + x: -2774.4498530968062, + y: 1257.7145898112724, + z: 1735.7664250874673, + }, + }, + { + id: '7289', + data: { + label: 'X-Stream Network', + x: -733.0449536329895, + y: -332.4715810188155, + z: 4223.6285738258075, + }, + }, + { + id: '7287', + data: { + label: 'MoreCom for $561 Million', + x: 6102.3892681152065, + y: 2648.556976960673, + z: 417.10595152367864, + }, + }, + { + id: '7288', + data: { + label: 'Liberty Surf Group S.A.', + x: -398.00362269662514, + y: -108.38374323499775, + z: 4328.155750313074, + }, + }, + { + id: '7286', + data: { + label: 'ICE', + x: 6097.78037579381, + y: 2672.9674491942974, + z: 79.66346223043666, + }, + }, + { + id: '7285', + data: { + label: 'Liberate', + x: 5479.772077526747, + y: 4206.296591793387, + z: 2837.6245944531083, + }, + }, + { + id: '7284', + data: { + label: 'Lernout & Hauspie Speech Products N.V.', + x: -2302.5526783580485, + y: 1742.055760396983, + z: -3720.7449259779587, + }, + }, + { + id: '7283', + data: { + label: 'Legend Lithograph', + x: -1507.5195854718954, + y: 4370.402165967066, + z: 2275.964287356968, + }, + }, + { + id: '7282', + data: { + label: 'On-Site Sourcing', + x: -1373.806528342904, + y: 4177.74446769818, + z: 2607.531521237085, + }, + }, + { + id: '7281', + data: { + label: 'Learning Productions', + x: 611.7677398984699, + y: -1833.2484362087803, + z: 4913.897107706412, + }, + }, + { + id: '7280', + data: { + label: 'Virtual Learning Technologies', + x: -133.17597830353193, + y: 459.38291342920445, + z: 4847.361730498972, + }, + }, + { + id: '7279', + data: { + label: 'Houghton Mifflin', + x: -384.56974369414104, + y: 762.6825940267836, + z: 4795.878619621479, + }, + }, + { + id: '7278', + data: { + label: 'Ed Learning', + x: 546.3039917947037, + y: -5463.879136554292, + z: 1398.9570336202664, + }, + }, + { + id: '7277', + data: { + label: 'BackWire', + x: -971.009767268657, + y: 3230.4014591672176, + z: 3945.0802274110965, + }, + }, + { + id: '7275', + data: { + label: 'DeCompras.com', + x: 5484.285993448028, + y: 563.0754354443034, + z: 4139.149329725355, + }, + }, + { + id: '7276', + data: { + label: 'Chase Telecommunications', + x: -1355.8027935522216, + y: 457.5675375508692, + z: 4630.214317802447, + }, + }, + { + id: '7273', + data: { + label: 'Lawson', + x: 5877.928668537813, + y: -2346.178168730296, + z: -3371.2049286876054, + }, + }, + { + id: '7274', + data: { + label: 'ijob', + x: 401.3672354762909, + y: 5820.4676611916075, + z: 412.239844661827, + }, + }, + { + id: '7272', + data: { + label: 'Intellectual Property', + x: 869.039601989608, + y: -2219.8470080061898, + z: 4400.248140884883, + }, + }, + { + id: '7271', + data: { + label: 'Kurion', + x: -3823.7290218117682, + y: -1618.3984212503658, + z: 841.4821559434106, + }, + }, + { + id: '7270', + data: { + label: 'ISyndicate', + x: -1556.7489290438755, + y: 4653.365992756748, + z: -2039.0096974966561, + }, + }, + { + id: '7269', + data: { + label: 'KPN Mobile', + x: 765.8590406826479, + y: -2007.0066276526172, + z: 3282.912599086777, + }, + }, + { + id: '7268', + data: { + label: 'AnswerLogic', + x: 6833.571634969643, + y: 106.88452682183204, + z: 2183.872259198934, + }, + }, + { + id: '7267', + data: { + label: 'Parallax Solutions', + x: 3235.5655931853785, + y: -2806.0868122444303, + z: -4253.639233090325, + }, + }, + { + id: '7266', + data: { + label: 'Jamison/Gold', + x: 3197.767562594948, + y: -2819.124737702477, + z: -3640.0575443905273, + }, + }, + { + id: '7265', + data: { + label: 'Keane', + x: 3098.824548401814, + y: -2560.076534712597, + z: -3949.8276382701206, + }, + }, + { + id: '7264', + data: { + label: 'Broadbase Software', + x: 4385.32613939411, + y: -1093.4907368138888, + z: -3720.924312808294, + }, + }, + { + id: '7263', + data: { + label: 'Kana Communications', + x: 395.248114719132, + y: 4017.101622791484, + z: -3750.458663798541, + }, + }, + { + id: '7262', + data: { + label: 'NetDialog', + x: 4791.410649294699, + y: -1347.2061429705159, + z: -3038.847115731043, + }, + }, + { + id: '7261', + data: { + label: 'Mustang.com', + x: -1310.8261736097693, + y: -1738.6655943767882, + z: 3325.570841290744, + }, + }, + { + id: '7260', + data: { + label: 'Acuity', + x: -1242.9978956080163, + y: -1150.4254302741633, + z: 3871.0547703596403, + }, + }, + { + id: '7259', + data: { + label: 'AVX', + x: 965.2428789343217, + y: 960.3821872075034, + z: -5086.430926988123, + }, + }, + { + id: '7258', + data: { + label: 'Quest Net', + x: 1309.25240639442, + y: 1133.450109697602, + z: -5190.737110676731, + }, + }, + { + id: '7257', + data: { + label: 'Millennium', + x: 3620.2668025339526, + y: -2630.2941528395622, + z: -265.70751148193983, + }, + }, + { + id: '7256', + data: { + label: 'QuadraMed', + x: 3547.316809557213, + y: -2999.95000128167, + z: -526.8462005491465, + }, + }, + { + id: '7255', + data: { + label: 'StreamMagic', + x: 65.68071860366857, + y: -955.0261126155905, + z: 4782.513997973284, + }, + }, + { + id: '7254', + data: { + label: 'Qsound Labs', + x: 380.11324119466275, + y: -720.7015695871951, + z: 4958.754648851916, + }, + }, + { + id: '7253', + data: { + label: 'ProxiNet', + x: 1417.7849308683217, + y: 4662.10871095579, + z: -2870.3461274301862, + }, + }, + { + id: '7252', + data: { + label: 'Puma Technology', + x: -295.231280765752, + y: -3536.741399925412, + z: -4301.527810824634, + }, + }, + { + id: '7251', + data: { + label: 'Chinas Markets', + x: 3728.746876570522, + y: 2712.57614567201, + z: 4309.704095188795, + }, + }, + { + id: '7250', + data: { + label: 'Readers Digest', + x: 3639.874317462238, + y: 2448.032835692716, + z: 4601.5023698301, + }, + }, + { + id: '7249', + data: { + label: 'InterActive Public Relations', + x: 403.8153063157103, + y: -442.51548571109595, + z: 4396.037691858438, + }, + }, + { + id: '7248', + data: { + label: 'GETGO', + x: 238.48057728484633, + y: -717.1104030359002, + z: 4067.2146903045204, + }, + }, + { + id: '7247', + data: { + label: 'Teklogix', + x: 643.9963281981574, + y: -1818.6162557884202, + z: 5233.831915981648, + }, + }, + { + id: '7245', + data: { + label: 'PSINet Assets', + x: 1925.216781240435, + y: -3899.1958755437568, + z: -3955.94195240568, + }, + }, + { + id: '7246', + data: { + label: 'Psion', + x: 589.0310559591411, + y: -1446.463222570544, + z: 5360.550671345549, + }, + }, + { + id: '7243', + data: { + label: 'iLatin Holdings', + x: 1089.6424808097163, + y: -3082.0564230055625, + z: 3282.628308623123, + }, + }, + { + id: '7244', + data: { + label: 'GTCR Golder Rauner', + x: 2291.2534595175784, + y: -3963.949219021744, + z: -3793.3389201996038, + }, + }, + { + id: '7242', + data: { + label: 'Zebra.Net', + x: 1531.7266816567567, + y: -3177.6967747185267, + z: 3057.382333653136, + }, + }, + { + id: '7241', + data: { + label: 'Telepath', + x: 1393.3695340238505, + y: -3137.5634265547133, + z: 3310.2310477996593, + }, + }, + { + id: '7240', + data: { + label: 'Metamor Worldwide', + x: 1504.778892532844, + y: -2351.2576536342713, + z: 3490.2219641946795, + }, + }, + { + id: '7236', + data: { + label: 'Internet Network Technologies', + x: 1159.0735704250742, + y: -2502.5779104789563, + z: 2736.0454269384722, + }, + }, + { + id: '7238', + data: { + label: 'Ciberia Internet', + x: 1512.0848494252596, + y: -3078.231637594148, + z: 2764.752892975765, + }, + }, + { + id: '7239', + data: { + label: 'Circadence', + x: 1129.8312637157749, + y: -3152.100067617701, + z: 2822.4373213090876, + }, + }, + { + id: '7237', + data: { + label: 'Infase Comunicaciones', + x: 880.9870056505869, + y: -2732.14454310839, + z: 2951.973081148261, + }, + }, + { + id: '7235', + data: { + label: 'Brazillian ISP', + x: 1407.7216154657156, + y: -2597.5018846450416, + z: 3444.4389691285496, + }, + }, + { + id: '7234', + data: { + label: 'Canadian ISP', + x: 1247.378629175312, + y: -2921.7562843389555, + z: 3467.7374383354586, + }, + }, + { + id: '7233', + data: { + label: 'Netgate', + x: 1214.8028853826347, + y: -3207.628842928843, + z: 3061.192095012202, + }, + }, + { + id: '7232', + data: { + label: 'CPSSource.com', + x: 1718.9013309303994, + y: -3008.339017168156, + z: 3123.4541617204663, + }, + }, + { + id: '7231', + data: { + label: 'Pro BV', + x: 1131.0833180390314, + y: 1924.3936637880806, + z: -5165.941071287461, + }, + }, + { + id: '7230', + data: { + label: 'ECSoft', + x: 1043.2090634071712, + y: 2218.0816873287663, + z: -4896.104855916206, + }, + }, + { + id: '7229', + data: { + label: 'Adhoc Group', + x: -2780.9435242249183, + y: 456.2398776877501, + z: 3190.3543221831815, + }, + }, + { + id: '7228', + data: { + label: 'Proxicom', + x: 5228.580661066358, + y: 3287.471565502289, + z: 3756.8762426970716, + }, + }, + { + id: '7227', + data: { + label: 'Proxicom Software', + x: -2985.950590679837, + y: 119.72245639135764, + z: 3294.530153540131, + }, + }, + { + id: '7225', + data: { + label: 'AV Projector Depot', + x: 441.82532634833274, + y: 5902.540488976186, + z: 993.5669778726021, + }, + }, + { + id: '7226', + data: { + label: 'Well Engaged', + x: -2760.213957668676, + y: 216.7732750836176, + z: 3617.9210113682407, + }, + }, + { + id: '7224', + data: { + label: 'Global Imaging', + x: 365.5950858722906, + y: 6163.763435610364, + z: 686.3625963756992, + }, + }, + { + id: '7223', + data: { + label: 'Pro2Net', + x: 6210.046642951246, + y: 3326.612930254826, + z: 1989.2413210000743, + }, + }, + { + id: '7222', + data: { + label: 'KeepSmart', + x: 6405.24059202288, + y: 3402.5801325046077, + z: 1641.7810771388413, + }, + }, + { + id: '7221', + data: { + label: 'Advis', + x: 5479.899198531615, + y: -525.0218512149855, + z: -3627.407976614818, + }, + }, + { + id: '7219', + data: { + label: 'Primis', + x: 60.68414394211383, + y: -3940.531664974393, + z: 2890.5705252539146, + }, + }, + { + id: '7220', + data: { + label: 'The Appraisal', + x: 4726.87017000963, + y: -3951.3766129152823, + z: -87.60568891083814, + }, + }, + { + id: '7218', + data: { + label: 'Creating Keepsakes', + x: 4859.722922255155, + y: -1527.5968782404952, + z: 3087.510268165579, + }, + }, + { + id: '7217', + data: { + label: 'gURL.com Assets', + x: 4417.455748334858, + y: -1911.7624562755364, + z: 2579.5918633380184, + }, + }, + { + id: '7215', + data: { + label: 'eStyle', + x: -929.5593117420414, + y: 5300.238240084359, + z: 1218.4354515821901, + }, + }, + { + id: '7214', + data: { + label: 'Juno', + x: 4356.26111337329, + y: 3201.3067400358186, + z: -4114.089325832703, + }, + }, + { + id: '7213', + data: { + label: 'Netdive', + x: 3067.0402443610433, + y: 5890.793804517942, + z: -2064.0736989097354, + }, + }, + { + id: '7212', + data: { + label: 'SDL', + x: -1410.3873622655663, + y: 3593.9776673512383, + z: 197.13879752842558, + }, + }, + { + id: '7211', + data: { + label: 'Jamcracker', + x: 1028.0259148421385, + y: 1022.2628133614379, + z: -2529.2386982229236, + }, + }, + { + id: '7209', + data: { + label: 'ITXC', + x: 4750.872714004155, + y: -3249.653716840286, + z: 3111.3721784634363, + }, + }, + { + id: '7210', + data: { + label: 'EFusion', + x: 4720.787612318274, + y: -2867.9138165659247, + z: 3280.321684690969, + }, + }, + { + id: '7208', + data: { + label: 'ITnet', + x: 123.72439874379026, + y: 1555.1584304641187, + z: 4819.804120168203, + }, + }, + { + id: '7207', + data: { + label: 'Wind', + x: 273.345614748667, + y: 1179.4771502495935, + z: 4865.39360407071, + }, + }, + { + id: '7206', + data: { + label: 'True North Communications', + x: 901.4681907484398, + y: 665.5372795523434, + z: -4697.390975208998, + }, + }, + { + id: '7205', + data: { + label: 'Netfish Technologies in All-Stock Transaction', + x: 2542.6384607185196, + y: -2644.675513073242, + z: -4147.944970581652, + }, + }, + { + id: '7204', + data: { + label: 'IONA', + x: 2661.592791524049, + y: -3018.030760188593, + z: -3864.625497481948, + }, + }, + { + id: '7203', + data: { + label: 'TAASC', + x: 830.9535701194126, + y: -1931.902916421902, + z: 910.24065572488, + }, + }, + { + id: '7202', + data: { + label: 'Venture Finance Software', + x: 613.3970895370571, + y: -1582.8001269571798, + z: 859.4569889158121, + }, + }, + { + id: '7201', + data: { + label: 'EmployeeMatters', + x: 1007.3274765743668, + y: -1953.4485109193615, + z: 1015.715093770265, + }, + }, + { + id: '7200', + data: { + label: 'SecureTax.Com', + x: 804.7948153809974, + y: -1795.9772723344067, + z: 502.2225460028857, + }, + }, + { + id: '7199', + data: { + label: 'Quicken Loans', + x: 968.7208204548836, + y: -2012.6451823102116, + z: 684.6096099798601, + }, + }, + { + id: '7198', + data: { + label: 'Janus', + x: -1892.5835030102612, + y: -3335.2376272113515, + z: -2394.55217182125, + }, + }, + { + id: '7197', + data: { + label: 'Internet Image', + x: -1463.7799899534937, + y: -2990.7767026849106, + z: -2935.45268671152, + }, + }, + { + id: '7196', + data: { + label: 'BITSource', + x: -1711.5408072169744, + y: -2673.255009233377, + z: -2790.9127905937103, + }, + }, + { + id: '7195', + data: { + label: 'Intraware', + x: -1732.3484012453207, + y: -3049.9190317203065, + z: -2637.186242793495, + }, + }, + { + id: '7194', + data: { + label: 'Ajuba Solutions', + x: 3076.3315574858025, + y: 4016.9569478724757, + z: 2631.852775762701, + }, + }, + { + id: '7193', + data: { + label: 'Metacode', + x: 3091.4398338088486, + y: 4244.098597982781, + z: 2355.687156371392, + }, + }, + { + id: '7190', + data: { + label: 'Star+Globe Technologies', + x: 2612.6373444881197, + y: 4272.5051724173945, + z: 3495.0445953178173, + }, + }, + { + id: '7188', + data: { + label: 'MediCredit', + x: -2126.2095345714315, + y: 4567.044592498215, + z: -1064.6718650566188, + }, + }, + { + id: '7192', + data: { + label: 'InterTrust Technologies', + x: -1537.075855638585, + y: -4655.1585095401115, + z: 496.5187192368406, + }, + }, + { + id: '7191', + data: { + label: 'SiCom', + x: 2984.238938186886, + y: 4846.032473592367, + z: 3602.2935607958975, + }, + }, + { + id: '7189', + data: { + label: 'LanguageWare.net', + x: 2498.9664035340866, + y: 4473.658290785618, + z: 3161.9159101736595, + }, + }, + { + id: '7186', + data: { + label: 'HR Sites International', + x: 4316.723994889418, + y: 2003.1311320830876, + z: 235.83462990303963, + }, + }, + { + id: '7187', + data: { + label: 'Medstone', + x: -2265.2554335425457, + y: 4633.016919428421, + z: -691.5010362178324, + }, + }, + { + id: '7185', + data: { + label: 'Copyright Control Services', + x: -1896.8535042735205, + y: 3351.983943283695, + z: -1828.6081168644803, + }, + }, + { + id: '7184', + data: { + label: 'Sunhawk.com', + x: -1747.1608399720426, + y: 3277.2471686580075, + z: -1458.66232577973, + }, + }, + { + id: '7183', + data: { + label: 'Thinking Machines Unit', + x: 6194.836183166183, + y: 3089.9543981013458, + z: -225.33510290522858, + }, + }, + { + id: '7182', + data: { + label: 'ValueVision International', + x: 2511.7635441485463, + y: -1566.0114382500344, + z: -1614.8052502163655, + }, + }, + { + id: '7180', + data: { + label: 'Xircom', + x: 2241.122386333777, + y: 54.61362821973915, + z: -2907.3847083061646, + }, + }, + { + id: ' INC.', + data: { + label: 'INTERLAND', + x: 5085.4406384509975, + y: -3882.3064188787453, + z: -2548.6633959168225, + }, + }, + { + id: '7179', + data: { + label: 'ICP vortex', + x: 2236.101865710271, + y: 552.8259894429382, + z: -3134.7283717112123, + }, + }, + { + id: '7178', + data: { + label: 'Maker Communications', + x: -3916.4122192819, + y: 73.76690086512714, + z: 658.0983796697878, + }, + }, + { + id: '7177', + data: { + label: 'Conextant', + x: -3686.9179985097603, + y: -50.08762806534046, + z: 352.5107344528967, + }, + }, + { + id: '7176', + data: { + label: 'Zimba', + x: 1590.6884384104794, + y: 5443.592360144933, + z: -1397.9388095187087, + }, + }, + { + id: '7175', + data: { + label: 'ServNet Servicos de Informatica e Communicacao', + x: 957.5965412015515, + y: -2988.9832235629306, + z: 2937.6432755527794, + }, + }, + { + id: '7174', + data: { + label: 'PhyNet', + x: -2181.5186607274304, + y: 1583.9966369072026, + z: 3456.9320049061403, + }, + }, + { + id: '7173', + data: { + label: 'Infocrossing', + x: -1188.613432994802, + y: -2620.07412193416, + z: -3358.7817050300787, + }, + }, + { + id: '7172', + data: { + label: 'Kennedy-Wilson', + x: -995.3382562314467, + y: -2522.4807255666497, + z: -3705.359280625465, + }, + }, + { + id: '7171', + data: { + label: 'Dexton Information Systems', + x: -2017.6989296349686, + y: -2361.719200922428, + z: 1563.367318072974, + }, + }, + { + id: '7170', + data: { + label: 'Infinium', + x: -1905.0011019618046, + y: -2607.7389593227326, + z: 1262.022936529389, + }, + }, + { + id: '7169', + data: { + label: 'Verix Software', + x: 1915.32249176725, + y: 5994.620252233867, + z: -568.6257198999714, + }, + }, + { + id: '7168', + data: { + label: 'Ehlis Commercial/Industrial Auctions', + x: 3211.171427141068, + y: 2987.439950969817, + z: 4543.594285341024, + }, + }, + { + id: '7167', + data: { + label: 'AbleAuctions.com', + x: 3252.975220561974, + y: 2736.0516415990933, + z: 4860.794005662574, + }, + }, + { + id: '7166', + data: { + label: 'CO Space', + x: 362.33496136933115, + y: -1160.1540719066757, + z: -537.4521772030815, + }, + }, + { + id: '7165', + data: { + label: 'InterNap', + x: 4088.1408110354164, + y: 2560.836817402856, + z: -4955.482202751687, + }, + }, + { + id: '7164', + data: { + label: 'VPNX.com', + x: 512.8822236272284, + y: -1225.8972944437774, + z: -790.6993168163494, + }, + }, + { + id: '7163', + data: { + label: 'InterNAP', + x: -3363.633768576921, + y: -1379.4829910160452, + z: -2143.4628743872277, + }, + }, + { + id: '7162', + data: { + label: 'Inow', + x: 1864.008439479964, + y: 1912.7457477616308, + z: -4078.5138114935608, + }, + }, + { + id: '7161', + data: { + label: 'ImaginOn', + x: 1705.9866175309053, + y: 2213.467689183875, + z: -3843.8124416375754, + }, + }, + { + id: '7160', + data: { + label: 'Chen & McGinley', + x: 5641.399030437653, + y: 2569.686035061597, + z: 3312.7337252092343, + }, + }, + { + id: '7159', + data: { + label: 'Mastech', + x: 5550.596829361424, + y: 2417.7508655454403, + z: 3679.002442520654, + }, + }, + { + id: '7157', + data: { + label: 'Icon Medialab', + x: 425.78934481584423, + y: 4733.7285596717375, + z: 3034.6032159867405, + }, + }, + { + id: '7158', + data: { + label: 'Nexus', + x: 597.3887148539566, + y: 1252.9249800926227, + z: -4513.206379558607, + }, + }, + { + id: '7156', + data: { + label: 'Arakno and Intergate', + x: 395.80539671005005, + y: 937.0807553289422, + z: -4523.6100339348395, + }, + }, + { + id: '7155', + data: { + label: 'Icon Medialab International', + x: -1332.0525853502515, + y: -4345.450918501224, + z: -1847.8898720650707, + }, + }, + { + id: '7154', + data: { + label: 'Icon Medialab International AB', + x: 345.5364379802684, + y: 1196.4646595647544, + z: -4185.204814033224, + }, + }, + { + id: '7153', + data: { + label: 'Digital Fusion', + x: -568.1524479344662, + y: 3617.71243098269, + z: -2227.1745846868057, + }, + }, + { + id: '7152', + data: { + label: 'Jaguar Systems', + x: 265.10138140017335, + y: -1360.5847485954441, + z: 5433.73101748325, + }, + }, + { + id: '7151', + data: { + label: 'PriceInteractive for $50 Million', + x: 3029.900792489058, + y: -2279.4190411782843, + z: 4578.367284388585, + }, + }, + { + id: '7150', + data: { + label: 'iBasis', + x: 2746.590846797688, + y: -2175.1119963483934, + z: 4321.722860343383, + }, + }, + { + id: '7149', + data: { + label: 'Internet Communications', + x: -2274.0752289370457, + y: 3196.150516577026, + z: -1618.3034384113757, + }, + }, + { + id: '7148', + data: { + label: 'RMI.net', + x: 1512.1086909981823, + y: -3817.0692518262435, + z: -3948.7419587749823, + }, + }, + { + id: '7147', + data: { + label: 'Tiscali S.p.A.', + x: 3121.113981788068, + y: 1057.5941475306245, + z: -2380.0033005777045, + }, + }, + { + id: '7146', + data: { + label: 'Systeam S.p.A.', + x: 4042.2126841275103, + y: -1445.4699449747409, + z: 4240.068049740153, + }, + }, + { + id: '7145', + data: { + label: 'Coyote Network Systems', + x: 3887.9914249435196, + y: -1651.0090242957347, + z: 4549.658508499938, + }, + }, + { + id: '7143', + data: { + label: 'I-many', + x: 4102.944022421877, + y: -4241.336704030323, + z: -2331.6975664288616, + }, + }, + { + id: '7144', + data: { + label: 'Vintage Software', + x: 3759.2362774653134, + y: -4257.581893751263, + z: -2118.9223215929283, + }, + }, + { + id: '7142', + data: { + label: 'I-Link', + x: 2725.213457307366, + y: -1760.7155133416334, + z: 4967.211726314877, + }, + }, + { + id: '7141', + data: { + label: 'Red Cube', + x: 2419.227605921819, + y: -1695.8512915296142, + z: 4718.925724042584, + }, + }, + { + id: '7140', + data: { + label: 'Hybrid', + x: 5690.582269454606, + y: 2315.184616653021, + z: 4019.9162644501125, + }, + }, + { + id: '7139', + data: { + label: 'ConnecTech', + x: 5444.9018219884265, + y: 2096.0083260124093, + z: 4263.80562129349, + }, + }, + { + id: '7138', + data: { + label: 'PC DOCS', + x: -1863.9482877365524, + y: -631.0681072524776, + z: -4039.2877334696086, + }, + }, + { + id: '7137', + data: { + label: 'Hummingbird', + x: -1751.4424116351126, + y: -314.1161530898254, + z: -3819.875367238587, + }, + }, + { + id: '7135', + data: { + label: 'Onyx Technologies', + x: 4574.846673955626, + y: 4146.7641676066605, + z: 2089.354336044846, + }, + }, + { + id: '7136', + data: { + label: 'Netzee', + x: 3353.0247550940367, + y: -3480.6246826414203, + z: -3705.544861640989, + }, + }, + { + id: '7134', + data: { + label: 'Aptex', + x: 4188.18185855466, + y: 4404.900932400169, + z: 2112.706416389196, + }, + }, + { + id: '7133', + data: { + label: 'HNC', + x: 5129.586424303193, + y: 2792.7209099830734, + z: 4139.723999130066, + }, + }, + { + id: '7132', + data: { + label: 'Bluestone Software', + x: 6367.988800566498, + y: -602.8470545532615, + z: 1854.6968567312874, + }, + }, + { + id: '7131', + data: { + label: 'Health Management Systems Division', + x: 815.6613239040732, + y: 3355.032537684056, + z: -2836.1613465251003, + }, + }, + { + id: '7130', + data: { + label: 'Medi.com', + x: 907.5834366105572, + y: 3756.0475035239565, + z: -2841.344191915118, + }, + }, + { + id: '7128', + data: { + label: 'Cohen Systems', + x: 2089.538282267379, + y: 1587.7222446109997, + z: 4905.7337319217495, + }, + }, + { + id: '7129', + data: { + label: 'Sapient Health Network', + x: 2912.5693713525993, + y: 399.5611290366001, + z: -1819.1876066216903, + }, + }, + { + id: '7127', + data: { + label: 'OptiCare Health Systems', + x: 2161.1459678008982, + y: 1311.6903315643729, + z: 5193.071841249514, + }, + }, + { + id: '7126', + data: { + label: 'Wavtrace', + x: 2052.018726616653, + y: 4020.52828881717, + z: -3329.1507298626634, + }, + }, + { + id: '7125', + data: { + label: 'Indice Multimedia', + x: 3808.210365078097, + y: -2858.646976360236, + z: -1738.2697962157422, + }, + }, + { + id: '7124', + data: { + label: 'Saatchi & Saatchi', + x: -635.0995204988917, + y: -22.8298043048322, + z: -4047.636901532083, + }, + }, + { + id: '7123', + data: { + label: 'Publicis Groupe S.A.', + x: -959.3729938419382, + y: -49.37415963708108, + z: -3774.8357016776345, + }, + }, + { + id: '7122', + data: { + label: 'GTR Group Inventory', + x: 2369.9056240765212, + y: -3085.7110057829127, + z: -3745.54312406228, + }, + }, + { + id: '7121', + data: { + label: 'GameStop', + x: 2505.308038766947, + y: -3033.655396122244, + z: -3374.3457007969055, + }, + }, + { + id: '7120', + data: { + label: 'Green Witch', + x: 5569.984468267054, + y: 2765.9055982520536, + z: 1979.7952781222898, + }, + }, + { + id: '7119', + data: { + label: 'FRx', + x: 2800.377227325834, + y: 454.5701926411661, + z: -1312.8205184497047, + }, + }, + { + id: '7118', + data: { + label: 'Great Plains', + x: -2489.896200004577, + y: -2021.353340574722, + z: -3414.4130919552094, + }, + }, + { + id: '7117', + data: { + label: 'NetFile', + x: 3135.669476744373, + y: 2249.859822758938, + z: -4295.003757952566, + }, + }, + { + id: '7116', + data: { + label: 'Grassroots.com', + x: 3524.310232681002, + y: 2338.9211147690107, + z: -4283.153172345288, + }, + }, + { + id: '7115', + data: { + label: 'GrapeVine for iPlanet', + x: 909.0927130728414, + y: -5442.388499696975, + z: 651.9976403593005, + }, + }, + { + id: '7114', + data: { + label: 'Deja.com', + x: 3792.864945894242, + y: 5228.973266674718, + z: -1974.5526342897408, + }, + }, + { + id: '7113', + data: { + label: 'Google', + x: 3962.4537846552353, + y: 5575.23812510303, + z: -1831.7741211371665, + }, + }, + { + id: '7112', + data: { + label: 'Golf.com', + x: 2379.619821662846, + y: -777.9349170757853, + z: -725.9582826976549, + }, + }, + { + id: '7111', + data: { + label: 'Quokka', + x: -483.0791706038327, + y: -3758.2990156823503, + z: -2701.4828235175987, + }, + }, + { + id: '7107', + data: { + label: 'Flash Creative', + x: -1048.65581805896, + y: 3143.0793003327644, + z: -2886.0311843629424, + }, + }, + { + id: '7110', + data: { + label: 'Greek ISP', + x: -2836.186271947095, + y: 2102.975183825339, + z: -2422.930446596343, + }, + }, + { + id: '7109', + data: { + label: 'Israeli ISP', + x: -2516.4579966313477, + y: 2330.4442519741287, + z: -2510.1270068972062, + }, + }, + { + id: '7108', + data: { + label: 'Wynd Communications', + x: -1283.2923205409443, + y: 3359.362141081248, + z: -2258.027230687915, + }, + }, + { + id: '7106', + data: { + label: 'GoAmerica', + x: -1324.1553768388794, + y: 3121.0694895957304, + z: -2583.5759103139976, + }, + }, + { + id: '7105', + data: { + label: 'Go2Net', + x: -2368.6444742424173, + y: -3188.352020893107, + z: 2122.8352694427804, + }, + }, + { + id: '7104', + data: { + label: 'Infospace', + x: -128.5937153587599, + y: -4044.090612656383, + z: -2708.384289272738, + }, + }, + { + id: '7102', + data: { + label: 'Hotel Reservation Network', + x: -624.9780461132437, + y: 1379.2703410359823, + z: -4515.513430358677, + }, + }, + { + id: '7103', + data: { + label: 'TravelNow.com', + x: -704.3560524215746, + y: 1166.0699378124345, + z: -4864.874173934778, + }, + }, + { + id: '7101', + data: { + label: 'interLAN', + x: 5638.135499869659, + y: 4391.292855910953, + z: -618.2993142756308, + }, + }, + { + id: '7099', + data: { + label: 'Home Financial Network', + x: -1433.7156231221284, + y: 5279.955953661103, + z: 11.65163230493657, + }, + }, + { + id: '7100', + data: { + label: 'Network Systems', + x: 5679.104070080126, + y: 4372.362419786348, + z: -214.3049757516157, + }, + }, + { + id: '7098', + data: { + label: 'NorthPoint Communications Group', + x: 7261.081297963703, + y: -1010.9503067558352, + z: -1272.2756324219752, + }, + }, + { + id: '7097', + data: { + label: 'Network Plus', + x: 7146.588772980406, + y: -725.7782606694379, + z: -1572.1840163446884, + }, + }, + { + id: '7096', + data: { + label: 'Financial Services Provider Network', + x: 5327.859065676002, + y: 3451.6284174472194, + z: 2910.1794380526458, + }, + }, + { + id: '7095', + data: { + label: 'Pacific Softworks', + x: 5056.635446285647, + y: 3199.201558132142, + z: 3085.8206694763294, + }, + }, + { + id: '7094', + data: { + label: 'iCompression', + x: -2385.1686019694857, + y: 1036.1431191533127, + z: -3315.388327303344, + }, + }, + { + id: ' Universal Online', + data: { + label: 'Globalcom', + x: 332.86544574602755, + y: 3803.627286091718, + z: 4503.141592728493, + }, + }, + { + id: '7092', + data: { + label: 'Global Villager', + x: 3586.9762876934365, + y: 3041.942121156729, + z: -3185.79241507882, + }, + }, + { + id: '7091', + data: { + label: 'Donia Telecom', + x: 2557.2084310253526, + y: 4466.54215801519, + z: -71.33801242958046, + }, + }, + { + id: '7090', + data: { + label: 'Gemtron', + x: 4441.611044681531, + y: -723.0866064681042, + z: -4213.9445737042015, + }, + }, + { + id: '7089', + data: { + label: 'EVision USA.com', + x: 4602.289374250224, + y: -554.2211205364948, + z: -3883.201497175691, + }, + }, + { + id: '8248', + data: { + label: 'ViewSoft', + x: -2431.6516720041323, + y: -2130.3874162000047, + z: 957.5065412444641, + }, + }, + { + id: '7086', + data: { + label: 'Global Link', + x: 1737.3896383127892, + y: -2624.8031639140395, + z: 3238.176966254187, + }, + }, + { + id: '7088', + data: { + label: 'Global Serve', + x: 6655.283934943745, + y: -5.566520821793366, + z: 2472.5499892432017, + }, + }, + { + id: '7085', + data: { + label: 'Solista Global', + x: 1368.4619880691048, + y: -4210.083317950122, + z: -3941.7758339353154, + }, + }, + { + id: '7084', + data: { + label: 'Gartner Group', + x: 1424.3753834114339, + y: -4028.0795828039873, + z: -4307.654916775255, + }, + }, + { + id: '7083', + data: { + label: 'NECX', + x: 7428.362129204249, + y: 1261.3523795127044, + z: 2123.9998542978087, + }, + }, + { + id: '7081', + data: { + label: 'Peoplesound', + x: -158.33294839938253, + y: -1650.063382090931, + z: 5056.002480990669, + }, + }, + { + id: '7082', + data: { + label: 'Gateway', + x: 6381.806530044436, + y: -1235.134681907032, + z: 5.876022980477659, + }, + }, + { + id: '7080', + data: { + label: 'Vitaminic', + x: 46.37158360097765, + y: -1956.6794496423076, + z: 5215.617810354714, + }, + }, + { + id: '7079', + data: { + label: 'Part of Uralrelcom', + x: 4135.0697720119015, + y: -4172.801947855374, + z: 1943.3880972179288, + }, + }, + { + id: '7077', + data: { + label: 'Interedge', + x: -626.033102890028, + y: -4045.779748594262, + z: 1863.8167626591137, + }, + }, + { + id: '7078', + data: { + label: 'rStar', + x: 3716.6074592949267, + y: 3115.5165646045525, + z: 3957.742680630365, + }, + }, + { + id: '7076', + data: { + label: 'Getronics', + x: -950.1511496362026, + y: -3916.0951843826724, + z: 2074.8192817949393, + }, + }, + { + id: '7075', + data: { + label: 'Amazon.com', + x: -796.5598349613322, + y: 3592.5967650018283, + z: -3202.972814103563, + }, + }, + { + id: '7074', + data: { + label: 'ebi Solutions', + x: -2743.4062262323687, + y: 3863.435512861937, + z: -951.6476555692367, + }, + }, + { + id: '7073', + data: { + label: 'Gentia Software', + x: -2609.345394226122, + y: 3936.9436079756306, + z: -1324.2659777833333, + }, + }, + { + id: '7071', + data: { + label: 'DRS Technologies', + x: 3940.862665665614, + y: -3636.9978360270716, + z: 3497.993244420003, + }, + }, + { + id: '7072', + data: { + label: 'General Atronics', + x: 4023.2310297871923, + y: -3284.282174840235, + z: 3676.218026576864, + }, + }, + { + id: '7070', + data: { + label: 'CyberRamp', + x: 5911.411912953672, + y: -709.5212837538953, + z: 324.32027778426817, + }, + }, + { + id: '7069', + data: { + label: 'NeoSoft', + x: 6011.050355399121, + y: -840.2790290204343, + z: -108.38226362786335, + }, + }, + { + id: '7068', + data: { + label: 'Avenel Ventures', + x: -507.4494789837277, + y: -3019.5985557236004, + z: -1464.6688387266333, + }, + }, + { + id: '7067', + data: { + label: 'EResource Capital', + x: 4067.7084624692134, + y: -3697.163164614324, + z: -3110.545749017193, + }, + }, + { + id: '7065', + data: { + label: 'ICG', + x: -1973.471280438438, + y: -1844.7853725783875, + z: 3237.483537210046, + }, + }, + { + id: '7066', + data: { + label: 'eMarket Capital', + x: 1722.8981637279235, + y: -945.8595324579136, + z: -778.4929282443873, + }, + }, + { + id: '7064', + data: { + label: 'SPP Capital', + x: 4860.3538770778305, + y: 1781.4023514639464, + z: -3764.7661989060334, + }, + }, + { + id: '7063', + data: { + label: 'OffRoad Capital', + x: 5158.957181841098, + y: 1812.6647321740393, + z: -3488.1609251795276, + }, + }, + { + id: '7062', + data: { + label: 'Lipstream Networks', + x: 1563.9540273926334, + y: 5417.758304215579, + z: 2334.082380556179, + }, + }, + { + id: '7061', + data: { + label: 'Sequoia Capital', + x: 1357.636500414562, + y: 5113.396615892787, + z: 2497.1838280192565, + }, + }, + { + id: '7060', + data: { + label: 'Logisoft', + x: -888.1851061891588, + y: -2701.1286180847405, + z: -2023.8346214152716, + }, + }, + { + id: '7059', + data: { + label: 'Internet Connection Services', + x: 3432.552343506196, + y: 1021.3276030008738, + z: 3642.8332874894336, + }, + }, + { + id: '7058', + data: { + label: 'Tanknology-NDE Internationals Outbound Services Group', + x: -437.23984714615057, + y: 2121.52822261803, + z: -4226.196953471111, + }, + }, + { + id: '7057', + data: { + label: 'Comfort Systems USA', + x: -170.59582287756996, + y: 1842.3610985532057, + z: -4323.518631149954, + }, + }, + { + id: '7056', + data: { + label: 'Guru.com', + x: 3254.367653263585, + y: 2923.630881814648, + z: 3894.855605251535, + }, + }, + { + id: '7055', + data: { + label: 'Greylock', + x: 3046.5107861206657, + y: 2649.385276086333, + z: 4110.183568373161, + }, + }, + { + id: '7054', + data: { + label: 'ComStar.net', + x: 6083.521323036295, + y: 4033.058514843707, + z: 305.2810355471039, + }, + }, + { + id: '7051', + data: { + label: 'Gauss', + x: 4449.62406643821, + y: -2757.5250281700814, + z: -2956.6933790249914, + }, + }, + { + id: '7053', + data: { + label: 'Globix', + x: 5775.57009083963, + y: 4221.224934540566, + z: 471.09665960164205, + }, + }, + { + id: '7052', + data: { + label: '2CK', + x: 4556.241891836766, + y: -2994.9576172106067, + z: -2640.239875622332, + }, + }, + { + id: '7049', + data: { + label: 'US Home & Garden', + x: -850.48253359633, + y: 582.4091550217001, + z: 4593.707701873119, + }, + }, + { + id: '7050', + data: { + label: 'E Garden and Gardenside', + x: -1168.1382647101927, + y: 408.63780951333086, + z: 4392.435039332222, + }, + }, + { + id: '7048', + data: { + label: 'SPACE.com', + x: 2277.480569582804, + y: -2720.1569555009396, + z: -1428.6834430153185, + }, + }, + { + id: '7047', + data: { + label: 'Gannett Co.', + x: 5173.251626711899, + y: 812.6262045882758, + z: -4518.706965623129, + }, + }, + { + id: '7044', + data: { + label: 'TRIP.com', + x: 676.6974361406861, + y: 5496.624076845374, + z: 2907.16237768274, + }, + }, + { + id: '8259', + data: { + label: 'ATU Communications', + x: 5082.560627504981, + y: 4849.9995678067235, + z: 2384.037560181648, + }, + }, + { + id: '7045', + data: { + label: 'Xcelerate', + x: 6339.748582650024, + y: 3631.794969369777, + z: 1008.1175814820461, + }, + }, + { + id: '7046', + data: { + label: 'e-game', + x: 6033.6403897162845, + y: 3727.487479899007, + z: 1250.753010062459, + }, + }, + { + id: '7043', + data: { + label: 'Destinations.com', + x: 129.61087921509053, + y: 2265.3368159052047, + z: -3243.4026903241297, + }, + }, + { + id: '7042', + data: { + label: 'Galileo', + x: -1366.7384259058178, + y: -3958.7815523214417, + z: 2511.5773236181744, + }, + }, + { + id: '7041', + data: { + label: 'SmartSAN Systems For $23.5 Million', + x: 3718.2787948802124, + y: 759.5072571620774, + z: 5117.629713853371, + }, + }, + { + id: '7040', + data: { + label: 'Future Networks for $181 Million', + x: 74.15406383774473, + y: -2457.607643273233, + z: -4295.040852285046, + }, + }, + { + id: '7039', + data: { + label: 'Brasilnet', + x: 635.1633329531006, + y: -3619.6220648337953, + z: 1242.4083699787384, + }, + }, + { + id: '7038', + data: { + label: 'Panaweb', + x: 414.6440804508051, + y: -3430.336464111006, + z: 871.2449571399936, + }, + }, + { + id: '7037', + data: { + label: 'the Cash Management Arm of Sterling Commerce', + x: 4979.957477686688, + y: -3182.3597886017537, + z: -2492.6312816038944, + }, + }, + { + id: '7036', + data: { + label: 'Infomentum', + x: 3058.9922650787976, + y: -2777.168846886339, + z: 5044.603963507982, + }, + }, + { + id: '7035', + data: { + label: 'Frontstep', + x: 2679.8791378142064, + y: -2707.1116219125943, + z: 5174.302169916277, + }, + }, + { + id: '7034', + data: { + label: 'ThePressRoom', + x: 1269.0985405572346, + y: -5812.457841551104, + z: 443.8840561185294, + }, + }, + { + id: '7033', + data: { + label: 'First Street', + x: 1526.0637799929953, + y: -5703.7778384289395, + z: 77.73568539764105, + }, + }, + { + id: '7031', + data: { + label: 'Interactive Gallery', + x: 4007.278974677069, + y: 4145.540233866045, + z: -2956.5995316983312, + }, + }, + { + id: '7032', + data: { + label: 'WebPrime', + x: 1714.0513978290824, + y: -5895.914206097194, + z: -74.72561539423243, + }, + }, + { + id: '7027', + data: { + label: 'Loudcloud', + x: 158.38917863216844, + y: 2083.8509445457926, + z: -4085.865951589169, + }, + }, + { + id: '7030', + data: { + label: 'New Frontier', + x: 3701.01641328123, + y: 3890.7359531531733, + z: -3010.8398274148312, + }, + }, + { + id: '7028', + data: { + label: 'STV', + x: 4969.591431662782, + y: 3849.7869520351396, + z: -790.2391379121789, + }, + }, + { + id: '7026', + data: { + label: 'TheStreet.com', + x: 6087.369960396737, + y: 229.60680540407608, + z: -4215.944042464645, + }, + }, + { + id: '7029', + data: { + label: 'Jedor', + x: 5096.336102801632, + y: 3742.8026319911287, + z: -517.4779116032983, + }, + }, + { + id: '7025', + data: { + label: 'Formus Communications', + x: 2211.700802961632, + y: 200.47548858757327, + z: -3068.0165450636314, + }, + }, + { + id: '7024', + data: { + label: 'Vosaic', + x: -864.7203993007522, + y: 2244.0833848683487, + z: -3456.3678996620793, + }, + }, + { + id: '7023', + data: { + label: 'Forever Enterprises', + x: 3986.8019338708214, + y: -262.4045081129478, + z: -4700.439185654581, + }, + }, + { + id: '7022', + data: { + label: 'Lincoln Heritage', + x: 4326.841402635487, + y: -269.88855294597505, + z: -4444.322603378441, + }, + }, + { + id: '7021', + data: { + label: 'Wireless Group', + x: -3025.1141696007558, + y: -2230.3838451593315, + z: -351.02389959568814, + }, + }, + { + id: '7020', + data: { + label: 'Focus Affiliates', + x: -3004.203668855768, + y: -2207.3942367646187, + z: -761.0088321088477, + }, + }, + { + id: '7019', + data: { + label: 'Optomi', + x: -1326.664632943105, + y: -2193.8797659498364, + z: 2834.1565355163834, + }, + }, + { + id: '7018', + data: { + label: 'Firstwave', + x: -1449.8443154282606, + y: -2187.5574726915393, + z: 3223.0255385891305, + }, + }, + { + id: '7017', + data: { + label: 'Cornerstone First', + x: -2173.965361438247, + y: -1077.2388234254283, + z: 3704.3887921259497, + }, + }, + { + id: '7013', + data: { + label: 'Rich Earth', + x: 4982.129901089294, + y: -163.2678323889954, + z: -4018.3529828465353, + }, + }, + { + id: '7016', + data: { + label: 'Invest Tracker Technologia', + x: -981.2126377030218, + y: -4127.210320569219, + z: -1214.6199511274397, + }, + }, + { + id: '7015', + data: { + label: 'Thomson Financial', + x: -1001.8301618682842, + y: -3772.023754666172, + z: -1408.973029250524, + }, + }, + { + id: '7014', + data: { + label: 'GlobalNet', + x: 5008.308172608007, + y: 178.68786405775924, + z: -3821.4613903675736, + }, + }, + { + id: '7012', + data: { + label: 'GlobalNetFinancial.com', + x: 3909.036430267395, + y: -2079.2950605278334, + z: -517.5214541246559, + }, + }, + { + id: '7011', + data: { + label: 'AISoftware', + x: 7303.323103682738, + y: -1002.183769644502, + z: 1238.8580202840642, + }, + }, + { + id: '7010', + data: { + label: 'GenRad', + x: 3817.340842943412, + y: -1820.253311074389, + z: 5174.117556932668, + }, + }, + { + id: '7009', + data: { + label: 'FleetBoston Financial', + x: 4193.456983459696, + y: -1779.3434284763593, + z: 5059.992949519585, + }, + }, + { + id: '7008', + data: { + label: 'Millennium Daqcom', + x: -1445.6245926976083, + y: 5319.452033233899, + z: 681.5266756077611, + }, + }, + { + id: '7007', + data: { + label: 'Rushmore', + x: -1364.992308218862, + y: 5244.438352518532, + z: 1070.8617019303983, + }, + }, + { + id: '7006', + data: { + label: 'Synovus Financial', + x: -2062.2246917008906, + y: -3.225202427466888, + z: 3691.3714359102346, + }, + }, + { + id: '7005', + data: { + label: 'Pioneer Financial Group', + x: -2335.4987806881363, + y: -1423.7520812070125, + z: 3033.5988616876753, + }, + }, + { + id: '7004', + data: { + label: 'Zurich Financial', + x: 279.69777538988245, + y: -1685.2945744287902, + z: 1426.6682071561017, + }, + }, + { + id: '7003', + data: { + label: 'FASRE Field Services', + x: 3202.3997617046102, + y: 2282.144646048285, + z: 4397.999852242083, + }, + }, + { + id: '7002', + data: { + label: 'MortgageRamp.com', + x: 3173.7467098972165, + y: 2154.926169395013, + z: 4788.490538184684, + }, + }, + { + id: '7001', + data: { + label: 'Symbio-Tech', + x: 3755.0461741092317, + y: 4330.45712719053, + z: 3730.7417306892557, + }, + }, + { + id: '6999', + data: { + label: 'Fast Company', + x: 2161.2943359720252, + y: 4513.402083135889, + z: -1039.6994413053105, + }, + }, + { + id: '7000', + data: { + label: 'Franklin Telecommunications', + x: 3874.7428333835287, + y: 3948.555112137313, + z: 3800.1039438748226, + }, + }, + { + id: '8256', + data: { + label: 'Alaska Communications Systems Holdings', + x: 2603.7161748425106, + y: 1439.6441506898075, + z: 5270.660299150628, + }, + }, + { + id: '6998', + data: { + label: 'FASTNET', + x: 5806.4882876784695, + y: 502.9696488702134, + z: -4124.641389573873, + }, + }, + { + id: '6997', + data: { + label: 'Redstone Telecom plc', + x: -2110.8276309676876, + y: -2819.7316951786443, + z: 2991.3004168571692, + }, + }, + { + id: '6996', + data: { + label: 'Cronus Technology', + x: -589.1492107005062, + y: -743.9762190207887, + z: 5425.432822408796, + }, + }, + { + id: '6995', + data: { + label: 'FastComm', + x: -779.6387210046702, + y: -471.5509284292722, + z: 5187.521164903262, + }, + }, + { + id: '6993', + data: { + label: 'Ezenia', + x: 3778.0094407328056, + y: -4267.408660041144, + z: -3262.327004153557, + }, + }, + { + id: '6994', + data: { + label: 'InfoWorkSpace', + x: 4013.814509641684, + y: -4372.696246073907, + z: -2955.9811977803633, + }, + }, + { + id: '6992', + data: { + label: 'Optranet', + x: -437.65334479877805, + y: -2300.3956419339243, + z: 4639.107457727228, + }, + }, + { + id: '6991', + data: { + label: 'Extreme Networks', + x: -544.0705371816301, + y: -2291.049565389566, + z: 4246.806038344538, + }, + }, + { + id: '6987', + data: { + label: 'Vivant Technology', + x: 5478.716007311595, + y: -756.6562175190762, + z: -3001.96281749911, + }, + }, + { + id: '6990', + data: { + label: 'Extreme Packet Devices for $415 Million', + x: 3286.7630301591653, + y: -2688.708281845135, + z: 734.7912493273935, + }, + }, + { + id: '6986', + data: { + label: 'InfoWide', + x: 5049.1534046973975, + y: -845.1068954664659, + z: -2820.576172663026, + }, + }, + { + id: '6989', + data: { + label: 'Flying Fish Express', + x: 614.4825169895278, + y: -3251.911910390724, + z: 504.40380512429584, + }, + }, + { + id: '6983', + data: { + label: 'Sitraka Software', + x: 1281.7642195452222, + y: 1575.2332048795897, + z: -4089.8316243438285, + }, + }, + { + id: '6988', + data: { + label: 'GlobalCenter', + x: 3074.129250622367, + y: -2825.1333327435923, + z: 1374.4939449790452, + }, + }, + { + id: '6985', + data: { + label: 'Evolve', + x: 5126.693456560197, + y: -807.6156140618691, + z: -3206.9530318637, + }, + }, + { + id: '6984', + data: { + label: 'Evite.com', + x: -749.3699123577168, + y: -3199.02149941653, + z: 2744.734074733861, + }, + }, + { + id: '6982', + data: { + label: 'Everypath', + x: 1215.08871512969, + y: 1906.4187603904288, + z: -3858.0046002110503, + }, + }, + { + id: '6981', + data: { + label: 'Luko Czech.Net', + x: 4495.916884267652, + y: 4782.017592505479, + z: 311.6492430746025, + }, + }, + { + id: '6980', + data: { + label: 'Euroweb Agrees', + x: 5427.792851810352, + y: 4809.758994426026, + z: 1936.6864898762137, + }, + }, + { + id: '6979', + data: { + label: 'Eunet Slovakia', + x: 4831.011403555855, + y: 5115.807795101766, + z: 857.1893680291776, + }, + }, + { + id: '6976', + data: { + label: 'Global Network Services', + x: 4738.573365858713, + y: 5074.381041003667, + z: 419.98120971233965, + }, + }, + { + id: '6978', + data: { + label: 'EuroWeb', + x: -3680.949911763645, + y: -1248.9053702960693, + z: -1278.0334688475416, + }, + }, + { + id: '6977', + data: { + label: 'R-net', + x: 4347.707872230097, + y: 5031.268566761115, + z: 656.7211206893111, + }, + }, + { + id: '6975', + data: { + label: 'Euroweb International', + x: 4733.4963800237365, + y: 288.6259694672546, + z: -4646.373458178634, + }, + }, + { + id: '6971', + data: { + label: 'IntelligentX', + x: 7557.2436216220785, + y: -1093.0874644035969, + z: 580.5682588597807, + }, + }, + { + id: '6974', + data: { + label: 'MetroSplash.com', + x: 2768.6506998336085, + y: -770.1468694234044, + z: -4128.96363980921, + }, + }, + { + id: '6973', + data: { + label: 'Spray', + x: 2021.580974442455, + y: 4009.8471744399117, + z: -1155.9924704360985, + }, + }, + { + id: '6972', + data: { + label: 'Lycos', + x: 2928.334140175488, + y: -744.3999047638349, + z: -3679.9748872626815, + }, + }, + { + id: '6970', + data: { + label: 'FunBug.com', + x: 7507.6671068250635, + y: -1210.0545137559782, + z: 276.37732520803047, + }, + }, + { + id: '6969', + data: { + label: 'eUniverse', + x: 55.355427615652594, + y: 3232.4933315671956, + z: 4890.4088701554765, + }, + }, + { + id: '6968', + data: { + label: 'ForumNation', + x: 7991.87048664184, + y: -849.0371105522539, + z: 172.63813458961891, + }, + }, + { + id: '6967', + data: { + label: 'Pokemonvillage', + x: 7702.249556112573, + y: -1517.1694410472644, + z: 165.68908887802507, + }, + }, + { + id: '6966', + data: { + label: 'ReserveAuction', + x: 7786.070978913973, + y: -815.5894905101165, + z: 494.904782413889, + }, + }, + { + id: '6965', + data: { + label: 'Dustcloud.com', + x: 7689.571991037846, + y: -1002.9689362580916, + z: 82.51094353969285, + }, + }, + { + id: '6964', + data: { + label: 'Casesladder.com', + x: 7882.898704979484, + y: -1242.1459055266675, + z: -44.942250205601695, + }, + }, + { + id: '6963', + data: { + label: 'FunOne.com', + x: 7770.591187635596, + y: -1381.9063957886585, + z: 743.0467968703249, + }, + }, + { + id: '6962', + data: { + label: 'EUniverse', + x: -347.44660113751195, + y: 2888.1368384706184, + z: -4848.928330604878, + }, + }, + { + id: '6961', + data: { + label: 'eLiberation.com', + x: 3272.6237743818874, + y: 776.3100124462301, + z: -5017.101876676588, + }, + }, + { + id: '6959', + data: { + label: 'NetRidium', + x: -1426.068728732542, + y: -289.49886840711025, + z: 4538.342503902535, + }, + }, + { + id: '6960', + data: { + label: 'eSynch', + x: 3666.666791624443, + y: 766.5200721374064, + z: -5098.307172416351, + }, + }, + { + id: '6957', + data: { + label: 'Gateway Energy', + x: 2174.916593115632, + y: 71.58373058991509, + z: -3897.5860738471692, + }, + }, + { + id: '6958', + data: { + label: 'ESS', + x: -1175.6153639288054, + y: -174.66017030052777, + z: 4831.6843293222555, + }, + }, + { + id: '6956', + data: { + label: 'Apexx', + x: 2411.8707273442433, + y: 200.04250719642502, + z: -3945.751887525784, + }, + }, + { + id: '6954', + data: { + label: 'ESoft', + x: 2207.685483588027, + y: 2739.1757761478516, + z: 5401.005794869751, + }, + }, + { + id: '6955', + data: { + label: 'Second Round of Financing', + x: 2165.6418698654043, + y: 340.3242207870279, + z: -3946.3830033988743, + }, + }, + { + id: '6953', + data: { + label: 'eSoft', + x: 2304.3899831891827, + y: 296.0125922692803, + z: -3457.8855971231987, + }, + }, + { + id: '6952', + data: { + label: 'Telebit', + x: 6532.936179363461, + y: 2318.332864613967, + z: 1619.6347202014838, + }, + }, + { + id: '6951', + data: { + label: 'TouchWave', + x: 6142.898903506729, + y: 2586.7855828213214, + z: 1669.5241644849966, + }, + }, + { + id: '6950', + data: { + label: 'Saraide.com', + x: 5836.749540135955, + y: 1918.7831740673048, + z: 1469.5005366498224, + }, + }, + { + id: '6949', + data: { + label: 'Torrent Networking', + x: 6288.480353388821, + y: 2459.55966166373, + z: 1427.2363109605744, + }, + }, + { + id: '6945', + data: { + label: 'EPresence', + x: 6973.865079166434, + y: -459.7338915383549, + z: 3164.1500326906375, + }, + }, + { + id: '6948', + data: { + label: 'OZ.COM', + x: 6391.741114488772, + y: 2434.0570532533247, + z: 1906.2848742312972, + }, + }, + { + id: '6946', + data: { + label: 'SND', + x: -335.8700257293732, + y: 5257.319024882143, + z: 1511.0637857333636, + }, + }, + { + id: '6947', + data: { + label: 'Ericsson SpA', + x: 7378.84815177827, + y: -520.7654072465039, + z: -1970.6273091190017, + }, + }, + { + id: ' Renames Itself EPIQ Systems', + data: { + label: 'PHiTECH for $6.25 Million', + x: 4745.423112313375, + y: 2143.2768942309744, + z: 4459.995200710986, + }, + }, + { + id: '6943', + data: { + label: 'Electronic Processing', + x: 2792.4047350778415, + y: 1376.7249715336104, + z: 4939.925960665327, + }, + }, + { + id: '6942', + data: { + label: 'enCommerce for $470 Million', + x: 540.0760963119882, + y: 4181.127983244004, + z: 2684.6288827703056, + }, + }, + { + id: '6941', + data: { + label: 'Entrust', + x: 251.73327163063803, + y: 4449.065672814026, + z: 2588.057837012731, + }, + }, + { + id: '6939', + data: { + label: 'Gaylord Communications', + x: 5913.25974070663, + y: 820.4928478320537, + z: -3204.2730606694504, + }, + }, + { + id: '6940', + data: { + label: 'Musicforce.com and Lightsource.com', + x: 5693.780677723807, + y: 739.6589154837112, + z: -3529.3298921067967, + }, + }, + { + id: '6938', + data: { + label: 'Part of Belamo', + x: 4971.959014001974, + y: 4864.732530730285, + z: 91.42162794499153, + }, + }, + { + id: '6937', + data: { + label: 'BigStar Entertainment', + x: 5034.191290300132, + y: 5061.894061380167, + z: -248.65701081980646, + }, + }, + { + id: '6936', + data: { + label: 'Lightbinders', + x: -491.03194370424603, + y: -1796.0821420096356, + z: 3961.1867018054027, + }, + }, + { + id: '6935', + data: { + label: 'Xyvision', + x: 2542.007990658667, + y: 956.8346607219576, + z: 5614.800493293802, + }, + }, + { + id: '6934', + data: { + label: 'Xyvision Enterprise Solutions', + x: -637.2932844900367, + y: -1794.6736951474088, + z: 3568.2780935424635, + }, + }, + { + id: '6933', + data: { + label: 'Cadmus Communications', + x: -796.5981059588785, + y: -1894.6593613866519, + z: 3184.354060303515, + }, + }, + { + id: '6932', + data: { + label: 'Enterprise Engines', + x: 3290.577864088899, + y: 4534.077626269783, + z: -3129.1881570182827, + }, + }, + { + id: '6931', + data: { + label: 'QAD', + x: 3159.2978744316674, + y: 4264.225431493456, + z: -2859.2220324306386, + }, + }, + { + id: '6930', + data: { + label: 'Global Enterprise Technology', + x: 3332.36623608301, + y: -4550.455712622363, + z: -3011.981645610134, + }, + }, + { + id: '6929', + data: { + label: 'Pegasus', + x: -7.063495157512453, + y: -4103.797270610029, + z: 3356.414193837351, + }, + }, + { + id: '6928', + data: { + label: 'Endemol', + x: -1338.1100216818497, + y: 4776.983295873099, + z: 1042.4173722843373, + }, + }, + { + id: '6927', + data: { + label: 'Telef�nica de Argentina S.A.', + x: -1481.4976928186882, + y: 4804.600129391063, + z: 664.4310804499252, + }, + }, + { + id: '6926', + data: { + label: 'EngineeringPerformance', + x: 5558.529627746062, + y: 4389.845483195484, + z: 778.9793392326153, + }, + }, + { + id: '6925', + data: { + label: 'Embarcadero Technologies', + x: 5626.218465119005, + y: 4171.693058924306, + z: 1111.7236723556662, + }, + }, + { + id: '6924', + data: { + label: 'CI Wireless', + x: 4489.300804109225, + y: -115.72299837036526, + z: -3890.7821147074787, + }, + }, + { + id: '6923', + data: { + label: 'NetSat28 Company', + x: 4353.409826418043, + y: -252.31504912759357, + z: -3640.7313153928803, + }, + }, + { + id: '6921', + data: { + label: 'EDS', + x: -2292.165620350654, + y: -2588.807761388062, + z: -2290.933374071054, + }, + }, + { + id: '6922', + data: { + label: 'Systematics', + x: -2124.3650013726074, + y: -2342.5485427709477, + z: -2566.037734099799, + }, + }, + { + id: '6920', + data: { + label: 'Elron Electronic Industries', + x: 2542.953012876762, + y: 211.94006555533167, + z: -684.7681313936502, + }, + }, + { + id: '6919', + data: { + label: 'Mynd', + x: 2878.7020962898796, + y: 5288.470603846612, + z: 987.3282028949632, + }, + }, + { + id: '6918', + data: { + label: 'Switzerlands Inter Chip AG', + x: 4983.841236246266, + y: -2363.0885551948522, + z: -3313.587600330453, + }, + }, + { + id: '6917', + data: { + label: 'CE Consumer Electronic AG', + x: 5215.25734028675, + y: -2517.360039266041, + z: -3012.641613712776, + }, + }, + { + id: '6916', + data: { + label: 'Fore Systems', + x: 4867.835104686784, + y: -775.637935016818, + z: -1430.6258755552872, + }, + }, + { + id: '6915', + data: { + label: 'GE', + x: 6016.634175796241, + y: -242.61649151906323, + z: 3878.5297629666734, + }, + }, + { + id: '6914', + data: { + label: 'ImproveNet', + x: 5044.476338023441, + y: -679.3108080774934, + z: -866.7232342942949, + }, + }, + { + id: '6913', + data: { + label: 'General Electric', + x: -1119.448644930222, + y: -4656.496592026606, + z: -949.0389763271367, + }, + }, + { + id: '6912', + data: { + label: 'Texas Micro For $115 Million', + x: 5559.385952197145, + y: 2413.033379474416, + z: -3688.180304078084, + }, + }, + { + id: '6911', + data: { + label: 'Texas Micro', + x: 5034.126597099031, + y: -2032.7682591507726, + z: -3162.6602892330466, + }, + }, + { + id: '6910', + data: { + label: 'Maximum', + x: 2981.393834811627, + y: 5221.740975770347, + z: -1101.5791110839423, + }, + }, + { + id: '6909', + data: { + label: 'Eidos', + x: 2784.9481627606083, + y: 5217.463512403362, + z: -1451.4524140814099, + }, + }, + { + id: '6908', + data: { + label: 'Swiftcall USA', + x: 7318.847118935875, + y: -218.67261776631406, + z: 2094.5115655949508, + }, + }, + { + id: '6907', + data: { + label: + 'Outsource Automated Services and Integrated Systems Reservations Services', + x: 7077.1391361480455, + y: -965.7207905014666, + z: 2140.2753201072715, + }, + }, + { + id: '6906', + data: { + label: 'EGlobe', + x: 4743.907083760965, + y: -191.09050461118665, + z: -4861.620928212929, + }, + }, + { + id: '6905', + data: { + label: 'Highpoint Telecoms iGlobe', + x: 7150.358918526393, + y: -507.7653684120313, + z: 2639.8575232733747, + }, + }, + { + id: '6904', + data: { + label: 'Eglobe', + x: 146.36696912857434, + y: 5976.609730637216, + z: 1382.3570808159927, + }, + }, + { + id: '6903', + data: { + label: 'Inference', + x: 2023.3185286802695, + y: 6225.408846901129, + z: -250.94697380599013, + }, + }, + { + id: '6902', + data: { + label: 'eGain Communications', + x: 146.17970317148104, + y: 5507.462695307855, + z: -1006.5062720534144, + }, + }, + { + id: '6901', + data: { + label: 'Nitman Software', + x: 2058.500571724177, + y: 6078.921750178562, + z: 524.8559021108131, + }, + }, + { + id: '6900', + data: { + label: 'Sitebridge', + x: 1715.2086396700236, + y: 5824.498032904798, + z: -30.67421283338312, + }, + }, + { + id: '6899', + data: { + label: 'EGain', + x: 2009.425091981303, + y: 6064.817931084165, + z: 118.53358528975478, + }, + }, + { + id: '6898', + data: { + label: 'Siemens', + x: 2410.601648880117, + y: 4900.102595456975, + z: -2109.5051293486667, + }, + }, + { + id: '6897', + data: { + label: 'NetScreen Technologies for $905 Million', + x: 2371.6274575345437, + y: 5277.716576708758, + z: -2458.6274270630543, + }, + }, + { + id: '6896', + data: { + label: 'Numetrix', + x: -2406.1654650317473, + y: 108.01620756174765, + z: -2596.7318221522837, + }, + }, + { + id: '6895', + data: { + label: 'Matach Assets', + x: 1618.2383826646574, + y: -4322.270096646825, + z: -3494.247422764443, + }, + }, + { + id: '6893', + data: { + label: 'MSI', + x: 2010.2535522473497, + y: -225.55793593697285, + z: 3068.7685103551803, + }, + }, + { + id: '6894', + data: { + label: 'Britannica.com', + x: 1423.529387109599, + y: -4599.784726092922, + z: -3261.7185810421706, + }, + }, + { + id: '6892', + data: { + label: 'iPing', + x: 4795.08158737183, + y: -341.52227135571195, + z: 989.898819952099, + }, + }, + { + id: '6891', + data: { + label: 'ECal', + x: 3563.2607064622207, + y: 845.0151450504311, + z: 5443.35223729564, + }, + }, + { + id: '6890', + data: { + label: 'Arbor Associates', + x: 840.6622247349234, + y: 1631.207451471547, + z: -4191.925465289207, + }, + }, + { + id: '6889', + data: { + label: 'EBenX', + x: 951.0780647947583, + y: 2013.7678306071537, + z: -4292.5374657325565, + }, + }, + { + id: '6888', + data: { + label: 'eOrganizer', + x: 3045.727770466239, + y: 1056.6437560330787, + z: -5029.474671106585, + }, + }, + { + id: '6887', + data: { + label: '3Cube', + x: 3767.2886779230244, + y: 1236.7715856305952, + z: -4773.621583622249, + }, + }, + { + id: '6886', + data: { + label: 'Eastern Software', + x: -585.3807228548095, + y: 4591.3189613469485, + z: -2453.668221787093, + }, + }, + { + id: '6885', + data: { + label: 'Intercept Group', + x: 1904.8977541095796, + y: -3629.080282857374, + z: 4304.988627467774, + }, + }, + { + id: '6884', + data: { + label: 'Netpliance', + x: 275.7748968732059, + y: -1917.9782580722135, + z: 3681.551001491878, + }, + }, + { + id: '6883', + data: { + label: 'OneMain.com', + x: 787.0338722499458, + y: -1901.8889063017766, + z: 3661.539671404339, + }, + }, + { + id: '6882', + data: { + label: 'MindSpring Enterprises', + x: 151.8198196414788, + y: -2202.6102554869444, + z: 3522.6487397092455, + }, + }, + { + id: '6880', + data: { + label: 'Etoolz', + x: 473.70368737979084, + y: -4307.4845488125575, + z: 847.421497807439, + }, + }, + { + id: '6881', + data: { + label: 'Eagle Wireless', + x: 2169.610178857485, + y: 4239.459840634551, + z: 4497.395798614515, + }, + }, + { + id: '6879', + data: { + label: 'Eagle Wireless International', + x: 300.3351612290716, + y: -4217.672026756776, + z: 1206.080251519891, + }, + }, + { + id: '6878', + data: { + label: 'E-Sync Division', + x: -74.66736684081893, + y: -3258.6561742936656, + z: 3160.249231500064, + }, + }, + { + id: '6877', + data: { + label: 'Howard Systems', + x: -401.7412199758527, + y: -3349.231654951439, + z: 2940.439950962007, + }, + }, + { + id: '6876', + data: { + label: 'Learn2.com', + x: 4228.224512058179, + y: 2283.5936333577133, + z: 1079.2581210939093, + }, + }, + { + id: '6875', + data: { + label: 'Logistics Firm', + x: 4393.050213576027, + y: 2283.2199139457302, + z: 1287.7052629877396, + }, + }, + { + id: '6874', + data: { + label: 'Cendants Books.com Web site', + x: -1110.6915719801789, + y: 1250.1627472465827, + z: -4357.30013165385, + }, + }, + { + id: '6873', + data: { + label: 'BarnesandNoble.com', + x: -3023.370284014266, + y: 2088.3575384322626, + z: -2939.172339634482, + }, + }, + { + id: '6872', + data: { + label: 'Tycho Networks', + x: 2363.444033230207, + y: -171.8862447580436, + z: -1801.994318333388, + }, + }, + { + id: '6871', + data: { + label: 'DSL.net', + x: 2411.971223698335, + y: -164.9492305295917, + z: -1306.3402230607894, + }, + }, + { + id: '6868', + data: { + label: 'Drkoop.com', + x: 2228.280634923897, + y: 2462.9251301850045, + z: 4340.065028911545, + }, + }, + { + id: '6870', + data: { + label: 'Staples', + x: 2393.610622652793, + y: -243.02960652342549, + z: -2063.110624782505, + }, + }, + { + id: '6869', + data: { + label: 'DrDrew.com', + x: 3353.470570915453, + y: 1160.7924606836043, + z: 2636.5444828708023, + }, + }, + { + id: '6867', + data: { + label: 'C. Everett Koop', + x: 3275.9246897412586, + y: 1390.6318540326538, + z: 2546.6001411397633, + }, + }, + { + id: '6866', + data: { + label: 'drkoop.com', + x: 5175.709604421319, + y: -2316.7815313816886, + z: 3867.624689332672, + }, + }, + { + id: '6865', + data: { + label: 'Prime Bancshares', + x: 3529.0753265889, + y: 1331.8092397882958, + z: 2526.8411066925305, + }, + }, + { + id: '6863', + data: { + label: 'Infogrames', + x: 5748.468305677134, + y: 4059.155599259966, + z: 2455.9297424175184, + }, + }, + { + id: '6864', + data: { + label: 'Hasbro Interactive and Games.com', + x: 6405.074582194609, + y: 296.31991507984486, + z: -2709.030620288393, + }, + }, + { + id: '6861', + data: { + label: 'Buck', + x: -2094.036771957137, + y: -134.29193883259083, + z: -3672.113855439057, + }, + }, + { + id: '6862', + data: { + label: 'Interest in LiveWireMedia', + x: -2332.827169986637, + y: 78.33590892070825, + z: -3433.0605084005447, + }, + }, + { + id: '6860', + data: { + label: 'Data Broadcasting', + x: -449.11131269137246, + y: 762.4439306880722, + z: -3730.7901300294416, + }, + }, + { + id: '6858', + data: { + label: 'Verant Interactive', + x: 4861.7699504189795, + y: 3337.5604308903357, + z: -1003.6338146497086, + }, + }, + { + id: '6859', + data: { + label: 'Vertex Interactive', + x: 4396.602892052384, + y: 5663.305696322153, + z: 1038.4066585870469, + }, + }, + { + id: '6857', + data: { + label: 'Consumer Health', + x: 2050.449380299322, + y: 4425.571499055761, + z: -3436.2911794731776, + }, + }, + { + id: '6856', + data: { + label: 'Advance Paradigm', + x: 1749.251912131556, + y: 4339.52450080514, + z: -3186.305733170289, + }, + }, + { + id: '6855', + data: { + label: 'Bigfoot Interactive', + x: 6965.163640321752, + y: -846.9860897106195, + z: 1454.0472736498534, + }, + }, + { + id: '6854', + data: { + label: 'eMerge Interactive', + x: 697.3879542498836, + y: 1260.8273690765557, + z: -2377.5356708720356, + }, + }, + { + id: '6853', + data: { + label: 'Lead Dog', + x: -2288.079927958945, + y: 3338.325287795691, + z: 1068.439246526569, + }, + }, + { + id: '6852', + data: { + label: 'Iconixx', + x: -2240.316709795537, + y: 3246.857366674126, + z: 1458.7677174235712, + }, + }, + { + id: '6851', + data: { + label: 'MarchFirst Assets', + x: -1227.133204856669, + y: 2565.9602753206004, + z: -3271.946218181258, + }, + }, + { + id: '6849', + data: { + label: 'OpinionWare', + x: 3453.4851944466736, + y: 5243.602528370736, + z: 1368.747854206339, + }, + }, + { + id: '6850', + data: { + label: 'Divine InterVentures', + x: -789.0383862660875, + y: 4294.478242644626, + z: 1560.4921324573813, + }, + }, + { + id: '6848', + data: { + label: 'DataBites', + x: 3997.6920493789776, + y: 4991.318178387882, + z: 1891.014035932092, + }, + }, + { + id: '6847', + data: { + label: 'Divine', + x: 4550.987433972289, + y: -3279.94646146531, + z: -4220.133987318105, + }, + }, + { + id: '6846', + data: { + label: 'Voice Technologies Group', + x: 2875.7574210162725, + y: 485.0155644380522, + z: -2740.655915602826, + }, + }, + { + id: '6845', + data: { + label: 'Ford Microelectronics', + x: 2020.6674211791103, + y: 258.98653504665185, + z: -2879.6733420987543, + }, + }, + { + id: '6844', + data: { + label: 'Trillium', + x: 2196.687767221935, + y: 699.1098447002225, + z: -3002.1555372089642, + }, + }, + { + id: '6843', + data: { + label: 'Data Kinetics', + x: 2738.2752690566776, + y: 680.7713334167672, + z: -2883.4885624131807, + }, + }, + { + id: '8240', + data: { + label: 'Madison Square Garden', + x: 2486.719913431284, + y: 1262.0675123375, + z: 2610.201453078776, + }, + }, + { + id: '6841', + data: { + label: 'Softcom', + x: 2006.370413317712, + y: 529.7560283668622, + z: -2892.1756742358352, + }, + }, + { + id: '6840', + data: { + label: 'NetBoost', + x: 2479.208297210105, + y: 641.6453568299739, + z: -3110.8803459641476, + }, + }, + { + id: '6839', + data: { + label: 'Ipivot', + x: 2481.0955542902007, + y: 828.174873731539, + z: -2893.9536335858043, + }, + }, + { + id: '6838', + data: { + label: 'Selectica', + x: 4778.577811899963, + y: 724.534441426251, + z: 5011.5665695378975, + }, + }, + { + id: '6837', + data: { + label: 'Intel 64 Fund', + x: 4585.778949024847, + y: 1033.4417759493226, + z: 4839.177097485262, + }, + }, + { + id: '6836', + data: { + label: 'Panja', + x: 2376.618196113049, + y: 409.3451010756974, + z: -3165.576166047737, + }, + }, + { + id: '6835', + data: { + label: '$5 Million Investment', + x: 4370.757715412223, + y: 4447.08940033602, + z: -3064.485647004588, + }, + }, + { + id: '6834', + data: { + label: 'IntelliCorp', + x: 4405.521651974884, + y: 4321.675411233938, + z: -3449.66013159904, + }, + }, + { + id: '6833', + data: { + label: 'Home Account Network', + x: -962.3058453222407, + y: -1866.4174486534691, + z: -3991.6374274927275, + }, + }, + { + id: '6832', + data: { + label: 'InteliData', + x: 6169.491058383661, + y: -1897.7932373072779, + z: 3649.3730064055285, + }, + }, + { + id: '6831', + data: { + label: 'Mamma.com', + x: 1061.9064574142567, + y: 4996.936366272257, + z: -1831.9635029981841, + }, + }, + { + id: '6830', + data: { + label: 'TEC', + x: 967.282814903511, + y: 5352.9586862114675, + z: -1184.081445656216, + }, + }, + { + id: '6829', + data: { + label: 'Intasys', + x: 870.5084598420327, + y: 5183.816734738585, + z: -1535.7805565057529, + }, + }, + { + id: '6828', + data: { + label: '1View Network', + x: 2624.1564223978403, + y: 4857.247616676104, + z: 3071.4740007066216, + }, + }, + { + id: '6825', + data: { + label: 'Infomatic AG', + x: 6845.356499955783, + y: -528.7497219026728, + z: -2289.237252425484, + }, + }, + { + id: '6827', + data: { + label: 'IDVDBox', + x: -2894.423674840931, + y: 2626.2474837201103, + z: -2159.421570207062, + }, + }, + { + id: '6826', + data: { + label: 'Inprimis', + x: -3255.589361421866, + y: 2478.652263972242, + z: -2072.193987304381, + }, + }, + { + id: '6824', + data: { + label: '3D Solutions and Radio Profits', + x: -231.64778884361513, + y: 1991.4774072730272, + z: -5042.850084700262, + }, + }, + { + id: '6823', + data: { + label: 'Innuity', + x: -277.71449705718317, + y: 1598.300214556788, + z: -4988.319148995147, + }, + }, + { + id: '6822', + data: { + label: 'FastForward Networks', + x: 931.3557999958073, + y: -1026.1144204314605, + z: 655.2329141738695, + }, + }, + { + id: '6821', + data: { + label: 'Impulse Buy Network', + x: 1074.9813255133574, + y: -730.2147401368777, + z: -903.2641808771324, + }, + }, + { + id: '6818', + data: { + label: 'Knowledge Systems', + x: 6136.494910180417, + y: 3893.4517146252615, + z: -170.10505416631392, + }, + }, + { + id: '6820', + data: { + label: 'WebSpective Software', + x: 893.4747757686528, + y: -879.2028471984875, + z: -780.3702445224806, + }, + }, + { + id: '6819', + data: { + label: 'The Jacobson Group', + x: 6068.745498362089, + y: 3758.157136874593, + z: -762.9267399433573, + }, + }, + { + id: '6817', + data: { + label: 'Network Solutions', + x: 6407.468929823968, + y: 3365.6596734071304, + z: -597.9423290508265, + }, + }, + { + id: '6816', + data: { + label: 'Sales Technology', + x: 5854.713794126547, + y: 3878.9606826223426, + z: -452.10915482694827, + }, + }, + { + id: '6815', + data: { + label: 'TISSintra', + x: 2547.8486140204936, + y: 1839.651108543916, + z: -4927.552292937162, + }, + }, + { + id: '6814', + data: { + label: 'InfoVista', + x: 2379.8778509435165, + y: 2177.40221847714, + z: -4781.824913936957, + }, + }, + { + id: '6812', + data: { + label: 'Red Wing', + x: 6260.350256548164, + y: 3893.8683038520458, + z: -1529.8850401240768, + }, + }, + { + id: '6813', + data: { + label: 'Ardent Software', + x: 6098.082111281976, + y: -3739.835863144906, + z: -1297.2406697612396, + }, + }, + { + id: '6807', + data: { + label: 'DiscoveryCom', + x: -1517.8512833987622, + y: -4533.70201036717, + z: 1321.5421661501937, + }, + }, + { + id: '6811', + data: { + label: 'Active IQ', + x: 5928.419867250438, + y: 3770.3500842392996, + z: -1725.5005036253967, + }, + }, + { + id: '6810', + data: { + label: 'divine', + x: 3787.5387163218556, + y: 5157.8417268904695, + z: 1590.929411010955, + }, + }, + { + id: '6809', + data: { + label: 'Atmosphere Networks', + x: 2827.438137439992, + y: 5674.842231839842, + z: -476.2014158233292, + }, + }, + { + id: '6808', + data: { + label: 'Ditech', + x: 2638.5878218168027, + y: 5627.057139227947, + z: -832.9694887405117, + }, + }, + { + id: '6804', + data: { + label: 'Theatre Direct International', + x: -403.84649085912395, + y: -2550.5750818482816, + z: -3581.8423470529315, + }, + }, + { + id: '6806', + data: { + label: 'Petstore.com', + x: 733.5794851782739, + y: -2891.5039501441784, + z: 309.4717211944987, + }, + }, + { + id: '6805', + data: { + label: 'Getko Direct Response', + x: 1137.0510625358543, + y: -5377.162188637477, + z: -1213.2724605172548, + }, + }, + { + id: '6802', + data: { + label: 'Commerx', + x: 1036.814647018793, + y: 607.8794191134601, + z: -1469.122339013401, + }, + }, + { + id: '6803', + data: { + label: 'Hollywood.com', + x: -755.4206890828523, + y: -2602.9940625092618, + z: -3356.656645885248, + }, + }, + { + id: '6801', + data: { + label: 'MSC Industrial Direct Co.', + x: 632.2889263380503, + y: 814.4253173386011, + z: -1348.3361994773275, + }, + }, + { + id: '6796', + data: { + label: 'eCapitalist Financial Services', + x: 6824.465125991413, + y: 659.8846969852832, + z: -2204.5393418628405, + }, + }, + { + id: '6800', + data: { + label: 'Direct Access Interactive', + x: -251.75214231358407, + y: 3895.9600085325274, + z: -2565.266456679706, + }, + }, + { + id: '6799', + data: { + label: 'Integral Systems', + x: 586.8130232294017, + y: 545.255510038669, + z: -40.6990223999326, + }, + }, + { + id: '6798', + data: { + label: 'Strategic Outcomes Services', + x: 1262.7451046384829, + y: 4461.7578300108335, + z: 3929.294658607395, + }, + }, + { + id: '6797', + data: { + label: 'CareScience', + x: 1187.5849083253772, + y: 4374.899551171743, + z: 4323.366859976368, + }, + }, + { + id: '6795', + data: { + label: 'JB Oxford Holdings', + x: 6522.533689389528, + y: 862.2377545326715, + z: -2375.4189319884345, + }, + }, + { + id: '6794', + data: { + label: 'Certain Hanover Direct Assets', + x: 4157.468517709164, + y: -1395.8451121476194, + z: -2514.2904050432307, + }, + }, + { + id: '6793', + data: { + label: 'HSN', + x: 1862.0920282539596, + y: 6162.8277963752425, + z: 1513.2862796710283, + }, + }, + { + id: '6792', + data: { + label: 'SiteSmith', + x: -2949.614184456352, + y: -1533.1227850871796, + z: 443.31166907726316, + }, + }, + { + id: '6791', + data: { + label: 'GoRacing Division', + x: 4036.0047536546067, + y: 784.2548580213204, + z: -676.0464048440248, + }, + }, + { + id: '6788', + data: { + label: 'Blue Byte', + x: 1129.402634460317, + y: 4178.85152662085, + z: -2626.471532989904, + }, + }, + { + id: '6790', + data: { + label: 'Egreetings Network', + x: 2869.1167019821396, + y: -1784.6002069254262, + z: -1566.1674694431315, + }, + }, + { + id: '6789', + data: { + label: 'Fusion Networks', + x: 1303.5452143851123, + y: 5069.061282076147, + z: 1157.3993582640178, + }, + }, + { + id: '6787', + data: { + label: 'Ubi Soft', + x: 1201.234673472148, + y: 4215.9020513723735, + z: -3024.5113470482065, + }, + }, + { + id: '6786', + data: { + label: 'Made In Heaven Entertainment', + x: 6956.410941598166, + y: 3297.548740051334, + z: -98.07499681644738, + }, + }, + { + id: '6785', + data: { + label: 'Launch Media', + x: 7081.063446743774, + y: 3209.9370678731593, + z: -476.8221061243486, + }, + }, + { + id: '6784', + data: { + label: 'Fontanosa Project', + x: -2968.5095537357615, + y: 641.4879035619425, + z: -3554.676204254479, + }, + }, + { + id: '6783', + data: { + label: 'Mission West Properties', + x: -3146.476414473069, + y: 487.9698000852688, + z: -3228.636110490588, + }, + }, + { + id: '8260', + data: { + label: 'ATU Long Distance', + x: -56.58249803816125, + y: -3856.2813042568205, + z: -4185.104395274546, + }, + }, + { + id: '6782', + data: { + label: 'Sonicopia', + x: -1510.2211891708116, + y: -1618.2725405329395, + z: 4027.246351908898, + }, + }, + { + id: '6781', + data: { + label: 'Pulse', + x: -1670.2147497333576, + y: -1849.7907720773514, + z: 3733.774696513025, + }, + }, + { + id: '6780', + data: { + label: 'Sonic Foundry', + x: 4866.759996754397, + y: 3424.9934247335327, + z: -723.7966627940026, + }, + }, + { + id: '6779', + data: { + label: 'GT Interactive Software', + x: 6206.557944668255, + y: 671.1414588752828, + z: -3336.724951352611, + }, + }, + { + id: '6778', + data: { + label: 'Infogrames Entertainment', + x: 6346.157600559329, + y: 597.1033878342042, + z: -2967.8902550123244, + }, + }, + { + id: '6777', + data: { + label: 'FVA', + x: -1264.8191581321082, + y: 5372.899879811703, + z: -842.6571804934193, + }, + }, + { + id: '6776', + data: { + label: 'ResortQuest', + x: -1179.3120707878445, + y: 5471.180789494807, + z: -458.4741257200494, + }, + }, + { + id: '6775', + data: { + label: 'Transatlantic Software', + x: 6365.563166062224, + y: 2899.4128902377247, + z: -1913.96265972581, + }, + }, + { + id: '6774', + data: { + label: 'Applied Digital', + x: 1575.527367946525, + y: 1298.4050893352792, + z: -4532.195180566317, + }, + }, + { + id: '6773', + data: { + label: 'New York Times Digital', + x: 4059.667798454371, + y: 3162.1743257648513, + z: 4141.659288270592, + }, + }, + { + id: '6771', + data: { + label: 'SoftAware', + x: 4537.233156277477, + y: -1767.9816665523454, + z: -3066.8329475603387, + }, + }, + { + id: '6772', + data: { + label: 'Flatiron Partners', + x: 4232.509112461429, + y: 3486.353002889512, + z: 3973.56631862301, + }, + }, + { + id: '6770', + data: { + label: 'NaviSite', + x: 2596.1106962780736, + y: -378.1988057582902, + z: -1322.7434237499415, + }, + }, + { + id: '6769', + data: { + label: 'Dell Computer', + x: -1711.2894862109754, + y: -1183.012183159369, + z: 4283.856858728194, + }, + }, + { + id: '6768', + data: { + label: 'Softlab Division', + x: 5836.7320973353, + y: 185.73800646849014, + z: 4272.070742590019, + }, + }, + { + id: '6767', + data: { + label: 'CSC', + x: 5686.0476153544905, + y: -54.35234861226748, + z: 4559.269732562689, + }, + }, + { + id: '6766', + data: { + label: 'Gen3', + x: 2816.5751324493767, + y: -643.5881684553895, + z: -2710.3159021134807, + }, + }, + { + id: '6765', + data: { + label: 'ClearData.net', + x: 4995.518612683435, + y: 3178.1386625267146, + z: 1885.4679712093407, + }, + }, + { + id: '6764', + data: { + label: 'CYGNS Computer Association', + x: 500.72952877850577, + y: -2247.2538021917903, + z: 5126.908182095168, + }, + }, + { + id: '6763', + data: { + label: 'TeleTechHoldings', + x: 7490.06798610049, + y: -493.34468157563145, + z: -1036.6757943111866, + }, + }, + { + id: '6762', + data: { + label: 'CompuNet', + x: 4251.5592876122755, + y: 5302.303880307961, + z: -2129.7569880102715, + }, + }, + { + id: '6761', + data: { + label: 'Safeguard Scientifics', + x: 4763.4298003106505, + y: 3112.851954516181, + z: 1977.924124307065, + }, + }, + { + id: '6760', + data: { + label: 'Interest in Internet Community Concepts', + x: 3291.786194041876, + y: -2341.7029135282182, + z: 4954.375902999489, + }, + }, + { + id: '6759', + data: { + label: 'PopMail.com', + x: 2961.127630111367, + y: -2095.811583592897, + z: 4987.404605620425, + }, + }, + { + id: '6755', + data: { + label: 'InterWave', + x: 4177.060291542422, + y: -2073.6770005194066, + z: 3833.056406534324, + }, + }, + { + id: '6757', + data: { + label: 'FiberCore', + x: 901.6318442099775, + y: 4891.107133241372, + z: -2226.980087214457, + }, + }, + { + id: '6758', + data: { + label: 'Data Communications', + x: 762.7850725825157, + y: 5252.9470872732745, + z: -2100.7263545463106, + }, + }, + { + id: '6756', + data: { + label: 'Wireless', + x: 3808.587292477155, + y: -2088.9996976822727, + z: 4010.803829243973, + }, + }, + { + id: '6754', + data: { + label: 'Covad Communications Group', + x: 3648.629916166949, + y: -1081.7825760320807, + z: -36.17910978181842, + }, + }, + { + id: '6753', + data: { + label: 'Nomad Media with Option to Buy', + x: -1872.629676005389, + y: -924.9788979612391, + z: 3334.5042947444413, + }, + }, + { + id: '6752', + data: { + label: 'Streamedia', + x: -1793.4740490136182, + y: -1328.9156700668784, + z: 3311.986421894997, + }, + }, + { + id: '6751', + data: { + label: 'FrontHost and SkyHigh', + x: 1923.1295901937106, + y: -5887.4194880584355, + z: 203.39847163276752, + }, + }, + { + id: '6750', + data: { + label: 'Shares of BuyItNow.com', + x: 2545.9256318062708, + y: -2003.5996138928674, + z: -2755.3175007302175, + }, + }, + { + id: '6749', + data: { + label: 'MWW Group', + x: 836.7812209667169, + y: -4473.614864992174, + z: -3442.9806677103365, + }, + }, + { + id: '6748', + data: { + label: 'Golin/Harris', + x: 844.2185595474305, + y: -4346.855287188344, + z: -3829.839263794635, + }, + }, + { + id: '6747', + data: { + label: 'Dial-Thru Assets', + x: -228.91306778956277, + y: -3156.5538774419847, + z: 3658.064151007134, + }, + }, + { + id: '6746', + data: { + label: 'Q Comm', + x: -445.28392949781136, + y: -2865.8074458889087, + z: 3833.0200563197627, + }, + }, + { + id: '6745', + data: { + label: 'VEW Telnet', + x: 549.9024457631504, + y: 4686.758835558988, + z: -1801.4056684963848, + }, + }, + { + id: '6744', + data: { + label: 'World Online International N.V.', + x: 2811.7768109098133, + y: 765.381105145083, + z: -2574.7222342946006, + }, + }, + { + id: '6742', + data: { + label: 'Mail.com', + x: 3377.3651959648523, + y: 1096.6123989364007, + z: -4780.900659360645, + }, + }, + { + id: '6743', + data: { + label: 'Swift Telecommunications', + x: 3582.03798989753, + y: 1261.5759181200308, + z: -4434.026164545542, + }, + }, + { + id: '6741', + data: { + label: 'Way Communications', + x: 1277.9963459055105, + y: -5855.77735907881, + z: 45.89862182233877, + }, + }, + { + id: '6740', + data: { + label: 'Frontline', + x: 1558.0061050277354, + y: -6091.129984568134, + z: 291.88289279652565, + }, + }, + { + id: '6739', + data: { + label: 'Ultracom Communications', + x: 1429.2384916815936, + y: 5634.465729341136, + z: 1598.6432572677013, + }, + }, + { + id: '6738', + data: { + label: 'Terayon', + x: 1327.126680288577, + y: 5399.416173531105, + z: 1910.3347043261238, + }, + }, + { + id: '6737', + data: { + label: 'DotWireless', + x: 3259.1132365767025, + y: 4794.459220787018, + z: -2488.8366131756507, + }, + }, + { + id: '6736', + data: { + label: 'Sage Group for $260 Million', + x: 5475.432507129382, + y: 3230.0242202184563, + z: 3460.2421757479656, + }, + }, + { + id: '6735', + data: { + label: 'Interact Commerce Group', + x: 3747.2434124455276, + y: -4840.209710569825, + z: -750.9738969845507, + }, + }, + { + id: '6734', + data: { + label: 'Convergent Communications', + x: 2357.083152679573, + y: 6006.753698046017, + z: 1970.5625659378125, + }, + }, + { + id: '6733', + data: { + label: 'Texas Pacific Group', + x: 2258.0428239899607, + y: 5797.279504975479, + z: 2307.774544400862, + }, + }, + { + id: '6732', + data: { + label: 'Atlas', + x: -2014.713341327322, + y: 252.03451431272705, + z: -3299.380746656233, + }, + }, + { + id: '6730', + data: { + label: 'Comm-Press', + x: 4712.186227481588, + y: -4394.173736665315, + z: 1693.7173649747315, + }, + }, + { + id: '6729', + data: { + label: 'Research Triangle Commerce', + x: 4814.518322196702, + y: -4288.449946949155, + z: 927.3767708369364, + }, + }, + { + id: '6731', + data: { + label: 'J.D. Edwards', + x: -2267.5510936640194, + y: 150.6405243992331, + z: -2983.406112679665, + }, + }, + { + id: '6728', + data: { + label: 'Alantro Communications', + x: 2903.4900388396172, + y: 5219.837819027517, + z: -2472.5131360991845, + }, + }, + { + id: '6727', + data: { + label: 'TI', + x: 3155.4196325994367, + y: 5058.840303281723, + z: -2197.8083756164397, + }, + }, + { + id: '6726', + data: { + label: 'Anderson Consulting Subsidiary ePValue', + x: 1092.2405334980144, + y: -3282.8714910650137, + z: -3219.9762562770798, + }, + }, + { + id: '6725', + data: { + label: 'ICG Commerce', + x: 1197.240631992542, + y: -2942.8214899586774, + z: -3506.221518174534, + }, + }, + { + id: '6724', + data: { + label: 'SAP Aktiengesellschaft', + x: 2146.5823547990035, + y: 5554.531929437258, + z: 72.241103989005, + }, + }, + { + id: '6722', + data: { + label: 'Aces Research', + x: -2275.0481410015673, + y: 3415.1653032510344, + z: -867.484454335048, + }, + }, + { + id: '6723', + data: { + label: 'Telogy Networks', + x: 2414.0369677258614, + y: 963.4578133375305, + z: -3892.63411325221, + }, + }, + { + id: '6721', + data: { + label: 'RMI.Net', + x: -2317.1351401652832, + y: 3404.694078875392, + z: -1273.2271405377828, + }, + }, + { + id: '6720', + data: { + label: 'CommerceBid.com', + x: 1880.0259560273219, + y: 5458.153581984722, + z: 794.3441476642801, + }, + }, + { + id: '6719', + data: { + label: 'Australia E-Commerce Pty', + x: 5840.810007000903, + y: 3200.3627515358935, + z: -323.47797876282914, + }, + }, + { + id: '6718', + data: { + label: 'Toyota Tsusho', + x: 5786.652119919718, + y: 3410.7687764096568, + z: -699.148388216981, + }, + }, + { + id: '6717', + data: { + label: 'Comedy.com', + x: 4943.599197730674, + y: 372.2924052285701, + z: 4609.745214153006, + }, + }, + { + id: '6716', + data: { + label: 'Z.com', + x: 4606.765766403522, + y: 256.09714051324187, + z: 4792.46858571911, + }, + }, + { + id: '6715', + data: { + label: 'Media One', + x: 1251.6898969218996, + y: 60.48589569904887, + z: 1893.2553949671585, + }, + }, + { + id: '6714', + data: { + label: 'FreshFlowerSource.com', + x: -2841.055897099078, + y: 2906.8215988343186, + z: 2289.8902309258697, + }, + }, + { + id: '6713', + data: { + label: 'Flowers USA', + x: -2499.047086971422, + y: 3113.4226505466413, + z: 2333.6093817321334, + }, + }, + { + id: '6712', + data: { + label: 'Justatip.com', + x: -2427.693473035295, + y: 1672.0536818740884, + z: -2707.3693526104817, + }, + }, + { + id: '6711', + data: { + label: 'Traffix', + x: -2253.2249909871225, + y: 1554.2662220247307, + z: -3046.900235108389, + }, + }, + { + id: '6710', + data: { + label: 'People.com Consulting', + x: 6170.017600166504, + y: 886.9785084116589, + z: 3467.1289531067664, + }, + }, + { + id: '6709', + data: { + label: 'Synaptic', + x: 4090.419801071861, + y: -1743.4679849698493, + z: -821.518708028354, + }, + }, + { + id: '8296', + data: { + label: 'WKKX-FM', + x: 2836.913056114581, + y: -2523.84628184661, + z: -1993.2524926154815, + }, + }, + { + id: '6707', + data: { + label: 'euro909.com A/S', + x: 6871.456727055935, + y: 2971.276284843895, + z: -825.6112737909841, + }, + }, + { + id: ' HI)', + data: { + label: 'KGMB-TV (Honolulu', + x: 5081.6167412186105, + y: 4483.920147905757, + z: 695.9529057986331, + }, + }, + { + id: '6706', + data: { + label: 'TransWestern', + x: 4720.019836046328, + y: -1548.2582289887816, + z: -3924.4688369663686, + }, + }, + { + id: '6705', + data: { + label: 'WorldPages', + x: 5048.5036034580535, + y: -1490.5073102329443, + z: -3697.591500659749, + }, + }, + { + id: '6704', + data: { + label: 'Searchbutton', + x: 5113.928260310484, + y: 3959.785071938473, + z: 2303.4787885970736, + }, + }, + { + id: '6703', + data: { + label: 'Mondosoft', + x: 5336.329313343583, + y: 4299.394407740346, + z: 2284.9002036206994, + }, + }, + { + id: '6702', + data: { + label: 'HotJobs.com for $460 Million', + x: 5458.1352683963905, + y: 173.38060337222612, + z: -4172.020150092557, + }, + }, + { + id: '6701', + data: { + label: 'Monster.com', + x: 5195.195341879196, + y: 203.7499059329758, + z: -4490.8483163576075, + }, + }, + { + id: '6700', + data: { + label: 'Barnes & Noble', + x: -996.2510989721764, + y: 1546.5560070804634, + z: -4639.318797270008, + }, + }, + { + id: '6699', + data: { + label: 'enews', + x: -1002.6342811065756, + y: 1932.3736046644187, + z: -4754.69066979626, + }, + }, + { + id: '6698', + data: { + label: 'PETsMART.com', + x: -3954.5665054750875, + y: 1029.3324175996697, + z: 1371.7178589489959, + }, + }, + { + id: '6697', + data: { + label: 'PETsMART', + x: -4046.1849353683806, + y: 716.8811000868227, + z: 1134.6617669049874, + }, + }, + { + id: '6696', + data: { + label: 'ProcureZone.com', + x: 4155.965167374702, + y: 2558.3107791048405, + z: -4093.7994546435707, + }, + }, + { + id: '6694', + data: { + label: 'ipoPros', + x: 3637.973859216196, + y: 1595.9573943292962, + z: -483.8378860655632, + }, + }, + { + id: '6695', + data: { + label: 'Mitsui', + x: 4102.350961311495, + y: 2409.0534908489444, + z: -4464.87527075542, + }, + }, + { + id: '6693', + data: { + label: 'TheStreet', + x: 3306.471200446228, + y: 1370.511822589102, + z: -254.98978663305533, + }, + }, + { + id: '6692', + data: { + label: 'Multex.com', + x: 4511.340981050275, + y: 2258.198852920111, + z: -4496.687100224221, + }, + }, + { + id: '6691', + data: { + label: 'Merrill Lynch & Co.', + x: 2641.9318945011632, + y: -3146.346375736936, + z: 3856.354428829895, + }, + }, + { + id: '6690', + data: { + label: 'Maxon', + x: 6249.106640931285, + y: 2186.643422513924, + z: -1643.8915333934863, + }, + }, + { + id: '6686', + data: { + label: 'Fireworks Creative', + x: 6512.602297179215, + y: 2136.158364535379, + z: -1852.6760487202966, + }, + }, + { + id: '6688', + data: { + label: 'COGNICASE', + x: -2060.3438603204695, + y: -1493.1883215414841, + z: -3758.768062003565, + }, + }, + { + id: '6689', + data: { + label: 'Personus', + x: 6449.216323315911, + y: 1851.6039589113882, + z: -2116.384046582062, + }, + }, + { + id: '6687', + data: { + label: 'Enter.Net', + x: 6026.793145251407, + y: 2051.9212047704186, + z: -1871.873945677891, + }, + }, + { + id: '6685', + data: { + label: 'Chili!Soft', + x: 860.4713522862185, + y: -4621.2999882136955, + z: 1168.7664539091395, + }, + }, + { + id: '6684', + data: { + label: 'Cobalt Networks', + x: 910.1543017829896, + y: -5040.4685926313905, + z: 1143.1436020574429, + }, + }, + { + id: '6683', + data: { + label: 'PartsVoice', + x: 1345.9723058352001, + y: 2995.028107008118, + z: 4110.8049301634355, + }, + }, + { + id: '6682', + data: { + label: 'Cobalt Group', + x: 1397.31890935624, + y: 2645.587940069489, + z: 4304.462560687221, + }, + }, + { + id: '6681', + data: { + label: 'Intervu', + x: 4599.030135797684, + y: 2853.332270995613, + z: -4125.408489523475, + }, + }, + { + id: '6680', + data: { + label: 'CNN News Group', + x: 1376.2503323787416, + y: -1316.8779080443926, + z: 1151.4679121986103, + }, + }, + { + id: '6679', + data: { + label: 'TechRepublic for $23 Million', + x: 5594.937627406663, + y: 723.166058560627, + z: 1557.672028053513, + }, + }, + { + id: '6678', + data: { + label: 'Norwest Venture Capital', + x: 5680.165140528283, + y: 903.0333115280005, + z: 2390.6631514819564, + }, + }, + { + id: '6676', + data: { + label: 'MySimon', + x: 5570.304523713246, + y: 349.6790713082529, + z: 1807.4590597091508, + }, + }, + { + id: '6677', + data: { + label: 'techies.com', + x: 5460.684396279068, + y: 702.3273367479948, + z: 2014.9438487987272, + }, + }, + { + id: '6675', + data: { + label: 'Digital Media', + x: 5236.612512324179, + y: 508.07999443503786, + z: 1993.5268728677688, + }, + }, + { + id: '6674', + data: { + label: 'CNet', + x: 7140.7523835249485, + y: -2214.5738841761217, + z: -381.83543698415775, + }, + }, + { + id: '6673', + data: { + label: 'Ziff Davis Media', + x: 1309.058767533433, + y: -3729.3137281414242, + z: -3626.6690683666548, + }, + }, + { + id: '6671', + data: { + label: 'AppWatch', + x: 5654.718794939324, + y: 538.2965695245368, + z: 1647.1472357456735, + }, + }, + { + id: '6670', + data: { + label: 'NetVentures', + x: 5338.804116014186, + y: 296.32513270958515, + z: 1945.5533882132645, + }, + }, + { + id: '6672', + data: { + label: 'ZDNet Group', + x: 3409.8167783711665, + y: 2029.1603478108182, + z: -4847.70335221074, + }, + }, + { + id: '6668', + data: { + label: 'WinFiles.com', + x: 5452.08238012344, + y: 700.0988119291816, + z: 1205.9392327960904, + }, + }, + { + id: '6669', + data: { + label: 'AuctionGate', + x: 5402.71593291698, + y: 879.8055400130792, + z: 1465.0617892945027, + }, + }, + { + id: '6667', + data: { + label: 'Killer App', + x: 5515.428279926194, + y: 582.9852221470525, + z: 1841.8582652209889, + }, + }, + { + id: '6666', + data: { + label: 'Sumo', + x: 5641.187961319373, + y: 354.41466907966776, + z: 1471.7002123665516, + }, + }, + { + id: '6665', + data: { + label: 'Nordby International', + x: 5625.159481179581, + y: 565.9670059049112, + z: 1360.6104225887511, + }, + }, + { + id: '6664', + data: { + label: 'SavvySearch', + x: 5496.117710648456, + y: 281.9917053421405, + z: 1270.1586397343124, + }, + }, + { + id: '6663', + data: { + label: 'NoWonder', + x: 5452.643772893408, + y: 160.2769920955084, + z: 1707.9685383858903, + }, + }, + { + id: '6662', + data: { + label: 'Cnet', + x: -455.532541250352, + y: 5331.68872849663, + z: 2261.2949627512057, + }, + }, + { + id: '6661', + data: { + label: 'CMG Direct', + x: 1128.985492840455, + y: 5395.397103622439, + z: 496.319036970462, + }, + }, + { + id: '6660', + data: { + label: 'MSGI', + x: 1099.455546907572, + y: 5286.138006840711, + z: 882.220417317652, + }, + }, + { + id: '6659', + data: { + label: 'Intelliprep', + x: 4807.5535788515535, + y: 1680.7211253613718, + z: 2215.571659697482, + }, + }, + { + id: '6658', + data: { + label: 'Click2Learn', + x: 3273.3314792786273, + y: -1862.7978443880893, + z: 5281.441879632167, + }, + }, + { + id: '6656', + data: { + label: 'Peak Software', + x: -1327.7004504891815, + y: -1363.9418089361834, + z: 3001.079560133568, + }, + }, + { + id: '6657', + data: { + label: 'US LEC', + x: 2104.074027310631, + y: -4100.903153207662, + z: -2937.6338404438798, + }, + }, + { + id: '6654', + data: { + label: 'Avalon', + x: -1532.5150022241003, + y: -2792.096488244821, + z: -2182.561179896415, + }, + }, + { + id: '6655', + data: { + label: 'Traverse Internet', + x: -1274.1405930673923, + y: -2552.5672933996934, + z: -2406.8008155482353, + }, + }, + { + id: '6653', + data: { + label: 'Innovex', + x: -2815.889442867256, + y: -2445.1261125890583, + z: 1325.4449454329865, + }, + }, + { + id: '6652', + data: { + label: 'Apogee Networks', + x: 5076.049495069737, + y: 2141.3569570782943, + z: 188.43250849837955, + }, + }, + { + id: '6649', + data: { + label: 'NuSpeed', + x: 5830.366498469405, + y: 1874.0109898176906, + z: 65.12720473961392, + }, + }, + { + id: '6651', + data: { + label: 'Netiverse', + x: 5174.189832562554, + y: 2157.0585550794776, + z: -135.67636514408957, + }, + }, + { + id: '6650', + data: { + label: 'Komodo', + x: 5565.934622079141, + y: 1400.9177428729959, + z: 61.766712639825094, + }, + }, + { + id: '6648', + data: { + label: 'IPmobile', + x: 5534.367923459552, + y: 1954.7463173706542, + z: -380.87405431275295, + }, + }, + { + id: '6647', + data: { + label: 'PixStream', + x: 5542.371783943346, + y: 2048.2916969206726, + z: 446.4579726348188, + }, + }, + { + id: '6646', + data: { + label: 'Vovida and IPCell', + x: 5742.9909922942015, + y: 1987.1009215214178, + z: 344.8917224750738, + }, + }, + { + id: '6645', + data: { + label: 'Radiata', + x: 5736.464539576142, + y: 1923.7600798949836, + z: -236.34682075224495, + }, + }, + { + id: '6643', + data: { + label: 'Rhythms NetConnections', + x: 4569.689881579178, + y: 880.8365632891163, + z: 674.4898138055676, + }, + }, + { + id: '6644', + data: { + label: 'ExiO Communications', + x: 5709.483877200111, + y: 2104.7486634747956, + z: -135.618469269248, + }, + }, + { + id: '6642', + data: { + label: 'Be Connected', + x: 5625.540653319617, + y: 1683.7791278749946, + z: -326.11429670052877, + }, + }, + { + id: '6641', + data: { + label: 'Cogency', + x: 5252.392199135139, + y: 1923.504147878197, + z: -356.3784042442588, + }, + }, + { + id: '6640', + data: { + label: 'Amteva', + x: 5548.476005480403, + y: 2224.8225608762978, + z: 218.94422945823177, + }, + }, + { + id: '6639', + data: { + label: 'TransMedia', + x: 5736.900649813659, + y: 2130.573448807077, + z: 104.33305083483324, + }, + }, + { + id: '6638', + data: { + label: 'Calista', + x: 5321.656667797923, + y: 2285.6448451900014, + z: 50.26099596368677, + }, + }, + { + id: '6637', + data: { + label: 'MaxComm Technologies', + x: 5401.451873071159, + y: 2137.852778018993, + z: -272.05857296345107, + }, + }, + { + id: '6636', + data: { + label: 'Danish Net Access Developer', + x: 5410.869730450622, + y: 1417.714415138196, + z: -171.06850843461606, + }, + }, + { + id: '6635', + data: { + label: 'Webline Communications', + x: 5667.315947936843, + y: 1644.6769513227603, + z: 371.5059581707862, + }, + }, + { + id: '6634', + data: { + label: 'Pirelli & C. SAPA', + x: 5125.457133791639, + y: 1665.3018626858702, + z: -246.89297977152864, + }, + }, + { + id: '6633', + data: { + label: 'Portal Software', + x: 5585.604759320367, + y: 2277.484707599163, + z: -193.8250547463545, + }, + }, + { + id: '6632', + data: { + label: 'AudioLogic', + x: -1114.9355456645303, + y: -556.5611165098084, + z: -3469.3891035309575, + }, + }, + { + id: '6631', + data: { + label: 'Netmarquee', + x: -1629.569152464406, + y: 210.71631761141944, + z: -3203.7958835866116, + }, + }, + { + id: '6630', + data: { + label: 'Circle.com', + x: -1416.5150708164895, + y: 347.27338684207155, + z: -3531.6673388260024, + }, + }, + { + id: '6627', + data: { + label: 'MemberWorks', + x: 2567.6688713138624, + y: -4508.747810553805, + z: -648.6405632229273, + }, + }, + { + id: '6629', + data: { + label: 'CINAR', + x: 2467.072393670378, + y: -1688.8146196186894, + z: 1494.779428594047, + }, + }, + { + id: '6623', + data: { + label: 'Chordiant', + x: 2408.602091566789, + y: -2501.5268922924297, + z: 4750.264748118898, + }, + }, + { + id: '6628', + data: { + label: 'CIC Interactive', + x: 2842.406423669723, + y: -4207.278923043508, + z: -700.540925382948, + }, + }, + { + id: '6626', + data: { + label: 'Solution Partners', + x: -1280.249487319275, + y: 4547.524302542422, + z: -1325.5614046397643, + }, + }, + { + id: '6625', + data: { + label: 'Chorus Communications Group', + x: 2630.7375067710855, + y: -2153.3926574795496, + z: 1959.0921142926345, + }, + }, + { + id: '6624', + data: { + label: 'White Spider', + x: 2188.095196626421, + y: -2275.144742310405, + z: 5035.90096162648, + }, + }, + { + id: '6622', + data: { + label: 'Edgenet', + x: -3308.1121355273353, + y: 915.3563516271308, + z: 1278.2038797960545, + }, + }, + { + id: '6621', + data: { + label: 'Choice One', + x: -3368.904287530882, + y: 1016.4109145194267, + z: 1660.609646311315, + }, + }, + { + id: '6620', + data: { + label: 'Little Universe', + x: -436.21653061695434, + y: -570.5768479986295, + z: 4254.13259047521, + }, + }, + { + id: '6617', + data: { + label: 'Sprint FON Group', + x: 596.437051621799, + y: -1878.3667384900582, + z: 3818.4342579106633, + }, + }, + { + id: '6619', + data: { + label: 'Continental Choice Care', + x: -141.02281859281953, + y: -567.1694823892788, + z: 4545.385505935845, + }, + }, + { + id: '6618', + data: { + label: 'Peoples Choice TV', + x: 649.3411181565049, + y: -1779.9267093346414, + z: 4250.256366818949, + }, + }, + { + id: '6616', + data: { + label: 'Venex', + x: 4868.265579998968, + y: 8.446412164731724, + z: 5019.760743260337, + }, + }, + { + id: '6615', + data: { + label: 'PCS Innovations', + x: 2240.0006830751327, + y: 4350.0973447228025, + z: 3825.7347870486046, + }, + }, + { + id: '6613', + data: { + label: 'Globo.com', + x: 1396.4625889305742, + y: 384.3999289701839, + z: 5365.590204886451, + }, + }, + { + id: '6614', + data: { + label: 'Schlumberger', + x: 2104.7928919689266, + y: 4104.402189880251, + z: 4105.871856063606, + }, + }, + { + id: '6611', + data: { + label: 'MIH', + x: 2519.439730412135, + y: 698.5289408707337, + z: 458.0649850733909, + }, + }, + { + id: '6612', + data: { + label: 'Telecom Italia', + x: 1300.290679514402, + y: 756.9214403757301, + z: 5510.909106855217, + }, + }, + { + id: '6610', + data: { + label: 'StockHouse Media', + x: 5287.896773998116, + y: -34.23353044397981, + z: 4326.253438387019, + }, + }, + { + id: '6609', + data: { + label: 'Chinadotcom', + x: 5016.373443283776, + y: -15.160459103855041, + z: 4637.7651916477225, + }, + }, + { + id: '6608', + data: { + label: 'Billserv', + x: 2058.4353497716024, + y: -2419.2932111981563, + z: 238.38553824588766, + }, + }, + { + id: '6607', + data: { + label: 'LifeLink', + x: 4450.175334096275, + y: 2008.8991126905803, + z: -3802.825841720304, + }, + }, + { + id: '6606', + data: { + label: 'Ceragon Networks', + x: 3921.1897891348635, + y: -3228.254155959096, + z: -3368.5246655640094, + }, + }, + { + id: '6605', + data: { + label: 'The Internet Channel', + x: 940.8606946554498, + y: -2590.8456896473363, + z: 3184.2284824206754, + }, + }, + { + id: '6604', + data: { + label: 'Cyberbranch', + x: -1103.3953963027623, + y: -3762.3629993526115, + z: -3311.162785360626, + }, + }, + { + id: '6602', + data: { + label: 'Dishnet DSL', + x: 3363.7328282172793, + y: 1757.1615072085717, + z: 2034.7922389655962, + }, + }, + { + id: '6603', + data: { + label: 'CGI', + x: 1666.4159123074337, + y: -5211.090747708035, + z: -1142.9459087113369, + }, + }, + { + id: '6601', + data: { + label: 'OSC', + x: -150.70791161036362, + y: -1648.0424007886975, + z: -4360.415814245411, + }, + }, + { + id: '6599', + data: { + label: 'Princeton eCom', + x: 591.3927491155856, + y: -1844.0662868274053, + z: 884.8990945388424, + }, + }, + { + id: '6596', + data: { + label: 'Centra', + x: 932.9926379006006, + y: 2902.2195433391876, + z: -3865.5542039278725, + }, + }, + { + id: '6600', + data: { + label: 'Jaleco', + x: 6373.837030039926, + y: 108.72433208177478, + z: -1438.6540183315824, + }, + }, + { + id: '6598', + data: { + label: 'New Century Equity Holdings', + x: 162.53710481728606, + y: -2059.4080746429504, + z: 964.9228621669348, + }, + }, + { + id: '6597', + data: { + label: 'MindLever', + x: 722.8950507991303, + y: 2792.2605302420743, + z: -4191.597255197901, + }, + }, + { + id: '6595', + data: { + label: 'Patagon.com', + x: -771.3381996900348, + y: 3673.670689725989, + z: 4064.181140097857, + }, + }, + { + id: '6594', + data: { + label: 'Banco Santander Central Hispano S.A.', + x: -679.4476069735571, + y: 3390.4657311673836, + z: 4339.144261504668, + }, + }, + { + id: '6593', + data: { + label: 'Integrated Systems', + x: 538.3348647930154, + y: 3515.3837512605733, + z: 3442.933455779577, + }, + }, + { + id: '6591', + data: { + label: 'CellPoint', + x: -2414.4422188779463, + y: 3991.921431195043, + z: -161.75131479672413, + }, + }, + { + id: '6592', + data: { + label: 'Centennial', + x: -3497.7022900608104, + y: 1942.0356437744404, + z: -2188.997824887088, + }, + }, + { + id: '6590', + data: { + label: 'E Com Ventures', + x: -2493.6566711385235, + y: 3777.057753625858, + z: 178.21055124261432, + }, + }, + { + id: '6588', + data: { + label: 'TeleSpeed', + x: -2431.438580917152, + y: -2423.5677871328758, + z: 2358.1329277670097, + }, + }, + { + id: '6589', + data: { + label: 'CCI', + x: -2278.6988780949064, + y: -2223.6465044690485, + z: 2675.3710479600445, + }, + }, + { + id: '6587', + data: { + label: 'MovieTickets.com', + x: 881.4676406850958, + y: -103.3998439652863, + z: 627.7154890664087, + }, + }, + { + id: '6586', + data: { + label: 'ThirdAge Media', + x: 915.3162793973652, + y: 87.04361763201024, + z: 447.3772100464226, + }, + }, + { + id: '6585', + data: { + label: 'Contentville', + x: -3542.964181107579, + y: 385.21007597581183, + z: 686.7605392086085, + }, + }, + { + id: '6583', + data: { + label: 'DayPlan.com', + x: 1914.0816937998354, + y: 3306.198488695177, + z: 3964.395561157976, + }, + }, + { + id: '6584', + data: { + label: 'Medscape', + x: 837.4665297322356, + y: -166.30820996603813, + z: 283.15734025945176, + }, + }, + { + id: '6582', + data: { + label: 'SensCom', + x: 2392.4998454439196, + y: 3289.0701159392183, + z: 4092.6552238562094, + }, + }, + { + id: '6581', + data: { + label: 'CraftClick.com', + x: 2196.9171525084917, + y: 3867.832068421582, + z: 3607.937184302675, + }, + }, + { + id: '6580', + data: { + label: 'Venture Catalyst', + x: 2194.958763324423, + y: 3594.9839980896513, + z: 3911.3616965572555, + }, + }, + { + id: '6579', + data: { + label: 'Remainder of Iridium', + x: 1935.4760417480966, + y: 2596.9752721743534, + z: -4964.3069864707595, + }, + }, + { + id: '6578', + data: { + label: 'Castle Harlan', + x: 2032.623271220357, + y: 2374.3474366544083, + z: -5282.676193990791, + }, + }, + { + id: '6577', + data: { + label: 'Car Rental Direct.com', + x: 4105.623228954191, + y: 5674.580102156513, + z: 645.733264212772, + }, + }, + { + id: '6575', + data: { + label: 'Greenlight.com', + x: 5298.393736578011, + y: -576.527285009878, + z: 3461.88068480291, + }, + }, + { + id: '6573', + data: { + label: 'Idealab', + x: 1177.8406892813603, + y: 4505.331703180879, + z: -3403.636347898547, + }, + }, + { + id: '6576', + data: { + label: 'GenesisIntermedia', + x: 3880.0947782239828, + y: 5528.050888116725, + z: 345.10558448819376, + }, + }, + { + id: '6574', + data: { + label: 'Autodata', + x: 5459.524265953537, + y: -831.8745765991204, + z: 3547.213994342318, + }, + }, + { + id: '6572', + data: { + label: 'CarsDirect.com', + x: -3225.493174811484, + y: -437.12195208090924, + z: 3069.0639619950152, + }, + }, + { + id: '6571', + data: { + label: 'idealab!', + x: 5582.242011812376, + y: -661.5980030966643, + z: 3344.3372370794214, + }, + }, + { + id: '6569', + data: { + label: 'Intel Capital', + x: 583.9848070914475, + y: 2292.821121437878, + z: -5156.327841115055, + }, + }, + { + id: '6570', + data: { + label: 'R Systems', + x: 904.2735647533526, + y: 2531.966017067663, + z: -5151.431574911483, + }, + }, + { + id: '6568', + data: { + label: 'HighGround Systems', + x: 416.4818446518142, + y: -5244.632804898152, + z: 831.523861487422, + }, + }, + { + id: '6567', + data: { + label: 'Portal Connect', + x: 3441.3009944551322, + y: 1096.6004188488623, + z: 4893.6617985731355, + }, + }, + { + id: '6565', + data: { + label: 'Symphony Systems', + x: 3122.871176788921, + y: 4844.322138721292, + z: 2566.533021726778, + }, + }, + { + id: '6566', + data: { + label: 'SER Systems AG', + x: 3640.9761732755646, + y: 1402.1335742372178, + z: 4705.020258213995, + }, + }, + { + id: '6564', + data: { + label: 'Woodhead Industries', + x: 3077.4031767968263, + y: 4642.845978091637, + z: 2907.3554652453968, + }, + }, + { + id: '6563', + data: { + label: 'Daleen Technologies', + x: -722.709596452697, + y: 4811.4640815718985, + z: 1935.970551740918, + }, + }, + { + id: '6562', + data: { + label: 'SAIC', + x: -745.7916849658009, + y: 4916.8668601406935, + z: 2328.229306998698, + }, + }, + { + id: '6561', + data: { + label: 'Daily-e', + x: 6309.782628861424, + y: 3879.0297317306167, + z: -514.8261557267336, + }, + }, + { + id: '6560', + data: { + label: 'Interliant', + x: 6100.174257912503, + y: 3536.612888004162, + z: -387.41918516977415, + }, + }, + { + id: '6559', + data: { + label: 'Med-Link', + x: 5172.952824406351, + y: 4421.216162775208, + z: -2762.109815028807, + }, + }, + { + id: '6558', + data: { + label: 'CareInsite', + x: 5408.999397233385, + y: 4450.10288330961, + z: -2434.51233848723, + }, + }, + { + id: '6557', + data: { + label: 'Cyber Media Group', + x: -2760.6171944480075, + y: -1279.7733497021632, + z: 3261.7915841857994, + }, + }, + { + id: '6556', + data: { + label: 'AppOnline.com', + x: -2383.000296174792, + y: -1244.645718743848, + z: 3397.9352041898574, + }, + }, + { + id: '6555', + data: { + label: 'Cyber-Tech', + x: -800.498528284719, + y: -2934.864035368537, + z: -2456.970964300347, + }, + }, + { + id: '6554', + data: { + label: 'Cybertech Wireless', + x: 599.6354923544937, + y: 3474.9466726496653, + z: -3790.6340911657103, + }, + }, + { + id: '6553', + data: { + label: 'Fastnet', + x: 671.9129804424211, + y: 3622.91706885732, + z: -3419.461772162997, + }, + }, + { + id: '6552', + data: { + label: 'ExpressGold', + x: 4576.890286051159, + y: 1587.813526067887, + z: 2698.404017335196, + }, + }, + { + id: '6551', + data: { + label: 'PaylinX', + x: 4358.153849581407, + y: 1505.6173791218134, + z: 2801.4632273208854, + }, + }, + { + id: '6550', + data: { + label: 'Mediconsult.com', + x: -559.2306817493901, + y: -3104.4808301235744, + z: -2734.482781739463, + }, + }, + { + id: '6548', + data: { + label: 'Andrx', + x: -310.6058387328783, + y: -3076.3650439291628, + z: -3471.16284642583, + }, + }, + { + id: '6549', + data: { + label: 'Cybear Group', + x: 203.30549537080017, + y: 2280.2632362823874, + z: -4533.76973933933, + }, + }, + { + id: '6547', + data: { + label: 'AHTs Operating Assets', + x: -0.942945535516428, + y: -3100.94868652512, + z: -3310.6631378188304, + }, + }, + { + id: '6546', + data: { + label: 'Telegraph.net New Technology', + x: -450.01553543476484, + y: -2855.82821236753, + z: -3278.1511998173187, + }, + }, + { + id: '6545', + data: { + label: 'Cybear', + x: -315.0962096333773, + y: -3168.83061004545, + z: -3060.9692293789362, + }, + }, + { + id: '6544', + data: { + label: 'Equant N.V.', + x: 36.77492698380777, + y: -2587.22520690775, + z: 1592.1122459242144, + }, + }, + { + id: '6543', + data: { + label: 'Avantron', + x: 5475.00502802285, + y: 4893.784198771055, + z: 1419.301795072024, + }, + }, + { + id: '6542', + data: { + label: 'Sunrise Telecom', + x: 5741.720765413052, + y: 4830.789973782423, + z: 1117.9428989948888, + }, + }, + { + id: '6541', + data: { + label: 'VarTec Telecom', + x: 2784.9675199088756, + y: -5478.335801540115, + z: 999.6269476988862, + }, + }, + { + id: '6540', + data: { + label: 'Lightyear Communications', + x: 2785.5911266765734, + y: -5476.415915092342, + z: 582.3255401775946, + }, + }, + { + id: '6539', + data: { + label: 'Pangea', + x: 6772.441365287626, + y: -1470.1768654732666, + z: 1260.8996381155744, + }, + }, + { + id: '6538', + data: { + label: 'Manitoba Telecom', + x: 6819.9612877749605, + y: -1200.7330080609372, + z: 961.4338356013129, + }, + }, + { + id: '6537', + data: { + label: '//hot-orange.com', + x: 729.264287369656, + y: 4230.643124010845, + z: -2399.5498791381933, + }, + }, + { + id: '6535', + data: { + label: 'GST Telecom', + x: 2477.543248473649, + y: -491.3049932107754, + z: 2263.2708141749235, + }, + }, + { + id: '6534', + data: { + label: 'Able Telecom', + x: 2292.116181551378, + y: -2763.9749741174237, + z: 4809.470328840405, + }, + }, + { + id: '6536', + data: { + label: 'VersaTel', + x: 550.1299740944318, + y: 4377.5254706588275, + z: -2066.82113393707, + }, + }, + { + id: '6531', + data: { + label: 'Redstone Telecom', + x: 543.8896215569611, + y: 3796.592160779696, + z: -3068.6844282515003, + }, + }, + { + id: '6533', + data: { + label: 'Bracknell', + x: 1984.5172494337744, + y: -2897.184805054261, + z: 4584.964840241853, + }, + }, + { + id: '6532', + data: { + label: 'Dialnet', + x: 390.1754640065622, + y: 3846.871010733869, + z: -2686.7272365161575, + }, + }, + { + id: '6530', + data: { + label: 'Banco Bradesco S.A.', + x: -3128.1906505307425, + y: -664.6675255835972, + z: -3124.4906592198713, + }, + }, + { + id: '6528', + data: { + label: 'KMC Telecom Holdings', + x: 4930.497777054563, + y: -3625.2306679514645, + z: 3321.2654561075615, + }, + }, + { + id: ' SGPS', + data: { + label: 'Portugal Telecom', + x: -1272.3770020819366, + y: 1248.3961159170553, + z: 4594.71836733757, + }, + }, + { + id: '6524', + data: { + label: 'Cumulus Media', + x: 1005.2611945978281, + y: 2914.539497502443, + z: 4577.312789148674, + }, + }, + { + id: '6527', + data: { + label: 'CIT', + x: 7408.414814308694, + y: -594.5461727625874, + z: 1867.003953026475, + }, + }, + { + id: '6526', + data: { + label: 'eGlobe', + x: 7221.230798521636, + y: -593.6336282072004, + z: 2237.4052524601543, + }, + }, + { + id: '6525', + data: { + label: 'Digital Software Maker', + x: 1039.9139377611216, + y: 2566.3662924198106, + z: 4782.477250396507, + }, + }, + { + id: '6523', + data: { + label: 'WebServe', + x: 5139.864500006196, + y: 4327.676002385428, + z: 1184.424969239927, + }, + }, + { + id: '6522', + data: { + label: 'CT Communications', + x: 5023.825826070741, + y: 4279.256656204701, + z: 1566.920301560285, + }, + }, + { + id: '6520', + data: { + label: 'Datalink.net', + x: 2269.0587142470317, + y: 901.4243227341437, + z: 5001.229854993729, + }, + }, + { + id: '6518', + data: { + label: 'Quote.com', + x: 3152.1877771918603, + y: -947.301198309309, + z: -4037.763785554158, + }, + }, + { + id: '6521', + data: { + label: 'Cross Communications', + x: 3171.8472746865064, + y: 2254.6723185371543, + z: -3620.8312266030766, + }, + }, + { + id: '6519', + data: { + label: 'IPO Crossroads', + x: 3524.471709164, + y: -1154.9796139711023, + z: -4122.623651623392, + }, + }, + { + id: '6517', + data: { + label: 'VitalCom', + x: -3307.678167321115, + y: -2590.9373808470027, + z: 946.6941025355774, + }, + }, + { + id: '6516', + data: { + label: 'Data Critical', + x: -3340.0481630001086, + y: -2578.639797711029, + z: 544.1658144323435, + }, + }, + { + id: '6515', + data: { + label: 'Remarq', + x: -85.19268519623724, + y: 4659.899436120776, + z: 74.61758720700857, + }, + }, + { + id: '6513', + data: { + label: 'PeerLogic', + x: -180.33419201525464, + y: 4933.9759492086105, + z: 309.9681929009058, + }, + }, + { + id: '6512', + data: { + label: 'Fabrik Connect', + x: -315.2658555369705, + y: 4552.730197083246, + z: 867.995915196649, + }, + }, + { + id: '6514', + data: { + label: 'Netmosphere', + x: -418.0148033259748, + y: 4864.904520875423, + z: 583.5595252973251, + }, + }, + { + id: '6511', + data: { + label: 'Amplitude Software', + x: 147.04532258356465, + y: 4790.138753149146, + z: 452.8724802311781, + }, + }, + { + id: '6510', + data: { + label: 'Isocor', + x: 33.80502233787176, + y: 4707.694458747532, + z: 776.9993729850297, + }, + }, + { + id: '6508', + data: { + label: 'UltraRF', + x: 2107.9325308652806, + y: 5819.736386147394, + z: -2125.709994859076, + }, + }, + { + id: '6509', + data: { + label: 'E*TRADE Group', + x: -476.4970745709621, + y: 4617.070735772218, + z: 171.08721119372822, + }, + }, + { + id: '6507', + data: { + label: 'Nippon Credit Bank', + x: 4154.91046505792, + y: 1414.0241005594933, + z: -213.58067055413852, + }, + }, + { + id: '6506', + data: { + label: 'Aureal Semiconductor', + x: -1164.7219723420453, + y: 362.77049169642413, + z: -4316.567552991806, + }, + }, + { + id: '6505', + data: { + label: 'Creative Technology', + x: -1132.1445427494373, + y: 114.7308276404905, + z: -4646.5861109308125, + }, + }, + { + id: '6504', + data: { + label: 'Creative Business Solutions', + x: 2367.559995642957, + y: 4217.683740674, + z: -3870.704481712579, + }, + }, + { + id: '6500', + data: { + label: 'DataBank Intl', + x: 3404.9768220151586, + y: 1966.4911257457172, + z: 1311.1250144156757, + }, + }, + { + id: '6502', + data: { + label: 'PointServe', + x: 1648.6714698803157, + y: 1497.9676533990025, + z: 501.9796296459463, + }, + }, + { + id: '6503', + data: { + label: 'Scoot.com plc', + x: 1180.514221901433, + y: 4830.40580228435, + z: -3764.800239891635, + }, + }, + { + id: '6501', + data: { + label: 'Tickets.com', + x: 1087.6489351638227, + y: 214.75088889798866, + z: 1051.2846730983651, + }, + }, + { + id: '6499', + data: { + label: 'Digital Courier', + x: 4486.989848168905, + y: 1518.6582074308371, + z: 4177.189244405859, + }, + }, + { + id: '6498', + data: { + label: 'F-Secure', + x: 3553.611223148953, + y: 1897.7198036314603, + z: 1435.4673277467825, + }, + }, + { + id: '6497', + data: { + label: 'Fastech', + x: 5068.331678227776, + y: 4371.520133636325, + z: 2725.2218933100858, + }, + }, + { + id: '6495', + data: { + label: 'Nelvana', + x: 6140.490926185379, + y: 1956.6145134917233, + z: 3551.1111074723913, + }, + }, + { + id: '6494', + data: { + label: 'Corus', + x: 6191.718112997678, + y: 1676.1235422632135, + z: 3255.669963250148, + }, + }, + { + id: '6493', + data: { + label: 'Tele.ring', + x: 3265.1570023521767, + y: 5700.903805413361, + z: -34.43328417517763, + }, + }, + { + id: '6496', + data: { + label: 'Cotelligent', + x: 4845.050427655552, + y: 4033.5938618380424, + z: 2745.1058124019874, + }, + }, + { + id: '6492', + data: { + label: 'Western Wireless', + x: 3309.9998295704486, + y: 5371.702418023352, + z: -260.6182179786923, + }, + }, + { + id: '6491', + data: { + label: 'Corporate Subscription Services', + x: 3579.8896056368153, + y: 4852.160839474934, + z: 2195.44985798072, + }, + }, + { + id: '6490', + data: { + label: 'RoweCom', + x: 3701.957361935982, + y: 5181.554010760489, + z: 1985.729901111965, + }, + }, + { + id: '6489', + data: { + label: 'Corporate Technology Information Services', + x: 1212.2077549029354, + y: 2652.1900900586456, + z: -4368.6894245125695, + }, + }, + { + id: '6488', + data: { + label: 'OneSource Information Services', + x: 1334.2826329908428, + y: 2493.6666285052142, + z: -4722.753093647193, + }, + }, + { + id: '6486', + data: { + label: 'Hatcher Associates', + x: 1505.8345433218647, + y: 4483.394506134048, + z: 2717.8938476822123, + }, + }, + { + id: '6484', + data: { + label: 'CoreExpress', + x: 461.7658012158534, + y: 2192.131569038858, + z: -3857.793878885587, + }, + }, + { + id: '6487', + data: { + label: 'NZ Applied Technologies', + x: 4513.2405562833355, + y: 4848.460883623831, + z: 2108.8610782669803, + }, + }, + { + id: '6485', + data: { + label: 'Morgan Stanley Dean Witter & Co.', + x: 308.6345712864245, + y: 2458.491103651917, + z: -4122.488877482065, + }, + }, + { + id: '6482', + data: { + label: 'Cooking.com', + x: -2524.288682160274, + y: -3083.7223131334144, + z: -1889.4944421216742, + }, + }, + { + id: '6483', + data: { + label: 'Benchmark Capital', + x: 419.85662960916807, + y: 1798.152548201872, + z: -3971.799275469128, + }, + }, + { + id: '6481', + data: { + label: 'Starbucks', + x: -2710.1559399760918, + y: -2769.370138215257, + z: -2063.557111594678, + }, + }, + { + id: '6479', + data: { + label: 'Seeker Software', + x: -1718.0080711962692, + y: 3160.458894283085, + z: -526.7734912747227, + }, + }, + { + id: '6478', + data: { + label: 'Subsidiary Multi-User Solutions', + x: 3492.386942550376, + y: -2863.28067726093, + z: -2971.4384140309276, + }, + }, + { + id: '6480', + data: { + label: 'Continental AG', + x: 6161.600900304762, + y: -1966.3116594056198, + z: -473.9924467320271, + }, + }, + { + id: '6477', + data: { + label: 'Computone', + x: 3219.8594140356763, + y: -2832.7745079876595, + z: -3261.4143376700667, + }, + }, + { + id: '6476', + data: { + label: 'Fast Search & Transfer', + x: 2834.2535857015696, + y: -698.9530735400848, + z: -3007.1172867649097, + }, + }, + { + id: '6475', + data: { + label: 'Dell', + x: 2715.092818603847, + y: -664.3630093680925, + z: -2206.3659146471678, + }, + }, + { + id: '6474', + data: { + label: 'Computer Design Associates', + x: 2776.25159210081, + y: 5821.7923434582135, + z: -1366.5977834834473, + }, + }, + { + id: '6473', + data: { + label: 'Juniper Group', + x: 2926.188934459343, + y: 5719.847239482421, + z: -1728.7726104542699, + }, + }, + { + id: '6472', + data: { + label: 'Infinite Technologies', + x: -1890.3281788297602, + y: -3683.643609589699, + z: -1290.4817454112344, + }, + }, + { + id: '6471', + data: { + label: 'AVT', + x: -2248.073507191674, + y: -3854.1017097665485, + z: -1218.1043654658372, + }, + }, + { + id: '6470', + data: { + label: 'Optec', + x: 869.4430582569235, + y: -2861.223849759305, + z: -4335.573156867214, + }, + }, + { + id: '6469', + data: { + label: 'JMW Capital Partners', + x: 1257.4275779304628, + y: -2746.977203038008, + z: -4363.430563655662, + }, + }, + { + id: '6468', + data: { + label: 'Lifestyle Technologies', + x: -1066.1715003648674, + y: -3181.3563146508723, + z: -1613.5507947529884, + }, + }, + { + id: '6467', + data: { + label: 'eResource Capital Group', + x: -747.496642819453, + y: -3000.0227320846116, + z: -1786.9944289857015, + }, + }, + { + id: '6466', + data: { + label: 'CanWest Global Communications', + x: 399.3842062251595, + y: -4226.734348505464, + z: 3371.329527281965, + }, + }, + { + id: '6465', + data: { + label: 'IBS', + x: -654.6607217520348, + y: 3297.154597776427, + z: -1957.781181734465, + }, + }, + { + id: '6461', + data: { + label: 'ConnectInc.com', + x: 627.3670976201264, + y: 2777.4994319195853, + z: 4375.106889030969, + }, + }, + { + id: '6464', + data: { + label: 'CanWest', + x: -602.917090096213, + y: 2889.763952824053, + z: -1736.0005024544043, + }, + }, + { + id: '6462', + data: { + label: 'Sun', + x: 5839.711918907059, + y: -1675.171256527718, + z: -3008.5750372613215, + }, + }, + { + id: '6460', + data: { + label: 'Calico Commerce', + x: 529.1211033312251, + y: 3070.846056983318, + z: 4115.927184884372, + }, + }, + { + id: '6457', + data: { + label: 'Caldera', + x: 4633.762267671044, + y: 2661.5636028603813, + z: -3606.8839530427886, + }, + }, + { + id: '6459', + data: { + label: 'Tarantella', + x: -2861.926770771919, + y: 1856.330929274169, + z: 1984.3135841394123, + }, + }, + { + id: '6463', + data: { + label: 'Canal Plus', + x: 653.2769985247091, + y: -5026.174121074175, + z: 995.8420851473844, + }, + }, + { + id: '6458', + data: { + label: 'Ragula', + x: -2599.5597094218465, + y: 1689.9411112678456, + z: 2113.79748611524, + }, + }, + { + id: '6456', + data: { + label: 'CAIS Software', + x: 5230.7406480554455, + y: 2094.376007023665, + z: 403.7653588055277, + }, + }, + { + id: '6455', + data: { + label: 'Atcom', + x: 195.27673977684515, + y: 2015.615616270428, + z: -2500.8079489982133, + }, + }, + { + id: '6453', + data: { + label: 'Compuware', + x: -2404.809932242278, + y: 3546.975806940662, + z: -399.64692079143595, + }, + }, + { + id: '6454', + data: { + label: 'CACI Internationals Comnet Products Group', + x: 6858.152239515751, + y: 2782.728659340225, + z: 2239.6854943368608, + }, + }, + { + id: '6450', + data: { + label: 'CacheFlow', + x: -2600.694789104249, + y: -2041.2779806675512, + z: -801.2013578351679, + }, + }, + { + id: '6452', + data: { + label: 'Springbank Networks', + x: -2790.676135528437, + y: -1887.9787790033079, + z: -471.9932363885972, + }, + }, + { + id: '6451', + data: { + label: 'Entera', + x: -2740.337407801598, + y: -1765.7738426584224, + z: -1072.6704742545235, + }, + }, + { + id: '6449', + data: { + label: 'Marc Andreesen', + x: -2482.4764025800796, + y: -2294.653143673394, + z: -491.202511303225, + }, + }, + { + id: '6447', + data: { + label: 'CableTron', + x: 6144.34351042961, + y: 2624.4603645185744, + z: 3396.4929813339454, + }, + }, + { + id: '6448', + data: { + label: 'Indus River Networks', + x: 6794.469807781006, + y: -1991.2734624365035, + z: -348.1704071340952, + }, + }, + { + id: '6445', + data: { + label: 'Mediacom', + x: 771.9007721305871, + y: -72.75032815063146, + z: 1900.6586333933942, + }, + }, + { + id: '6446', + data: { + label: 'AT&T Broadband Local Cable Subsidiary', + x: 5421.916283796315, + y: 2082.9463797790827, + z: -3935.309897649855, + }, + }, + { + id: '6444', + data: { + label: 'Cable & Wireless HKT', + x: 5867.6526764675655, + y: 252.5193368568369, + z: -1380.548448716794, + }, + }, + { + id: '6443', + data: { + label: 'Pacific Century CyberWorks', + x: 6079.704690834882, + y: -43.833307527281086, + z: -1159.3406139979822, + }, + }, + { + id: '6442', + data: { + label: 'CyberBranch', + x: -1685.6159518749666, + y: -525.8276274796266, + z: 4778.544578181444, + }, + }, + { + id: '6437', + data: { + label: 'The Energy Group', + x: -1530.7662895851508, + y: -338.14467739555084, + z: 3870.0430574802795, + }, + }, + { + id: '6440', + data: { + label: 'CGI Group', + x: -1900.253001502773, + y: -662.113283111209, + z: 4455.986014672925, + }, + }, + { + id: '6441', + data: { + label: 'Larochelle Gratton', + x: -2123.0028638743656, + y: -854.3451873987851, + z: 4174.813366376459, + }, + }, + { + id: '6439', + data: { + label: 'SLMsoft.com', + x: -783.8085911916226, + y: 4157.565335833401, + z: -2206.1524296967555, + }, + }, + { + id: '6438', + data: { + label: 'InterCept Group', + x: -523.1984899906043, + y: 4193.243757103208, + z: -2510.0011060193715, + }, + }, + { + id: '6436', + data: { + label: 'CheMatch.com', + x: -1156.9556118988494, + y: -291.5181493424574, + z: 4003.022003279081, + }, + }, + { + id: '6435', + data: { + label: 'NFO WorldGroup', + x: 931.4899299211471, + y: 1210.3372045456094, + z: -4518.807897832414, + }, + }, + { + id: '6430', + data: { + label: 'SubmitOrder.com', + x: -3224.6647566049446, + y: -1922.047496199054, + z: 2296.437732729278, + }, + }, + { + id: '6434', + data: { + label: 'The Interpublic Group of Companies', + x: 677.3007700118743, + y: 926.5803535450518, + z: -4409.624680673297, + }, + }, + { + id: '6433', + data: { + label: 'Eritmo.com', + x: -1697.8550164830467, + y: 4021.191021785044, + z: 2996.7249122112053, + }, + }, + { + id: '6432', + data: { + label: 'ePrize', + x: 5876.7260831259355, + y: -1097.9063296705544, + z: -3404.7579360977234, + }, + }, + { + id: '6431', + data: { + label: 'Rare Medium', + x: 5679.298783732104, + y: -1362.453629491994, + z: -3639.510275569739, + }, + }, + { + id: '6429', + data: { + label: 'Barksdale Group', + x: -2867.3182328471676, + y: -1744.8911862109835, + z: 2315.4415438505134, + }, + }, + { + id: '6428', + data: { + label: 'OrderTrust', + x: 2061.273038795648, + y: 241.5782714612926, + z: 876.8783759965871, + }, + }, + { + id: '6427', + data: { + label: 'GreyStone Digital Technology', + x: -2790.083315419755, + y: -2369.472852994264, + z: -1748.362551339651, + }, + }, + { + id: '6426', + data: { + label: 'Agilent Technologies', + x: -2823.0765547129863, + y: -1981.595385725615, + z: -1856.810340134264, + }, + }, + { + id: '6425', + data: { + label: 'Trigon', + x: 3341.04291352662, + y: -3900.601761426342, + z: 3676.325024707846, + }, + }, + { + id: '6424', + data: { + label: 'StarGuide', + x: 4594.0433718443455, + y: -2456.030010986606, + z: -4036.522656064693, + }, + }, + { + id: '6423', + data: { + label: 'Viewpoint Digital', + x: 3574.6168548617316, + y: 492.63480897700276, + z: -3935.6200778682673, + }, + }, + { + id: '6422', + data: { + label: 'Digital Media Online', + x: 4458.462605169785, + y: -979.2618880610614, + z: 3641.294010230073, + }, + }, + { + id: '6421', + data: { + label: 'IndustryClick', + x: 6158.153477595152, + y: -2936.5503462974552, + z: -932.8270197317117, + }, + }, + { + id: '6420', + data: { + label: 'Digital Jones', + x: 4387.887700831587, + y: 2137.3758226527284, + z: 4828.016375160655, + }, + }, + { + id: '6416', + data: { + label: 'Kozmo', + x: 2352.720745375254, + y: 118.80347449724574, + z: 435.0935767764408, + }, + }, + { + id: '6419', + data: { + label: 'DealTime', + x: 4017.7221880832903, + y: 2122.2931862368487, + z: 4984.808276170587, + }, + }, + { + id: '6418', + data: { + label: 'TransTech', + x: 5205.108355032125, + y: 1986.112353914893, + z: 3955.9637166365774, + }, + }, + { + id: '6417', + data: { + label: 'Kurt Salmon Associates', + x: 5529.5617244392, + y: 1733.6764264719127, + z: 3909.8294441261696, + }, + }, + { + id: '6415', + data: { + label: 'Digital Marketing Services', + x: 3263.501446932589, + y: 1232.734595015266, + z: 1133.3207487455923, + }, + }, + { + id: '6414', + data: { + label: 'the Childrens Group', + x: -1400.597148036, + y: -2691.4764982859374, + z: 2646.4355480805166, + }, + }, + { + id: '6412', + data: { + label: 'Diamond Lane Communications', + x: -1664.1659426213607, + y: -4271.294084798859, + z: 806.4774560142992, + }, + }, + { + id: '6413', + data: { + label: '1-800-Flowers', + x: -1774.064242193084, + y: -2850.791066035486, + z: 2620.733950446201, + }, + }, + { + id: '6410', + data: { + label: 'Serena Software', + x: 1718.799895490992, + y: 4306.543634379479, + z: 3916.0296176709326, + }, + }, + { + id: '6411', + data: { + label: 'Diamond Optimum Systems', + x: 1757.5169694972403, + y: 3921.5284666194198, + z: 4035.687765576069, + }, + }, + { + id: '6409', + data: { + label: 'Cluster Consulting', + x: -3067.6880813768594, + y: 3378.8478082114025, + z: -1116.5413075702222, + }, + }, + { + id: '6408', + data: { + label: 'Diamond Technology Partners', + x: -3180.40023027762, + y: 3388.449988218681, + z: -723.1238441171174, + }, + }, + { + id: '6407', + data: { + label: 'OmniTech', + x: 423.9158308930393, + y: -3889.1974726179687, + z: -2681.600015093975, + }, + }, + { + id: '6406', + data: { + label: 'Diamond', + x: 281.2610847591275, + y: -4109.111917298063, + z: -2379.6719625445767, + }, + }, + { + id: '6405', + data: { + label: 'Dialogs Online Business', + x: 583.0110014061186, + y: 5708.283719372636, + z: -847.3193774093796, + }, + }, + { + id: '6404', + data: { + label: 'The Thomsen Group', + x: 638.5602978500448, + y: 5691.3333435261675, + z: -445.62559034902233, + }, + }, + { + id: '6403', + data: { + label: 'Deutsche Bank AG', + x: 4548.071273910858, + y: -2820.5955545362253, + z: 4144.574830996378, + }, + }, + { + id: '6401', + data: { + label: 'Deutsche Bank', + x: 4488.18338497873, + y: -1219.5236260082577, + z: 1155.940664792061, + }, + }, + { + id: '6402', + data: { + label: 'EssentialMarkets', + x: 4891.9070417194425, + y: -1161.6079970654914, + z: 936.2844519908291, + }, + }, + { + id: '6399', + data: { + label: 'Delano', + x: 1927.2647620085409, + y: 6196.4175162814, + z: -1208.2358557391667, + }, + }, + { + id: '6400', + data: { + label: 'Continuity Solutions', + x: 2219.426673128743, + y: 6322.531757682504, + z: -949.8304128765643, + }, + }, + { + id: '6398', + data: { + label: 'HomeCom Security Division', + x: -1241.639829197835, + y: -462.2140564539457, + z: -3886.010747153499, + }, + }, + { + id: '6397', + data: { + label: 'IDefense', + x: -913.8019973783214, + y: -518.4684306915265, + z: -4159.878233289134, + }, + }, + { + id: '6396', + data: { + label: 'CompuSpirit', + x: 7446.375011712831, + y: 198.3846529343497, + z: 2377.6525431240398, + }, + }, + { + id: '6393', + data: { + label: 'Datatec', + x: -153.0596066219459, + y: 5406.07861909452, + z: -15.303199928750445, + }, + }, + { + id: '6395', + data: { + label: 'D&E Communications', + x: 7590.82751467957, + y: 97.89573903178821, + z: 2004.0742794491252, + }, + }, + { + id: '6394', + data: { + label: 'BCS', + x: -88.61640317085582, + y: 5243.502240192744, + z: -384.5458098276512, + }, + }, + { + id: '6392', + data: { + label: 'TeamBCA', + x: -188.4042328721193, + y: 4581.563704511765, + z: 2718.9547377034196, + }, + }, + { + id: '6391', + data: { + label: 'Datalex', + x: -28.492408420155833, + y: 4226.461769006103, + z: 2834.7032590492227, + }, + }, + { + id: '6390', + data: { + label: 'Remedy', + x: 5507.760928063092, + y: -3324.187172993011, + z: 1301.7857357300384, + }, + }, + { + id: '6389', + data: { + label: 'Addition Systems', + x: 335.1842964214824, + y: -1809.1242917894335, + z: 2610.236740379767, + }, + }, + { + id: '6388', + data: { + label: 'Loudeye', + x: 4873.488762063412, + y: 650.1605408822986, + z: -4934.911268346277, + }, + }, + { + id: '6383', + data: { + label: 'BTopenworld', + x: 6629.898282560911, + y: 3925.2335830820325, + z: 163.16616035842577, + }, + }, + { + id: '6387', + data: { + label: 'NxTrend Technology', + x: 1540.545110566522, + y: -5148.57602761572, + z: 2519.5842950856745, + }, + }, + { + id: '6386', + data: { + label: 'Beazer Homes USA', + x: 1417.4409864575862, + y: -4773.49998345912, + z: 2833.5312250533207, + }, + }, + { + id: '6385', + data: { + label: 'Lafarge', + x: 2093.5422023222595, + y: -4737.584069463798, + z: 2953.7086994289302, + }, + }, + { + id: '6384', + data: { + label: 'wCities', + x: 6650.857639807836, + y: 3812.13783173783, + z: 551.5008941616962, + }, + }, + { + id: '6382', + data: { + label: 'Spotcast Communications', + x: -738.0134359038865, + y: 95.05043464145825, + z: 4486.829055326399, + }, + }, + { + id: '6381', + data: { + label: 'Gilat Satellite Networks', + x: 3878.7195331384632, + y: 3172.779797046285, + z: 3591.5793262087027, + }, + }, + { + id: '6380', + data: { + label: 'WorldXChange', + x: -1176.2120807920483, + y: -2153.5741503686254, + z: 3919.340360979464, + }, + }, + { + id: '6379', + data: { + label: 'New Tel', + x: -1025.3550229027194, + y: -2260.556030459463, + z: 4279.240941336885, + }, + }, + { + id: '6378', + data: { + label: 'Backwire.com', + x: -843.4457095878307, + y: 211.5474333771618, + z: 4821.996334557677, + }, + }, + { + id: '6377', + data: { + label: 'Leap Wireless', + x: -1143.9693650182967, + y: 101.5173642505892, + z: 4558.061577710866, + }, + }, + { + id: '6376', + data: { + label: 'Sacramento Valley Partnership', + x: 7113.617546580668, + y: -1300.621426875217, + z: -1336.3496268010872, + }, + }, + { + id: '6375', + data: { + label: 'Cable & Wireless Cwix Service', + x: 2357.3858652306512, + y: 255.41780499595006, + z: 5075.07057920602, + }, + }, + { + id: '6374', + data: { + label: 'Prodigy', + x: 4959.200791023656, + y: 2789.6934278039835, + z: -4413.92727082482, + }, + }, + { + id: '6373', + data: { + label: 'Vision Network', + x: 928.7303942923947, + y: -2900.1636760881665, + z: 3229.506091214845, + }, + }, + { + id: '6372', + data: { + label: 'SeraNova', + x: 3076.766937969395, + y: -4191.647674275536, + z: -2771.6233943861052, + }, + }, + { + id: '6371', + data: { + label: 'Silverline Technologies', + x: 3154.769881327151, + y: -4281.797285124191, + z: -2381.8721816050024, + }, + }, + { + id: '6369', + data: { + label: 'O2wireless Solutions', + x: 1811.6019080440326, + y: 5857.587871649585, + z: 2367.5079925301698, + }, + }, + { + id: '6370', + data: { + label: 'HAF', + x: 1877.0724535540064, + y: 5921.054361176462, + z: 1970.5201622794607, + }, + }, + { + id: '6368', + data: { + label: 'Hutchison Satellite Unit', + x: -1744.673659698415, + y: -1748.3292357532407, + z: -3882.065767460633, + }, + }, + { + id: '6367', + data: { + label: 'Cyberworks', + x: -1770.1683461690045, + y: -2098.0684743015945, + z: -4073.8320374201962, + }, + }, + { + id: '6366', + data: { + label: 'Digital Island', + x: 4787.614037999925, + y: -1589.1606304231825, + z: -2786.306170115241, + }, + }, + { + id: '6365', + data: { + label: 'Cable & Wireless Optus', + x: 4486.5643534274195, + y: -1400.593542049743, + z: -3036.3100854741065, + }, + }, + { + id: '6364', + data: { + label: 'Belize Telecom', + x: 2933.8830050297975, + y: -4023.9506933558223, + z: -4097.525861726196, + }, + }, + { + id: '6363', + data: { + label: 'Carlisle Holdings', + x: 2863.427864030601, + y: -4179.951108156423, + z: -3719.226054923635, + }, + }, + { + id: '6362', + data: { + label: 'IndiaPlaza.com', + x: 4999.431560486478, + y: 228.74246709660662, + z: 4112.910420137906, + }, + }, + { + id: '6361', + data: { + label: 'FormsIndia.com', + x: 4891.577321566897, + y: 759.2591125277968, + z: 4107.562992169506, + }, + }, + { + id: '6359', + data: { + label: 'Satyam Infoway', + x: 4674.008449960856, + y: 456.17407042574297, + z: 4277.857032503671, + }, + }, + { + id: '6360', + data: { + label: 'Kheladi.com', + x: 4468.76015759381, + y: 795.5134642418844, + z: 4406.109551202825, + }, + }, + { + id: '6358', + data: { + label: 'Tripod Data Systems', + x: 6033.136864832583, + y: 1548.8910741840684, + z: -2405.1039544309583, + }, + }, + { + id: '6357', + data: { + label: 'DigiScents', + x: 6163.715612280305, + y: -2647.796472133347, + z: -2759.7782485109938, + }, + }, + { + id: '6356', + data: { + label: 'PCCW', + x: 5990.396622927412, + y: -2386.2193061944513, + z: -3015.506846419017, + }, + }, + { + id: '6354', + data: { + label: 'Bsquare', + x: 847.7994209156209, + y: 6244.570198484909, + z: -834.9847773519622, + }, + }, + { + id: '6355', + data: { + label: 'Mainbrace', + x: 819.8431595916276, + y: 6108.094279999325, + z: -1217.432797182597, + }, + }, + { + id: '6353', + data: { + label: 'GemStone Systems', + x: 2242.5117478118773, + y: -5107.835363857902, + z: -1467.8262073869082, + }, + }, + { + id: '6352', + data: { + label: 'ZeroPlus.com', + x: 593.9711573860637, + y: -2656.6434309820747, + z: 3672.1997409770247, + }, + }, + { + id: '6350', + data: { + label: 'BroadLogic', + x: 2788.8926219266154, + y: 202.20581447393923, + z: -2790.9186245825263, + }, + }, + { + id: '6351', + data: { + label: 'Interleaf', + x: 6116.3812803454, + y: 166.0928070046303, + z: 2931.245608620336, + }, + }, + { + id: '6349', + data: { + label: 'Innovent', + x: 2608.833156675585, + y: 4707.549703653767, + z: 1845.8566278527803, + }, + }, + { + id: '6348', + data: { + label: 'Altima Communications', + x: 1972.0903492967857, + y: 4341.656236282079, + z: 2228.715268467863, + }, + }, + { + id: '6347', + data: { + label: 'NewPort Communications', + x: 2290.7556887831606, + y: 4927.818499233739, + z: 2029.7081678896502, + }, + }, + { + id: '6346', + data: { + label: 'Element 14', + x: 2644.7136701347877, + y: 4790.039853133947, + z: 2212.0150647965993, + }, + }, + { + id: '6343', + data: { + label: 'iBEAM Broadcasting', + x: 3547.0676039014293, + y: -4339.094936105669, + z: -583.447263902202, + }, + }, + { + id: '6345', + data: { + label: 'VisionTech', + x: 2548.071564266876, + y: 4477.410895666842, + z: 2482.6270291007936, + }, + }, + { + id: '6344', + data: { + label: 'AltoCom', + x: 1988.1366013167133, + y: 4583.436667618233, + z: 1886.1641440123715, + }, + }, + { + id: '6340', + data: { + label: 'SBS', + x: -307.5300244122017, + y: -2433.8793981422723, + z: -3932.800380992156, + }, + }, + { + id: '6342', + data: { + label: 'Internet Broadcasting Systems', + x: 5572.031865883128, + y: 2044.9886631171662, + z: 1078.1079528926825, + }, + }, + { + id: '6341', + data: { + label: 'LaMusica.com', + x: 4768.382528140507, + y: -667.3876224224883, + z: 3537.8077467415505, + }, + }, + { + id: '6339', + data: { + label: 'Yahoo', + x: -2497.783421942838, + y: -1531.268709560006, + z: -3604.8261473734515, + }, + }, + { + id: '6338', + data: { + label: 'Biztravel.com', + x: -763.5587480198673, + y: -5023.374606316878, + z: 858.7976544071844, + }, + }, + { + id: '6337', + data: { + label: 'British Airways Plc', + x: -714.4264727161159, + y: -4893.525573174641, + z: 1238.0090934832929, + }, + }, + { + id: '6336', + data: { + label: 'Rogers Wireless Communications', + x: 1759.1439491562744, + y: 117.21462459646713, + z: 234.6872295458677, + }, + }, + { + id: '6335', + data: { + label: 'Sqribe', + x: 4298.471635104205, + y: -2625.777344808566, + z: -3896.1166910588086, + }, + }, + { + id: '6334', + data: { + label: 'Brio', + x: 4370.731029548504, + y: -2942.0501132420895, + z: -4136.572340735001, + }, + }, + { + id: '6333', + data: { + label: 'Trojan Television', + x: 4064.719242221731, + y: 285.38949896736364, + z: -4232.945155826727, + }, + }, + { + id: '6331', + data: { + label: 'Powerful Media', + x: -231.20148273095967, + y: -238.30868345892665, + z: -352.61686279308, + }, + }, + { + id: '6332', + data: { + label: 'Brilliant Digital Entertainment', + x: 4258.980072510248, + y: 635.8794799518668, + z: -4140.808924606819, + }, + }, + { + id: '6329', + data: { + label: 'Brightmail', + x: 5926.891411182599, + y: 2042.4365027590413, + z: 3105.9066524931172, + }, + }, + { + id: '6330', + data: { + label: 'Brill Media', + x: -1634.0993974586738, + y: 1202.135761365015, + z: 4798.875725788385, + }, + }, + { + id: '6328', + data: { + label: 'DataCyr', + x: 949.0971066350373, + y: 1118.517963991354, + z: -3300.534476690868, + }, + }, + { + id: '6327', + data: { + label: 'Breakaway', + x: 4732.89519287651, + y: -1371.246322024172, + z: 4901.805834203094, + }, + }, + { + id: '6326', + data: { + label: 'Zartis', + x: 796.463768223089, + y: 985.3631196488195, + z: -3314.9189570948743, + }, + }, + { + id: '6325', + data: { + label: 'WPL Labs', + x: 667.3984394528848, + y: 1212.7523641065243, + z: -3248.378811760318, + }, + }, + { + id: '6322', + data: { + label: 'Data Recognition', + x: -541.7559524827824, + y: 4867.117988446855, + z: -1707.8536356915838, + }, + }, + { + id: '6324', + data: { + label: 'Breakaway Solutions', + x: 835.0242760061545, + y: 1038.680873163061, + z: -2831.085238107978, + }, + }, + { + id: '6323', + data: { + label: 'Vertex Partners', + x: 5427.083554130069, + y: 3226.909197850043, + z: 674.5457811386037, + }, + }, + { + id: '6321', + data: { + label: 'Brady', + x: -630.85343213874, + y: 4949.55743166866, + z: -1321.535004019522, + }, + }, + { + id: '6320', + data: { + label: 'Flashpoint', + x: 5656.220518814262, + y: 165.80401467903613, + z: -3585.3936084156917, + }, + }, + { + id: '6318', + data: { + label: 'Bottomline', + x: 6905.115328828976, + y: -1608.4496441438532, + z: 2535.389807191071, + }, + }, + { + id: '6317', + data: { + label: 'Cash Management Services', + x: 5426.914606537382, + y: -54.578807735705055, + z: -3447.436694016962, + }, + }, + { + id: '6319', + data: { + label: 'Checkpoint Holdings', + x: 6109.339863596799, + y: -240.95898325644572, + z: -3026.3443104951916, + }, + }, + { + id: '6316', + data: { + label: 'Bottomline Technologies', + x: 5813.507999318798, + y: -78.78629962713883, + z: -3282.4652191487203, + }, + }, + { + id: '6315', + data: { + label: 'Credit Suisse First Boston (USA)', + x: -3106.697967048054, + y: 2918.0384891447343, + z: 1681.3500115496186, + }, + }, + { + id: '6314', + data: { + label: 'Marketing Services Group', + x: -3326.0366806040597, + y: 2625.074016777389, + z: 1385.9104607019642, + }, + }, + { + id: '6313', + data: { + label: 'Credit Suisse First Boston', + x: -3018.115056580811, + y: 2867.188267010373, + z: 1290.5450207797908, + }, + }, + { + id: '6312', + data: { + label: 'Fonepark', + x: 2962.5144296065964, + y: 3616.983601787775, + z: -3896.7364566455094, + }, + }, + { + id: '6311', + data: { + label: 'Bolt', + x: 3048.968669110158, + y: 3853.7787291680493, + z: -3578.8090159336307, + }, + }, + { + id: '6310', + data: { + label: 'Boca Research', + x: 6719.496079212509, + y: -891.9997488680609, + z: -2419.2250754637626, + }, + }, + { + id: '6309', + data: { + label: 'Informatec', + x: 6589.012494786873, + y: -878.5823958956894, + z: -2801.7928510752895, + }, + }, + { + id: '6308', + data: { + label: 'Eritmo', + x: 3063.3855870381694, + y: 3346.9782529167614, + z: -1445.7017754925196, + }, + }, + { + id: '6307', + data: { + label: 'BMG', + x: -2147.351604857126, + y: 2185.4950123367844, + z: -3791.9075374947784, + }, + }, + { + id: '6306', + data: { + label: 'MicroCell', + x: -3943.4889591402684, + y: -567.7491604526734, + z: -563.3662114990071, + }, + }, + { + id: '6305', + data: { + label: 'Brokat Infosystems Aktiengesellschaft', + x: -1781.987663977227, + y: -2911.3936742412275, + z: 1870.090568758299, + }, + }, + { + id: '6304', + data: { + label: 'Blaze Software', + x: 2553.948452089474, + y: -5380.532557550818, + z: -1503.7101919738966, + }, + }, + { + id: '6303', + data: { + label: 'Brokat', + x: 2459.6034097493857, + y: -5223.613892980815, + z: -1141.3971367333515, + }, + }, + { + id: '6302', + data: { + label: 'Madduck Technologies', + x: 3870.107293495524, + y: -3156.18952268738, + z: -2763.84456406985, + }, + }, + { + id: '6300', + data: { + label: 'Blackboard', + x: 3806.9138461928756, + y: -2858.8976873206643, + z: -3088.1070051884003, + }, + }, + { + id: '6301', + data: { + label: 'Two Collegiate Community Firms', + x: 3660.2309468796293, + y: -2554.0490148514577, + z: -3383.519984923891, + }, + }, + { + id: '6299', + data: { + label: 'Vista', + x: 4874.424836036999, + y: 2816.046187954301, + z: -2689.404298418806, + }, + }, + { + id: '6298', + data: { + label: 'Black Bean Studios', + x: 5561.900407571267, + y: -1187.0845365747823, + z: -4049.8894840693324, + }, + }, + { + id: '6297', + data: { + label: 'Primix', + x: -404.6449385241177, + y: 2057.712280774952, + z: 4484.97869462469, + }, + }, + { + id: '6296', + data: { + label: 'Michael Electric', + x: 4694.363775409187, + y: 3307.3039189963547, + z: -2487.7781460287647, + }, + }, + { + id: '6295', + data: { + label: 'Integrated Cabling', + x: 2905.859698126188, + y: 1277.4619110793349, + z: 5581.18063697464, + }, + }, + { + id: '6294', + data: { + label: 'Integrated Cabling Systems', + x: 4958.514526602869, + y: 3433.9890788536864, + z: -2238.102233381566, + }, + }, + { + id: '6292', + data: { + label: 'GMCI Netcomm', + x: 4659.698073465475, + y: 3025.0101884579003, + z: -2614.583379702864, + }, + }, + { + id: '6293', + data: { + label: 'Computer Cabling & Accessories', + x: 5065.201699805752, + y: 3131.678378184606, + z: -2698.711504322033, + }, + }, + { + id: '6291', + data: { + label: 'Black Box', + x: 4964.9279300567905, + y: 3025.629149402142, + z: -2306.231668892304, + }, + }, + { + id: '6290', + data: { + label: 'Harris Black', + x: -60.324172828769726, + y: 4852.82184301658, + z: -2227.172243585133, + }, + }, + { + id: '6289', + data: { + label: 'Market Facts', + x: -16.399983208808827, + y: 4650.482144678882, + z: -1875.59183929383, + }, + }, + { + id: '6288', + data: { + label: 'Measurement Microsystems', + x: 5814.215570298538, + y: 4441.82050767696, + z: 1425.770072225299, + }, + }, + { + id: '6287', + data: { + label: 'Bookham Technology', + x: 5691.275222767041, + y: 4444.357447240749, + z: 1813.5389425452975, + }, + }, + { + id: '6286', + data: { + label: 'Netect', + x: 3354.740282035738, + y: -2715.0146628120706, + z: 4031.6373340334103, + }, + }, + { + id: '6285', + data: { + label: 'BindView Development', + x: 3586.644811729136, + y: -3014.417365956081, + z: 3872.9693636608736, + }, + }, + { + id: '6283', + data: { + label: 'Big City Radio', + x: 1593.119260008819, + y: 585.3058009847996, + z: 5066.453897589759, + }, + }, + { + id: '6284', + data: { + label: 'UPF', + x: 1833.2140838450218, + y: 894.6892760045195, + z: 4933.572281277528, + }, + }, + { + id: '6282', + data: { + label: 'BrainPlay', + x: 6592.292970364999, + y: -383.0430267167148, + z: 3527.4287741358894, + }, + }, + { + id: '6281', + data: { + label: 'Consolidated Stores', + x: 6461.488021539691, + y: -138.8019876010042, + z: 3822.7406977660194, + }, + }, + { + id: '6280', + data: { + label: 'Big Theory', + x: -140.67845777775247, + y: 4728.530765460534, + z: 2193.526162855675, + }, + }, + { + id: '6279', + data: { + label: 'Big Planet', + x: -930.3793766909614, + y: -3643.303824252929, + z: -2040.1444816090502, + }, + }, + { + id: '6278', + data: { + label: 'Nu Skin Enterprises', + x: -732.7775983118132, + y: -3575.0760394675826, + z: -2381.4926403253294, + }, + }, + { + id: '6277', + data: { + label: 'Big Party', + x: -2341.674178075943, + y: 4251.415219260828, + z: 1768.434049226806, + }, + }, + { + id: '6276', + data: { + label: 'IParty', + x: -2340.2369456535835, + y: 4175.492081478291, + z: 1369.2899831158536, + }, + }, + { + id: '6275', + data: { + label: 'BigNetwork.com', + x: 7908.055961868536, + y: -980.9976941726694, + z: 748.5468795013437, + }, + }, + { + id: '6274', + data: { + label: 'Euniverse', + x: 7929.84129455399, + y: -1215.8315081088224, + z: 380.9572838701094, + }, + }, + { + id: '6273', + data: { + label: 'Game Show Network', + x: 2031.9314314101741, + y: 271.2133798697985, + z: 544.1597722647796, + }, + }, + { + id: '6272', + data: { + label: 'RTL Group', + x: 1966.095827611134, + y: 3185.963908317002, + z: -546.853643897042, + }, + }, + { + id: '6270', + data: { + label: 'Bertelsmann AG', + x: -380.81098777211986, + y: 5838.825809156537, + z: -1128.6529697080737, + }, + }, + { + id: '6271', + data: { + label: 'i-Escrow', + x: 2414.896765042714, + y: 3195.8051545992403, + z: -39.610224226183064, + }, + }, + { + id: '6269', + data: { + label: 'CDNow', + x: 3270.7209602869725, + y: 1775.0799052731006, + z: 91.76762693085001, + }, + }, + { + id: '6268', + data: { + label: 'Putnam Investments', + x: 597.5862336536195, + y: -3521.1405373885136, + z: -2650.643032513104, + }, + }, + { + id: '6267', + data: { + label: 'Rare Medium Group', + x: 620.507593581206, + y: -3300.6283382244674, + z: -3007.648687696704, + }, + }, + { + id: '6263', + data: { + label: 'Bell Microproducts', + x: 2962.544100356297, + y: -3426.845687380323, + z: -4213.775230407798, + }, + }, + { + id: '6266', + data: { + label: 'Franklin Resources', + x: 792.1713582861229, + y: -3014.642893273009, + z: -3287.6886339140656, + }, + }, + { + id: '6265', + data: { + label: 'Flycast Communications', + x: 3964.2055455880122, + y: -1689.2616082525797, + z: -264.77126947923034, + }, + }, + { + id: '6264', + data: { + label: 'Touch The Progress Group', + x: 2634.3621989092608, + y: -3362.3337659383164, + z: -4451.275767476424, + }, + }, + { + id: '6262', + data: { + label: 'The Object People', + x: 4449.164487744301, + y: 5554.016216688726, + z: -91.928486434098, + }, + }, + { + id: '6259', + data: { + label: 'Component Systems', + x: 3880.0709956884975, + y: 5548.146805530534, + z: -225.8592039634988, + }, + }, + { + id: '6261', + data: { + label: 'Softport', + x: 4198.785793688212, + y: 5783.976495173885, + z: -802.056536387675, + }, + }, + { + id: '6260', + data: { + label: 'BEA', + x: 942.7647265393439, + y: 3921.3714852847475, + z: -4574.075112681671, + }, + }, + { + id: '6258', + data: { + label: 'Avitek', + x: 3949.742022578097, + y: 6005.150144811607, + z: -459.67162753308605, + }, + }, + { + id: '6257', + data: { + label: 'Bea Systems', + x: 5586.272349115798, + y: -1670.1781056314755, + z: -4347.812402061814, + }, + }, + { + id: '6256', + data: { + label: 'Beatnik', + x: -1217.4244501546714, + y: -2660.6670708029533, + z: -754.5194530783408, + }, + }, + { + id: '6255', + data: { + label: 'FindWhat.com', + x: -2556.600795897997, + y: -1268.8395640849305, + z: -3252.1350075787623, + }, + }, + { + id: '6253', + data: { + label: 'TMP Worldwide', + x: 5884.717161817114, + y: 1151.5429451480927, + z: 3557.242503293109, + }, + }, + { + id: '6254', + data: { + label: 'Beasley Broadcast Group', + x: -2699.7443406953025, + y: -1070.9503856997492, + z: -2923.3746890313096, + }, + }, + { + id: '6252', + data: { + label: 'NewMedia.com', + x: 2959.2156883859607, + y: 3234.9009282898783, + z: 3170.688009376048, + }, + }, + { + id: '6251', + data: { + label: 'Extended Systems', + x: 5093.203362955987, + y: -1846.5563061335051, + z: -3949.2177899053195, + }, + }, + { + id: '6250', + data: { + label: 'Palm', + x: 5188.457468902216, + y: -1915.062191208709, + z: -4345.476320476369, + }, + }, + { + id: '6249', + data: { + label: 'Intermedia Group', + x: 1965.7859973851778, + y: 5343.116424118751, + z: 2573.613164197629, + }, + }, + { + id: '6248', + data: { + label: 'Intelispan in All-Stock Transaction', + x: -1229.2593177337526, + y: 2394.19069844482, + z: 3575.522798261322, + }, + }, + { + id: '6247', + data: { + label: 'ReplayTV', + x: 6647.458849353601, + y: -1530.4358194955064, + z: -1095.6740850018693, + }, + }, + { + id: '6246', + data: { + label: 'Mondex International', + x: 5367.582962010014, + y: 4611.582673331874, + z: 45.55819864115845, + }, + }, + { + id: '6245', + data: { + label: 'MasterCard International', + x: 5407.399996982159, + y: 4738.9559711218735, + z: -343.0625379393985, + }, + }, + { + id: '6244', + data: { + label: 'Sun Microsystems', + x: 753.4789048933256, + y: -5441.600383721298, + z: 1035.2099435855555, + }, + }, + { + id: '6243', + data: { + label: 'Jamdat Mobile', + x: 763.2837084392228, + y: -5182.389336306725, + z: 1430.266713620562, + }, + }, + { + id: '6242', + data: { + label: 'Patricof & Co. Ventures', + x: 648.1798296884019, + y: -4785.1823862533, + z: 1521.508582056785, + }, + }, + { + id: '6241', + data: { + label: 'Aberdare Fiber Optic Cables', + x: 5011.534003175781, + y: 4776.278995229337, + z: 1755.1877865121241, + }, + }, + { + id: '6240', + data: { + label: 'J.P. Morgan & Co.', + x: 5976.125373289797, + y: -1638.3148868008202, + z: 818.8672941289497, + }, + }, + { + id: '6239', + data: { + label: 'PracticallyNetworked.com', + x: 2628.229137892947, + y: 2867.8758073500812, + z: 3362.584927742483, + }, + }, + { + id: '6238', + data: { + label: 'EntryPoint', + x: -1132.373827877036, + y: 2844.5475454008483, + z: 4097.490971755796, + }, + }, + { + id: '6237', + data: { + label: 'Infogate', + x: -1383.4237907171735, + y: 2934.459502231541, + z: 3790.0540529911395, + }, + }, + { + id: '6236', + data: { + label: 'Bristol Retail Solutions', + x: 1273.5684871212975, + y: 2346.2308703318567, + z: -5344.326337467927, + }, + }, + { + id: '6235', + data: { + label: 'Registry Magic', + x: 1553.1379765105637, + y: 2601.7206278100884, + z: -5234.494095417276, + }, + }, + { + id: '6234', + data: { + label: 'WinDrivers.com', + x: 2569.020637529725, + y: 3393.6639333723197, + z: 2845.93313482366, + }, + }, + { + id: ' NY)', + data: { + label: 'WOKR-TV (Rochester', + x: -2034.1378286347508, + y: 3287.0546499263874, + z: -3187.9076180225948, + }, + }, + { + id: '6233', + data: { + label: 'DBAsupport.com', + x: 2858.196482421757, + y: 3379.2223294307823, + z: 2942.08837392889, + }, + }, + { + id: '6232', + data: { + label: 'Envenue', + x: 2075.219781193571, + y: 864.0958313337508, + z: 1170.1845596336586, + }, + }, + { + id: '8247', + data: { + label: 'VDOnet Corporation', + x: -2342.9608329816315, + y: -2522.4467155382595, + z: 654.2864694352521, + }, + }, + { + id: '6230', + data: { + label: 'NetZero', + x: 316.8325323962693, + y: -5000.579547373427, + z: 1745.0443991070715, + }, + }, + { + id: '6228', + data: { + label: 'Qualcomm', + x: 5138.020722051808, + y: 921.4376631658947, + z: 4747.579835601135, + }, + }, + { + id: '6226', + data: { + label: 'Prince', + x: 1731.6956450993384, + y: 252.6260932980315, + z: 2571.897527730932, + }, + }, + { + id: '6229', + data: { + label: 'Front Porch Communications', + x: 549.3604220069361, + y: -4952.754793513594, + z: 2228.3797459070715, + }, + }, + { + id: '6227', + data: { + label: 'Priceline.com', + x: 6654.625700871318, + y: 4072.1913250871053, + z: -606.2136683961046, + }, + }, + { + id: '6224', + data: { + label: 'CollegeLink.com', + x: 5504.670761970395, + y: 1145.3084536057152, + z: 3735.9833388631664, + }, + }, + { + id: '6225', + data: { + label: 'Online Scouting Network', + x: 5123.499925144028, + y: 1172.8523271408149, + z: 3878.9365003787925, + }, + }, + { + id: '6223', + data: { + label: 'LinuxToday.com', + x: 2680.2016421776675, + y: 3167.126926221649, + z: 3332.8775029758194, + }, + }, + { + id: '6222', + data: { + label: 'LinuxCentral.com', + x: 2348.4677797153086, + y: 3252.6335337467613, + z: 2978.87167622596, + }, + }, + { + id: '6221', + data: { + label: 'Megatec', + x: 482.7776608254345, + y: 5325.351474891694, + z: -134.31867755251537, + }, + }, + { + id: '6219', + data: { + label: '1492 Technologies', + x: 6953.293639088835, + y: -185.5805073892817, + z: 2172.5664271962987, + }, + }, + { + id: '6220', + data: { + label: 'Kanbay', + x: 240.19634615525868, + y: 5580.580945845342, + z: -336.6798701379848, + }, + }, + { + id: '6218', + data: { + label: 'MicroLegend', + x: 1131.3793622685043, + y: 3638.3601132255953, + z: 4477.2941893570105, + }, + }, + { + id: '6217', + data: { + label: 'Performance', + x: 1067.4956484277945, + y: 3384.6339731730727, + z: 4782.694702688389, + }, + }, + { + id: '6216', + data: { + label: 'Cablecom Group', + x: 427.89919147411536, + y: -3830.3623046673933, + z: 1887.4018021368827, + }, + }, + { + id: '6215', + data: { + label: 'SharkyExtreme', + x: 2615.5536639510515, + y: 3357.26512743585, + z: 3151.275907889197, + }, + }, + { + id: '6213', + data: { + label: 'Internet.com', + x: 2694.6309828129433, + y: 2955.02782881757, + z: 2918.2373150760923, + }, + }, + { + id: '6212', + data: { + label: 'Moreton Bay Ventures', + x: -3126.0189108357895, + y: 1239.0539935321654, + z: 2203.9323542322654, + }, + }, + { + id: '6214', + data: { + label: 'LinuxStart', + x: 2922.474968364426, + y: 2971.975670769169, + z: 3295.2578106954115, + }, + }, + { + id: '6211', + data: { + label: 'Basis', + x: -2770.9219710068305, + y: 3177.659642715535, + z: 1200.3508875405753, + }, + }, + { + id: '6209', + data: { + label: 'Capella Group', + x: 1445.103437221173, + y: -4488.28377232303, + z: 3237.9305980962567, + }, + }, + { + id: '6210', + data: { + label: 'Amazon', + x: -2576.8974779110354, + y: 2959.2125978784156, + z: 1474.8497022223946, + }, + }, + { + id: '6207', + data: { + label: 'EER Systems', + x: 4140.451893199562, + y: 3781.8078507787604, + z: 3120.274371529178, + }, + }, + { + id: '6208', + data: { + label: 'Precis', + x: 1073.2472751774133, + y: -4555.823079243788, + z: 3087.334077027156, + }, + }, + { + id: '6205', + data: { + label: 'The Yankee Group', + x: 5568.37325534539, + y: -500.5771673126163, + z: 1180.5962870619403, + }, + }, + { + id: '6203', + data: { + label: 'Merant', + x: 5866.011033180579, + y: 2055.664689249724, + z: 2754.1135420556793, + }, + }, + { + id: '6206', + data: { + label: 'L-3 Communications Holdings', + x: 4060.5675542892814, + y: 3487.992704465762, + z: 3392.1112395195437, + }, + }, + { + id: '6204', + data: { + label: 'Marathon Group', + x: 6160.002841829746, + y: 1869.9048582028267, + z: 2544.9627882266263, + }, + }, + { + id: '6201', + data: { + label: 'Ireland Telecom Firm', + x: -70.81162102340092, + y: 3301.8328834652966, + z: 3943.017685082157, + }, + }, + { + id: '6202', + data: { + label: 'Ireland Online', + x: 26.305602221229464, + y: 3072.533711156835, + z: 4264.462177409841, + }, + }, + { + id: '6200', + data: { + label: 'Northern Light Technology', + x: 5685.788719884823, + y: -271.1948493783873, + z: 1704.2949817087567, + }, + }, + { + id: '6199', + data: { + label: 'Musicmaker.com', + x: 1523.7624411517043, + y: 6293.0711140552585, + z: 735.6461696937304, + }, + }, + { + id: '6198', + data: { + label: 'EMI Group plc', + x: 1548.221394173135, + y: 6145.8363836418075, + z: 1112.8688355602912, + }, + }, + { + id: '6197', + data: { + label: 'Leisureplanet', + x: 3752.184634843073, + y: 559.864690498805, + z: -329.6298898439302, + }, + }, + { + id: '6196', + data: { + label: 'Nokias SDH/DWDM Transport Equipment Business', + x: 4724.092818365342, + y: -1991.8546596931449, + z: 4651.824835304971, + }, + }, + { + id: '6195', + data: { + label: 'Towne Services', + x: -2402.59844422298, + y: -143.61989675103973, + z: 3536.47984499826, + }, + }, + { + id: '6194', + data: { + label: 'Private Business', + x: -2410.182736272206, + y: -535.0480141873553, + z: 3431.129765391919, + }, + }, + { + id: '6193', + data: { + label: 'North Systems', + x: 2907.067977156354, + y: 4699.57700925368, + z: -2143.244715537151, + }, + }, + { + id: '6192', + data: { + label: 'OnDemand', + x: 2907.8209436534153, + y: 4478.73491876685, + z: -2480.8301282107614, + }, + }, + { + id: '6191', + data: { + label: 'Whistle Communications', + x: 6049.957614393329, + y: -4126.316055270961, + z: -801.2118327270118, + }, + }, + { + id: '6190', + data: { + label: 'North Sky', + x: 5617.133257870056, + y: -528.1662900592171, + z: 2937.7270203802036, + }, + }, + { + id: '6189', + data: { + label: 'Mainspring', + x: 6016.841387695357, + y: -4262.705038295431, + z: -533.2187052045836, + }, + }, + { + id: '6188', + data: { + label: 'Quantum Business Solutions', + x: -3496.6557385449923, + y: 1608.6897110609716, + z: 1303.739616367975, + }, + }, + { + id: '6187', + data: { + label: 'Collins Computing', + x: -3661.2858629050156, + y: 1960.2411417584624, + z: 1186.7953639037753, + }, + }, + { + id: '6186', + data: { + label: 'Doghouses Web Business', + x: 2314.5504947161526, + y: -2179.9720195457503, + z: 4753.82795066171, + }, + }, + { + id: '6185', + data: { + label: 'First Consulting', + x: 2153.7236060845357, + y: -1824.7401946500834, + z: 4972.625787912467, + }, + }, + { + id: '6184', + data: { + label: 'Event Zero', + x: 1265.2242042771695, + y: 3411.4433908550836, + z: -4556.046661337207, + }, + }, + { + id: '6183', + data: { + label: 'First Union', + x: 1162.5203010643695, + y: 3080.5536812249998, + z: -4765.701894738544, + }, + }, + { + id: '6182', + data: { + label: 'Business Centers', + x: 35.96632739667029, + y: 1765.1160236332144, + z: -2581.19695676859, + }, + }, + { + id: '6180', + data: { + label: 'First Colony Lifes p.d.q. Unit', + x: 5117.385521427456, + y: 2197.6739944292094, + z: -3443.476429150447, + }, + }, + { + id: '8322', + data: { + label: 'Gwinnett Post-Tribune', + x: -796.2139713670754, + y: -2611.913745857046, + z: 3287.724387089947, + }, + }, + { + id: '6179', + data: { + label: 'ChannelPoint', + x: 4739.588927755013, + y: 2209.422255068563, + z: -3606.656633101057, + }, + }, + { + id: '6178', + data: { + label: 'Security First', + x: 648.8565215351133, + y: -1612.9767806466157, + z: 607.6409193823814, + }, + }, + { + id: '6177', + data: { + label: 'Reciprocal', + x: 6208.100310819349, + y: 122.55518555966451, + z: 2359.8669767738224, + }, + }, + { + id: '6176', + data: { + label: 'First Data', + x: 6303.390077363595, + y: 472.4940506200478, + z: 2621.9316987561574, + }, + }, + { + id: '6174', + data: { + label: 'Business.com', + x: -1561.4042755467456, + y: 3313.9225675387984, + z: -2962.349084785644, + }, + }, + { + id: '6175', + data: { + label: 'Work.com', + x: -1432.6599329587093, + y: 2930.6495316443775, + z: -2993.184407391935, + }, + }, + { + id: '6173', + data: { + label: 'Informix Database Unit', + x: 5866.497123663274, + y: -4315.775384989614, + z: -1225.0471655340461, + }, + }, + { + id: '6172', + data: { + label: 'Informix', + x: 5993.07221106152, + y: -4103.31277645331, + z: -1076.2559784522814, + }, + }, + { + id: '6171', + data: { + label: 'International Business Machines', + x: -1773.4885565451243, + y: -1030.0944637911641, + z: -4537.9004639632285, + }, + }, + { + id: '6170', + data: { + label: 'Integrated Business Systems and Services', + x: 3877.668581680719, + y: 4808.248019363023, + z: 2953.2284189141305, + }, + }, + { + id: '6166', + data: { + label: 'Florence Business Net', + x: -156.94245330798614, + y: -1146.6753754389852, + z: 5042.990452642396, + }, + }, + { + id: '6169', + data: { + label: 'FundsXpress Financial Network', + x: 4222.365220601128, + y: 4987.438279816955, + z: 2850.7403802085273, + }, + }, + { + id: '6168', + data: { + label: 'Two-Ten Communications', + x: 4063.4145085037617, + y: 3519.5803617411952, + z: -3992.817396679188, + }, + }, + { + id: '6167', + data: { + label: 'United News & Medias PR Newswire', + x: 3507.1626100608323, + y: 6045.796339517534, + z: -508.2101148394554, + }, + }, + { + id: '6165', + data: { + label: 'IBS Interactive', + x: 70.90146262564117, + y: -1024.2828243223923, + z: 5339.42665042827, + }, + }, + { + id: '6164', + data: { + label: 'Dascom', + x: 5732.113417029587, + y: -4493.890033316533, + z: -445.92982512027186, + }, + }, + { + id: '6163', + data: { + label: 'IBM', + x: 5887.031633799362, + y: -4534.835022902534, + z: -843.7953682660807, + }, + }, + { + id: '6162', + data: { + label: 'Business Evolution', + x: 4930.650853486409, + y: -1202.2612245655932, + z: -3237.623926987922, + }, + }, + { + id: '6161', + data: { + label: 'Kana', + x: 4541.2862050469885, + y: -1133.7410494308963, + z: -3338.425381886783, + }, + }, + { + id: '6160', + data: { + label: 'Content Technologies', + x: -44.33988107715554, + y: 49.57231443934419, + z: 4850.2510009783555, + }, + }, + { + id: '6159', + data: { + label: 'Baltimore', + x: 337.4630386642531, + y: 161.97703222569746, + z: 4949.794441925696, + }, + }, + { + id: '6158', + data: { + label: 'Johnson & Johnson', + x: -2483.060581743016, + y: 2326.4135347440147, + z: 1639.674406831594, + }, + }, + { + id: '6157', + data: { + label: 'BabyCenter', + x: -2818.77782200175, + y: 2373.6589057139845, + z: 1425.9233467222987, + }, + }, + { + id: '6153', + data: { + label: 'iBalls', + x: -3939.5851905671884, + y: -464.18267872343324, + z: 185.02847125074277, + }, + }, + { + id: '6156', + data: { + label: 'eToys', + x: -3150.660604988686, + y: 2235.04331730268, + z: 1252.1634651337142, + }, + }, + { + id: '6155', + data: { + label: '9 Net Avenue', + x: 2301.4984983684976, + y: 164.9480779404348, + z: -1533.1178866054356, + }, + }, + { + id: '6151', + data: { + label: 'Aventail', + x: 6272.70223894026, + y: -324.5721080118753, + z: 2517.3486688628855, + }, + }, + { + id: '6154', + data: { + label: 'Concentric Network', + x: 2313.2673976921415, + y: -5.933774353576288, + z: -1045.625271203544, + }, + }, + { + id: '6152', + data: { + label: 'Avenue A', + x: -3978.553783832343, + y: -425.3280534696046, + z: 587.0621042015821, + }, + }, + { + id: '6150', + data: { + label: 'VPNet', + x: -1018.8343230789353, + y: -1599.0090231132444, + z: 3673.846977734412, + }, + }, + { + id: '6149', + data: { + label: 'Celestica', + x: -783.9787297021886, + y: -1583.7615929643925, + z: 2902.7654471298597, + }, + }, + { + id: '6148', + data: { + label: 'Quintus', + x: -1230.1429895231445, + y: -1389.9960062456928, + z: 3538.1041787899576, + }, + }, + { + id: '8304', + data: { + label: 'Gemstar International Group', + x: 1784.9563500502863, + y: -351.9869801004772, + z: 415.94194242784147, + }, + }, + { + id: '6146', + data: { + label: 'Holographix', + x: 4465.150959149421, + y: -2493.06503972877, + z: -3360.270406089952, + }, + }, + { + id: '6144', + data: { + label: 'AIS', + x: 7107.703418848985, + y: 1479.5149336804034, + z: 2801.890715651071, + }, + }, + { + id: '6145', + data: { + label: 'Avanex', + x: 4744.939482126095, + y: -2731.3784808455102, + z: -3525.416050004638, + }, + }, + { + id: '6143', + data: { + label: 'CSK Auto', + x: 3654.3750766102485, + y: -2827.3055294604683, + z: 304.0573693543307, + }, + }, + { + id: '6142', + data: { + label: + 'Automotive Information Center And Its Autosite Web-Based Products', + x: 5962.936678704428, + y: 4775.8809934958945, + z: -398.1871015058835, + }, + }, + { + id: '6139', + data: { + label: 'Cirrus Logic', + x: -800.270940644458, + y: -588.2476508846237, + z: -3775.2739785218714, + }, + }, + { + id: '6141', + data: { + label: 'Autoweb.com', + x: 6069.2915519353455, + y: 4605.474166505252, + z: -749.3501589952873, + }, + }, + { + id: '6140', + data: { + label: 'Peak Audio', + x: -547.268802275517, + y: -649.25638357897, + z: -4116.916297605423, + }, + }, + { + id: '6138', + data: { + label: 'Audible', + x: 2932.647365628029, + y: 42.257502354397815, + z: -523.5904048625441, + }, + }, + { + id: '6137', + data: { + label: 'ATX Telecommunications Services For $900 Million', + x: 3501.63164708953, + y: 1512.580409521778, + z: 3904.509478946247, + }, + }, + { + id: '6135', + data: { + label: 'Attunity', + x: 3843.0969773352244, + y: -2034.0242655241816, + z: -3450.9546511660155, + }, + }, + { + id: '6136', + data: { + label: 'CoreComm', + x: 3451.8845016873156, + y: 1278.4168427927962, + z: 3539.883237037474, + }, + }, + { + id: '6134', + data: { + label: 'MedaTech and subsidiary Insol', + x: -3788.928262154891, + y: -71.40494111657554, + z: 2083.402183065543, + }, + }, + { + id: '6133', + data: { + label: 'International Software Group', + x: -3741.634667134792, + y: 260.9226414618552, + z: 1862.67658152902, + }, + }, + { + id: '6132', + data: { + label: 'ATL Research', + x: 2551.0847704883536, + y: 1191.7011658833105, + z: -3935.1103391308557, + }, + }, + { + id: '6131', + data: { + label: 'New Atlanta Communications', + x: 6332.339733223399, + y: 3412.846184888096, + z: -2254.7331011323668, + }, + }, + { + id: '6130', + data: { + label: 'Unify', + x: 6191.95385409482, + y: 3508.440631067497, + z: -2621.321891565762, + }, + }, + { + id: '6129', + data: { + label: 'FGL Graphics', + x: -349.42852488906556, + y: 5409.343551731894, + z: -1541.5355385771313, + }, + }, + { + id: '6126', + data: { + label: 'Compensated Devices', + x: 4074.12826788855, + y: -2448.99398347325, + z: 4180.989454185413, + }, + }, + { + id: '6128', + data: { + label: 'ATI', + x: -361.0621516542775, + y: 5313.209270064888, + z: -1149.5818888421657, + }, + }, + { + id: '6127', + data: { + label: 'IntelleSale.com', + x: 5662.256023067461, + y: 2386.7961242776937, + z: -2468.0389274452123, + }, + }, + { + id: '6125', + data: { + label: 'Microsemi', + x: 3996.8095074518023, + y: -2829.5141118424285, + z: 4282.951104094088, + }, + }, + { + id: '6124', + data: { + label: 'Ramp Networks', + x: -1877.9813494066789, + y: -4450.41551924914, + z: 1091.7293493156194, + }, + }, + { + id: '6123', + data: { + label: 'Nokia', + x: -1552.3926591144855, + y: -4675.013315254554, + z: 915.8424880682305, + }, + }, + { + id: '6122', + data: { + label: 'PakNetX', + x: 4351.777874074255, + y: -1376.7378900472186, + z: 5011.847990823462, + }, + }, + { + id: '6121', + data: { + label: 'Aspect', + x: -899.7694384905343, + y: -3726.3928776220914, + z: 3361.121356829953, + }, + }, + { + id: '6120', + data: { + label: 'Aspect Online', + x: 4422.186255294422, + y: -1427.9870263886444, + z: 4610.852199179518, + }, + }, + { + id: '6119', + data: { + label: 'EXchange', + x: 4590.992323028645, + y: -1426.1558439291202, + z: 4238.7426860112555, + }, + }, + { + id: '6118', + data: { + label: 'eTour Assets', + x: 3209.0806862135914, + y: 5324.954498662855, + z: 1910.2904693505038, + }, + }, + { + id: '6117', + data: { + label: 'Evergreen', + x: 2882.0143620669273, + y: 5596.71100149835, + z: -2759.872170950438, + }, + }, + { + id: '6116', + data: { + label: 'Net Effect Systems', + x: 3330.420772104291, + y: 5169.287122172722, + z: 2675.179982192823, + }, + }, + { + id: '6115', + data: { + label: 'Hutchison Whampoa', + x: 1979.9975006081468, + y: 219.37187395368457, + z: 2592.036952523309, + }, + }, + { + id: '6114', + data: { + label: 'Cheung Kong (Holdings)', + x: 1862.5163256220617, + y: 8.035505272275435, + z: 2629.7905677502818, + }, + }, + { + id: ' Enters Joint Partnership', + data: { + label: 'PCG', + x: 7059.2701345105015, + y: -416.9758805518344, + z: -2912.5904548988333, + }, + }, + { + id: '6108', + data: { + label: 'EdgeMatrix', + x: 5412.906605411139, + y: 994.9694057536884, + z: -3705.9880989954145, + }, + }, + { + id: '6112', + data: { + label: 'Monkey King Media', + x: 2057.1771798499385, + y: 3172.668469608902, + z: -4675.2932195052845, + }, + }, + { + id: '6111', + data: { + label: 'A.Media', + x: 2072.530375110912, + y: 2959.21032188343, + z: -5023.380467119333, + }, + }, + { + id: '6110', + data: { + label: 'AsiaContent.com', + x: 5431.531032276279, + y: -2891.224447987546, + z: 3263.534430896363, + }, + }, + { + id: '6109', + data: { + label: 'Netlife Asia', + x: 5146.820013462718, + y: 915.425028665989, + z: -4005.320877616614, + }, + }, + { + id: '6107', + data: { + label: 'Skyhub Asia Holdings', + x: 1634.5246657107507, + y: 3196.813104248175, + z: -4379.451955210294, + }, + }, + { + id: '6106', + data: { + label: '5G Wireless Communications', + x: 1627.8256476717122, + y: 2878.154722969224, + z: -4638.079546385925, + }, + }, + { + id: '6105', + data: { + label: 'Space Asia', + x: 4733.385939616429, + y: 3303.593077573491, + z: 2549.326763521681, + }, + }, + { + id: '6101', + data: { + label: 'Digital Video Art', + x: -2696.610133154538, + y: 3684.3774059762877, + z: 1614.7196932728161, + }, + }, + { + id: '6104', + data: { + label: 'Engage', + x: 4805.920581183294, + y: 2993.453332609792, + z: 2266.6182139564544, + }, + }, + { + id: '6103', + data: { + label: 'Asera', + x: -1081.6603573862783, + y: -4405.409710008235, + z: -1557.4794456692096, + }, + }, + { + id: '6102', + data: { + label: 'Andersen Consulting', + x: -820.5663139350632, + y: -4209.247131320599, + z: -1801.0971416785555, + }, + }, + { + id: '6100', + data: { + label: 'WorldGate', + x: 5824.170417902748, + y: -3513.447772931088, + z: -300.5804058157227, + }, + }, + { + id: '6099', + data: { + label: 'Art.com', + x: 1047.8915699591978, + y: 2069.281046547991, + z: 5256.660703879232, + }, + }, + { + id: '6098', + data: { + label: 'Getty Images', + x: 1095.5503607517426, + y: 1731.328864625827, + z: 5474.649016278118, + }, + }, + { + id: '6097', + data: { + label: 'iMusic.com', + x: 205.36935751165657, + y: -1704.9529324865284, + z: 4700.628232709337, + }, + }, + { + id: '6096', + data: { + label: 'ArtistDirect', + x: 486.6914399475702, + y: -1420.2510159013675, + z: 4863.546072202303, + }, + }, + { + id: '6095', + data: { + label: 'Black Arrow Capital Through Subsidiary', + x: 2690.5852523965686, + y: 2258.844737118262, + z: -5020.6131737896985, + }, + }, + { + id: '6093', + data: { + label: 'Merisel', + x: 6658.734892100162, + y: -2336.780195661132, + z: -1018.3000885719099, + }, + }, + { + id: '6094', + data: { + label: 'ScanSource', + x: 2696.3451750902805, + y: 2531.1113035604412, + z: -4696.468185959349, + }, + }, + { + id: '6092', + data: { + label: 'Arrow Electronics', + x: 6703.878106788888, + y: -2303.267473623807, + z: -1421.3492424388678, + }, + }, + { + id: '6091', + data: { + label: 'ArrayComm', + x: -1874.4983663608975, + y: -3929.2423508242964, + z: 1248.136703000648, + }, + }, + { + id: '6090', + data: { + label: 'Marconi', + x: -1646.4327272840872, + y: -4268.334166681871, + z: 1124.8841449238341, + }, + }, + { + id: '6088', + data: { + label: 'Arlington Capital', + x: 1082.9903555634692, + y: -2373.333801173605, + z: 3047.823984593161, + }, + }, + { + id: '6089', + data: { + label: 'Division of PSINet', + x: 4007.15188997286, + y: -3602.5004981911184, + z: 3965.8791904960917, + }, + }, + { + id: '6087', + data: { + label: 'fine.com International', + x: -1697.250578834013, + y: 4711.834515487052, + z: -519.2669506793543, + }, + }, + { + id: '6086', + data: { + label: 'Arista', + x: -3077.9921769639914, + y: -2890.1508242977898, + z: -334.13418223527435, + }, + }, + { + id: '6085', + data: { + label: 'SupplierMarket.com', + x: 1422.1850840548036, + y: 452.60737315469765, + z: -2589.3231306661783, + }, + }, + { + id: '6080', + data: { + label: 'Arel Communications', + x: 4457.073162059278, + y: 2947.175078583241, + z: 4010.245964670416, + }, + }, + { + id: '6083', + data: { + label: 'GlobalSoft', + x: 711.6654527712714, + y: -4621.181236813044, + z: -872.7323193917249, + }, + }, + { + id: '6084', + data: { + label: 'TradingDynamics', + x: 1158.3692639613732, + y: 351.2923008246805, + z: -2594.216917405654, + }, + }, + { + id: '6082', + data: { + label: 'E-nnovations', + x: 1014.5099381801374, + y: -5018.320514140251, + z: -1013.5283762877925, + }, + }, + { + id: '6081', + data: { + label: 'W2Com', + x: 4696.918195155654, + y: 2873.699735918813, + z: 3701.4771312314897, + }, + }, + { + id: '6079', + data: { + label: 'Cosource', + x: 7099.594537427825, + y: 845.1153984377561, + z: -2657.0395836471935, + }, + }, + { + id: '6078', + data: { + label: 'Cosource.com', + x: 946.1072308983428, + y: 4149.4994376287095, + z: 2956.519635625857, + }, + }, + { + id: '6076', + data: { + label: 'CRL Network Services', + x: -2527.204230352439, + y: -583.1323091185237, + z: -3064.6219961237407, + }, + }, + { + id: '6077', + data: { + label: 'Applix', + x: 954.6012469785503, + y: 4269.020221371392, + z: 3347.8568567726174, + }, + }, + { + id: '6075', + data: { + label: 'Cordada', + x: -2393.7926679397256, + y: -782.7979379417891, + z: -3807.0558345209847, + }, + }, + { + id: '6074', + data: { + label: 'Tabor Interactive', + x: -2656.7224165132834, + y: -247.73638643213695, + z: -3360.6670772401644, + }, + }, + { + id: '6073', + data: { + label: 'AppliedTheory', + x: -2446.401200894223, + y: -576.5940404978982, + z: -3466.992319797128, + }, + }, + { + id: '6072', + data: { + label: 'EarthLink', + x: 500.25723182955954, + y: -2068.7998070564786, + z: 3293.0770688537755, + }, + }, + { + id: '6070', + data: { + label: 'Aperian', + x: -2989.3460633227132, + y: -2304.4471522348063, + z: 1964.3089034482011, + }, + }, + { + id: '6071', + data: { + label: 'Infinity Interactive', + x: -2980.787449662393, + y: -2667.3556889628167, + z: 1785.7411028194153, + }, + }, + { + id: '6069', + data: { + label: 'InfoInterActive', + x: 3380.075910306242, + y: 1462.2423402324437, + z: 1592.7735423640634, + }, + }, + { + id: '6068', + data: { + label: 'AOL Canada', + x: 4506.416231210053, + y: 1717.5887574300814, + z: -4413.016773853584, + }, + }, + { + id: '6066', + data: { + label: 'Analysis & Technology', + x: -112.92120272932323, + y: 2402.4631510802833, + z: 4650.385333944693, + }, + }, + { + id: '6067', + data: { + label: 'Royal Bank', + x: 4312.534400946918, + y: 2007.3718974329233, + z: -4220.043001094773, + }, + }, + { + id: '6065', + data: { + label: 'Anteon', + x: -255.48193247218884, + y: 2641.3948895360663, + z: 4355.7585298683525, + }, + }, + { + id: '6064', + data: { + label: 'Group Cortex', + x: 5839.503655906212, + y: 372.0524718848773, + z: -3327.0493031978976, + }, + }, + { + id: '6063', + data: { + label: 'triSpan', + x: 5725.903280208179, + y: 247.66371350845026, + z: -3006.8912274460813, + }, + }, + { + id: '6062', + data: { + label: 'CFT Consulting', + x: 5287.832654727971, + y: 3.837623632008385, + z: -3143.1833993183864, + }, + }, + { + id: '6061', + data: { + label: 'AnswerThink', + x: 477.67472846487453, + y: 3029.332201763107, + z: 4722.731344561043, + }, + }, + { + id: '6060', + data: { + label: 'Antilles Wireless Cable TV', + x: 4059.915990895626, + y: -2729.865070713012, + z: 3766.391650572134, + }, + }, + { + id: '6059', + data: { + label: 'Atlantic Tele-Network', + x: 4343.958085168583, + y: -2526.460958538432, + z: 3566.518267514271, + }, + }, + { + id: '6058', + data: { + label: 'Conifer', + x: 816.2965957742281, + y: 3946.500207641029, + z: 2033.3776859378645, + }, + }, + { + id: '6057', + data: { + label: 'Sequoia Software', + x: -2902.723312384289, + y: -2186.0705730556638, + z: 1030.7588399707956, + }, + }, + { + id: '6056', + data: { + label: 'Analysts International', + x: -2983.876472202875, + y: -1793.46414849951, + z: 966.2994506816833, + }, + }, + { + id: '6055', + data: { + label: 'AENTV', + x: -3436.0260460904296, + y: -1276.9292338898672, + z: -894.816393232125, + }, + }, + { + id: '6054', + data: { + label: 'TV onthe Web', + x: -3006.931106259232, + y: -1232.754615797403, + z: -1061.3461689468625, + }, + }, + { + id: '6053', + data: { + label: 'Ameritech New Media', + x: -2557.2011466087065, + y: -2965.5272893717674, + z: 956.5793276021906, + }, + }, + { + id: '6051', + data: { + label: 'J.P. Morgan Chase & Co.', + x: 5526.842512817227, + y: -1649.8831449913116, + z: 877.6963780135617, + }, + }, + { + id: '6052', + data: { + label: 'WideOpenWest', + x: -2228.0902642726237, + y: -3023.4993259204166, + z: 1178.5038751716597, + }, + }, + { + id: '6050', + data: { + label: 'StarMedia Network', + x: -2648.4665731789746, + y: 3417.473896850662, + z: -1919.2799832174323, + }, + }, + { + id: '6049', + data: { + label: 'BET Holdings', + x: 7327.719330747593, + y: 538.2550929309048, + z: -2317.622424697595, + }, + }, + { + id: '6048', + data: { + label: 'SierraCities.com', + x: 527.2406572422257, + y: -5591.4211786516635, + z: -362.6791293607163, + }, + }, + { + id: '6047', + data: { + label: 'LoanCity.com', + x: 5281.666261402233, + y: -377.2129940679134, + z: -4303.400023723251, + }, + }, + { + id: '6046', + data: { + label: 'AMRI', + x: 4972.395854615691, + y: -540.7071201119206, + z: -4515.918936852355, + }, + }, + { + id: '6045', + data: { + label: 'CareSteps', + x: -1583.8920523385227, + y: 2314.379029667151, + z: -3454.833605476323, + }, + }, + { + id: '6044', + data: { + label: 'American Healthways', + x: -1795.1887232011711, + y: 2468.5234961181995, + z: -3154.256983741073, + }, + }, + { + id: '6041', + data: { + label: 'energyOn.com', + x: 3770.0787839111463, + y: -2661.4284238331356, + z: -4379.612009420312, + }, + }, + { + id: '6043', + data: { + label: 'First Home Mortgage', + x: 3222.6480350463066, + y: 1029.4506335046692, + z: 5408.25806184338, + }, + }, + { + id: '6042', + data: { + label: 'American Home Mortgage', + x: 2965.554665952678, + y: 924.8382070858966, + z: 5114.052516037972, + }, + }, + { + id: '6040', + data: { + label: 'American Power Conversion', + x: 3432.9829604036668, + y: -2539.5190701874308, + z: -4164.30954366453, + }, + }, + { + id: '6039', + data: { + label: 'American Church Lists', + x: 1145.514039645999, + y: -4976.882858370694, + z: -1899.406876412056, + }, + }, + { + id: '6034', + data: { + label: 'Ibero Partners', + x: 5675.295325198052, + y: 1001.2073386975918, + z: 4066.913354861496, + }, + }, + { + id: '6038', + data: { + label: 'InfoUSA', + x: 1099.473480681549, + y: -5245.291510632326, + z: -1600.177532506907, + }, + }, + { + id: '6036', + data: { + label: 'ACE', + x: 4966.380681997398, + y: 4205.9149531572075, + z: 3307.522150824589, + }, + }, + { + id: '6035', + data: { + label: 'American Quantum Cycles', + x: 4243.8199497119285, + y: -3351.6362082195633, + z: 1591.1225885588774, + }, + }, + { + id: '6032', + data: { + label: 'American Information Systems', + x: 3516.4605407060576, + y: -2361.0643797740686, + z: 288.451555770466, + }, + }, + { + id: '6037', + data: { + label: 'Frederiksen Group', + x: 4673.398100614498, + y: 4141.3821832334315, + z: 3576.6195939747854, + }, + }, + { + id: '6033', + data: { + label: 'Foodline.com', + x: 490.6908654019536, + y: -5405.49437270389, + z: 79.67935689463657, + }, + }, + { + id: '6031', + data: { + label: 'Exodus', + x: 1055.802700575987, + y: 4402.3844985442465, + z: -4130.758228775463, + }, + }, + { + id: '6030', + data: { + label: 'American Telecasting', + x: 516.2429765031618, + y: -2197.156702338002, + z: 1251.584915634174, + }, + }, + { + id: '6029', + data: { + label: 'North American Power Brokers', + x: 6217.304200451867, + y: 2979.5237248060866, + z: -2629.988530035009, + }, + }, + { + id: '6028', + data: { + label: 'Unitil', + x: 5928.7414214214905, + y: 2789.4146918573115, + z: -2848.0725941793357, + }, + }, + { + id: '6027', + data: { + label: 'GetThere', + x: 781.6652809785397, + y: -5536.063188724382, + z: -93.88186562986404, + }, + }, + { + id: '6026', + data: { + label: 'edocs', + x: 196.2331171205392, + y: -5527.801078149881, + z: -139.37576733623362, + }, + }, + { + id: '6025', + data: { + label: 'Qpass', + x: 220.2920860808095, + y: -5545.621986694481, + z: 197.27545362987107, + }, + }, + { + id: '6024', + data: { + label: 'American Express', + x: 480.7891141329526, + y: -5834.314642850084, + z: -8.582579985120718, + }, + }, + { + id: '6022', + data: { + label: 'SoftQuad', + x: 6499.913696035687, + y: 1459.2776199568996, + z: -2783.6110919278403, + }, + }, + { + id: '6021', + data: { + label: 'AT&T', + x: 1514.8261708603648, + y: 4120.9755010608915, + z: -3764.5353589117394, + }, + }, + { + id: '6023', + data: { + label: 'The American Sports Machine', + x: 6298.16266190083, + y: 1183.8005079918637, + z: -2552.256258872397, + }, + }, + { + id: '6020', + data: { + label: 'Solutions Plus', + x: -1817.817330088669, + y: 2547.987503267751, + z: 1061.73218568465, + }, + }, + { + id: '6019', + data: { + label: 'CareerShop.com', + x: -1803.8639297031818, + y: -4069.784106944527, + z: -1576.661007348247, + }, + }, + { + id: '6017', + data: { + label: 'Transmeta', + x: 1971.196365975917, + y: 551.0706015565893, + z: 2868.3724380667013, + }, + }, + { + id: '6018', + data: { + label: 'Personnel Group of America', + x: -1462.3979036960363, + y: -3860.157446516477, + z: -1632.1212497806546, + }, + }, + { + id: '6016', + data: { + label: 'Homestore.com', + x: 2038.9101852313338, + y: 766.1786880605939, + z: 2854.367308101876, + }, + }, + { + id: '6015', + data: { + label: 'Kdi Internet Solutions', + x: 5854.478334770501, + y: -645.7914054918988, + z: -237.15594020153839, + }, + }, + { + id: '6014', + data: { + label: 'UcoNects', + x: -1697.233586334533, + y: 2848.9838178069244, + z: 1071.1805360993326, + }, + }, + { + id: '6013', + data: { + label: 'NetQuarters', + x: -1516.6960349981096, + y: 2583.1179504918337, + z: 1181.927349666407, + }, + }, + { + id: '6011', + data: { + label: 'Usurf', + x: -1992.9353531769914, + y: 232.6322305216844, + z: 4222.962430331281, + }, + }, + { + id: '6012', + data: { + label: 'Premier Internet Services', + x: -2308.1426818498885, + y: 114.5716167435383, + z: 3990.921532493082, + }, + }, + { + id: '6010', + data: { + label: 'PDQ.net', + x: 5911.078998879041, + y: -561.313720725301, + z: 22.06013235704334, + }, + }, + { + id: '6009', + data: { + label: 'Pointe Communications', + x: 6003.010194650546, + y: -968.1609564674478, + z: 225.84124776349077, + }, + }, + { + id: '6008', + data: { + label: 'Internet America', + x: 5596.044731533028, + y: -878.8332933087933, + z: 50.713890768135705, + }, + }, + { + id: '6006', + data: { + label: 'Tegic', + x: 3004.208778050603, + y: 1069.311075167956, + z: 1695.6727274578125, + }, + }, + { + id: '6007', + data: { + label: 'Mass.-Based ISP', + x: -1610.560794872205, + y: 3026.685345361948, + z: 824.102474644696, + }, + }, + { + id: '6004', + data: { + label: 'AOL', + x: -1108.974535357323, + y: 50.94952946067417, + z: -4227.211641986949, + }, + }, + { + id: '6005', + data: { + label: 'China.com', + x: 3255.8414758494314, + y: 1008.2397680219415, + z: 1717.6256614355827, + }, + }, + { + id: '6003', + data: { + label: 'Radiant Systems', + x: 3094.7010757399007, + y: 1364.7067501287502, + z: 1487.397020308621, + }, + }, + { + id: '6001', + data: { + label: 'DBT Online', + x: 4810.833273555524, + y: 1384.4760619609244, + z: -4451.781280287686, + }, + }, + { + id: '6002', + data: { + label: 'Assets of Information America', + x: 4562.367036286925, + y: 1355.4977703539048, + z: -4775.845303648728, + }, + }, + { + id: '5999', + data: { + label: 'eMachines', + x: 3154.092604339062, + y: 631.7252838676623, + z: 691.2722693988884, + }, + }, + { + id: '6000', + data: { + label: 'Technology Crossover Ventures', + x: 3032.2249588882573, + y: 274.69484033706834, + z: 221.0027380843555, + }, + }, + { + id: '5998', + data: { + label: 'Internet Accounts of Virtual Media Technologies', + x: -1369.7107101807233, + y: 2873.158395794456, + z: 1056.0109440758768, + }, + }, + { + id: '5997', + data: { + label: 'Log On America', + x: -1517.5758911561945, + y: 2595.7252964906857, + z: 729.5652273332238, + }, + }, + { + id: '5996', + data: { + label: 'Alysis Technologies', + x: 4344.786502696463, + y: 5477.193247164611, + z: 1822.4425018540792, + }, + }, + { + id: '5995', + data: { + label: 'Pitney Bowes', + x: 4393.421823103533, + y: 5550.497068010974, + z: 1428.4098174791127, + }, + }, + { + id: '5991', + data: { + label: 'Alta Vista', + x: -545.0844911336084, + y: 1945.3916088742542, + z: -5141.317274491345, + }, + }, + { + id: '5989', + data: { + label: 'Raging Bull', + x: 5419.652172174958, + y: 3118.8933300821104, + z: 2404.28272470532, + }, + }, + { + id: '5994', + data: { + label: 'Pharsalia', + x: -878.8450042802102, + y: 2513.515871171324, + z: -871.5329503283024, + }, + }, + { + id: '5992', + data: { + label: 'Alteon', + x: 1099.1917066275178, + y: 305.89038101573533, + z: 5550.4823211180255, + }, + }, + { + id: '5993', + data: { + label: 'Bluetail', + x: -897.6484227146666, + y: 2310.138592886725, + z: -1098.734554996382, + }, + }, + { + id: '5988', + data: { + label: 'Alpha', + x: 1223.3608508041136, + y: -2410.9954826457188, + z: 3338.5732913659936, + }, + }, + { + id: '5982', + data: { + label: 'MyPoints.com', + x: 5189.181042669711, + y: -2627.380444471019, + z: 3518.790788978746, + }, + }, + { + id: '5987', + data: { + label: 'Nex-I.com', + x: 4506.105261694497, + y: -3079.7828713868835, + z: -3655.0395870689213, + }, + }, + { + id: '5986', + data: { + label: 'AlphaNet', + x: 4724.745321965177, + y: -3292.263256721554, + z: -3382.623567942288, + }, + }, + { + id: '5985', + data: { + label: 'HalfBrain.com', + x: 4966.912046353191, + y: 5512.051697958107, + z: 757.5991214972751, + }, + }, + { + id: '5983', + data: { + label: 'Alliance Development Group', + x: 6021.858543550682, + y: -1020.4799499804373, + z: 2433.9858968569647, + }, + }, + { + id: '5984', + data: { + label: 'AlphaBlox', + x: 5086.4309427288745, + y: 5393.798900490152, + z: 386.4569996225304, + }, + }, + { + id: '5980', + data: { + label: 'E-Cruiter.com', + x: 2891.165974975361, + y: 106.6103677954957, + z: 5314.431754823997, + }, + }, + { + id: '5981', + data: { + label: 'Allen and Associates', + x: 2957.6566516600956, + y: 470.66398882572895, + z: 5498.735121655902, + }, + }, + { + id: '5978', + data: { + label: 'U.S. Bancorp', + x: 2738.1374400284817, + y: 2483.809184575467, + z: -3915.0415311061874, + }, + }, + { + id: '5979', + data: { + label: 'Oliver-Allen', + x: 2657.219555273114, + y: 2121.0344810237234, + z: -4089.2081286323523, + }, + }, + { + id: '5977', + data: { + label: 'NSA', + x: 6914.094946703361, + y: 2634.0308490765424, + z: -1958.837547996372, + }, + }, + { + id: '5976', + data: { + label: 'Allen Systems Group', + x: 6770.7954684496135, + y: 2736.4265764693223, + z: -2322.975616486532, + }, + }, + { + id: '5975', + data: { + label: 'Prairie iNet', + x: 3450.296327370566, + y: -3612.1592127098334, + z: -1554.7258211838896, + }, + }, + { + id: '5974', + data: { + label: 'UtiliCorp United', + x: 3304.6482923412727, + y: -3430.781308660567, + z: -1891.4357976601536, + }, + }, + { + id: '5973', + data: { + label: 'Greenberg News', + x: 2025.7155842167228, + y: 2228.96002040913, + z: -1598.2500510926914, + }, + }, + { + id: '5971', + data: { + label: 'Juno Online Services', + x: 2041.3488786616049, + y: 1061.9867146683034, + z: -1549.3355390160896, + }, + }, + { + id: '5972', + data: { + label: 'Prospect Street Ventures', + x: 2249.023620615316, + y: 1054.4522787919914, + z: -1952.008808093045, + }, + }, + { + id: '5970', + data: { + label: 'PlanetRx.com', + x: 4767.799758991904, + y: 5146.781349138114, + z: -1965.7608822513278, + }, + }, + { + id: '5968', + data: { + label: 'Virtualis Systems', + x: 5078.3407869251505, + y: 1082.7612083467204, + z: 1029.8925503764283, + }, + }, + { + id: '5969', + data: { + label: 'Tenet Healthcare', + x: 4677.803528928722, + y: 5400.0612797460335, + z: -1666.5105937004505, + }, + }, + { + id: '5967', + data: { + label: 'Kivex.com', + x: 5172.744110449816, + y: 1172.2783640717998, + z: 1296.8796728843533, + }, + }, + { + id: '5966', + data: { + label: 'THOMSON multimedia S.A.', + x: -3522.2205545715997, + y: -1529.956689375954, + z: 1399.4322345277599, + }, + }, + { + id: '5965', + data: { + label: 'Internet Devices', + x: -3757.2596203742373, + y: -1737.1234243683678, + z: 1570.330583851282, + }, + }, + { + id: ' Division of Firstwave Technologies', + data: { + label: 'Distributor Orda-M', + x: 4252.124472622935, + y: 5738.440697021273, + z: -1342.883300431597, + }, + }, + { + id: '5963', + data: { + label: 'CallPath Assets', + x: -3399.8216902701593, + y: -1730.4542927805733, + z: 1098.3675782216285, + }, + }, + { + id: '5962', + data: { + label: 'ASI Communications', + x: -1728.1694230028404, + y: 912.3135443957104, + z: 4425.915674472134, + }, + }, + { + id: '5961', + data: { + label: 'Alanco', + x: -1975.8119440525186, + y: 842.1280019016009, + z: 4113.647093668136, + }, + }, + { + id: '5960', + data: { + label: 'Southwest PCS', + x: -3000.737253190909, + y: -206.68150439372099, + z: -1923.7637772812648, + }, + }, + { + id: '5959', + data: { + label: 'Alamosa', + x: -2706.856549069938, + y: -149.77993479196965, + z: -2194.9926618653108, + }, + }, + { + id: '5958', + data: { + label: 'Network24', + x: 615.7225075669655, + y: -1943.3621967141814, + z: 2112.304356612896, + }, + }, + { + id: '8329', + data: { + label: 'Practical Control Systems Technologies', + x: 5091.649996312846, + y: 3674.6708844811633, + z: -2609.25770111712, + }, + }, + { + id: '5956', + data: { + label: 'InterVU', + x: 1689.286146420311, + y: -1029.1263908133321, + z: 872.2328869840964, + }, + }, + { + id: '5955', + data: { + label: 'Loudeye Technologies', + x: 732.8415999875549, + y: -1795.3373557200152, + z: 2374.045185355016, + }, + }, + { + id: '5954', + data: { + label: 'Virage', + x: 690.0047689911961, + y: -1568.2190371232057, + z: 1984.5972846968214, + }, + }, + { + id: '5953', + data: { + label: 'AT&T Wireless Group', + x: 684.4088905705431, + y: -2470.95262616543, + z: 2603.624135163952, + }, + }, + { + id: '5952', + data: { + label: 'Apple Computer', + x: 749.290902126777, + y: -1968.70455076227, + z: 2615.7498637891463, + }, + }, + { + id: '5951', + data: { + label: 'Akamai Technologies', + x: 1032.3592314922566, + y: -1841.2550913864343, + z: 1911.5046090984936, + }, + }, + { + id: '5949', + data: { + label: 'Mortgagebot', + x: -742.7630663797446, + y: 5374.558792770006, + z: 273.1661558913501, + }, + }, + { + id: '5948', + data: { + label: 'Data on Air', + x: 5741.427888230598, + y: 1955.025401538217, + z: -2984.0696469684876, + }, + }, + { + id: '5950', + data: { + label: 'Thin Air Software', + x: -905.9461085491008, + y: 5449.956194107854, + z: 637.0396860001667, + }, + }, + { + id: '5947', + data: { + label: 'Trimble', + x: 5947.312585853703, + y: 1865.332873594938, + z: -2647.2858700529114, + }, + }, + { + id: '5945', + data: { + label: 'J-Phone Group', + x: 4031.256744734341, + y: -2403.9740272772356, + z: -2875.411467432271, + }, + }, + { + id: '5946', + data: { + label: 'Japan Telecom Co.', + x: 4300.240749868783, + y: -2268.472315626922, + z: -2768.4992601609374, + }, + }, + { + id: '5943', + data: { + label: 'Vodafone Group PLC', + x: 671.6779774336508, + y: 4368.530581201607, + z: -3383.305336926454, + }, + }, + { + id: '5940', + data: { + label: 'Agere', + x: 5006.168720740837, + y: -3353.794881189552, + z: 3155.4577497459436, + }, + }, + { + id: '5942', + data: { + label: 'Digital Market', + x: 1203.5125445515487, + y: 482.0204168901558, + z: -3293.4130438049115, + }, + }, + { + id: '5941', + data: { + label: 'Agile Software', + x: 1231.0388288408112, + y: 500.85177509999323, + z: -2779.6496549434796, + }, + }, + { + id: '5938', + data: { + label: 'Novatel Wireless', + x: 948.8800940294151, + y: -3225.2378150180575, + z: 1628.3507740244409, + }, + }, + { + id: '5939', + data: { + label: 'RTS Wireless', + x: 470.63797595008015, + y: 5368.119191041862, + z: -1565.564957400364, + }, + }, + { + id: '5937', + data: { + label: 'WPP Group plc', + x: 5967.843489430917, + y: -131.94529495294114, + z: 855.598470455493, + }, + }, + { + id: '5936', + data: { + label: 'Advertising.com', + x: 5572.832089150582, + y: -219.1202947614648, + z: 965.2964645644353, + }, + }, + { + id: '5935', + data: { + label: 'Reuters Group PLC', + x: 5659.5351170999475, + y: 1404.4624440167684, + z: -4090.0958146787284, + }, + }, + { + id: '8261', + data: { + label: 'Digital Equipment', + x: 4981.290949505563, + y: 2759.166267608494, + z: 2350.355880870963, + }, + }, + { + id: '5934', + data: { + label: 'Advent Networks', + x: -1385.7552527856155, + y: -3561.7792606216594, + z: -1997.1075626435904, + }, + }, + { + id: '5933', + data: { + label: 'Southern Union', + x: -1375.159051790412, + y: -3475.6665199971253, + z: -2392.3287145025415, + }, + }, + { + id: '5932', + data: { + label: 'Digital Media World', + x: 1281.0575464547076, + y: 1476.255678734818, + z: -4719.344515381898, + }, + }, + { + id: '5931', + data: { + label: 'Advanstar Communications', + x: 1497.610668264683, + y: 1416.1336786434767, + z: -5061.237308768263, + }, + }, + { + id: '5926', + data: { + label: 'Silicon Systems Design', + x: 103.49778331596335, + y: -272.92785778332967, + z: 5065.7468949827, + }, + }, + { + id: '5929', + data: { + label: 'Vitesse', + x: -180.78999360255307, + y: -1237.9375992545513, + z: 4318.719335148334, + }, + }, + { + id: '5930', + data: { + label: 'Exbit', + x: 131.33680352604546, + y: -1244.9507432169796, + z: 4600.071081998296, + }, + }, + { + id: '5928', + data: { + label: 'XMLSolutions', + x: 2693.107223728826, + y: -3046.198509050979, + z: -4428.975651088248, + }, + }, + { + id: '5927', + data: { + label: 'Vitria', + x: 2904.377827257459, + y: -2782.432811102189, + z: -4225.234441802681, + }, + }, + { + id: '5925', + data: { + label: 'Chicory Systems', + x: -603.4964734119195, + y: -504.08204117019295, + z: 4675.197352600168, + }, + }, + { + id: '5923', + data: { + label: 'Marcus Technology', + x: 1450.9504073519636, + y: -3269.388608142098, + z: -3067.1946733543346, + }, + }, + { + id: '5924', + data: { + label: 'Parthus Technologies plc', + x: -253.27461389325973, + y: -374.89100227294466, + z: 4883.674539240978, + }, + }, + { + id: '5922', + data: { + label: 'Artesia Technologies', + x: 1570.36637819605, + y: -2923.4438202572883, + z: -3320.566767978521, + }, + }, + { + id: '5921', + data: { + label: 'Rapid Travel Solutions', + x: 1326.0294948657427, + y: -1654.489017674178, + z: 398.3843229868824, + }, + }, + { + id: '5920', + data: { + label: 'Exceptis', + x: 1386.3080286176194, + y: 2862.632600934836, + z: -3718.003797948401, + }, + }, + { + id: '5919', + data: { + label: 'Trintech', + x: 1589.3534247224384, + y: 2783.2116738500354, + z: -4062.644689292743, + }, + }, + { + id: '5918', + data: { + label: 'Cycle Computer', + x: 1983.8630479601152, + y: 2752.058685499567, + z: -3850.5343031511247, + }, + }, + { + id: '5917', + data: { + label: 'Tadpole', + x: 1741.675211390427, + y: 3059.953282656647, + z: -3740.1093401804974, + }, + }, + { + id: '5915', + data: { + label: 'NDS', + x: -2454.9023052933926, + y: -937.8350105371743, + z: 3930.93539143306, + }, + }, + { + id: '5916', + data: { + label: 'Orbis Technology', + x: 1467.2254738408365, + y: 2781.4687980271015, + z: 327.71356203873796, + }, + }, + { + id: '5914', + data: { + label: 'Freeserve', + x: 3920.7736653704046, + y: -2340.192338137244, + z: -1051.5286195318763, + }, + }, + { + id: '5913', + data: { + label: 'Wanadoo', + x: 3854.7449733856115, + y: -2603.182699221308, + z: -1418.0458251218122, + }, + }, + { + id: '5912', + data: { + label: 'Eircell', + x: 4327.23383341096, + y: -2903.5738705537024, + z: -2250.753235662749, + }, + }, + { + id: '5911', + data: { + label: 'Vodafone', + x: 4233.134983831824, + y: -2622.2442626898887, + z: -2569.250300388714, + }, + }, + { + id: '5910', + data: { + label: 'R2 Technology', + x: 5951.271014210967, + y: 2754.4825768400997, + z: 2620.4326527201974, + }, + }, + { + id: '5909', + data: { + label: 'Kodak', + x: 5616.354429946527, + y: 2807.2422136594987, + z: 2848.798328742598, + }, + }, + { + id: '5906', + data: { + label: 'MarketWatch.com', + x: -147.48528326951916, + y: 584.1982296963262, + z: -4060.866349112418, + }, + }, + { + id: '5908', + data: { + label: 'Creative Planet', + x: 4004.8371811939564, + y: 3834.4261293934046, + z: -3408.494824665724, + }, + }, + { + id: '5907', + data: { + label: 'United News & Media', + x: 4215.415997618334, + y: 3564.5763674383284, + z: -3622.6509367726007, + }, + }, + { + id: '5905', + data: { + label: 'Pearson plc', + x: 156.1665693992828, + y: 372.44364654364836, + z: -4352.821824804662, + }, + }, + { + id: '5904', + data: { + label: 'InSite Marketing Technology', + x: 1311.7318372876255, + y: 5837.751513855552, + z: 2441.311652490251, + }, + }, + { + id: '5903', + data: { + label: 'Silknet', + x: 1297.4800153417555, + y: 5632.53454586281, + z: 2792.958572523192, + }, + }, + { + id: '5902', + data: { + label: 'Assets of WorldPort Communications', + x: -2181.552530825696, + y: 2272.664110899925, + z: 2720.957534510583, + }, + }, + { + id: '5901', + data: { + label: 'Energis', + x: -2292.690965221107, + y: 2567.761994123899, + z: 2466.3888819434073, + }, + }, + { + id: '5898', + data: { + label: 'NetMind', + x: 1238.9273083677317, + y: 5211.687871883469, + z: -2324.5950412482684, + }, + }, + { + id: '5900', + data: { + label: 'Interactive Edge', + x: 396.53471824322617, + y: 4287.175617055797, + z: 3250.398410220987, + }, + }, + { + id: '5899', + data: { + label: 'Cordiant', + x: 92.24985843648633, + y: 4545.6542825472025, + z: 3286.3442666906662, + }, + }, + { + id: '5897', + data: { + label: 'Puma', + x: 1259.038413828429, + y: 4892.481884526085, + z: -2576.905234385836, + }, + }, + { + id: '5896', + data: { + label: 'DinSide Auksjon', + x: 2489.313101736764, + y: -5102.846778027807, + z: -668.4879936118792, + }, + }, + { + id: '5895', + data: { + label: 'QXL', + x: 2127.284109985904, + y: -4925.704010727654, + z: -675.6870183010784, + }, + }, + { + id: '5894', + data: { + label: 'ORT', + x: 5648.9843536364, + y: -145.47457543797384, + z: 1189.2850301438805, + }, + }, + { + id: '5893', + data: { + label: 'Reuters', + x: 5198.603935138443, + y: -242.8530559911779, + z: 1290.6380581987457, + }, + }, + { + id: '5892', + data: { + label: 'Qualitative Marketing Software', + x: 444.61435104357935, + y: 5005.570029391635, + z: 2024.094807521889, + }, + }, + { + id: '5891', + data: { + label: 'Sagent', + x: 545.507997312732, + y: 4810.768548592229, + z: 2362.8881138723946, + }, + }, + { + id: '5890', + data: { + label: 'Advanced Educational Systems', + x: 988.5232368917987, + y: -1909.4747597313612, + z: 4852.19326568355, + }, + }, + { + id: '5889', + data: { + label: 'SmartForce', + x: 689.3857399841876, + y: -2074.1468638485203, + z: 4620.031660648195, + }, + }, + { + id: '5888', + data: { + label: 'Engineering Animation', + x: 620.195737184027, + y: -4475.793498284239, + z: 401.4361283126988, + }, + }, + { + id: '5887', + data: { + label: 'Unigraphics Solutions', + x: 499.68108455825063, + y: -4359.2861817431085, + z: 36.95908902685275, + }, + }, + { + id: '5886', + data: { + label: 'Advanced Recruiting Technologies', + x: 4051.2139860269485, + y: 1734.8332022265972, + z: -3556.5447413659645, + }, + }, + { + id: '5885', + data: { + label: 'Hire.com', + x: 3805.5238407155957, + y: 1611.150283655608, + z: -3847.9512642146533, + }, + }, + { + id: '5884', + data: { + label: 'Sabre', + x: 2739.575199889645, + y: 5363.639203392497, + z: 1764.1029664380258, + }, + }, + { + id: '5883', + data: { + label: 'BuildNet', + x: 1788.6672593503888, + y: -4933.760129099635, + z: 2769.0225216731606, + }, + }, + { + id: '5882', + data: { + label: 'Cameron Ashley Building Products', + x: 2053.2177354991145, + y: -5098.159066183537, + z: 2503.0041331397783, + }, + }, + { + id: '5881', + data: { + label: 'Mobility Electronics', + x: -374.1108572404006, + y: 356.8945140014956, + z: 5330.63141443314, + }, + }, + { + id: '5880', + data: { + label: 'Cybex Computer Products', + x: -427.04774587694544, + y: -34.8993543949629, + z: 5296.956341301169, + }, + }, + { + id: '5879', + data: { + label: 'Advanced Radio Telecom', + x: 4825.5340986969795, + y: -642.8500706437187, + z: -59.87400187334271, + }, + }, + { + id: '5878', + data: { + label: 'Qwest Communications International', + x: 4436.9454993455565, + y: 2307.270143817524, + z: 3747.5870439469254, + }, + }, + { + id: '5877', + data: { + label: 'E-Stamp', + x: 4081.9280793870153, + y: 1899.9306536389388, + z: 1324.2185133948876, + }, + }, + { + id: '5876', + data: { + label: 'Data Trak Technologies of California', + x: 4190.240710227047, + y: 2353.029734458676, + z: 1454.7799254498193, + }, + }, + { + id: '5875', + data: { + label: 'Galileo International', + x: 56.82195147728133, + y: 2515.511033311312, + z: -2912.480149837908, + }, + }, + { + id: '5874', + data: { + label: 'Cendant', + x: 364.18594865983107, + y: 2484.6262312744857, + z: -3198.0306993611225, + }, + }, + { + id: '5872', + data: { + label: 'Intergraph', + x: -2431.5544787951517, + y: -3468.7348862495696, + z: 879.1842242732101, + }, + }, + { + id: '5873', + data: { + label: 'RTSe USA', + x: -2480.261044285498, + y: -3212.1039314804843, + z: 572.9293608137808, + }, + }, + { + id: '5871', + data: { + label: 'Sunquest Information Systems', + x: 4852.586918147813, + y: -3859.3403764864365, + z: 2145.74116161836, + }, + }, + { + id: '5870', + data: { + label: 'Misys plc', + x: 4569.67707711081, + y: -3901.2790368762076, + z: 1862.5452821469942, + }, + }, + { + id: '5869', + data: { + label: 'Galaxy.com', + x: 6865.2916008798475, + y: 1389.2870942488594, + z: 2148.31476739197, + }, + }, + { + id: '5868', + data: { + label: 'Logika', + x: 6729.607282174611, + y: 1039.9710369698744, + z: 2009.7186857910422, + }, + }, + { + id: '5867', + data: { + label: 'Microware Systems', + x: 5510.777586480132, + y: -2312.25033476691, + z: -2565.6338689530803, + }, + }, + { + id: '5866', + data: { + label: 'RadiSys', + x: 5327.527468168339, + y: -2181.129129909499, + z: -2905.393042682186, + }, + }, + { + id: '5865', + data: { + label: 'Universal Distribution Services', + x: -930.5478996074173, + y: -3037.159870591576, + z: -4294.532472767415, + }, + }, + { + id: '5864', + data: { + label: 'Innotrac', + x: -595.7065285412698, + y: -3233.556645413727, + z: -4409.689579838377, + }, + }, + { + id: '5863', + data: { + label: 'ACNielsen', + x: 873.9380919696639, + y: 5225.976841822658, + z: 2085.757296574173, + }, + }, + { + id: '5860', + data: { + label: 'Ciena', + x: -36.57254496482194, + y: 3032.663519093626, + z: -4348.30094896701, + }, + }, + { + id: '5861', + data: { + label: 'Cyras', + x: 489.69316738925977, + y: 4990.466128921579, + z: 1024.8935586085806, + }, + }, + { + id: '5862', + data: { + label: 'VNU N.V.', + x: 862.8677312545349, + y: 5068.890857842477, + z: 1710.4008615811613, + }, + }, + { + id: '5859', + data: { + label: 'Visual Data', + x: 141.17668777932965, + y: -3360.848354968033, + z: 4124.952590484186, + }, + }, + { + id: '5858', + data: { + label: 'SportSoft Golf', + x: 364.7098006046026, + y: -3093.187317770702, + z: 4332.223359068722, + }, + }, + { + id: '5857', + data: { + label: 'Networks Mexico and Zalhe Informatica', + x: 672.221151604277, + y: -3587.5994118711174, + z: 969.2577485126403, + }, + }, + { + id: '5855', + data: { + label: 'CrossKeys', + x: -2228.4671885539824, + y: -840.7070621335777, + z: -2555.9003100937553, + }, + }, + { + id: '5856', + data: { + label: 'Dynamic Broadband', + x: -1969.1283284365209, + y: -743.1012031879559, + z: -2856.8744991976478, + }, + }, + { + id: '5854', + data: { + label: 'Kinetra', + x: 2121.608326723066, + y: 2022.305724574938, + z: -1609.8222683554266, + }, + }, + { + id: '5853', + data: { + label: 'Healtheon/WebMD', + x: 5756.259075297587, + y: 4880.865705183178, + z: 223.7063167201922, + }, + }, + { + id: '5851', + data: { + label: 'VitalWorks', + x: -1710.0404316065885, + y: 1761.455658329233, + z: 3932.492244207307, + }, + }, + { + id: '5852', + data: { + label: 'BlueGill', + x: 1741.290402872347, + y: -2369.9074882893824, + z: 294.2821108813012, + }, + }, + { + id: '5850', + data: { + label: 'Nicanet', + x: 252.058883528191, + y: -2985.7340490916336, + z: 1099.6628279944866, + }, + }, + { + id: '5849', + data: { + label: 'Holloway Publications', + x: 3830.0357243223025, + y: -2346.5753903844115, + z: -3598.103691600392, + }, + }, + { + id: '5848', + data: { + label: 'HomeSeekers.com', + x: 4047.5059451850684, + y: -2378.69091393554, + z: -3256.5526132494892, + }, + }, + { + id: '5846', + data: { + label: 'Aceweb Internet', + x: -2057.5005415320693, + y: 3006.066115054871, + z: 2172.793867540573, + }, + }, + { + id: '5847', + data: { + label: 'CEGlobe', + x: -1708.2872904840763, + y: 2983.1226848044394, + z: 2374.9257876210936, + }, + }, + { + id: '5845', + data: { + label: 'Advanced Internet Design & Applications', + x: -2093.643001878381, + y: -266.20820327994545, + z: -4262.033035891598, + }, + }, + { + id: '5844', + data: { + label: 'Newtek Capital', + x: -1858.9281954398596, + y: -184.7058995223219, + z: -4603.784499455898, + }, + }, + { + id: '5842', + data: { + label: 'Primus Telecommunications Group', + x: 6536.24006440401, + y: -220.11394298588422, + z: 2094.0766873259345, + }, + }, + { + id: '5843', + data: { + label: 'Bekkoame', + x: 6819.543646050324, + y: -34.92621680843678, + z: 1818.9435887298016, + }, + }, + { + id: '5841', + data: { + label: 'DNI Holdings', + x: 819.6608616177424, + y: 856.3341267887293, + z: -2542.8423313972808, + }, + }, + { + id: '5840', + data: { + label: 'IndustrialAmerica', + x: 919.7646568499255, + y: 1266.5676715648387, + z: -2436.260823810182, + }, + }, + { + id: '5839', + data: { + label: 'Epoch Internet', + x: 5254.099181415173, + y: 4832.117218029893, + z: -1194.2312428991581, + }, + }, + { + id: '5838', + data: { + label: 'Williams', + x: 5237.034255153804, + y: 4921.272138220509, + z: -1584.0261112982475, + }, + }, + { + id: '5837', + data: { + label: 'Internet Florist Association', + x: 5986.035603778226, + y: -2945.8682377146533, + z: -2093.251212132348, + }, + }, + { + id: '5836', + data: { + label: 'Flowersandgifts.com', + x: 5801.849493517633, + y: -2692.2159252864385, + z: -2348.2862825279904, + }, + }, + { + id: '5835', + data: { + label: 'Fairfax Equity', + x: 5612.445282635501, + y: 1781.1249949978203, + z: 4443.038493831626, + }, + }, + { + id: '5834', + data: { + label: 'Internet Holdings', + x: 5845.419528910303, + y: 2026.1366610681164, + z: 4215.087917665969, + }, + }, + { + id: '5833', + data: { + label: 'Ohio and Illinois ISPs', + x: 3151.9901762271525, + y: 1195.131680122497, + z: 3571.8018612856195, + }, + }, + { + id: '5832', + data: { + label: 'Voyager.net', + x: 3286.5724893537745, + y: 933.2749389453654, + z: 3191.2141236986536, + }, + }, + { + id: '5831', + data: { + label: 'Internet Engineering Group', + x: 5389.115015243798, + y: 1648.2629644387305, + z: -386.2536225660117, + }, + }, + { + id: '8316', + data: { + label: 'Authorize.Net', + x: 4822.365811014763, + y: 1881.9890053613046, + z: 1188.209506188183, + }, + }, + { + id: '5829', + data: { + label: 'NBC Capital', + x: 2749.5968754536, + y: -1519.2539286406352, + z: -1210.8910810477666, + }, + }, + { + id: '5828', + data: { + label: 'UltraStar', + x: 965.8453982402259, + y: -958.3184378818381, + z: 4054.12889464372, + }, + }, + { + id: '5827', + data: { + label: 'Epitonic.com', + x: 4919.4346989920205, + y: -86.71449229579211, + z: 659.0378107355717, + }, + }, + { + id: '5826', + data: { + label: 'Kohlberg Kravis Roberts & Co.', + x: -103.58111069153173, + y: 1993.8583003187719, + z: -2492.959758695344, + }, + }, + { + id: '5824', + data: { + label: 'HP', + x: 898.3638743672875, + y: -3530.4590397651123, + z: 2821.4046926546853, + }, + }, + { + id: '5825', + data: { + label: 'Mirror Image', + x: 816.5146658993862, + y: -3900.121634116936, + z: 2650.2683875648777, + }, + }, + { + id: '5823', + data: { + label: 'MetalSite', + x: 676.7887453462232, + y: 1075.126675538826, + z: -2505.9834388069203, + }, + }, + { + id: '5821', + data: { + label: 'Visual Effects Plug-Ins', + x: 2932.1372895197705, + y: 1028.7507400583613, + z: -4004.5267188843727, + }, + }, + { + id: '5822', + data: { + label: 'Internet Capital Group', + x: 923.5783421513087, + y: 938.2569398148906, + z: -2076.9166982583583, + }, + }, + { + id: '5819', + data: { + label: 'DigitalThink', + x: 2626.4262529434477, + y: 1325.4611990749186, + z: -2903.645272122615, + }, + }, + { + id: '5820', + data: { + label: 'Adobe', + x: 3107.413300875469, + y: 1314.484818583916, + z: -4429.291636018934, + }, + }, + { + id: '5818', + data: { + label: 'NetSpeak', + x: 3376.482579780296, + y: 5401.767466159621, + z: 230.91045376054313, + }, + }, + { + id: '5817', + data: { + label: 'ADIR VoIP Technologies', + x: 3415.781396407805, + y: 5405.863914771107, + z: 635.351592927201, + }, + }, + { + id: '5816', + data: { + label: 'Adexa', + x: 836.5742483380067, + y: -3942.497089498645, + z: 3106.1413437695583, + }, + }, + { + id: '5815', + data: { + label: 'FreeMarkets', + x: 1228.7504055568547, + y: -3950.5092925321355, + z: 3220.340182244848, + }, + }, + { + id: '5814', + data: { + label: 'Starburst Software', + x: 1755.0583673604544, + y: -28.817818446537878, + z: -2116.1555391760216, + }, + }, + { + id: '5813', + data: { + label: 'Adero', + x: 1758.6529222175607, + y: -135.33961511874818, + z: -1642.1703142120646, + }, + }, + { + id: '5812', + data: { + label: 'Centigram Communications', + x: 3560.4090204429176, + y: 1998.540516364545, + z: 1917.726710648651, + }, + }, + { + id: '5811', + data: { + label: 'ADC Telecommunications', + x: -2275.841021436394, + y: 2818.4133991419876, + z: -3253.513718474745, + }, + }, + { + id: '5810', + data: { + label: 'ACT Networks', + x: -1353.1216950061594, + y: -735.4678211058892, + z: 3498.5665382314546, + }, + }, + { + id: '5809', + data: { + label: 'Clarent', + x: -1283.55257564742, + y: -1006.6484955494006, + z: 3202.813385407504, + }, + }, + { + id: '5808', + data: { + label: 'Bottle Rocket', + x: 3193.0167923146632, + y: 300.2944504758976, + z: 9.909274658681513, + }, + }, + { + id: '5807', + data: { + label: 'Mueller Telecoms ISP Division', + x: 900.3112302694313, + y: 1799.6802678401677, + z: -4743.23621231465, + }, + }, + { + id: '5806', + data: { + label: 'ACT Teleconferencing', + x: 775.6910060986439, + y: 1823.0498124950482, + z: -5135.921506411074, + }, + }, + { + id: '5805', + data: { + label: 'Authentic8', + x: -2485.6321261792377, + y: -2580.6019571557194, + z: -141.61426695517088, + }, + }, + { + id: '5804', + data: { + label: 'ActivCard', + x: -2316.0366642479776, + y: -2648.1309714941035, + z: 220.8888560429512, + }, + }, + { + id: '5803', + data: { + label: 'Cheetah Technologies', + x: -297.26860492820543, + y: 1022.6881088276224, + z: -4716.508686475387, + }, + }, + { + id: '5801', + data: { + label: 'Acme Multimedia', + x: 6129.663771455382, + y: 1890.69292658721, + z: -2086.6538854459723, + }, + }, + { + id: '5802', + data: { + label: 'Dynatech', + x: -382.8274756685045, + y: 1057.5121624307908, + z: -4309.302542484886, + }, + }, + { + id: '5800', + data: { + label: 'Cognicase', + x: 6322.894711130996, + y: 1773.8416854671261, + z: -1715.9396755306686, + }, + }, + { + id: '5799', + data: { + label: 'Acer', + x: 622.6250813452733, + y: 1207.7420047417488, + z: 1614.3352866167666, + }, + }, + { + id: '5798', + data: { + label: 'Account4', + x: 677.1372339412136, + y: 5457.448190274097, + z: 505.11853863004364, + }, + }, + { + id: '5797', + data: { + label: 'Lawson Software', + x: 686.4858664530367, + y: 5683.94146897396, + z: 166.30167875984384, + }, + }, + { + id: '5796', + data: { + label: 'Access One for $200 Million', + x: 3860.60830965806, + y: 4463.54765301115, + z: -2442.843340582854, + }, + }, + { + id: '5795', + data: { + label: 'Talk.com', + x: 4219.405758213518, + y: 4649.880008168593, + z: -2485.41264494471, + }, + }, + { + id: '5794', + data: { + label: 'Access Eindhoven', + x: -3795.1955188061092, + y: -1759.2462475476984, + z: 353.82997123697857, + }, + }, + { + id: '5793', + data: { + label: 'Via Net.Works', + x: -3659.0731284542685, + y: -2120.0997146087166, + z: 215.34682935456868, + }, + }, + { + id: '5792', + data: { + label: 'Press Access', + x: 2054.6439804499314, + y: 2510.0520625465106, + z: -2725.304415962269, + }, + }, + { + id: '5790', + data: { + label: 'ADC Telecom', + x: 3759.7185014761903, + y: 2411.0791237309336, + z: 2248.325026902737, + }, + }, + { + id: '5788', + data: { + label: 'UniNet', + x: -1217.645445223552, + y: -1974.905363220773, + z: -2875.6105337756017, + }, + }, + { + id: '5791', + data: { + label: 'Broadband Access Systems', + x: 3994.6979011496237, + y: 2665.9143806326556, + z: 2553.783113650658, + }, + }, + { + id: '5789', + data: { + label: 'Access Direct', + x: 3675.712654378617, + y: -554.1861141609998, + z: -1378.2889012208607, + }, + }, + { + id: '5787', + data: { + label: 'OnSite Access', + x: 2634.9515226116896, + y: -192.08229121698716, + z: -788.9140518993189, + }, + }, + { + id: '5786', + data: { + label: 'TelDaFax', + x: -1535.7835502236344, + y: -1874.8711694284598, + z: -2864.9201140765567, + }, + }, + { + id: '5785', + data: { + label: 'Canadian Access', + x: -2959.9225098490438, + y: 2507.778587783841, + z: 2547.049592360967, + }, + }, + { + id: '5784', + data: { + label: 'ClientLogic', + x: -2718.995254350223, + y: 2586.6905737178777, + z: 2859.8367032328238, + }, + }, + { + id: '5783', + data: { + label: 'Blink Data', + x: 2745.1204687387117, + y: -3798.2581436717282, + z: 3971.822067755698, + }, + }, + { + id: '5782', + data: { + label: 'Covista', + x: 2640.322466290771, + y: -3984.085769798731, + z: 3630.3930043361224, + }, + }, + { + id: '5780', + data: { + label: 'OpenText', + x: 1459.8811445534116, + y: 5909.585974711607, + z: -1614.7562931572484, + }, + }, + { + id: '5781', + data: { + label: 'LeadingSide Products', + x: 1648.42963176479, + y: 5820.2005438760525, + z: -1266.2815979537845, + }, + }, + { + id: '5779', + data: { + label: 'Stanford Resources', + x: -1552.035471739148, + y: 3669.135964264706, + z: 2327.0975809484876, + }, + }, + { + id: '5778', + data: { + label: 'iSuppli', + x: -1440.6346089402928, + y: 3602.1985062564986, + z: 2708.160071533994, + }, + }, + { + id: '5777', + data: { + label: 'OmniSky', + x: 950.6446004791035, + y: -2612.293943851043, + z: 2228.823403344473, + }, + }, + { + id: '5775', + data: { + label: 'Strategic Data', + x: 1096.4826314911984, + y: 6174.2517452818975, + z: 1336.4126395170938, + }, + }, + { + id: '5776', + data: { + label: 'MyGeek', + x: 6654.8513155844985, + y: -885.9670395378712, + z: 1157.78147164249, + }, + }, + { + id: '5771', + data: { + label: 'B2SB Technologies', + x: 4508.3073006262375, + y: 1039.6132375125019, + z: -166.4457842289462, + }, + }, + { + id: '5773', + data: { + label: 'Convergent Group', + x: -1701.7081061665663, + y: 798.3203076626693, + z: -4353.6090573806405, + }, + }, + { + id: '5774', + data: { + label: 'J Net Enterprises', + x: 800.8620116928496, + y: 6106.5428838675225, + z: 1605.4589411972186, + }, + }, + { + id: '5772', + data: { + label: 'Cinergy', + x: -1594.833478808599, + y: 532.5506237511113, + z: -4644.193945886909, + }, + }, + { + id: '5770', + data: { + label: 'Network ICE', + x: 4051.815304764325, + y: -919.9776025784327, + z: 5159.116433515262, + }, + }, + { + id: '5769', + data: { + label: 'Internet Security Systems', + x: 4376.621289447371, + y: -938.9684850777031, + z: 4913.4630853972285, + }, + }, + { + id: '5767', + data: { + label: 'CustomerLinx', + x: 1595.3559053009012, + y: -2627.575471122741, + z: 5252.824509328746, + }, + }, + { + id: '5768', + data: { + label: 'ETC Data Services', + x: 1671.5209850111064, + y: -2373.17896330657, + z: 4960.004492086622, + }, + }, + { + id: '5766', + data: { + label: 'Net Connection', + x: 2753.832221202745, + y: 2582.197518774671, + z: 4521.278256394451, + }, + }, + { + id: '5764', + data: { + label: 'Static', + x: 2238.8495681703125, + y: 838.9728654658942, + z: 750.7328569559156, + }, + }, + { + id: '5765', + data: { + label: 'MyTravelGuide.com', + x: 2777.81702681152, + y: 2378.251976842833, + z: 4871.705588836588, + }, + }, + { + id: '5763', + data: { + label: 'Greatland', + x: -952.5923721424036, + y: 1871.5452661620113, + z: 4676.819102615819, + }, + }, + { + id: '5762', + data: { + label: 'Execusite', + x: -1191.2321887303424, + y: 1671.5956422980803, + z: 4421.658096648241, + }, + }, + { + id: '5761', + data: { + label: 'Global Election Systems', + x: 4291.2529679706, + y: 597.6773727099412, + z: -4783.212134278941, + }, + }, + { + id: '5760', + data: { + label: 'Diebold', + x: 4073.6601563265544, + y: 912.1825966053492, + z: -4671.389176538642, + }, + }, + { + id: '5759', + data: { + label: 'Vivendi Universal S.A.', + x: -3331.909281854966, + y: 1429.218440903642, + z: -2788.733799898855, + }, + }, + { + id: '5758', + data: { + label: 'eOne', + x: 6761.562602279722, + y: 3289.503556426529, + z: -751.4529864475841, + }, + }, + { + id: '5757', + data: { + label: 'VeriSign', + x: 6456.252655429678, + y: 2988.3492232469503, + z: -796.5897032638666, + }, + }, + { + id: '5755', + data: { + label: 'TA Associates', + x: 1819.9394020683135, + y: -3113.6110060543424, + z: -3567.366253310511, + }, + }, + { + id: '5756', + data: { + label: 'Velocity.com', + x: -695.5350597196972, + y: 153.13330855882333, + z: 1812.8276818474162, + }, + }, + { + id: '5752', + data: { + label: 'Barra Global Estimates', + x: 2367.59014656483, + y: -2420.856539325597, + z: 4149.205223992074, + }, + }, + { + id: '5753', + data: { + label: 'Bain Capital', + x: 1824.6529574607064, + y: -3808.0675237256037, + z: -3014.232776641999, + }, + }, + { + id: '5754', + data: { + label: 'Datek Online Holdings', + x: 1817.1697345885525, + y: -3471.4807259492964, + z: -3304.776678242074, + }, + }, + { + id: '5751', + data: { + label: 'Multex', + x: 2476.632532036755, + y: -2793.5832066866783, + z: 4006.292241943831, + }, + }, + { + id: '5750', + data: { + label: 'Global Sports', + x: 1495.0400435215338, + y: -66.58068277042514, + z: 2333.071845550822, + }, + }, + { + id: '5748', + data: { + label: 'Bechtel Group', + x: 4152.594193775122, + y: -3052.106105237513, + z: -3723.453917979423, + }, + }, + { + id: '5747', + data: { + label: 'Eschelon Telecom', + x: 2551.3410356835952, + y: -2722.9438563469807, + z: 1981.142859574858, + }, + }, + { + id: '5749', + data: { + label: 'Probex', + x: 4045.2548154437904, + y: -3113.8235501346153, + z: -4110.31133011116, + }, + }, + { + id: '5746', + data: { + label: 'Alliance Entertainment', + x: 2328.2541772603163, + y: 5429.030176918392, + z: 3092.5293106484123, + }, + }, + { + id: '5745', + data: { + label: 'The Yucaipa Companies', + x: 2427.844814804953, + y: 5581.138892323385, + z: 2735.647053898259, + }, + }, + { + id: '5744', + data: { + label: 'FI Data', + x: -133.11617637644596, + y: -1350.2956341760812, + z: -4284.081892232051, + }, + }, + { + id: '5743', + data: { + label: 'Billing Concepts', + x: -388.6348890246702, + y: -1653.9779234080806, + z: -3995.069925481055, + }, + }, + { + id: ' a Division of Danish GN', + data: { + label: 'FaxNet', + x: 2577.9759166294425, + y: 6220.115546139168, + z: 1467.2469926145086, + }, + }, + { + id: '5741', + data: { + label: 'Critical Path', + x: -191.0210094712288, + y: 4533.718505473637, + z: 467.57423210112023, + }, + }, + { + id: '5740', + data: { + label: 'HHPN Development', + x: -1156.2464472207494, + y: -2464.482846453782, + z: -4105.144775014287, + }, + }, + { + id: '5739', + data: { + label: 'Phoenix Resources Technologies', + x: -909.0524994612092, + y: -2570.7076090042783, + z: -4416.892032231634, + }, + }, + { + id: '5738', + data: { + label: 'RightPoint', + x: -702.2036702014524, + y: -4932.023461998486, + z: -822.1003422887765, + }, + }, + { + id: '5737', + data: { + label: 'E.piphany', + x: -607.656793748585, + y: -5035.537510775227, + z: -1199.7378670149922, + }, + }, + { + id: '5735', + data: { + label: 'Euroweb', + x: 4676.731509784048, + y: 4764.834521539086, + z: 690.0376130502995, + }, + }, + { + id: '5736', + data: { + label: 'Hungarian ISPs', + x: 4513.6461028773365, + y: 4992.329461109713, + z: 994.7886426867827, + }, + }, + { + id: '5734', + data: { + label: 'Screaming Media.Net', + x: 6687.099787636642, + y: -558.0986157936104, + z: 1407.0730170082186, + }, + }, + { + id: '5733', + data: { + label: 'Winfield Capital', + x: 6567.022245902754, + y: -938.6992071608121, + z: 1563.821243616237, + }, + }, + { + id: '5730', + data: { + label: 'Lightspan', + x: 5923.632092820755, + y: -646.9788023859812, + z: -4019.815794099453, + }, + }, + { + id: '5732', + data: { + label: 'SOFTBANK CORP.', + x: 319.2238008220228, + y: 1715.3938534782108, + z: -5236.8031536972585, + }, + }, + { + id: '5731', + data: { + label: 'Kmarts Bluelight.com', + x: 4545.790497391571, + y: 1217.1519833979355, + z: 97.20097003479167, + }, + }, + { + id: '5729', + data: { + label: 'PAIX', + x: -2849.5738378623855, + y: -1628.9815788135688, + z: -45.248388600642826, + }, + }, + { + id: '5728', + data: { + label: 'AboveNet', + x: -1286.006764487816, + y: -3263.8879359931793, + z: 3464.6239680521794, + }, + }, + { + id: '5726', + data: { + label: 'Broadband Provider OnePoint', + x: 7541.74374870978, + y: -1113.2784226606725, + z: -1208.635557973694, + }, + }, + { + id: '5727', + data: { + label: 'AboveNet Communications', + x: -3098.1606573033637, + y: -1324.2441337808782, + z: -159.1581415500934, + }, + }, + { + id: '5725', + data: { + label: 'Verizon', + x: 6100.501064853602, + y: -478.0535486717659, + z: 4214.1820747545535, + }, + }, + { + id: '5723', + data: { + label: 'TeleTech Holdings', + x: 432.7495963606528, + y: -2578.922391602357, + z: 4874.174750808009, + }, + }, + { + id: '5724', + data: { + label: 'Newgen Results', + x: 758.630968320842, + y: -2336.842715250251, + z: 4935.622732839693, + }, + }, + { + id: '5722', + data: { + label: 'Great Plains Software', + x: 2670.8014328552263, + y: 178.86772480126797, + z: -894.337439326962, + }, + }, + { + id: '5719', + data: { + label: 'NetCreations', + x: -1998.1960855043906, + y: -1251.2341026666816, + z: -2951.855912095501, + }, + }, + { + id: '5721', + data: { + label: 'Eloquent', + x: 1108.4119190822764, + y: 3481.49130174208, + z: -3829.01986357993, + }, + }, + { + id: '5720', + data: { + label: 'SpeechWorks', + x: 948.0670049308828, + y: -3970.054697088883, + z: -3680.9865474685967, + }, + }, + { + id: '5718', + data: { + label: 'SEAT Pagine Gialle', + x: -2321.332205928117, + y: -1345.696215168091, + z: -2722.2904338411176, + }, + }, + { + id: '5716', + data: { + label: 'INT Media Group', + x: -555.9502241331419, + y: -3492.1702997847424, + z: 3832.1910779905684, + }, + }, + { + id: '5717', + data: { + label: 'EarthWeb', + x: -554.804100285032, + y: -3436.7776688486065, + z: 3434.5705876719408, + }, + }, + { + id: '5715', + data: { + label: 'Danish I-Builder 21st.dk', + x: 5776.630120969019, + y: -654.0499373349329, + z: -3652.603615246877, + }, + }, + { + id: '5712', + data: { + label: 'TriZetto Group', + x: 2351.4409457752995, + y: 3884.639815292151, + z: -4103.777601841835, + }, + }, + { + id: '5714', + data: { + label: 'Primix Solutions', + x: 5502.98938453461, + y: -790.0970492199913, + z: -3936.896744031016, + }, + }, + { + id: '5710', + data: { + label: 'JoinNet', + x: 1750.475861974707, + y: -2840.5304288593734, + z: 2898.5482432716162, + }, + }, + { + id: '5713', + data: { + label: 'Finserv', + x: 2285.9942883952253, + y: 3511.1018423146866, + z: -4273.3103899862535, + }, + }, + { + id: '5711', + data: { + label: 'America Online Latin America', + x: 2134.055686846894, + y: 601.5865214211539, + z: 2364.267568667614, + }, + }, + { + id: '5709', + data: { + label: 'View Tech', + x: -674.9154521925761, + y: 3586.8729595355603, + z: 3506.006288562029, + }, + }, + { + id: '5707', + data: { + label: 'SeeUthere.com', + x: 699.2014353159262, + y: 981.7308478529691, + z: 1258.5266658972307, + }, + }, + { + id: '5708', + data: { + label: 'Digital Origin', + x: -1814.5861192223322, + y: -3028.0488117727373, + z: -977.6580654526783, + }, + }, + { + id: '5706', + data: { + label: 'Equilibrium', + x: 5451.483657531219, + y: 2896.510668653371, + z: 1469.7854731530745, + }, + }, + { + id: '5702', + data: { + label: 'Charles Schwab', + x: -34.997936242443096, + y: -3665.0648284214412, + z: -2522.913493534532, + }, + }, + { + id: '5705', + data: { + label: 'CMGI', + x: 5251.371812944009, + y: 2569.1018770261703, + z: 1730.1782387912915, + }, + }, + { + id: '5704', + data: { + label: 'ComputerActive', + x: 3165.8873536898896, + y: -4568.260107926606, + z: -544.3838514190735, + }, + }, + { + id: '5703', + data: { + label: 'Advantage Learning', + x: 2898.6589610459887, + y: -4862.382099589654, + z: -484.65085646329845, + }, + }, + { + id: '5701', + data: { + label: 'E-Loan', + x: -66.35809664313824, + y: -3780.1607958645886, + z: -2132.6378712193587, + }, + }, + { + id: '5700', + data: { + label: 'Abbey National plc', + x: -205.5484209763419, + y: -4124.076233657763, + z: -1974.7612920037964, + }, + }, + { + id: '5699', + data: { + label: 'Rest of Connect.com.au', + x: -1358.9062663567756, + y: -3547.809263197063, + z: 2311.5184645508957, + }, + }, + { + id: '5698', + data: { + label: 'AAPT', + x: -1166.7968187399356, + y: -3451.674848866017, + z: 2651.836951570047, + }, + }, + { + id: '5697', + data: { + label: 'Webhelp', + x: 1516.7475232814506, + y: 3757.9765117683364, + z: 3342.8061914859522, + }, + }, + { + id: '5696', + data: { + label: 'Tantau Software', + x: 1838.1465396777126, + y: 4133.905804843601, + z: 3280.047898364095, + }, + }, + { + id: '5695', + data: { + label: '5th Floor Interactive', + x: -351.1073961457132, + y: 4729.375741804269, + z: 1418.7487273223062, + }, + }, + { + id: '5694', + data: { + label: 'Xceed', + x: -182.92302525999014, + y: 4739.818483849682, + z: 1788.9138112145838, + }, + }, + { + id: '5693', + data: { + label: 'I-drive', + x: 5870.743822057069, + y: 1109.9619878300732, + z: 2090.3461493871705, + }, + }, + { + id: '5692', + data: { + label: 'ZDNet', + x: 5564.845499354393, + y: 846.6551883031086, + z: 1810.3003403713144, + }, + }, + { + id: '5691', + data: { + label: 'Call Technologies for $90 Million', + x: -284.6637224777286, + y: 1718.9984960515146, + z: -1657.2357002343604, + }, + }, + { + id: '5690', + data: { + label: 'Kerbango', + x: 135.38363215937483, + y: 1949.4346185270972, + z: -1745.2402957671031, + }, + }, + { + id: '5689', + data: { + label: 'Alteon WebSystems', + x: -643.223507672195, + y: 2132.244167317793, + z: -782.27874413683, + }, + }, + { + id: '5688', + data: { + label: 'CAIS Internet', + x: 69.56589479941097, + y: 1794.8829493376313, + z: -2102.8314169413725, + }, + }, + { + id: '5687', + data: { + label: 'HealtheTech', + x: -3.2939278980072877, + y: 2008.024095339689, + z: -1556.8501465290808, + }, + }, + { + id: '5685', + data: { + label: 'LANSource', + x: -223.233135150667, + y: 1899.5653012240343, + z: -1472.9526142001093, + }, + }, + { + id: '5686', + data: { + label: 'Smartcode Technologie for $17.5 Million', + x: 217.46277012060708, + y: 1712.864695878637, + z: -1859.5308177702045, + }, + }, + { + id: '5684', + data: { + label: 'IWC', + x: -68.71588856752459, + y: 1575.1625276985865, + z: -1875.149545555081, + }, + }, + { + id: '5683', + data: { + label: 'AvantGo', + x: 1290.8159694328335, + y: 698.1746322895991, + z: -942.3093194534755, + }, + }, + { + id: '5682', + data: { + label: 'USWeb/CKS', + x: -101.48991978926732, + y: 1876.358022952263, + z: -1848.1024909817306, + }, + }, + { + id: '5681', + data: { + label: 'Open Cellular Systems', + x: -537.1824319446357, + y: 1316.6569577752691, + z: 4690.107705352014, + }, + }, + { + id: '5680', + data: { + label: 'LaBarge', + x: -210.83455343575613, + y: 1165.9187982765275, + z: 4876.804479224881, + }, + }, + { + id: '5677', + data: { + label: 'Silicon Valley Magazine', + x: 6652.814085619661, + y: 1886.5604776286182, + z: 2263.68705114585, + }, + }, + { + id: '5679', + data: { + label: 'Atomic Pop', + x: 5841.567369083685, + y: -644.497788192979, + z: -3122.475217076638, + }, + }, + { + id: '5678', + data: { + label: 'New Valley', + x: 5953.091627718325, + y: -985.0966480589777, + z: -2934.4059361470063, + }, + }, + { + id: '5676', + data: { + label: 'NetUSA', + x: 6512.05989130365, + y: 1889.1182680130296, + z: 2650.0970981327155, + }, + }, + { + id: '5675', + data: { + label: 'WorldGate Communications', + x: -2616.5521244348515, + y: 3478.612097522443, + z: 1959.1245365072796, + }, + }, + { + id: '5672', + data: { + label: 'SkyTel Communications', + x: 4160.225109567692, + y: 2111.7717194782595, + z: 2123.2687311018863, + }, + }, + { + id: '5674', + data: { + label: 'NACT Telecommunications', + x: 6942.006628174086, + y: 2821.987175810872, + z: 1673.5065971232377, + }, + }, + { + id: '5673', + data: { + label: 'World Wireless Communication', + x: 1798.38239745724, + y: 2536.9843595079824, + z: 5509.900310913719, + }, + }, + { + id: '5670', + data: { + label: 'Wireless Facilities', + x: -1996.5606952477872, + y: -584.8840123310835, + z: -4465.44674556218, + }, + }, + { + id: '5668', + data: { + label: 'WebMD', + x: 2736.7649216093027, + y: 59.06302648918699, + z: -1468.900107682819, + }, + }, + { + id: '5671', + data: { + label: 'Telia AB', + x: 4664.872053697099, + y: 3850.5033255678354, + z: -3805.3375511878276, + }, + }, + { + id: '5669', + data: { + label: 'Wind River Systems', + x: -3553.1691617687798, + y: -2116.4572704774378, + z: -361.0887233852164, + }, + }, + { + id: '5667', + data: { + label: 'WebLink Wireless', + x: 719.970735623705, + y: -2221.134294521336, + z: 2030.1122355553591, + }, + }, + { + id: '5666', + data: { + label: 'Webhire', + x: 3934.3885618008176, + y: 1766.2557263334922, + z: 165.0864794966659, + }, + }, + { + id: '5665', + data: { + label: 'Blue Wave Systems', + x: 2414.5452284041835, + y: 121.45459640459501, + z: 2312.6698570444846, + }, + }, + { + id: '5664', + data: { + label: 'Wave Systems', + x: 2452.6056623710247, + y: 264.74542812500454, + z: 2927.664473750419, + }, + }, + { + id: '5662', + data: { + label: 'Walker Interactive Systems', + x: 5585.961225577493, + y: 892.9491365829268, + z: -4307.528972757533, + }, + }, + { + id: '5661', + data: { + label: 'SmartRoute Systems', + x: -699.9951809425639, + y: -914.4184241555253, + z: 2408.134694278589, + }, + }, + { + id: '5659', + data: { + label: 'VTEL', + x: -512.4700619943045, + y: 2105.6446826976135, + z: -3611.2113700103, + }, + }, + { + id: '5663', + data: { + label: 'Hyperion Solutions', + x: 511.52579781740576, + y: -3622.0453447874775, + z: -3254.0700568139514, + }, + }, + { + id: '5660', + data: { + label: 'Polycom', + x: -412.13492168991706, + y: 2480.3864472284117, + z: -3493.180947349866, + }, + }, + { + id: '5657', + data: { + label: 'Vixel', + x: 1654.6136183035676, + y: 6236.273223860269, + z: -831.573308003538, + }, + }, + { + id: '5658', + data: { + label: 'Estimation', + x: -2961.6301971083144, + y: -1722.0878314774266, + z: 2907.279811942077, + }, + }, + { + id: '5656', + data: { + label: 'Telco Systems', + x: -1144.0464519613668, + y: -1305.5573232233378, + z: -3295.9835937681805, + }, + }, + { + id: '5655', + data: { + label: 'Computer Network Technology', + x: 1098.3453015299756, + y: 5691.401896902706, + z: -806.7922563119357, + }, + }, + { + id: '5654', + data: { + label: 'webMethods', + x: 1134.5354610663755, + y: 5686.120337586406, + z: -406.73041092549323, + }, + }, + { + id: '5653', + data: { + label: 'Vignette', + x: 2086.723825358282, + y: -3289.5943435918048, + z: -3225.7398049736476, + }, + }, + { + id: '5652', + data: { + label: 'VINA Technologies', + x: 2705.817398692177, + y: -5165.322427088533, + z: 2203.930803354562, + }, + }, + { + id: '5651', + data: { + label: 'Vertel', + x: 3049.243004834554, + y: -4163.661324509519, + z: 3580.7496707235914, + }, + }, + { + id: '5650', + data: { + label: 'Video Services', + x: 1811.7479862982068, + y: -1180.1924286696237, + z: -103.89280595640099, + }, + }, + { + id: '5646', + data: { + label: 'Ariba', + x: 1270.1909083283754, + y: 496.19106359775145, + z: -2131.2078846115273, + }, + }, + { + id: '5649', + data: { + label: 'VDC Communications', + x: 1373.3248354197715, + y: -3489.67860015697, + z: 4410.646007910518, + }, + }, + { + id: '5645', + data: { + label: 'UTStarcom', + x: 4684.123237333347, + y: 3544.143896252407, + z: -3128.0331721032776, + }, + }, + { + id: '5648', + data: { + label: 'Raycom Media', + x: -1961.4066689006083, + y: 3700.491142695448, + z: 2873.6667219929736, + }, + }, + { + id: '5647', + data: { + label: 'National Amusements', + x: 94.27235559781545, + y: -723.3510010904283, + z: 589.3304111861872, + }, + }, + { + id: '5644', + data: { + label: 'Ericsson', + x: 6148.922111932624, + y: 2142.780999852141, + z: 1699.7346616265534, + }, + }, + { + id: '5643', + data: { + label: 'Verilink', + x: -2814.215396404988, + y: 1098.3317487395307, + z: -3411.971146438036, + }, + }, + { + id: '5642', + data: { + label: 'Verio', + x: 2096.4136109464534, + y: -1071.232588641113, + z: -2355.555766176611, + }, + }, + { + id: '5641', + data: { + label: 'Telstra Corporation', + x: 6274.320158381484, + y: -185.30294553092932, + z: -1527.7493493261793, + }, + }, + { + id: '5640', + data: { + label: 'United Pan-Europe Communications N.V.', + x: 1976.8173694960235, + y: -2426.664517637822, + z: 499.081008895556, + }, + }, + { + id: '5639', + data: { + label: 'Triton PCS Holdings', + x: 5828.345371158757, + y: 3754.871918054782, + z: 2664.227423319429, + }, + }, + { + id: '5638', + data: { + label: 'TicketWeb', + x: 2728.0170342379665, + y: -898.1396688803023, + z: -947.7593818479103, + }, + }, + { + id: '5636', + data: { + label: 'Trident Microsystems', + x: 6205.266860257152, + y: 3115.291613778152, + z: 2701.987286402431, + }, + }, + { + id: '5637', + data: { + label: 'Rise Technology', + x: 6558.38049780483, + y: 2927.473855132388, + z: 2664.823582050403, + }, + }, + { + id: '5635', + data: { + label: 'Telscape International', + x: 5054.927317364641, + y: -2856.167373430437, + z: -4156.205139989221, + }, + }, + { + id: '5634', + data: { + label: 'DIRECTV Broadband', + x: 3737.803737746367, + y: -1074.2051396709578, + z: -879.584531818531, + }, + }, + { + id: '5633', + data: { + label: 'Hughes Electronics', + x: 3890.2017345309728, + y: -1126.6522483941085, + z: -1450.5411960476613, + }, + }, + { + id: '5632', + data: { + label: 'Telocity', + x: 4008.417096198142, + y: -949.9107832385706, + z: -1244.0382801886535, + }, + }, + { + id: '5631', + data: { + label: 'Nippon Telegraph and Telephone', + x: -2528.9903988947744, + y: -162.57838837840117, + z: -4146.9630447569825, + }, + }, + { + id: '5630', + data: { + label: 'Telewest Communications', + x: 5944.367970771566, + y: 2628.7380168771588, + z: 3820.6202068638872, + }, + }, + { + id: '5629', + data: { + label: 'Telephone and Data Systems', + x: 2693.774372225572, + y: -2059.725903532227, + z: 1529.601490545269, + }, + }, + { + id: '5628', + data: { + label: 'Condor Technology Solutions', + x: 1889.4504091794845, + y: 3827.77942827795, + z: 4768.686661727771, + }, + }, + { + id: '5627', + data: { + label: 'Telaxis Communications', + x: -4089.4821893227495, + y: 329.818110241362, + z: 866.5235862574368, + }, + }, + { + id: '5626', + data: { + label: 'Visual Networks', + x: -2547.4866138612497, + y: 1797.958315076652, + z: 3426.3625200543006, + }, + }, + { + id: '5625', + data: { + label: 'Technical Communications', + x: -668.7464229213688, + y: 5796.879540221476, + z: 773.8628409708573, + }, + }, + { + id: '5624', + data: { + label: 'Cognizant Technology Solutions', + x: 1316.1340264984333, + y: 3967.7302955978557, + z: -4429.099489948923, + }, + }, + { + id: '5622', + data: { + label: 'Technology Solutions', + x: 6662.489245682832, + y: -1937.0797939386223, + z: 667.2994947700583, + }, + }, + { + id: '5623', + data: { + label: 'OAO Technology Solutions', + x: 6594.4734296899205, + y: -2136.758329669369, + z: 319.70564029162654, + }, + }, + { + id: '5621', + data: { + label: 'West Group', + x: -845.0710305788108, + y: 2217.788100944417, + z: 4272.220845026819, + }, + }, + { + id: '5620', + data: { + label: 'McLeodUSA', + x: -1053.5121153174662, + y: 2304.83707378749, + z: 3932.0683183408623, + }, + }, + { + id: '5619', + data: { + label: 'MCK Communications', + x: -521.7689758807227, + y: 657.3291509176358, + z: -5062.502830836196, + }, + }, + { + id: '5618', + data: { + label: 'Marvel Entertainment Group', + x: 5143.847658322645, + y: -1426.298641386096, + z: 4716.020576574962, + }, + }, + { + id: '5617', + data: { + label: 'Marvel Enterprises', + x: 5053.8897869213915, + y: -1037.2614326492542, + z: 4791.99129466316, + }, + }, + { + id: '5616', + data: { + label: 'Galileo Technology', + x: -417.5835067871665, + y: 4056.3990838444515, + z: 3999.4420222689396, + }, + }, + { + id: '5615', + data: { + label: 'Marvell Technology Group', + x: -353.1586986293977, + y: 3731.4611939457195, + z: 4234.480566629056, + }, + }, + { + id: '5614', + data: { + label: 'QCC', + x: -717.0667502748419, + y: 4315.204434794008, + z: 2082.6570549648372, + }, + }, + { + id: '5613', + data: { + label: 'marchFIRST', + x: -838.450454062643, + y: 3997.8940939062445, + z: 1841.2450784330963, + }, + }, + { + id: '5612', + data: { + label: 'Avaya', + x: -938.9431634669409, + y: -1507.1172960996398, + z: 3280.070994428698, + }, + }, + { + id: '5611', + data: { + label: 'LookSmart', + x: -614.7587994431677, + y: 702.7718923948287, + z: 5281.523416463939, + }, + }, + { + id: '5610', + data: { + label: 'StarBase', + x: 766.8859912949376, + y: 817.5418927818803, + z: 5084.1396084642, + }, + }, + { + id: '5609', + data: { + label: 'Macromedia', + x: 6178.072504879892, + y: -2652.5065695526228, + z: -1859.7039958128107, + }, + }, + { + id: '5608', + data: { + label: 'Liberty Satellite & Technology', + x: 3607.8645218986208, + y: 3833.0049557762177, + z: -3492.0670601601214, + }, + }, + { + id: '5607', + data: { + label: 'SONICblue', + x: 6705.177268370089, + y: -1143.376007388388, + z: -961.4372602110893, + }, + }, + { + id: '5606', + data: { + label: 'LSI Logic', + x: 3126.648546949217, + y: -4524.979749733904, + z: 2461.948160975719, + }, + }, + { + id: '5605', + data: { + label: 'CANAL+', + x: 2803.5149199991315, + y: 4144.911087222393, + z: 4352.894436180597, + }, + }, + { + id: '5604', + data: { + label: 'The Associated Group', + x: 2071.1698880520617, + y: -1095.1636066609062, + z: -257.0309371397753, + }, + }, + { + id: '5603', + data: { + label: 'Sky Global Networks', + x: 7249.0209726381245, + y: -1288.5027165369231, + z: 2321.71722563062, + }, + }, + { + id: '5602', + data: { + label: 'Fonix', + x: 6438.350841870801, + y: -2272.3032365314225, + z: -2656.661331171876, + }, + }, + { + id: '5601', + data: { + label: 'KVH Industries', + x: 3240.8609355007443, + y: -4272.892184943951, + z: -1103.5719627101082, + }, + }, + { + id: '5600', + data: { + label: 'Koninklijke Philips Electronics N.V.', + x: 6617.604798178791, + y: 1442.8972232462054, + z: 3470.818226342062, + }, + }, + { + id: '5599', + data: { + label: 'The Walt Disney', + x: 5730.171679888151, + y: 3318.328521453636, + z: -3357.43058097758, + }, + }, + { + id: '5597', + data: { + label: 'Comshare', + x: 4396.7975157222145, + y: -3979.1006746152316, + z: 1141.033177749958, + }, + }, + { + id: '5598', + data: { + label: 'Komag', + x: 312.3190003798641, + y: -3353.1898638706025, + z: -3646.075671007162, + }, + }, + { + id: '5596', + data: { + label: 'JNI', + x: 780.3851581527906, + y: 1454.5976694237695, + z: -5243.71714216386, + }, + }, + { + id: '5595', + data: { + label: 'Symbian', + x: -3831.4103532043187, + y: -72.27012580221354, + z: -231.90904988206506, + }, + }, + { + id: '5594', + data: { + label: 'Interwoven', + x: 3195.122775406355, + y: 3840.21077234875, + z: 2262.5505503481127, + }, + }, + { + id: '5592', + data: { + label: 'Internet Pictures', + x: 1791.9379157738838, + y: -540.4418393078747, + z: 2477.892269375791, + }, + }, + { + id: '5593', + data: { + label: 'Intersil', + x: 3094.2014450734036, + y: 5062.6475296692015, + z: 3268.334704837033, + }, + }, + { + id: '5591', + data: { + label: 'Internap Network Services', + x: 3692.9917693511857, + y: -3831.4929068635265, + z: -4150.18010221291, + }, + }, + { + id: '5590', + data: { + label: 'Inktomi', + x: 1186.2870360550696, + y: -714.8893209162934, + z: -436.20957193117033, + }, + }, + { + id: '5589', + data: { + label: 'InterNAP Network Services', + x: 773.1874556649894, + y: -947.1923840850977, + z: -554.2203341119211, + }, + }, + { + id: '5588', + data: { + label: 'NetSolve', + x: 3248.4753588298126, + y: 2546.6947815374447, + z: 2998.9096518613233, + }, + }, + { + id: '5587', + data: { + label: 'Interact Commerce', + x: 5323.866454361908, + y: 2896.5281088659226, + z: 3626.396031506169, + }, + }, + { + id: '5586', + data: { + label: 'Ziatech', + x: 2594.4411180120655, + y: 415.5464348861943, + z: -3137.229543768591, + }, + }, + { + id: '5585', + data: { + label: 'Dialogic', + x: 2502.0917474305575, + y: 40.24189169591689, + z: -2922.823231660063, + }, + }, + { + id: '5584', + data: { + label: 'InteliData Technologies', + x: -1182.891618984943, + y: -2041.6541121849805, + z: -3686.2411284368663, + }, + }, + { + id: '5583', + data: { + label: 'ILD Telecommunications', + x: -1169.750925699556, + y: 4867.657248367939, + z: 2438.7390020528865, + }, + }, + { + id: '5582', + data: { + label: 'Interphase', + x: 3008.3369233014014, + y: 5983.5823745823645, + z: 1656.2934867913953, + }, + }, + { + id: '5580', + data: { + label: 'CommTouch Software', + x: 217.46216679765035, + y: 870.4191790480995, + z: 5262.222609463242, + }, + }, + { + id: '5581', + data: { + label: 'Long Distance Savers', + x: 5101.585597995278, + y: 576.4058828427012, + z: -3793.8150340052066, + }, + }, + { + id: '5579', + data: { + label: 'The Reynolds and Reynolds', + x: 396.28077045857486, + y: 1785.0111706616399, + z: -4769.612909455454, + }, + }, + { + id: '5577', + data: { + label: 'InfoCure', + x: -1894.6855592582071, + y: 1841.4045804151194, + z: 3577.5819728760193, + }, + }, + { + id: '5578', + data: { + label: 'PracticeWorks', + x: -1763.4602460084034, + y: 2065.2953665161467, + z: 3266.154969785052, + }, + }, + { + id: '5576', + data: { + label: 'Insight Communications', + x: 6506.500088498434, + y: 899.1564175814126, + z: 3755.500184712078, + }, + }, + { + id: '5575', + data: { + label: 'El Sitio', + x: 5609.287151669542, + y: 714.6920122210979, + z: 3788.1482803861177, + }, + }, + { + id: '5574', + data: { + label: 'IMPSAT Fiber Networks', + x: -2249.172255739391, + y: 3770.6040948984137, + z: 1496.7880021095257, + }, + }, + { + id: '5573', + data: { + label: 'AT&T Easylink Services', + x: 3788.0416951006746, + y: 2939.299001637887, + z: -4158.0768200546945, + }, + }, + { + id: '5571', + data: { + label: 'iAsiaWorks', + x: 3798.996734649806, + y: 2646.364948886806, + z: -4450.365659901094, + }, + }, + { + id: '5572', + data: { + label: 'EasyLink Services', + x: 3682.5818190809136, + y: 2365.01711937518, + z: -4743.837572402075, + }, + }, + { + id: '5570', + data: { + label: 'Image Entertainment', + x: -2809.7613505265076, + y: -466.62665463963685, + z: 3639.849202736515, + }, + }, + { + id: '5568', + data: { + label: 'Hollywood Media', + x: -472.140750912704, + y: -66.19803969229248, + z: 1418.6601394288305, + }, + }, + { + id: '5569', + data: { + label: 'iGate Capital', + x: 3763.887067158282, + y: -3356.8652623902317, + z: 837.3109648228483, + }, + }, + { + id: '5567', + data: { + label: 'Cemax-Icon', + x: 2918.774071546866, + y: 2143.789523102512, + z: 5435.454504733626, + }, + }, + { + id: '5566', + data: { + label: 'iNTELEFILM', + x: 4636.298757248316, + y: -2145.1681391487136, + z: -2995.184043362098, + }, + }, + { + id: '5565', + data: { + label: 'C-Cube Microsystems', + x: 3114.54218273648, + y: -4246.980757145044, + z: 2826.0784229607, + }, + }, + { + id: '5564', + data: { + label: 'Retek', + x: 3971.149956711959, + y: 4073.2409212729362, + z: 2598.952812402467, + }, + }, + { + id: '5563', + data: { + label: 'Halifax', + x: 4104.377542837442, + y: -5071.878630393522, + z: -993.9263140070364, + }, + }, + { + id: '5561', + data: { + label: 'NEC', + x: 5574.341726906648, + y: -680.4332037835056, + z: -2078.635583280092, + }, + }, + { + id: '5562', + data: { + label: 'GlobeSpan', + x: -2107.166614043202, + y: 1081.5678626830663, + z: -3616.7438458721094, + }, + }, + { + id: '5560', + data: { + label: 'Global TeleSystems', + x: -33.0408500645663, + y: -4613.347507096763, + z: -2572.765268480523, + }, + }, + { + id: '5559', + data: { + label: 'Citizens Communications', + x: 2156.811631569998, + y: -3173.914081457624, + z: -4223.948920993543, + }, + }, + { + id: '5557', + data: { + label: 'Alascom', + x: -1627.1410784329025, + y: 2420.134861235168, + z: 2969.8631840087983, + }, + }, + { + id: '5558', + data: { + label: 'MCI Telecommunications', + x: 7259.567329490408, + y: 1997.698163091415, + z: -1820.04990910405, + }, + }, + { + id: '5556', + data: { + label: 'General Communication', + x: 3068.8504604400887, + y: -4735.692086901895, + z: -1579.681983263247, + }, + }, + { + id: '5555', + data: { + label: 'Telcordia Technologies', + x: 229.9097365583283, + y: 5525.263778022487, + z: 1318.6701824798795, + }, + }, + { + id: '5554', + data: { + label: 'Geoworks', + x: -2486.2729270071945, + y: 2826.1993014382365, + z: 1847.456822766248, + }, + }, + { + id: '5553', + data: { + label: 'Verizon Communications', + x: 4568.750480189072, + y: 5163.896093637987, + z: 1624.4310943908845, + }, + }, + { + id: '5552', + data: { + label: 'Seagate Technology', + x: -1087.7537962850454, + y: -416.94427428088915, + z: 5337.295295746838, + }, + }, + { + id: '5551', + data: { + label: 'United Television', + x: -1899.4977312031574, + y: 3962.087583908912, + z: 1129.004676669961, + }, + }, + { + id: '5549', + data: { + label: 'Western Multiplex', + x: 5306.648929076784, + y: 904.6504400716449, + z: 2620.8802320831924, + }, + }, + { + id: '5550', + data: { + label: 'Metromedia Fiber Network', + x: 168.68042683124725, + y: -2817.338410337789, + z: -4242.956318620154, + }, + }, + { + id: '5548', + data: { + label: 'First Look Media', + x: -3403.4913770346475, + y: -2587.851728916818, + z: -234.52530296020737, + }, + }, + { + id: '5547', + data: { + label: 'FiberNet Telecom Group', + x: 4904.995404413367, + y: -2642.6998597406305, + z: 3978.1272712440505, + }, + }, + { + id: '5545', + data: { + label: 'MicroStrategy', + x: 5758.990264864465, + y: 1313.9113691842529, + z: 4399.154645510292, + }, + }, + { + id: '5546', + data: { + label: 'Network-1 Security Solutions', + x: 5435.444771313136, + y: 2795.105746379635, + z: -4004.210443640207, + }, + }, + { + id: '5543', + data: { + label: 'The News Corporation', + x: -3415.142511747587, + y: -312.4564487998396, + z: -2874.7347818028506, + }, + }, + { + id: '5544', + data: { + label: 'Service Metrics', + x: 3344.1555242592317, + y: -2724.2789130195515, + z: 1353.749288147418, + }, + }, + { + id: '5542', + data: { + label: 'Openwave Systems', + x: -278.9356589205254, + y: -4250.400951962654, + z: -648.7144953594056, + }, + }, + { + id: '5541', + data: { + label: 'ePresence', + x: -520.4233922577904, + y: 5223.342689041613, + z: 1862.873867324656, + }, + }, + { + id: '5540', + data: { + label: 'LXE', + x: 3752.322108093812, + y: -287.8820518963829, + z: -4263.949432912169, + }, + }, + { + id: '5539', + data: { + label: 'EMS Technologies', + x: 4087.941720618536, + y: -234.55044521745117, + z: -3990.1608286480487, + }, + }, + { + id: '5538', + data: { + label: 'Sorrento Networks', + x: 1010.3807145436803, + y: 3476.163980833562, + z: 3786.324173972221, + }, + }, + { + id: '5537', + data: { + label: 'Entrada Networks', + x: 1078.2227606635104, + y: 3685.444929619171, + z: 3446.649604496149, + }, + }, + { + id: '5536', + data: { + label: 'Solution 6 Holdings', + x: 4990.133711953378, + y: 2245.6415772478636, + z: -4512.263192287526, + }, + }, + { + id: '5535', + data: { + label: 'Electronic Data Systems', + x: 2832.6611027176436, + y: 5376.168960133971, + z: 1375.4976457866865, + }, + }, + { + id: '5534', + data: { + label: 'Essex', + x: -865.9074136473475, + y: -4295.307206090832, + z: 2134.7841858170555, + }, + }, + { + id: '5533', + data: { + label: 'eLEC Communications', + x: -648.4280912876309, + y: -4444.494198164085, + z: 1823.1165108355744, + }, + }, + { + id: '5531', + data: { + label: 'McDATA', + x: -1781.7389614129738, + y: -3396.6218182175357, + z: -1687.3788794394973, + }, + }, + { + id: '5530', + data: { + label: 'Shared Medical Systems', + x: 2387.9046066811056, + y: 4661.752141032243, + z: -2432.7633599954843, + }, + }, + { + id: '5529', + data: { + label: 'OpenTV', + x: 2276.195369108689, + y: 380.62332239269546, + z: 718.2254538502092, + }, + }, + { + id: '5528', + data: { + label: 'EchoStar Communications', + x: -3024.8390656485817, + y: -905.0654719127602, + z: 3028.069417887239, + }, + }, + { + id: '5527', + data: { + label: 'ECCS', + x: 4383.5647299661105, + y: -1172.3656388427164, + z: -4497.935182454904, + }, + }, + { + id: '5525', + data: { + label: 'eBT International', + x: -1422.2120222479634, + y: -1507.1648782463567, + z: -3876.153893293681, + }, + }, + { + id: '5526', + data: { + label: 'IntraNet Solutions', + x: 818.0229428149631, + y: 4603.632638530696, + z: 3958.484210315243, + }, + }, + { + id: '5524', + data: { + label: 'e4L', + x: -409.7148840519522, + y: -4691.410977188527, + z: 2196.313913639444, + }, + }, + { + id: '5523', + data: { + label: 'Computer Sciences', + x: 3083.115109041131, + y: -3680.909418368396, + z: -4462.350973353749, + }, + }, + { + id: '5521', + data: { + label: 'AudioCodes', + x: -1363.8250775373149, + y: 3750.7936808921622, + z: -2515.15996582044, + }, + }, + { + id: '5522', + data: { + label: 'DST Systems', + x: -1227.848224279166, + y: -2928.5651055899584, + z: 3761.1148953969832, + }, + }, + { + id: '5520', + data: { + label: 'dreamlife', + x: 2744.6755734269145, + y: -4698.787325940654, + z: -2248.9141391183557, + }, + }, + { + id: '5519', + data: { + label: 'DSP Group', + x: -1553.0083643426601, + y: 3790.9200301635424, + z: -2162.2167657206965, + }, + }, + { + id: '5518', + data: { + label: 'Digital Generation Systems', + x: 4623.251546772186, + y: -2175.969230831102, + z: -3746.9743400378366, + }, + }, + { + id: '5515', + data: { + label: 'ALLTEL', + x: 2246.360710690908, + y: -326.95660092004226, + z: 3071.0352790746133, + }, + }, + { + id: '5517', + data: { + label: 'SunGard Data Systems', + x: -2298.6616685740883, + y: 1601.1395355602965, + z: 2717.511765720447, + }, + }, + { + id: '5516', + data: { + label: 'Inside Out Networks', + x: 1797.1939133106143, + y: 4833.359401876578, + z: -2031.494122815942, + }, + }, + { + id: '5514', + data: { + label: 'Dendrite International', + x: 7166.6373046823355, + y: -772.8318419919709, + z: -41.23114542884998, + }, + }, + { + id: '5513', + data: { + label: 'Nx Networks', + x: -762.051652867613, + y: -1930.6653193913835, + z: -4390.054939392316, + }, + }, + { + id: '5512', + data: { + label: 'Digi International', + x: 1868.621077922183, + y: 5206.583274984567, + z: -1895.3907674581342, + }, + }, + { + id: '5511', + data: { + label: 'PhoneTel Technologies', + x: 5643.841522960165, + y: 1074.687540383355, + z: -3018.833108048478, + }, + }, + { + id: '5510', + data: { + label: 'XO Communications', + x: 4132.314249947425, + y: 3560.212669454259, + z: -4402.397889930157, + }, + }, + { + id: '5509', + data: { + label: 'Sage', + x: 1347.0425392502077, + y: -2402.534623321773, + z: 3976.5115039254783, + }, + }, + { + id: '5508', + data: { + label: 'AXENT Technologies', + x: 5553.868872156469, + y: 1837.0462230453395, + z: 2922.8389317661827, + }, + }, + { + id: '5505', + data: { + label: 'Metatec International', + x: -889.5152325088216, + y: 3458.5748889261145, + z: -3786.612782695394, + }, + }, + { + id: '5507', + data: { + label: 'Supertex', + x: -1940.0362550526486, + y: 2934.905385839476, + z: -3572.677728391918, + }, + }, + { + id: '5506', + data: { + label: 'Nogatech', + x: -1711.7239609425835, + y: 3975.16260231093, + z: -1841.5828950804735, + }, + }, + { + id: '5504', + data: { + label: 'Splash Technology Holdings', + x: -1224.7556376750895, + y: -2969.5003845905244, + z: -1125.0060637525473, + }, + }, + { + id: '5503', + data: { + label: 'Media 100', + x: -1455.4189055768284, + y: -3001.1833709673397, + z: -764.9328999609785, + }, + }, + { + id: '5502', + data: { + label: 'Datalink', + x: 3479.664858833809, + y: 2449.9500183784676, + z: -3417.714875998158, + }, + }, + { + id: '5499', + data: { + label: 'WebTV Networks', + x: 2706.0287143272467, + y: 298.2399731405017, + z: -532.6094273160155, + }, + }, + { + id: '5532', + data: { + label: 'Electronic Arts', + x: 6414.70419664437, + y: -1361.0478244451963, + z: -2114.085855994035, + }, + }, + { + id: '5501', + data: { + label: 'STARTEC', + x: 3598.340306881722, + y: 2777.796986506822, + z: -3483.1881807966893, + }, + }, + { + id: '5500', + data: { + label: 'Startec Global Communication', + x: -2556.938803879733, + y: 2146.175670039576, + z: -3250.9408896429745, + }, + }, + { + id: '5498', + data: { + label: 'Metromedia International Group', + x: 6976.967524584789, + y: 2310.2270434126194, + z: 1965.8589181815523, + }, + }, + { + id: '5497', + data: { + label: 'Metro-Goldwyn-Mayer', + x: 2176.437395478246, + y: 2103.0026724155878, + z: 3061.791296510129, + }, + }, + { + id: '5496', + data: { + label: 'Micron Technology', + x: 2689.694418466796, + y: 832.7394285658744, + z: -3129.4010254326977, + }, + }, + { + id: '5494', + data: { + label: 'SRS Labs', + x: 2351.224276897833, + y: -181.0535676755977, + z: -798.4766572979881, + }, + }, + { + id: '5495', + data: { + label: 'PRC', + x: -674.4493266858867, + y: 4766.277096536812, + z: -2869.686836378232, + }, + }, + { + id: '5493', + data: { + label: 'Cree', + x: 2076.211680531884, + y: 5924.2262255700425, + z: -1742.2684551068128, + }, + }, + { + id: '5492', + data: { + label: 'ShowCase', + x: 609.3236454680314, + y: 3991.390084027639, + z: 3615.3595394912277, + }, + }, + { + id: '5491', + data: { + label: 'SPSS', + x: 644.2879243168744, + y: 3890.234390862329, + z: 3218.568880325572, + }, + }, + { + id: '5490', + data: { + label: 'Alcatel', + x: -3436.9802100966094, + y: -1958.1128330197187, + z: 1444.9516816151186, + }, + }, + { + id: '5489', + data: { + label: 'SSE Telecom', + x: -3068.0159852717575, + y: -1927.5980808386519, + z: 1633.399680066229, + }, + }, + { + id: '5487', + data: { + label: 'Sprint', + x: 812.7321032498212, + y: -1815.3246403179912, + z: 1291.825212516448, + }, + }, + { + id: '5488', + data: { + label: 'SpeechWorks International', + x: 1075.5039688974548, + y: 3241.4762662182234, + z: -4148.851817698887, + }, + }, + { + id: '5484', + data: { + label: 'deltathree', + x: 4772.548611532207, + y: 1199.8360218305631, + z: 1978.021871178735, + }, + }, + { + id: '5486', + data: { + label: 'Executone Information Systems', + x: -3429.27082099536, + y: -1995.3772798140133, + z: -1459.5252854732432, + }, + }, + { + id: '5485', + data: { + label: 'SoftNet Systems', + x: 4974.004879680122, + y: 2069.2487769652093, + z: 1940.1024529955146, + }, + }, + { + id: '8234', + data: { + label: 'The WIZ', + x: 2070.6558721593733, + y: 1740.2242643831537, + z: 2272.711781433622, + }, + }, + { + id: '5482', + data: { + label: 'Accom', + x: 2650.664474835152, + y: -3626.814605268343, + z: 4484.166241880666, + }, + }, + { + id: '5481', + data: { + label: 'Socrates Technologies', + x: -926.9120660653933, + y: -1408.1314740114353, + z: -3735.9382903011415, + }, + }, + { + id: '5480', + data: { + label: 'Insight Communications Company', + x: 6004.882080590955, + y: 3242.253124951679, + z: 648.8975588417886, + }, + }, + { + id: '5479', + data: { + label: 'Source Media', + x: 5807.653085278795, + y: 2936.2030854278355, + z: 400.1121923685328, + }, + }, + { + id: '5478', + data: { + label: 'Acrodyne Communications', + x: -663.894080621058, + y: 3657.1757510439056, + z: -1354.79172974504, + }, + }, + { + id: '5477', + data: { + label: 'Grolier', + x: -3337.7829427242677, + y: 121.14060194675001, + z: -2313.7258147910266, + }, + }, + { + id: '5476', + data: { + label: 'Scholastic', + x: -3287.0681796737663, + y: 246.49181377398747, + z: -2693.535721313124, + }, + }, + { + id: '5474', + data: { + label: 'US Unwired', + x: 6006.390494146343, + y: 4675.456006644102, + z: 626.0560489008283, + }, + }, + { + id: '5473', + data: { + label: 'HealthWatch', + x: 2460.90488846136, + y: -3574.3837750905154, + z: -3841.022763504577, + }, + }, + { + id: '5475', + data: { + label: 'Sterling Commerce', + x: 3071.7261278913975, + y: -1961.8558506125032, + z: -379.3275341763882, + }, + }, + { + id: '5472', + data: { + label: 'Sapient', + x: 2838.3599096397597, + y: -3453.9697762320134, + z: -3799.3779830556673, + }, + }, + { + id: '5471', + data: { + label: 'Sanchez Computer Associates', + x: 6599.9015653926745, + y: 746.7746166499785, + z: -3685.4416610291382, + }, + }, + { + id: '5470', + data: { + label: 'Salem Communications', + x: -103.02846927641457, + y: -1662.0112839907983, + z: -174.01430343096996, + }, + }, + { + id: '5469', + data: { + label: 'Intuit', + x: 1101.733233477605, + y: -1530.4585619667382, + z: 818.2432941782807, + }, + }, + { + id: '5467', + data: { + label: 'STM Wireless', + x: 3916.325139992768, + y: -1734.7400783728956, + z: -3668.77920190049, + }, + }, + { + id: '5468', + data: { + label: 'Atlantic Cellular', + x: 3648.915977393299, + y: -600.5434678374248, + z: 4941.260538739906, + }, + }, + { + id: '5466', + data: { + label: 'HotData', + x: 130.7099351439372, + y: 411.20039235939583, + z: 5204.23370112055, + }, + }, + { + id: '5465', + data: { + label: 'Rogue Wave Software', + x: 154.9997071935879, + y: 51.37008619355901, + z: 5378.975039945515, + }, + }, + { + id: '5463', + data: { + label: 'Koss', + x: -1723.4462161245276, + y: 4249.666553302953, + z: 462.15693427735346, + }, + }, + { + id: '5464', + data: { + label: 'Cyberlink', + x: 3167.18868151969, + y: 776.8669205797576, + z: 2891.691398443587, + }, + }, + { + id: '5462', + data: { + label: 'Regent Communications', + x: -1876.5007215968114, + y: 4105.422575325864, + z: 110.80545994653409, + }, + }, + { + id: '5461', + data: { + label: 'Radio One', + x: 269.2624264180654, + y: -1028.736550114091, + z: 3679.34166969134, + }, + }, + { + id: '5460', + data: { + label: 'SnapTrack', + x: 804.2505426680507, + y: -4885.772125907478, + z: 2228.107109608657, + }, + }, + { + id: '5459', + data: { + label: 'QUALCOMM', + x: 719.042773312887, + y: -5094.136226969889, + z: 1857.0158687131436, + }, + }, + { + id: '5458', + data: { + label: 'Inflow', + x: 6394.530288764735, + y: -1283.0179914694515, + z: -2875.937890367586, + }, + }, + { + id: '5457', + data: { + label: 'DigiTEC 2000', + x: -2583.5275353882407, + y: -2827.6065796012813, + z: -1216.3440868902676, + }, + }, + { + id: '5456', + data: { + label: 'PTEK Holdings', + x: 6328.267371917041, + y: 3766.932008235863, + z: -1986.156617506462, + }, + }, + { + id: '5455', + data: { + label: 'Xpedior', + x: 1260.4880687539505, + y: -2643.08089295431, + z: 3595.917745113957, + }, + }, + { + id: '5454', + data: { + label: 'Phoenix Technologies', + x: -439.8796148998478, + y: -5008.018653599997, + z: -367.8849299983835, + }, + }, + { + id: '5453', + data: { + label: 'RAVISENT Technologies', + x: 3658.0866031865785, + y: 5505.995114349756, + z: 2572.3032971358007, + }, + }, + { + id: '5452', + data: { + label: 'Emulex', + x: 4160.403245967946, + y: -3207.7724404591404, + z: -3042.551127470425, + }, + }, + { + id: '5451', + data: { + label: 'Prodigy Communications', + x: 2607.400163243583, + y: 571.041554135282, + z: 5129.180325928224, + }, + }, + { + id: '5449', + data: { + label: 'VoiceStream Wireless', + x: -1445.3173364384882, + y: 3117.8993763580233, + z: 4214.848728043332, + }, + }, + { + id: '5447', + data: { + label: 'PictureTel', + x: 2442.9232191542555, + y: 162.87438187421483, + z: -3104.3578536840055, + }, + }, + { + id: '5450', + data: { + label: 'Deutsche Telekom AG', + x: 2663.221089840777, + y: 3130.0334943919147, + z: 4524.95450925155, + }, + }, + { + id: '5448', + data: { + label: 'Power Integrations', + x: 6871.842548296977, + y: 1764.6864329405685, + z: -2949.243764910882, + }, + }, + { + id: '5446', + data: { + label: 'Photonics', + x: 3801.9762288817287, + y: 538.9297031304586, + z: -4513.621672290414, + }, + }, + { + id: '5445', + data: { + label: 'Pervasive Software', + x: 2603.604982703284, + y: 5152.580520854793, + z: 3471.4162255196943, + }, + }, + { + id: '5444', + data: { + label: 'Rocket Software', + x: 1953.3248321327947, + y: 4658.579828552345, + z: 3393.277855348938, + }, + }, + { + id: '5443', + data: { + label: 'Peritus Software Services', + x: 2099.269196739268, + y: 4932.612746919635, + z: 3128.9073854061826, + }, + }, + { + id: '5440', + data: { + label: 'Extricity', + x: 5117.082490762105, + y: -3319.795019756762, + z: 1255.970756727018, + }, + }, + { + id: '5442', + data: { + label: 'Novell', + x: -1062.012999811327, + y: 3613.2914440346326, + z: 1888.3688419314742, + }, + }, + { + id: '5441', + data: { + label: 'BEA Systems', + x: 4216.623419454361, + y: 5707.0135126642035, + z: -395.87345814567686, + }, + }, + { + id: '5438', + data: { + label: 'Peregrine Systems', + x: 5333.668120684026, + y: -3668.8758104122912, + z: 1144.6184055099613, + }, + }, + { + id: '5439', + data: { + label: 'Tivoli Systems', + x: 5343.775529770275, + y: -3733.2840353018732, + z: 1573.8468741850213, + }, + }, + { + id: '5437', + data: { + label: 'Landmark Communications', + x: -930.5706827372223, + y: 5467.131067688646, + z: -1403.8754334049556, + }, + }, + { + id: '5436', + data: { + label: 'Logio', + x: 3781.8477128741765, + y: 959.5049222297089, + z: -4317.1306884838405, + }, + }, + { + id: '5433', + data: { + label: 'COMSAT', + x: 1707.8150816235502, + y: -1624.9599562360793, + z: 1184.0272584129712, + }, + }, + { + id: '5435', + data: { + label: 'Pacific WebWorks', + x: 4017.197685507626, + y: 1130.806345140052, + z: -4017.730443626384, + }, + }, + { + id: '5434', + data: { + label: 'Pac-West Telecomm', + x: 1381.582356807229, + y: 3792.806324167641, + z: 4841.340846929178, + }, + }, + { + id: '5432', + data: { + label: 'On Command', + x: -1060.1682130869776, + y: -364.1932592062714, + z: -4359.40828413574, + }, + }, + { + id: '5426', + data: { + label: 'Nextel Partners', + x: -1588.9848152040197, + y: -4628.352582119028, + z: -151.8981900043388, + }, + }, + { + id: '5431', + data: { + label: 'Viewpoint', + x: 3279.800515988785, + y: 807.8623900851787, + z: -3807.0159388326974, + }, + }, + { + id: '5430', + data: { + label: 'France Telecom', + x: 479.21204023598926, + y: -2631.882991642822, + z: 1476.4562472618595, + }, + }, + { + id: '5429', + data: { + label: 'nStor Technologies', + x: -2960.954620212532, + y: 1518.184925873191, + z: -3442.4678215253452, + }, + }, + { + id: '5427', + data: { + label: 'Clearnet Communications', + x: -1631.8444760761367, + y: 2255.5183917923, + z: -4279.2212937467975, + }, + }, + { + id: '5428', + data: { + label: 'TELUS', + x: 1785.8267096256643, + y: -1867.2995095642343, + z: 2467.5656996683892, + }, + }, + { + id: '5425', + data: { + label: 'E-Tek Dynamics', + x: -1471.8812108626253, + y: 5132.059757672757, + z: -1694.1676182418785, + }, + }, + { + id: '5424', + data: { + label: 'New Focus', + x: 4456.186402814641, + y: -53.70116186746276, + z: 5211.196876504708, + }, + }, + { + id: '5422', + data: { + label: 'Storage Technology', + x: -3806.880810695561, + y: 2390.242503531954, + z: -1488.121189838202, + }, + }, + { + id: '5423', + data: { + label: 'New Era of Networks', + x: -2054.1306985140936, + y: 4835.020483525383, + z: 310.3974456372425, + }, + }, + { + id: '5419', + data: { + label: 'Datawatch', + x: -4266.415607155887, + y: 821.7006791930263, + z: 94.46634697674845, + }, + }, + { + id: '5421', + data: { + label: 'Informatica', + x: 1494.863523704895, + y: 5239.39930463361, + z: -1735.0204171342389, + }, + }, + { + id: '5420', + data: { + label: 'Network Appliance', + x: 4825.7362017258265, + y: -3684.786008399249, + z: -2707.8997117128833, + }, + }, + { + id: '5415', + data: { + label: 'The Liberty', + x: 3779.677598534444, + y: -3304.5268763964345, + z: 4256.469049687005, + }, + }, + { + id: '5418', + data: { + label: 'Next Level Communications', + x: 2442.1155321167953, + y: -65.10689797050067, + z: 1172.54399814186, + }, + }, + { + id: '5417', + data: { + label: 'British Telecommunications plc', + x: 3698.4199618000266, + y: 5729.140955147776, + z: -735.4261758355291, + }, + }, + { + id: '5416', + data: { + label: 'TV Guide', + x: -800.324635437961, + y: -2466.972139815711, + z: 3818.867304762495, + }, + }, + { + id: '5414', + data: { + label: 'eCal', + x: 4286.39749933185, + y: -257.13191032545785, + z: 1098.4301402069314, + }, + }, + { + id: '5413', + data: { + label: 'Dobson Communications', + x: 2204.7767262674533, + y: -1986.9821524266395, + z: 4395.958990791216, + }, + }, + { + id: '5410', + data: { + label: 'Mitel', + x: 1526.802556276758, + y: -4551.56859033228, + z: -2845.9148759202394, + }, + }, + { + id: '5412', + data: { + label: 'Propel', + x: 4204.793026492859, + y: 4924.595203284578, + z: 1299.2591299425321, + }, + }, + { + id: '5411', + data: { + label: 'Symantec', + x: 5846.007154562986, + y: 1623.8503950532865, + z: 3147.0660291051204, + }, + }, + { + id: '5408', + data: { + label: 'Data Systems & Software', + x: 4381.848381204183, + y: 965.1377921103357, + z: -4647.920784580696, + }, + }, + { + id: '5409', + data: { + label: 'Elbit', + x: 4539.6156472651255, + y: -3280.9786122611245, + z: 862.92419217237, + }, + }, + { + id: '5407', + data: { + label: 'Level 3 Communications', + x: 3115.432338814309, + y: 248.7401350124998, + z: -1224.7419053401977, + }, + }, + { + id: '5406', + data: { + label: 'Data Return', + x: 2855.258837116472, + y: 30.977362019339314, + z: -845.233077246769, + }, + }, + { + id: '5405', + data: { + label: 'International Microcircuits', + x: 43.907054406970154, + y: -1911.3823836574525, + z: -4126.583813160362, + }, + }, + { + id: '5404', + data: { + label: 'Ask Jeeves', + x: 3211.8721914046646, + y: 5157.063886140402, + z: 2282.3024027796378, + }, + }, + { + id: '5403', + data: { + label: 'Digital Transmission Systems', + x: -285.49885099862234, + y: 1460.7317155151932, + z: -4062.722486060647, + }, + }, + { + id: '5402', + data: { + label: 'Wi-LAN', + x: 60.99556326258025, + y: 1137.529047121433, + z: -4749.236817860793, + }, + }, + { + id: '5401', + data: { + label: 'MicroTel International', + x: -96.7197592535382, + y: 1318.694091908596, + z: -4406.418571314191, + }, + }, + { + id: '5400', + data: { + label: 'CyberSource', + x: -468.28053756893, + y: 5065.914329145765, + z: 2659.2424066547287, + }, + }, + { + id: '5398', + data: { + label: 'Aris', + x: -1579.8801701656716, + y: 4364.502236109569, + z: -692.1304164936663, + }, + }, + { + id: '5399', + data: { + label: 'PeopleSoft', + x: 3693.263230620958, + y: 4954.619318789818, + z: -2304.5863022759777, + }, + }, + { + id: '5397', + data: { + label: 'Crown Castle International', + x: 3676.6913605566497, + y: -2179.991862358343, + z: 73.7523947280382, + }, + }, + { + id: '5396', + data: { + label: 'MAYAN Networks', + x: 6946.906256882405, + y: -1178.3897261975187, + z: 386.43764610362103, + }, + }, + { + id: '5395', + data: { + label: 'Optical Cable', + x: 3453.094647937296, + y: 2847.827446705424, + z: -5139.145418192472, + }, + }, + { + id: '5394', + data: { + label: 'CORNING', + x: -355.79704087538323, + y: -4377.288595448887, + z: -2766.6224972775103, + }, + }, + { + id: '5393', + data: { + label: 'Convera', + x: 2136.19106206096, + y: 387.57026002241145, + z: -3111.144291752769, + }, + }, + { + id: '5392', + data: { + label: 'New Times', + x: 5971.486918518886, + y: -2063.6074682775643, + z: -3874.5320889789223, + }, + }, + { + id: '5391', + data: { + label: 'Digital Insight', + x: 2740.7369849633556, + y: 5146.655684187277, + z: 2825.4970315887285, + }, + }, + { + id: '5390', + data: { + label: 'CyberGuard', + x: 680.3076085405839, + y: 4996.438253412768, + z: 2846.399371056844, + }, + }, + { + id: '5388', + data: { + label: 'AremisSoft', + x: 888.8308266670923, + y: -4707.462339546594, + z: -1237.6018744859166, + }, + }, + { + id: '5389', + data: { + label: 'Verso Technologies', + x: 4800.627590232546, + y: 4505.413269661167, + z: -2204.2624383428943, + }, + }, + { + id: '5387', + data: { + label: 'Applied Micro Circuits', + x: -1759.5747730181495, + y: -4370.623382935847, + z: -590.1486888814411, + }, + }, + { + id: '5386', + data: { + label: 'Nortel Networks', + x: -1252.7499917494777, + y: 2554.283915759631, + z: 27.55134422418654, + }, + }, + { + id: '5385', + data: { + label: 'Concur Technologies', + x: -1526.7490909770077, + y: 2873.0668705685707, + z: -249.20619998518717, + }, + }, + { + id: '5384', + data: { + label: 'ATEC Group', + x: 5849.168782930433, + y: 2738.397994719143, + z: -2503.027895334841, + }, + }, + { + id: '5383', + data: { + label: 'Applied Digital Solutions', + x: 6090.0528773955675, + y: 2777.1419325913243, + z: -2181.7364801648405, + }, + }, + { + id: '5382', + data: { + label: 'Internet Commerce', + x: 4884.294320503672, + y: -4395.600593685576, + z: 1319.055599010131, + }, + }, + { + id: '5380', + data: { + label: 'Guthy-Renker', + x: -937.1163215651646, + y: 928.7391583024871, + z: 5198.866087972793, + }, + }, + { + id: '5381', + data: { + label: 'Answerthink', + x: 5425.746504926037, + y: 363.19398363551255, + z: -3265.6605261994373, + }, + }, + { + id: '5379', + data: { + label: 'Alaska Communications Systems Group', + x: 7267.776416339018, + y: -1925.7092704040558, + z: 998.3736430220561, + }, + }, + { + id: '5378', + data: { + label: 'AltaVista', + x: 5286.087410561388, + y: 2812.2349502104607, + z: 2127.214555476295, + }, + }, + { + id: '5377', + data: { + label: 'CBS Television Network', + x: -1150.8518837867005, + y: 235.16805990544282, + z: 777.7411889280129, + }, + }, + { + id: '5375', + data: { + label: 'Embratel Participacoes SA', + x: 4055.4271284345987, + y: 2231.3567975201395, + z: 1903.608898582584, + }, + }, + { + id: '5376', + data: { + label: 'The Titan', + x: 4422.80032072434, + y: 1097.6308438570477, + z: 5239.109613333601, + }, + }, + { + id: '5374', + data: { + label: 'MIDCOM Communications', + x: -647.8277163758869, + y: 2578.9627842770433, + z: 3855.203555212229, + }, + }, + { + id: '5373', + data: { + label: 'Freedom Communications', + x: 3429.539390245232, + y: -3576.7758303709993, + z: 3408.0708799588097, + }, + }, + { + id: '5371', + data: { + label: 'Frontier', + x: 2314.80943089356, + y: -1657.8979726730338, + z: 1695.8236685275947, + }, + }, + { + id: '5372', + data: { + label: 'Cable & Wireless', + x: -17.291166219404285, + y: -3713.284400970577, + z: 1477.8517826270188, + }, + }, + { + id: '5370', + data: { + label: 'WAM!NET', + x: 3812.0732286795796, + y: 5702.6958665861885, + z: 933.9009249703548, + }, + }, + { + id: '5369', + data: { + label: 'Silicon Graphics', + x: 3557.759543428524, + y: 5611.1021270639585, + z: 1237.075158455176, + }, + }, + { + id: '5368', + data: { + label: 'Shared Technologies Fairchild', + x: 3500.892471418355, + y: 2410.9926568982874, + z: 2985.530138732499, + }, + }, + { + id: '5367', + data: { + label: 'TouchStone Software', + x: 1200.9978362882364, + y: 2317.723480570199, + z: 5545.752838219818, + }, + }, + { + id: '5366', + data: { + label: 'Smith Micro Software', + x: 3087.5115896899515, + y: 4407.168456206227, + z: 4056.4474496631087, + }, + }, + { + id: '5365', + data: { + label: 'Unisys', + x: 1277.177335549571, + y: -2915.8764362938464, + z: 4441.819860882517, + }, + }, + { + id: '5364', + data: { + label: 'SEEC', + x: 1007.8813892336088, + y: -3196.310307384333, + z: 4294.3669742311395, + }, + }, + { + id: '5363', + data: { + label: 'IPC', + x: 467.372937946942, + y: -4782.021724078102, + z: -2640.656977285151, + }, + }, + { + id: '5362', + data: { + label: 'Maxtor', + x: 3978.4033883712514, + y: -3122.1944900071644, + z: 1334.570249331211, + }, + }, + { + id: '5361', + data: { + label: 'Total Sports', + x: 2820.322664795718, + y: -225.80833639702587, + z: -75.01731851645985, + }, + }, + { + id: '5359', + data: { + label: 'Proxim', + x: 2444.016819173843, + y: 503.4054032343524, + z: 1613.8084254310725, + }, + }, + { + id: '5360', + data: { + label: 'Netopia', + x: 2519.2259635995924, + y: 985.1674439730083, + z: 1389.4837741818287, + }, + }, + { + id: '5358', + data: { + label: 'MFS', + x: 3866.06071082477, + y: 1954.336786297642, + z: 2345.0540223014327, + }, + }, + { + id: '5357', + data: { + label: 'ICG Communications', + x: 1829.9522569091946, + y: -931.4017543415341, + z: -281.1038085025853, + }, + }, + { + id: '5356', + data: { + label: 'UUNET', + x: -2196.0437998354223, + y: -2329.547501411444, + z: -3599.7952068060035, + }, + }, + { + id: '5354', + data: { + label: 'Metawave Communications', + x: 1926.0602655214655, + y: 5237.578113403394, + z: -3170.2374869359073, + }, + }, + { + id: '5355', + data: { + label: 'Verizon Wireless', + x: 7298.8129918626255, + y: -1339.4680995310644, + z: -934.8206545208258, + }, + }, + { + id: '5353', + data: { + label: 'Hewlett-Packard', + x: 6087.123342668212, + y: -296.2741691860208, + z: 2119.4759277897433, + }, + }, + { + id: '5352', + data: { + label: 'Powerwave Technologies', + x: 1890.5434424057594, + y: 4926.483533139223, + z: -3435.967713041086, + }, + }, + { + id: '5350', + data: { + label: 'MicroNet', + x: -3341.530956593236, + y: -914.4592747671304, + z: -646.5119066287282, + }, + }, + { + id: '5348', + data: { + label: 'LCI', + x: 1765.6822248882588, + y: 264.22274368274225, + z: 1913.7431249432118, + }, + }, + { + id: '5351', + data: { + label: 'TV Azteca S.A. de C.V.', + x: 733.5160375966005, + y: -5077.733132591731, + z: -1969.3648262351203, + }, + }, + { + id: '5349', + data: { + label: 'Ampex', + x: -3281.2433039605667, + y: -932.7702303975658, + z: -1055.7560728011958, + }, + }, + { + id: '5347', + data: { + label: 'Commerce One', + x: 1975.4256992718595, + y: 5599.3511154302, + z: 432.3825107971797, + }, + }, + { + id: '5346', + data: { + label: 'UNIsite', + x: 712.3856119835644, + y: -672.1979191905763, + z: 4046.548476155724, + }, + }, + { + id: '5345', + data: { + label: 'National Broadcasting Company', + x: 5365.18979945359, + y: 492.1523631091395, + z: 1091.7341301918864, + }, + }, + { + id: '5343', + data: { + label: 'GTE', + x: 5111.221430258698, + y: -663.3652537994947, + z: 4905.802215044308, + }, + }, + { + id: '5344', + data: { + label: 'CNET Networks', + x: 3991.199528319298, + y: 3653.622706212741, + z: 4461.609430986115, + }, + }, + { + id: '5342', + data: { + label: 'Clarion Co.', + x: 2140.2630505248294, + y: -4481.162690256725, + z: -3738.891298183731, + }, + }, + { + id: '5341', + data: { + label: 'Clare', + x: 3549.745369809604, + y: -2766.574422806998, + z: 4718.177590499027, + }, + }, + { + id: '5340', + data: { + label: 'Donrey Media Group', + x: 540.2279278428965, + y: -974.6838362400124, + z: 3470.8914717978028, + }, + }, + { + id: '5338', + data: { + label: 'Oracle', + x: 5898.209803757155, + y: 2895.004260794279, + z: 22.13262591522091, + }, + }, + { + id: '5339', + data: { + label: 'Terabit', + x: 24.415505269064575, + y: 5237.435080648489, + z: 1037.8814374784752, + }, + }, + { + id: '5337', + data: { + label: 'CIBER', + x: -1471.319331415583, + y: 4626.080212231458, + z: -978.6696170315423, + }, + }, + { + id: '5336', + data: { + label: 'Insignia Solutions plc', + x: -2495.268127826615, + y: -2514.7063668787423, + z: 1342.77276417252, + }, + }, + { + id: '5334', + data: { + label: 'Tellabs', + x: -2.173459359330277, + y: -2288.311674530685, + z: -4661.579542233623, + }, + }, + { + id: '5335', + data: { + label: 'Citrix Systems', + x: -2634.9914473540016, + y: -2484.8585130541255, + z: 944.9715922713171, + }, + }, + { + id: '5333', + data: { + label: 'Trilogy', + x: 5564.762830113091, + y: 4249.435272150757, + z: -1809.4622097149802, + }, + }, + { + id: '5331', + data: { + label: 'Xilinx', + x: 2908.619906587195, + y: 5512.036006235753, + z: 2837.7595533316357, + }, + }, + { + id: '5332', + data: { + label: 'Chyron', + x: -2407.1397642075744, + y: 135.350251319909, + z: -3945.3264148828134, + }, + }, + { + id: '5330', + data: { + label: 'Altera', + x: -749.2013051421351, + y: 5643.26558972691, + z: -963.5969629257821, + }, + }, + { + id: '5329', + data: { + label: 'Centennial Communications', + x: 218.7888518253301, + y: 3592.1174211914063, + z: 3201.8860127025478, + }, + }, + { + id: '5327', + data: { + label: 'PMC-Sierra', + x: 3436.1798273251566, + y: -2237.038857215044, + z: 723.0602422476985, + }, + }, + { + id: '5328', + data: { + label: 'Cellular Technical Services', + x: -1283.414666588663, + y: 3164.8382831047716, + z: -3400.760564059206, + }, + }, + { + id: '5326', + data: { + label: 'Alliance Semiconductor', + x: 3870.1387645139607, + y: -2419.686979946527, + z: 757.7883262477934, + }, + }, + { + id: '5325', + data: { + label: 'CenturyTel', + x: 6196.841018654572, + y: 4274.877055647661, + z: -1113.4785784577414, + }, + }, + { + id: '5324', + data: { + label: 'Startec Global Communications', + x: 3719.153494931395, + y: 2647.464707008497, + z: -3095.374510316125, + }, + }, + { + id: '5323', + data: { + label: 'Capsule Communications', + x: 3942.1219105237174, + y: 2783.5874394595303, + z: -3429.5088036985676, + }, + }, + { + id: '5322', + data: { + label: 'EMC', + x: -1716.3935501823971, + y: -3055.1411935081874, + z: -1912.787140906862, + }, + }, + { + id: '5321', + data: { + label: 'Cambex', + x: 4922.05550056586, + y: 2650.1868841923233, + z: 3459.420333294915, + }, + }, + { + id: '5320', + data: { + label: 'Lineo', + x: -3100.0270136763784, + y: 1010.3939739005921, + z: 1857.3021108270834, + }, + }, + { + id: '5319', + data: { + label: 'Caldera International', + x: -2911.8627155845065, + y: 1435.7670006168498, + z: 1966.7563316377918, + }, + }, + { + id: '5318', + data: { + label: 'Metrocall', + x: 1078.3082597180312, + y: -2047.6201161799543, + z: 1807.6161659833074, + }, + }, + { + id: '5317', + data: { + label: 'Motient', + x: 269.5227917589606, + y: -3413.244384300415, + z: -2798.63734990213, + }, + }, + { + id: '5315', + data: { + label: 'COMARCO', + x: 880.7137768448874, + y: 5735.362978829539, + z: -2333.323705290965, + }, + }, + { + id: '5316', + data: { + label: 'IFX', + x: 619.5100176236497, + y: -3189.025255078009, + z: 1168.8825297284893, + }, + }, + { + id: '5314', + data: { + label: 'CACI International', + x: -2267.128082979886, + y: 3508.053151470224, + z: -15.59071318600353, + }, + }, + { + id: '5313', + data: { + label: 'Clearview Cinema Group', + x: 2415.825555564242, + y: 1437.14412590879, + z: 2608.424751175538, + }, + }, + { + id: '5312', + data: { + label: 'Advanced Micro Devices', + x: -1415.2058801813853, + y: -570.0792654938634, + z: -4517.608039982159, + }, + }, + { + id: '5311', + data: { + label: 'Ariel', + x: 6976.569998326372, + y: -1538.2155256212156, + z: 187.87848717199267, + }, + }, + { + id: '5309', + data: { + label: 'Pivotal', + x: -484.02692745742513, + y: 1366.9799132059652, + z: -5082.820362579427, + }, + }, + { + id: '5310', + data: { + label: 'BroadVision', + x: 6084.277422538774, + y: -67.95587877223224, + z: 2557.899491488809, + }, + }, + { + id: '5308', + data: { + label: 'Intel', + x: 2400.1133271646677, + y: 445.4373036458286, + z: -2616.5655662668255, + }, + }, + { + id: '5307', + data: { + label: 'BTG', + x: 5369.874212732749, + y: 2357.3651785581505, + z: 315.37816092475276, + }, + }, + { + id: '5306', + data: { + label: 'Braun Consulting', + x: 5389.753557690807, + y: 2814.623582898347, + z: 509.66399986648884, + }, + }, + { + id: '5305', + data: { + label: 'Standard Microsystems', + x: -613.3460564203555, + y: -2005.0956516240103, + z: -3944.335005427485, + }, + }, + { + id: '5304', + data: { + label: 'At Home', + x: 1493.9468983178758, + y: -50.88365544138699, + z: 953.2564629856021, + }, + }, + { + id: '5303', + data: { + label: 'Software AG', + x: 6142.204667639094, + y: -1668.786780657204, + z: -2138.3678974253485, + }, + }, + { + id: '5302', + data: { + label: 'Business Objects SA', + x: 3267.004185207642, + y: 3069.966372669376, + z: 5072.170274379547, + }, + }, + { + id: '5301', + data: { + label: 'IXC Communications', + x: 4529.697509842915, + y: 5058.820532915143, + z: -2454.531742285648, + }, + }, + { + id: '5300', + data: { + label: 'Broadwing', + x: 2678.682016595068, + y: 4543.609881430664, + z: 4051.888187535081, + }, + }, + { + id: '5299', + data: { + label: 'ATL Products', + x: 3994.317501032121, + y: -3243.3768470473447, + z: 769.294333814758, + }, + }, + { + id: '5298', + data: { + label: 'Advanced Digital Information', + x: 3259.8736391067555, + y: -3829.597454274755, + z: 4085.4561369444214, + }, + }, + { + id: '5297', + data: { + label: 'Cisco Systems', + x: 5375.43432242008, + y: 1795.9025523295836, + z: 85.30525568898446, + }, + }, + { + id: '5295', + data: { + label: 'Allayer Communications', + x: 2252.4967169905844, + y: 4711.187840574068, + z: 1741.4568726754703, + }, + }, + { + id: '5296', + data: { + label: 'Advanced Fibre Communication', + x: 5736.6761077684305, + y: 1621.6209714297581, + z: -113.84634055768547, + }, + }, + { + id: '5294', + data: { + label: 'ServerWorks', + x: 1988.3341548953867, + y: 4737.726604167616, + z: 2195.4307793380704, + }, + }, + { + id: '5293', + data: { + label: 'BMC Software', + x: -3900.6186918913527, + y: -962.5136168856134, + z: -645.7229548654735, + }, + }, + { + id: '5292', + data: { + label: 'BHC Communications', + x: 3296.5628691652655, + y: -602.6961084254126, + z: 987.886142909087, + }, + }, + { + id: '5291', + data: { + label: 'ARES', + x: -3525.567049444541, + y: 434.8145934561876, + z: 2498.8544653283093, + }, + }, + { + id: '5289', + data: { + label: 'Scientific-Atlanta', + x: 4643.831026095643, + y: 915.6739233895274, + z: -4335.333448304181, + }, + }, + { + id: '5290', + data: { + label: 'The Providence Journal', + x: 6944.860340980776, + y: 2904.6876065580295, + z: -1747.797259412511, + }, + }, + { + id: '5288', + data: { + label: 'Blonder Tongue Laboratories', + x: 2070.1763927842485, + y: 2136.4787982172543, + z: 4738.893468967483, + }, + }, + { + id: '5286', + data: { + label: 'Motorola', + x: 3077.3874508539407, + y: 6257.57927196744, + z: 760.0197218981274, + }, + }, + { + id: '5287', + data: { + label: 'Adelphia Business Solutions', + x: 325.39976553531534, + y: 4144.384621316413, + z: -4301.87442395409, + }, + }, + { + id: '5285', + data: { + label: 'Adaptive Broadband', + x: 5236.806005960733, + y: 1072.5736467010524, + z: 3038.729518938972, + }, + }, + { + id: '5284', + data: { + label: 'Corel', + x: 2861.5794664902605, + y: 242.9219233343312, + z: -762.8149518059174, + }, + }, + { + id: '5283', + data: { + label: 'Roxio', + x: 2878.579772392144, + y: 4148.646676478501, + z: -3969.4024680259254, + }, + }, + { + id: '5282', + data: { + label: 'Western Digital', + x: 101.8732538945912, + y: -3560.257157532336, + z: -3359.045524071343, + }, + }, + { + id: '5281', + data: { + label: 'Analog Devices', + x: 341.0460287297018, + y: 2997.637552806264, + z: -4232.829783096895, + }, + }, + { + id: '5280', + data: { + label: 'Value Line', + x: 1612.2990853661072, + y: -5469.189114225964, + z: -1499.4658984047533, + }, + }, + { + id: '5279', + data: { + label: 'Texas Instruments', + x: 2564.111201462394, + y: 1145.651409130747, + z: -3461.7540566370003, + }, + }, + { + id: '5278', + data: { + label: 'Actel', + x: -2194.9186307834807, + y: -1485.936340272258, + z: 3906.908056747549, + }, + }, + { + id: '5277', + data: { + label: 'JDA Software Group', + x: -2813.6242335893867, + y: 2914.98790420126, + z: -1920.1499192300125, + }, + }, + { + id: '5276', + data: { + label: 'Active Voice', + x: 5460.316040763768, + y: 1849.06051451071, + z: 694.0857850792185, + }, + }, + { + id: '5275', + data: { + label: 'Activision', + x: 5617.176280258051, + y: 2279.2011160015763, + z: 833.3062862711217, + }, + }, + { + id: '5274', + data: { + label: 'Corillian', + x: 1539.6484783537633, + y: 4390.618791566836, + z: 3113.421634710649, + }, + }, + { + id: '5273', + data: { + label: '724 Solutions', + x: 1465.1544992727113, + y: 4149.165099471691, + z: 3426.473521763742, + }, + }, + { + id: '5272', + data: { + label: 'NVIDIA', + x: -277.6640291760542, + y: 4368.002845260119, + z: -3585.7859273839954, + }, + }, + { + id: '5271', + data: { + label: '3dfx Interactive', + x: -805.896224010268, + y: 2488.6270356039877, + z: -4841.693433681478, + }, + }, + { + id: '5270', + data: { + label: 'OPTi', + x: 6613.794139881896, + y: 1552.6756523169404, + z: -3375.4132380361, + }, + }, + { + id: '5267', + data: { + label: 'UUNET Technologies', + x: 3887.7060538146716, + y: 2195.278415104211, + z: 2104.448481497095, + }, + }, + { + id: '5269', + data: { + label: '3Com', + x: 123.47293678824083, + y: 1563.0996399544329, + z: -1431.1435406810178, + }, + }, + { + id: '5268', + data: { + label: 'Embratel', + x: -1960.7056324614523, + y: 3368.9931949050874, + z: 3428.8553409424835, + }, + }, + { + id: '5266', + data: { + label: 'MCI/WorldCom', + x: 5715.247718790259, + y: 4186.032646734231, + z: -2183.529622007266, + }, + }, + { + id: '5265', + data: { + label: 'BFP', + x: 4722.268391715116, + y: 4634.454360718336, + z: 3102.3455442696772, + }, + }, + { + id: '5263', + data: { + label: 'Wire One Technologies', + x: -435.9375644468663, + y: 3284.299410711792, + z: 3639.708021113135, + }, + }, + { + id: '5264', + data: { + label: 'VTI', + x: 4079.6350347067264, + y: 1455.660429060983, + z: -4900.35802502667, + }, + }, + { + id: '5261', + data: { + label: 'Winstar Communications', + x: -1058.2081420743896, + y: -4545.499488118777, + z: 1856.2515149767737, + }, + }, + { + id: '5259', + data: { + label: 'World Access', + x: -1296.1376092355363, + y: -1612.6900020477465, + z: -3063.0010851148713, + }, + }, + { + id: '5262', + data: { + label: 'Midcom', + x: -1282.8119971225642, + y: 706.5418763973712, + z: 194.98410796391215, + }, + }, + { + id: '5260', + data: { + label: 'NACT', + x: 3314.283133938146, + y: 277.75279418158397, + z: 5334.83265033375, + }, + }, + { + id: '5258', + data: { + label: 'MCI World', + x: 3921.7648969017946, + y: 1894.7813777006938, + z: -4246.245778918203, + }, + }, + { + id: '5257', + data: { + label: 'CompuServe', + x: 5073.845867279788, + y: 1189.8961846024915, + z: -4842.0617418804395, + }, + }, + { + id: '5256', + data: { + label: 'WorldCom', + x: 3869.470916313022, + y: 1769.662977828142, + z: 1871.3006258740986, + }, + }, + { + id: '5255', + data: { + label: 'PRENTICE HALL', + x: 4971.99078970849, + y: 3599.572343461014, + z: -3781.184116789568, + }, + }, + { + id: '5253', + data: { + label: 'WMC-FM', + x: -334.9896044313305, + y: -1338.7203146631753, + z: -572.2988598367771, + }, + }, + { + id: '5254', + data: { + label: 'WMC-AM', + x: -196.85290163723218, + y: -1581.7541034307956, + z: -390.5353635980885, + }, + }, + { + id: '5252', + data: { + label: 'VERITAS Software', + x: 4207.3960651236985, + y: 1273.3989709975417, + z: 4904.123296820346, + }, + }, + { + id: '5251', + data: { + label: 'NECX', + x: 6656.889031307311, + y: -914.3987571259113, + z: 30.116200496716715, + }, + }, + { + id: '5250', + data: { + label: 'Tradeum', + x: 5875.9933089809965, + y: -116.82558462213287, + z: -4139.503720224989, + }, + }, + { + id: '5248', + data: { + label: 'Ticketmaster Online', + x: -1292.7616396501942, + y: 1679.5907239792696, + z: -4880.03861581509, + }, + }, + { + id: '5249', + data: { + label: 'VerticalNet', + x: 1475.5561782184022, + y: 415.6057868621243, + z: -1295.823888788601, + }, + }, + { + id: '5247', + data: { + label: 'Ticketmaster Group', + x: 5969.429509393009, + y: -3947.5475942777116, + z: 684.6427919491421, + }, + }, + { + id: '5246', + data: { + label: 'UbiquiTel', + x: 2991.7131478456517, + y: -3182.2290687446, + z: -3158.382267578092, + }, + }, + { + id: '5245', + data: { + label: 'Castle Rock', + x: 3596.737280505443, + y: -1500.3869583088244, + z: 4892.420851225207, + }, + }, + { + id: '5244', + data: { + label: 'Turner Broadcasting System', + x: 719.725715728046, + y: 3845.336164294849, + z: 4714.856627401613, + }, + }, + { + id: '5243', + data: { + label: 'Time Warner Cable France', + x: 1846.660142553143, + y: -2500.5711224828597, + z: 862.9213686196574, + }, + }, + { + id: '5242', + data: { + label: 'Time Warner Telecom', + x: 2607.4883569560716, + y: -295.7840560190955, + z: 1772.2782517859107, + }, + }, + { + id: '5241', + data: { + label: 'CityAuction', + x: 3160.884375089648, + y: -811.1128637892422, + z: -1798.0678029204473, + }, + }, + { + id: '5240', + data: { + label: 'CitySearch', + x: 3451.6510271279612, + y: -288.38255222435396, + z: -1078.4242691725779, + }, + }, + { + id: '5238', + data: { + label: 'Teltronics', + x: 1944.6170783889474, + y: 3437.7320848211843, + z: -3360.6376738409567, + }, + }, + { + id: '5239', + data: { + label: 'Telident', + x: 2079.1028521459757, + y: 3151.220177658273, + z: -3604.3310251148328, + }, + }, + { + id: '5237', + data: { + label: 'Ticket Shop', + x: 2814.5316605032026, + y: -860.8806730191203, + z: -1736.8624583122191, + }, + }, + { + id: '5236', + data: { + label: 'Nippon Telegraph', + x: 2029.3359301682449, + y: -1118.9862700388312, + z: -1580.7509054149214, + }, + }, + { + id: '5233', + data: { + label: 'WD', + x: -2833.086215173293, + y: -1392.7994892586432, + z: -2296.4106668359054, + }, + }, + { + id: '5235', + data: { + label: 'TeleCorp PCS', + x: 3030.345899094287, + y: 2508.004512112214, + z: -5160.105255936009, + }, + }, + { + id: '5230', + data: { + label: 'TCSI', + x: 1844.5771762597083, + y: 6429.168908423731, + z: 330.1458187152429, + }, + }, + { + id: '5234', + data: { + label: 'Polycell', + x: 1595.2055020363155, + y: 6038.259967580776, + z: -1987.7839199210425, + }, + }, + { + id: '5232', + data: { + label: 'Telular', + x: 2577.868652126907, + y: 6348.57404410599, + z: -517.5013028785401, + }, + }, + { + id: '5231', + data: { + label: 'GTE-NMO', + x: 407.84148962369244, + y: -4189.829955351728, + z: -3866.1202987424617, + }, + }, + { + id: '5229', + data: { + label: 'Telecorp PCS', + x: -2768.7188191298237, + y: -957.5403984191958, + z: -2101.864094766835, + }, + }, + { + id: '5228', + data: { + label: 'Quantum Optech', + x: 460.5454836761476, + y: -5425.261438408048, + z: -1408.4214442055174, + }, + }, + { + id: '5227', + data: { + label: 'Lucent Technologies', + x: -2118.1194970068295, + y: 3757.6008730410667, + z: -2331.906193210322, + }, + }, + { + id: '5226', + data: { + label: 'LodgeNet Entertainment', + x: -372.7325100361174, + y: 5139.627282480783, + z: -2167.3161765253285, + }, + }, + { + id: '5224', + data: { + label: 'Cineplex Odeon', + x: -2219.1454278875885, + y: -2217.064022010326, + z: 3250.2438336753194, + }, + }, + { + id: '5225', + data: { + label: 'Luminent', + x: 3900.751851469637, + y: -3296.914514706128, + z: 1115.1649171549116, + }, + }, + { + id: '5222', + data: { + label: 'Sprint PCS', + x: -2405.5062293497936, + y: 4366.077636045399, + z: 374.6740908039799, + }, + }, + { + id: '5223', + data: { + label: 'Loews Cineplex Entertainment', + x: 5701.143782591875, + y: 3063.381833603124, + z: 3200.5647484746146, + }, + }, + { + id: '5221', + data: { + label: 'Liberty Satellite', + x: -3544.599158972975, + y: -1027.2645601187241, + z: -1967.3354568294715, + }, + }, + { + id: '5219', + data: { + label: 'Torneos', + x: 2152.1725086738725, + y: 5379.3215959164545, + z: 1649.3135862279973, + }, + }, + { + id: '5220', + data: { + label: 'Superstar/Netlink Group', + x: -1368.4248670299992, + y: -3092.9499726802333, + z: -3949.6627144289414, + }, + }, + { + id: '5218', + data: { + label: 'Associated Group', + x: 2119.5231469633995, + y: -1039.7810692676628, + z: 851.3965046497777, + }, + }, + { + id: '5217', + data: { + label: 'A-Group Merger', + x: 895.8484210988472, + y: 4048.3568979707998, + z: 4175.686064697875, + }, + }, + { + id: '8254', + data: { + label: 'Comcast MHCP Holdings', + x: 1608.913261873556, + y: -487.3073552573593, + z: 2044.0007506235995, + }, + }, + { + id: '5215', + data: { + label: 'Todd-AO', + x: 4218.764185786131, + y: 3588.253220576317, + z: -2921.6125689444907, + }, + }, + { + id: '5214', + data: { + label: 'SBLU', + x: 3667.9131965002575, + y: -4489.392973575603, + z: 3090.9104361760255, + }, + }, + { + id: '5213', + data: { + label: 'Liberty Digital', + x: 2078.94134022239, + y: -156.65081108685754, + z: 753.9100361133666, + }, + }, + { + id: '5212', + data: { + label: 'Navio', + x: 5859.665458081462, + y: 2697.4272944463987, + z: 580.7237154255336, + }, + }, + { + id: '5211', + data: { + label: 'Network Computer', + x: 1582.9791322305603, + y: 6364.427546499433, + z: -89.67856690100915, + }, + }, + { + id: '5210', + data: { + label: 'Liberate Technologies', + x: 5740.0195466599425, + y: 2440.481407702007, + z: 225.73795656113964, + }, + }, + { + id: '5209', + data: { + label: 'GWNS', + x: -1833.3226167825785, + y: 4754.206306538508, + z: -1492.4615694949964, + }, + }, + { + id: '5208', + data: { + label: 'Liberty Livewire', + x: 1538.8611498101302, + y: -1389.8605653763389, + z: -365.52205489648503, + }, + }, + { + id: '5207', + data: { + label: 'Intel Atlantic', + x: 2992.6711092381097, + y: 422.7170668452797, + z: -3559.2080041532595, + }, + }, + { + id: '5206', + data: { + label: 'Lernout & Hauspie Speech', + x: 3025.9089002339465, + y: 398.8082328271753, + z: -3070.394818286041, + }, + }, + { + id: '5205', + data: { + label: 'PLD', + x: -2953.150274178905, + y: -1728.4014258734692, + z: -2939.2182691980834, + }, + }, + { + id: '5204', + data: { + label: 'ABC Media', + x: 3326.5704576393937, + y: 3905.6601357990007, + z: -4232.791494375899, + }, + }, + { + id: '5203', + data: { + label: 'OCLI', + x: 2185.4115296919626, + y: 3034.59189094704, + z: 4550.568305028931, + }, + }, + { + id: '5202', + data: { + label: 'Vantis', + x: 3798.7576992654103, + y: 5735.213271457366, + z: 1841.811973231336, + }, + }, + { + id: '5201', + data: { + label: 'Lattice Semiconductor', + x: 576.0715023089983, + y: -2502.3790433336635, + z: 4309.985842988199, + }, + }, + { + id: '5200', + data: { + label: 'Hearst Communications', + x: 3234.96108437887, + y: -3299.0311957984977, + z: -3393.564095700682, + }, + }, + { + id: '5199', + data: { + label: 'E-TEK', + x: -1477.016842653531, + y: 3517.1624043246698, + z: -201.2399220279313, + }, + }, + { + id: '5198', + data: { + label: 'JDS Uniphase', + x: -1417.8686222779145, + y: 3148.547918170162, + z: 33.48410161608488, + }, + }, + { + id: '5197', + data: { + label: 'Long Distance Savers Group', + x: 3592.6892425573633, + y: 2659.78516586115, + z: 2810.5612211155685, + }, + }, + { + id: '5196', + data: { + label: 'Intermedia Communications', + x: 2677.16936083303, + y: -4420.591277027629, + z: 3390.4068349445074, + }, + }, + { + id: '5195', + data: { + label: 'Executone', + x: -236.61677837673184, + y: -3128.9561425832912, + z: 2337.1800993178604, + }, + }, + { + id: '5194', + data: { + label: 'Inter-Tel', + x: 16.40421699888516, + y: -3302.1118393193883, + z: 2018.52676384785, + }, + }, + { + id: '5193', + data: { + label: 'IQorder', + x: 5434.223593663003, + y: 2114.9844564582677, + z: 1288.045070329559, + }, + }, + { + id: '5189', + data: { + label: 'QED', + x: 3363.0628986375173, + y: -1676.7390028983812, + z: 582.9693650912244, + }, + }, + { + id: '5192', + data: { + label: 'Prio', + x: 5745.238554100763, + y: 2011.7964738679593, + z: 1226.925684635543, + }, + }, + { + id: '5191', + data: { + label: 'InfoSpace', + x: 5423.644051465899, + y: 1622.0645604584004, + z: 1239.5845681042085, + }, + }, + { + id: '5190', + data: { + label: 'Quantum Effect Devices', + x: 2587.2555066958503, + y: 3879.7065252179145, + z: 4566.4047048857865, + }, + }, + { + id: '5188', + data: { + label: 'Integrated Device Technology', + x: 1474.7994672668276, + y: -4098.239633056971, + z: 3684.969523662885, + }, + }, + { + id: '5187', + data: { + label: 'TDI', + x: 5237.890691922697, + y: -2985.8181754614534, + z: -3692.5223354005743, + }, + }, + { + id: '5186', + data: { + label: 'Infinity Broadcasting', + x: -26.860103800035287, + y: -1180.7198848018918, + z: -282.9455555683233, + }, + }, + { + id: '5185', + data: { + label: 'ILD', + x: 6690.736789435219, + y: 336.8745448870805, + z: 3550.0068739239036, + }, + }, + { + id: '5184', + data: { + label: 'Intellicall', + x: -553.8674264293315, + y: 3148.5917064190576, + z: -4161.040234313695, + }, + }, + { + id: '5183', + data: { + label: 'Sage Networks Acquisition', + x: 2461.794895570821, + y: 2927.6422609582255, + z: -5266.538721208776, + }, + }, + { + id: '5182', + data: { + label: 'Sage Acquisition', + x: -1384.225637950529, + y: 317.92159881394423, + z: 5004.867296968953, + }, + }, + { + id: '5181', + data: { + label: 'HostAmerica', + x: 1069.5078670432345, + y: 1131.3988943927382, + z: 5157.92988846331, + }, + }, + { + id: '5178', + data: { + label: 'CompReview', + x: 4106.306425106453, + y: 4374.096069183573, + z: 2443.310558286356, + }, + }, + { + id: '5180', + data: { + label: 'HomeCom Communications', + x: 3422.6275421306655, + y: -3728.8290376973214, + z: -3375.8694611693854, + }, + }, + { + id: '5179', + data: { + label: 'WebTrak', + x: 3668.6471305546174, + y: 4004.336508052718, + z: 2859.7192482338864, + }, + }, + { + id: '5171', + data: { + label: 'Harris', + x: 1891.1365000924773, + y: 3735.2304320426133, + z: -3090.474151473076, + }, + }, + { + id: '5177', + data: { + label: 'HNC Software', + x: 4218.107517389451, + y: 4010.3517849677214, + z: 2259.1862534929737, + }, + }, + { + id: '5176', + data: { + label: 'Cemax', + x: -671.6597283341274, + y: 3695.2472210707183, + z: -2758.6269839783295, + }, + }, + { + id: '5175', + data: { + label: 'Imation', + x: -341.34766500286975, + y: 3515.9188048924007, + z: -2908.322485848462, + }, + }, + { + id: '5174', + data: { + label: 'Tribune-Democrat', + x: 7145.776185344284, + y: 1804.8747077966761, + z: 2171.44472643055, + }, + }, + { + id: '5172', + data: { + label: 'NBX', + x: -1593.040139059405, + y: 4509.969901539351, + z: 2717.3503269163407, + }, + }, + { + id: '5173', + data: { + label: 'Johnstown', + x: 4303.775541280097, + y: 4089.711253724304, + z: -3858.203264447262, + }, + }, + { + id: '5170', + data: { + label: 'SARs', + x: 5169.798657444455, + y: -2531.8925187914956, + z: -4138.4625915922425, + }, + }, + { + id: '5168', + data: { + label: 'WWMT-TV', + x: 6219.117137493531, + y: 4316.720354165717, + z: 1044.319977288705, + }, + }, + { + id: '5169', + data: { + label: 'Harmony Holdings', + x: 4941.540948555067, + y: -2162.8976081615533, + z: -2711.385122775458, + }, + }, + { + id: '5167', + data: { + label: 'Granite Broadcasting', + x: 5431.573243744359, + y: 3743.1090956664307, + z: -1859.3266742562562, + }, + }, + { + id: '5166', + data: { + label: 'GTS Vox', + x: 4573.033103221413, + y: -1818.7726890508634, + z: -3765.746469673762, + }, + }, + { + id: '5165', + data: { + label: 'Golden Telecom', + x: 4108.820132723911, + y: -3862.945026824695, + z: 2197.5871954598274, + }, + }, + { + id: '5164', + data: { + label: 'GCF Acquisition', + x: 2914.476734333608, + y: 2250.126854940492, + z: -4590.148701965992, + }, + }, + { + id: '5163', + data: { + label: 'IPC Communications', + x: 2133.1171035382013, + y: -1993.92941231885, + z: 2093.3579658967706, + }, + }, + { + id: '5162', + data: { + label: 'Genuity', + x: 2793.822765145754, + y: 3244.942392775477, + z: -5078.387947492534, + }, + }, + { + id: '5161', + data: { + label: 'Cogent', + x: 46.478422218995654, + y: 5733.42549598966, + z: 1866.3811143228045, + }, + }, + { + id: '5160', + data: { + label: 'Harmonic', + x: 3091.265143848947, + y: -3925.6992585404214, + z: 3089.1339306907375, + }, + }, + { + id: '5159', + data: { + label: 'WRDW-TV', + x: 6633.335767054948, + y: -2764.100514197752, + z: -2039.305326636603, + }, + }, + { + id: '5158', + data: { + label: 'Gray Communications Systems', + x: -573.7370109686715, + y: -2341.963501905448, + z: 3088.6326861065586, + }, + }, + { + id: '5157', + data: { + label: 'Fundtech', + x: 2556.087805135928, + y: -2034.579883911313, + z: 31.849651407970402, + }, + }, + { + id: '5156', + data: { + label: 'News Publishing Australia', + x: -1843.9301435686084, + y: 436.7122619183785, + z: -3935.5689121516193, + }, + }, + { + id: '5155', + data: { + label: 'Fox Entertainment Group', + x: 4810.102390466865, + y: -4130.859774761993, + z: 2676.8560447963696, + }, + }, + { + id: '5154', + data: { + label: 'Metromedia Fiber Network Services', + x: -3222.4879528690244, + y: -1313.007038079866, + z: 230.866960093636, + }, + }, + { + id: '5153', + data: { + label: 'Focal Communications', + x: -1416.563321576468, + y: 3603.765028175682, + z: -3444.150868904823, + }, + }, + { + id: '5151', + data: { + label: 'Gadzoox Networks', + x: 3843.3069861776185, + y: 1150.5343165429856, + z: 5059.264643155856, + }, + }, + { + id: '5152', + data: { + label: 'Seagate', + x: 4512.658143242336, + y: 1552.4896966094705, + z: 4887.265881464327, + }, + }, + { + id: '5149', + data: { + label: 'ODC', + x: -252.0569844469952, + y: -3485.417690858809, + z: -3648.5992658679493, + }, + }, + { + id: '5146', + data: { + label: 'Global Crossing', + x: 2497.9396882359365, + y: -2285.3725250405846, + z: 1808.4316703325705, + }, + }, + { + id: '5150', + data: { + label: 'WAI', + x: -452.5342524960406, + y: 2967.922385509075, + z: -3899.0692869733152, + }, + }, + { + id: '5148', + data: { + label: 'Glenayre Technologies', + x: 5244.777553435035, + y: 725.5281487986, + z: 2120.4690935416666, + }, + }, + { + id: '5147', + data: { + label: 'IXnet', + x: 2400.108397287553, + y: -2569.1800538772914, + z: 2194.7968220030048, + }, + }, + { + id: '5145', + data: { + label: 'Compaq', + x: 3375.9919280890554, + y: -5113.5347135153115, + z: -959.4510433395776, + }, + }, + { + id: '5144', + data: { + label: 'Exodus Communications', + x: 3069.306053206997, + y: -2444.466847288386, + z: 1112.8541043866899, + }, + }, + { + id: '5143', + data: { + label: 'Exar', + x: -550.5402209744196, + y: -2251.157761598604, + z: -3518.8306278821237, + }, + }, + { + id: '5142', + data: { + label: 'MicroStrategy Investment', + x: 2005.7132788405577, + y: -2918.2996617632034, + z: 4116.654046144197, + }, + }, + { + id: '5141', + data: { + label: 'Exchange Applications', + x: 1885.9979051737616, + y: -3278.104525948632, + z: 3945.5797492127163, + }, + }, + { + id: '5140', + data: { + label: 'Entercom Communications', + x: 3313.4607518032103, + y: 2204.3552467917475, + z: 5270.687299100438, + }, + }, + { + id: '5139', + data: { + label: 'KKLT-FM', + x: 6053.701501941628, + y: -1784.9806178924546, + z: -3454.892098297107, + }, + }, + { + id: '5136', + data: { + label: 'Exigent International', + x: 1970.9247633834052, + y: 4086.2129613214465, + z: -2905.0075367637537, + }, + }, + { + id: '5138', + data: { + label: 'WKCF', + x: 586.2325325145846, + y: -2881.9870352474504, + z: 5049.388436457182, + }, + }, + { + id: '5137', + data: { + label: 'GEC', + x: -2559.320668024822, + y: 1347.7796939179307, + z: -3952.053097358047, + }, + }, + { + id: '5135', + data: { + label: 'EIG Acquisition', + x: -353.53925796516387, + y: 2416.25007330635, + z: -5016.081893660881, + }, + }, + { + id: '5132', + data: { + label: 'Cabletron', + x: -2164.8814729786927, + y: -1048.4193662472444, + z: -4379.159602463457, + }, + }, + { + id: '5134', + data: { + label: 'Elite Information Group', + x: 5361.022481057698, + y: 2196.480081320561, + z: -4368.981776002463, + }, + }, + { + id: '5133', + data: { + label: 'WQCD', + x: 6925.782731634083, + y: 543.9645300630305, + z: 2916.2012774080417, + }, + }, + { + id: '5130', + data: { + label: 'Emtek', + x: 2385.8186257042003, + y: -93.57052454680417, + z: 3096.9197654067434, + }, + }, + { + id: '5131', + data: { + label: 'Efficient Networks', + x: 2346.6476655663528, + y: 5297.229189475252, + z: -2055.2587329275334, + }, + }, + { + id: '5129', + data: { + label: 'Eclipsys', + x: 2249.432625885759, + y: -117.70897847665881, + z: 2598.605542056085, + }, + }, + { + id: '5128', + data: { + label: 'CommTouch', + x: 5043.4300438783375, + y: 1669.5748250430672, + z: 1089.8074872150578, + }, + }, + { + id: '5126', + data: { + label: 'DynCorp', + x: -860.4270784393041, + y: 4814.415225081243, + z: -183.4642711176551, + }, + }, + { + id: '5127', + data: { + label: 'GTE Information Systems', + x: -553.1994237073274, + y: 5083.035343684528, + z: -195.8793423558555, + }, + }, + { + id: '5125', + data: { + label: 'Elcotel', + x: 7336.0570307409525, + y: 957.3717195488971, + z: -2175.077964702542, + }, + }, + { + id: '5123', + data: { + label: 'DDI', + x: 686.531876828686, + y: 2358.6903380129447, + z: 4921.316257038687, + }, + }, + { + id: '5124', + data: { + label: 'MCM Electronics', + x: 874.741869553111, + y: -3559.918275571315, + z: -3657.6910991489717, + }, + }, + { + id: '5122', + data: { + label: 'Dynamic Circuits', + x: 5886.3803233563585, + y: -2823.229658600225, + z: 22.81409133046994, + }, + }, + { + id: '5121', + data: { + label: 'Automata', + x: 5802.734126209609, + y: -3119.9396363930423, + z: -243.23032755949143, + }, + }, + { + id: '5120', + data: { + label: 'DDi', + x: 5497.234623929344, + y: -2846.7017002693296, + z: -144.53152982799895, + }, + }, + { + id: '5119', + data: { + label: 'WeatherLabs', + x: -3205.9428746044805, + y: 3122.8297554564574, + z: 863.4196106641893, + }, + }, + { + id: '5117', + data: { + label: 'PT Merger', + x: 3901.1162324853026, + y: 4055.969809697702, + z: -4111.436058160594, + }, + }, + { + id: '5118', + data: { + label: 'Digital Courier Technologies', + x: 3349.0080308507886, + y: 1465.438551558172, + z: 1310.1411055312137, + }, + }, + { + id: '5114', + data: { + label: 'Intermedia-WorldCom', + x: 3315.557200057485, + y: 2396.418311740831, + z: 2549.9115208536327, + }, + }, + { + id: '5116', + data: { + label: 'Davel Communications', + x: 5536.069265683404, + y: 686.9826623348195, + z: -3014.8800248504413, + }, + }, + { + id: '5115', + data: { + label: 'Z-Tel Technologies', + x: 3008.424928659619, + y: -5290.054584114644, + z: -1325.1330123146622, + }, + }, + { + id: '5113', + data: { + label: 'Digex', + x: 3630.3719146415315, + y: 2134.6690258097633, + z: 2271.167816771046, + }, + }, + { + id: '5112', + data: { + label: 'HFN', + x: -1059.713067344163, + y: -1625.5704888653204, + z: 4395.59216316173, + }, + }, + { + id: '5111', + data: { + label: 'Sybase', + x: -1730.06306975489, + y: 5046.257529695234, + z: 168.76960031205235, + }, + }, + { + id: '5109', + data: { + label: 'PixelCam', + x: -1892.6857655735, + y: 4133.410119152112, + z: -1092.0293585168415, + }, + }, + { + id: '5110', + data: { + label: 'Switchboard', + x: 2204.3759380038828, + y: 410.1958171430473, + z: 939.4032207174535, + }, + }, + { + id: '5108', + data: { + label: 'Zoran', + x: -1875.6176373655385, + y: 4099.905507849583, + z: -1489.7359896234952, + }, + }, + { + id: '5107', + data: { + label: 'MCMS', + x: 78.9174261691911, + y: 2758.850075188793, + z: 4986.480253543424, + }, + }, + { + id: '5106', + data: { + label: 'Micron Electronics', + x: 3074.658515527298, + y: 1089.4561031032738, + z: -3396.712913248863, + }, + }, + { + id: '5105', + data: { + label: 'Zoltar', + x: -1510.6267368053816, + y: 4092.2193357396823, + z: -2819.1277131238103, + }, + }, + { + id: '5103', + data: { + label: 'Primedia Station Group', + x: -2690.873188113793, + y: 1861.6955778913339, + z: -2664.2430622314205, + }, + }, + { + id: '5104', + data: { + label: 'Spectrian', + x: -20.535066861188866, + y: 3641.321975262519, + z: 4493.947434911335, + }, + }, + { + id: '5100', + data: { + label: 'Guy Gannett', + x: 478.47220115795744, + y: 4932.696489951247, + z: -2348.335841660436, + }, + }, + { + id: '5102', + data: { + label: 'Spanish Broadcasting System', + x: 3844.913030992198, + y: 5411.707027995104, + z: -2477.031768785757, + }, + }, + { + id: '5101', + data: { + label: 'SpectraSite Holdings', + x: 3096.3750240760337, + y: -3488.188036541979, + z: -2853.2059689163584, + }, + }, + { + id: '5099', + data: { + label: 'Sinclair Broadcast Group', + x: -100.02825234527697, + y: 4472.992558212895, + z: -2914.790036677023, + }, + }, + { + id: '5098', + data: { + label: 'STFI', + x: 4210.965616347773, + y: -4086.4128290752874, + z: -3097.673700809313, + }, + }, + { + id: '5097', + data: { + label: 'Shared Technologies Cellular', + x: 3309.791887146047, + y: 2790.3554377170667, + z: 2798.8826026899005, + }, + }, + { + id: '5096', + data: { + label: 'Tritel', + x: 1320.3682715839675, + y: -1271.495775400849, + z: 2253.967669601144, + }, + }, + { + id: '5095', + data: { + label: 'SCB Computer Technology', + x: 3782.1955025797, + y: 5690.0333967994775, + z: -1182.7533895283295, + }, + }, + { + id: '5094', + data: { + label: 'IPC Interactive Pte.', + x: 2841.7428088621564, + y: 1824.3860623589633, + z: -5210.034310877939, + }, + }, + { + id: '5093', + data: { + label: 'SeaChange International', + x: 1787.223408455887, + y: -1588.0933273130343, + z: 2088.073019509837, + }, + }, + { + id: '5092', + data: { + label: 'SBS Technologies', + x: 4785.36062373327, + y: -953.3779666695876, + z: 3110.195775469455, + }, + }, + { + id: '5091', + data: { + label: 'SBC Communications', + x: 3573.580060354871, + y: -1758.6094024298386, + z: -726.9043186082095, + }, + }, + { + id: '5090', + data: { + label: 'SBA Communications', + x: 1400.301052835652, + y: -4609.578117991974, + z: -3652.941378980377, + }, + }, + { + id: '5089', + data: { + label: 'Edify', + x: 6155.260616778391, + y: 1457.2290121458725, + z: -3825.8159968544865, + }, + }, + { + id: '5088', + data: { + label: 'S1', + x: 651.1341837622958, + y: -1597.4910943259483, + z: 1137.0892624012404, + }, + }, + { + id: '5087', + data: { + label: 'Motorola Telco', + x: 2405.6879515395112, + y: -76.3922106680704, + z: 1586.6823567874733, + }, + }, + { + id: '5084', + data: { + label: 'REMEC', + x: -1907.7699771554621, + y: 2083.0870235866582, + z: 2620.048779768492, + }, + }, + { + id: '5086', + data: { + label: 'RSL Communications', + x: 3145.6516369679684, + y: 593.7056556589729, + z: 2421.845837553104, + }, + }, + { + id: '5085', + data: { + label: 'PMC', + x: 4619.479659256952, + y: 2577.950518848351, + z: 4254.662742962534, + }, + }, + { + id: '5082', + data: { + label: 'Rural Cellular', + x: 4010.006596155386, + y: -435.5918320671567, + z: 4832.863265669788, + }, + }, + { + id: '5083', + data: { + label: 'Unity Cellular', + x: 4366.31032981864, + y: -596.894656709316, + z: 4699.9730211149645, + }, + }, + { + id: '5081', + data: { + label: 'IntelliGrip', + x: 809.0595125411543, + y: -4031.3827784215796, + z: 3881.034553130373, + }, + }, + { + id: '5080', + data: { + label: 'Old Pulitzer', + x: -214.36332462362938, + y: 5017.575168911232, + z: -773.4331968665142, + }, + }, + { + id: '5079', + data: { + label: 'QSI', + x: -2380.578277358195, + y: 1730.3073503579535, + z: -3274.7465076324784, + }, + }, + { + id: '5078', + data: { + label: 'Quality Systems', + x: -322.97128843501076, + y: -3351.029189480906, + z: 4220.919724261201, + }, + }, + { + id: '5077', + data: { + label: 'Hearst-Argyle', + x: -3896.709009443845, + y: 1493.7637286742881, + z: -1776.6712630013785, + }, + }, + { + id: '5076', + data: { + label: 'Pulitzer', + x: -152.81846226616253, + y: 1554.7102783997386, + z: -1234.3082803380903, + }, + }, + { + id: '5075', + data: { + label: 'BBN', + x: -2501.501744656687, + y: 4404.8477485562125, + z: -203.2756434255773, + }, + }, + { + id: '5074', + data: { + label: 'ATL', + x: 1059.767128821078, + y: 2993.324963986585, + z: 5240.503478631276, + }, + }, + { + id: '5073', + data: { + label: 'Emulex Plan', + x: -124.14746428136066, + y: -5212.94691723163, + z: -480.9502872529614, + }, + }, + { + id: '5072', + data: { + label: 'QLogic', + x: 7204.813618302632, + y: 2705.7241406386793, + z: 1326.2915961161384, + }, + }, + { + id: '5071', + data: { + label: 'GE Capital Consulting', + x: 1520.739426160776, + y: -1977.6389970873936, + z: 3781.348824134633, + }, + }, + { + id: '5070', + data: { + label: 'PSINet', + x: 1342.547820104796, + y: -2743.1681358559285, + z: 3022.593740130586, + }, + }, + { + id: '5069', + data: { + label: 'DSS', + x: -2002.451129912446, + y: 4887.654323645256, + z: 879.4216775563364, + }, + }, + { + id: '5068', + data: { + label: 'Quantum', + x: 3721.5653421517986, + y: -2934.305884089032, + z: 944.9014715800852, + }, + }, + { + id: '5067', + data: { + label: 'Price Communications', + x: 7040.001110093439, + y: 1064.2865423131534, + z: -3100.70096479759, + }, + }, + { + id: '5066', + data: { + label: 'Deutsche Telekom', + x: 2689.0903813000086, + y: -1546.244527576115, + z: 478.61634181617825, + }, + }, + { + id: '5063', + data: { + label: 'PCW', + x: 3508.6573316369013, + y: 3379.7367639115673, + z: 4263.931058067855, + }, + }, + { + id: '5065', + data: { + label: 'VoiceStream', + x: 2747.051132769771, + y: -1881.06905023714, + z: 1042.5859392539558, + }, + }, + { + id: '5064', + data: { + label: 'Powertel', + x: 3130.758144288243, + y: -1850.1635434611019, + z: 275.4897979910038, + }, + }, + { + id: '5061', + data: { + label: 'Propel Ahead', + x: 4555.124015626892, + y: -4202.352130814733, + z: -2697.238238860042, + }, + }, + { + id: '5060', + data: { + label: 'Pinnacle Systems', + x: 4549.000498036643, + y: 4700.036543196718, + z: 1327.8472868734113, + }, + }, + { + id: '5062', + data: { + label: 'PRICE COMMUNICATIONS', + x: 7019.473875242131, + y: -1063.4498520473842, + z: -1078.9376841706453, + }, + }, + { + id: '5059', + data: { + label: 'DTS', + x: 4992.540538021196, + y: 5227.569029333099, + z: 1572.152079520315, + }, + }, + { + id: '5058', + data: { + label: 'Pegasus Communications', + x: 3242.479170165424, + y: -4797.279477172708, + z: -2705.682287694455, + }, + }, + { + id: '5057', + data: { + label: 'WPXW-TV', + x: -1817.4643888261276, + y: 2557.40436982965, + z: -2651.334328088767, + }, + }, + { + id: '5056', + data: { + label: 'WYPX-TV', + x: -2068.145009079505, + y: 4608.698673330744, + z: 1498.2912526566172, + }, + }, + { + id: '5054', + data: { + label: 'WFSJ-FM', + x: -606.0040165830236, + y: -4661.543868957731, + z: -1945.892152272737, + }, + }, + { + id: '5055', + data: { + label: 'WYPX', + x: -2069.0429132740246, + y: 2912.9173147888087, + z: 3552.5404225846837, + }, + }, + { + id: '5053', + data: { + label: 'KPXR', + x: 940.8456282091383, + y: 2958.8535152836935, + z: -5237.324838338924, + }, + }, + { + id: '5052', + data: { + label: 'FASB', + x: 3363.3614108721713, + y: 5558.764824678435, + z: -2555.916218342226, + }, + }, + { + id: '5049', + data: { + label: 'ViewPoint Technology', + x: 5440.6103610884675, + y: 3530.9866639575207, + z: -3540.4089625467245, + }, + }, + { + id: '5051', + data: { + label: 'Packeteer', + x: 4662.783084518706, + y: -3848.7942731355815, + z: -3330.342769418029, + }, + }, + { + id: '5050', + data: { + label: 'ODEUM', + x: 4078.86902406737, + y: 698.8369434431117, + z: -3392.304990484623, + }, + }, + { + id: '5048', + data: { + label: 'XLI', + x: 3885.8559926683242, + y: -2643.117578281216, + z: 4765.457679457803, + }, + }, + { + id: '5045', + data: { + label: 'ConsumerCo', + x: 402.53827573047136, + y: -3570.310917935656, + z: 2071.705913055358, + }, + }, + { + id: '5047', + data: { + label: 'Oak Technology', + x: 3712.6143024128273, + y: 820.9936596038754, + z: -3587.714330938936, + }, + }, + { + id: '5046', + data: { + label: 'ComTel', + x: 261.9393778302266, + y: -3865.613556478794, + z: 1422.379039564967, + }, + }, + { + id: '5044', + data: { + label: 'NTL', + x: 636.0706480604565, + y: 3258.8495717543233, + z: 5036.617523020342, + }, + }, + { + id: '5043', + data: { + label: 'ESMR', + x: 8.308146149194833, + y: 1414.1681938256932, + z: -5051.581699491567, + }, + }, + { + id: '5042', + data: { + label: 'Clearnet', + x: 1659.608374706184, + y: -1918.8112777653337, + z: 2913.1301133674824, + }, + }, + { + id: '5041', + data: { + label: 'SMR Properties', + x: -1462.2496151160437, + y: -2709.5616589797974, + z: -3947.270469223142, + }, + }, + { + id: '5040', + data: { + label: 'Nextel Communications', + x: 2222.6945554454137, + y: -993.0237922425441, + z: 1412.676745599308, + }, + }, + { + id: '5039', + data: { + label: 'Network Access Solutions', + x: 4837.721333783618, + y: -2354.266797361394, + z: -4190.37031469452, + }, + }, + { + id: '5038', + data: { + label: 'PGP', + x: -3919.8108559842854, + y: 1027.725273757799, + z: 720.9329060401008, + }, + }, + { + id: '5037', + data: { + label: 'Network Associates', + x: -4205.778529667952, + y: 753.641025130102, + z: 502.09615126861263, + }, + }, + { + id: '5036', + data: { + label: 'Lucent', + x: 4801.3433565246905, + y: -3672.7986779494104, + z: 2908.4087849234515, + }, + }, + { + id: '5035', + data: { + label: 'VOX S', + x: 2567.0959507155935, + y: 1557.129329139276, + z: -4516.05825636404, + }, + }, + { + id: '5033', + data: { + label: 'NBCi', + x: 1329.6385456005692, + y: 6290.392980907306, + z: -1231.127050528845, + }, + }, + { + id: '5034', + data: { + label: 'TCI Ventures Group', + x: 5098.984883888519, + y: -2201.8671472130536, + z: -4085.675154821569, + }, + }, + { + id: '5032', + data: { + label: 'NBC Internet', + x: -2844.996856776686, + y: -556.1290354176749, + z: -3691.266252999221, + }, + }, + { + id: '5031', + data: { + label: 'NCR', + x: 1973.418668416713, + y: 2196.2478305823097, + z: -4638.2873867902845, + }, + }, + { + id: '5030', + data: { + label: 'TEKnique', + x: -669.8686039351569, + y: 2752.3333571565668, + z: -4323.775434569389, + }, + }, + { + id: '5028', + data: { + label: 'Netstream Telecom Ltda', + x: 306.7582954902618, + y: -3470.4214538618953, + z: 1646.826147041436, + }, + }, + { + id: '5029', + data: { + label: 'Natural MicroSystems', + x: 1613.4659490633587, + y: 4533.318569097447, + z: 203.31077873797085, + }, + }, + { + id: '5027', + data: { + label: 'ACL', + x: 4246.767246443816, + y: 2845.7837978883026, + z: 3459.8549109416667, + }, + }, + { + id: '5026', + data: { + label: 'NeoMagic', + x: 4416.762298093123, + y: 3214.2412857521263, + z: 3426.94170424417, + }, + }, + { + id: '5023', + data: { + label: 'MRV Communications', + x: 4172.828907456823, + y: -3075.9247947608847, + z: 944.2764414912988, + }, + }, + { + id: '5025', + data: { + label: 'Fiber Optic Communications', + x: -89.9212012436056, + y: 4931.397674252855, + z: -3241.663917223056, + }, + }, + { + id: '5024', + data: { + label: 'Fibronics', + x: 2218.0836902691344, + y: 5845.429937697352, + z: -2620.6897315270558, + }, + }, + { + id: '5022', + data: { + label: 'MetroNet Communications', + x: 3141.5911055749607, + y: -3397.123030960953, + z: 4492.678124925185, + }, + }, + { + id: '5021', + data: { + label: 'Keytech LD', + x: -2885.8701228393147, + y: -2408.0625278390153, + z: -2573.6116023301033, + }, + }, + { + id: ' S.A', + data: { + label: 'Keytech LD', + x: 4573.239116868335, + y: 1024.4774624473946, + z: -5031.628012605423, + }, + }, + { + id: '5017', + data: { + label: 'Cypress Semiconductor', + x: -280.22145749486094, + y: -2047.2617559858952, + z: -3840.769776338021, + }, + }, + { + id: '5019', + data: { + label: 'Keytech LD S.A', + x: 56.1738000304697, + y: 5596.810754801622, + z: -2188.947873329834, + }, + }, + { + id: '5018', + data: { + label: 'IC Works', + x: -1227.4334046602582, + y: -3947.519946975612, + z: -2706.014018015918, + }, + }, + { + id: '5016', + data: { + label: 'MediaOne', + x: 5011.25501068683, + y: -1839.0449373086838, + z: -3490.2050110377418, + }, + }, + { + id: '5015', + data: { + label: 'CSG Systems International', + x: 2013.8134086544503, + y: -543.3493643290838, + z: 771.8168565724653, + }, + }, + { + id: '5013', + data: { + label: 'Telecorp', + x: 1532.649614059372, + y: -1332.2943321370062, + z: 2280.769678395354, + }, + }, + { + id: '5014', + data: { + label: 'TCGI', + x: 4458.953351731415, + y: 3889.0528877180536, + z: -3313.1882670556506, + }, + }, + { + id: '8310', + data: { + label: 'Silicon Investor', + x: 4757.825914636282, + y: 1849.0899739168863, + z: 1735.9748108818005, + }, + }, + { + id: '5011', + data: { + label: 'Northern Telecom', + x: 4317.492826771507, + y: -193.606854880786, + z: -4954.090948987321, + }, + }, + { + id: '5010', + data: { + label: 'Corning', + x: 4643.960060445581, + y: 4622.5126843577655, + z: 1802.7531871165277, + }, + }, + { + id: '5009', + data: { + label: 'New Times Mirror', + x: -3061.0269011131304, + y: -21.655101787767006, + z: -3369.1456523128254, + }, + }, + { + id: '5008', + data: { + label: 'Harris Computer Systems', + x: 385.4641749666109, + y: 5448.584144278102, + z: 2287.7238582982895, + }, + }, + { + id: '5007', + data: { + label: 'CEI', + x: -3259.527903765037, + y: 1905.975748669201, + z: -2512.1018823836075, + }, + }, + { + id: '5006', + data: { + label: 'Conestoga Enterprises', + x: 2664.1736066404196, + y: -4329.146753880847, + z: -4095.2242640521936, + }, + }, + { + id: '5005', + data: { + label: 'HCSC', + x: -1016.6260017520767, + y: 4723.449797078045, + z: 1455.5192330582968, + }, + }, + { + id: '5004', + data: { + label: 'Concurrent Computer', + x: 430.4669542826651, + y: 5206.701185597831, + z: 2607.2241270432614, + }, + }, + { + id: '5003', + data: { + label: 'Zip2', + x: 5279.151689451187, + y: 2980.070638441276, + z: 1869.0782222226835, + }, + }, + { + id: '5002', + data: { + label: 'SDC', + x: 3321.482132568602, + y: 4201.062565519756, + z: -3773.8412153156705, + }, + }, + { + id: '5001', + data: { + label: 'Compaq Computer', + x: 4945.408795600965, + y: 2699.8912602323585, + z: 1910.9693312909278, + }, + }, + { + id: '5000', + data: { + label: 'NWCG', + x: 2918.891954513217, + y: 2985.632878406224, + z: -4458.184114979768, + }, + }, + { + id: '4999', + data: { + label: 'Andrew', + x: 942.1074309721374, + y: 3663.0567231669324, + z: 1676.9430940512602, + }, + }, + { + id: '4996', + data: { + label: 'TBS', + x: -601.7410672547497, + y: -2824.508603503443, + z: 4349.430944550172, + }, + }, + { + id: '4997', + data: { + label: 'ATU', + x: 2864.902240593133, + y: 786.9874193415758, + z: 1728.9216924020127, + }, + }, + { + id: '4995', + data: { + label: 'Garden State Cable', + x: -4221.105122226933, + y: 711.8275357898434, + z: -696.4058860657854, + }, + }, + { + id: '4994', + data: { + label: 'Adelphia', + x: 3654.8270153495573, + y: -4122.686324547625, + z: 3467.6111227765923, + }, + }, + { + id: '4992', + data: { + label: 'Communications Systems', + x: 4528.848313039735, + y: -3852.566088186636, + z: 399.21708237026985, + }, + }, + { + id: '4993', + data: { + label: 'CenturyTel Alaska', + x: 3429.0093879512037, + y: 1343.0861125626984, + z: 1764.3479283905344, + }, + }, + { + id: '4991', + data: { + label: 'Comcast LCI Holdings', + x: -1068.6083351886007, + y: -4268.129403091135, + z: -2386.470344230265, + }, + }, + { + id: '4990', + data: { + label: 'Lenfest', + x: 1916.971383373053, + y: 274.4439411707058, + z: 4989.410376874118, + }, + }, + { + id: '4989', + data: { + label: 'Comcast Cable Communications', + x: 3526.6384558997065, + y: 3665.2087658688165, + z: 4613.820836610671, + }, + }, + { + id: '4988', + data: { + label: 'AirTouch', + x: -1597.2403873903045, + y: 1964.7426526984602, + z: 4489.610225604753, + }, + }, + { + id: '4986', + data: { + label: 'SFX', + x: 3789.408835376186, + y: 1648.7019291164677, + z: -4951.050550798731, + }, + }, + { + id: '4987', + data: { + label: 'American Tower', + x: 516.4346660610399, + y: -925.9832277385889, + z: 3693.3368703165866, + }, + }, + { + id: '4985', + data: { + label: 'Transacti', + x: -1995.890331081601, + y: -1715.178381883537, + z: -4331.015657655051, + }, + }, + { + id: '4984', + data: { + label: 'CIENA', + x: 153.5368980339725, + y: 4911.075605944366, + z: 1240.0495330178237, + }, + }, + { + id: '8200', + data: { + label: 'Red Herring Communications', + x: 1863.0750248591985, + y: 2301.6860633899373, + z: 5130.731813164587, + }, + }, + { + id: '4983', + data: { + label: 'Jacor', + x: -2693.334666956928, + y: 1509.3448462243637, + z: -3088.2610923978577, + }, + }, + { + id: '4982', + data: { + label: 'Time-Warner', + x: 1971.6914546507746, + y: -5508.526641755971, + z: -944.3010758493059, + }, + }, + { + id: '4981', + data: { + label: 'Apollo Acquisition', + x: 1804.6909492332004, + y: -4274.269521245254, + z: 3498.2762802094635, + }, + }, + { + id: '4980', + data: { + label: 'America Online', + x: -1445.4189902275132, + y: -979.8034015428411, + z: 4912.452752941796, + }, + }, + { + id: '4979', + data: { + label: 'Marcus Cable', + x: 3513.575739991974, + y: -4077.691706165074, + z: -3560.844527081059, + }, + }, + { + id: '4978', + data: { + label: 'PacifiCorp Holdings', + x: 189.12884696901173, + y: -2459.582707292157, + z: 5228.015013910606, + }, + }, + { + id: '4977', + data: { + label: 'Alaska Communications System', + x: 3063.0409441452334, + y: 669.0639664032992, + z: 1271.1641327450825, + }, + }, + { + id: '8293', + data: { + label: 'KZLA-FM (Los Angeles)', + x: 3226.1505821769574, + y: 3134.449528962625, + z: -3960.6847206185257, + }, + }, + { + id: '4975', + data: { + label: 'RTS', + x: 654.5798764631419, + y: -3230.738789564737, + z: 1874.3167333008957, + }, + }, + { + id: '4974', + data: { + label: 'Sinope', + x: 449.9303888379306, + y: -2940.2124519469503, + z: 1999.6689421594988, + }, + }, + { + id: '4973', + data: { + label: 'LocusOne', + x: 729.9901642497955, + y: -3041.9699025462687, + z: 2111.467982559143, + }, + }, + { + id: '4972', + data: { + label: 'Aether Systems', + x: 786.5424952247531, + y: -2825.5956214149087, + z: 1709.919830159342, + }, + }, + { + id: '4971', + data: { + label: 'Rainbow News', + x: -465.0974239411165, + y: -5078.682064019238, + z: 145.05900430788193, + }, + }, + { + id: '4970', + data: { + label: 'Cablevision Systems', + x: -3021.0682845078777, + y: 3440.1878296071095, + z: 866.7447945693215, + }, + }, + { + id: '4969', + data: { + label: 'Loews', + x: -1503.362250639808, + y: -3646.380560589995, + z: -2980.532332397276, + }, + }, + { + id: '4968', + data: { + label: 'CABLEVISION SYSTEMS', + x: 5128.8769527604645, + y: -695.2213754545829, + z: -3608.3019218721806, + }, + }, + { + id: '4967', + data: { + label: 'Netlink', + x: 1210.9493797450436, + y: 561.4431082389453, + z: 673.0010485055476, + }, + }, + { + id: '4966', + data: { + label: 'FlowPoint', + x: 6771.5285942968185, + y: -1572.4685177085723, + z: -227.71391948095018, + }, + }, + { + id: '4965', + data: { + label: 'Silicon Spice', + x: 2281.7937184578645, + y: 4816.164404817073, + z: 2403.753281577227, + }, + }, + { + id: '4964', + data: { + label: 'Pivotal Technologies', + x: 2194.3453524625243, + y: 4380.064344729482, + z: 2500.935185689361, + }, + }, + { + id: '4963', + data: { + label: 'BlueSteel', + x: -2696.9134050872312, + y: -1720.396724749108, + z: 3430.1807009952804, + }, + }, + { + id: '4962', + data: { + label: 'Broadcom', + x: 2348.3353016241495, + y: 4501.797365930871, + z: 2115.5959227302806, + }, + }, + { + id: '4961', + data: { + label: 'IXC', + x: 833.2539703893998, + y: -2442.7501808085417, + z: 3822.688052988382, + }, + }, + { + id: '4960', + data: { + label: 'BROADWING', + x: 977.6838494223222, + y: -2644.0445222778426, + z: 3445.180420868696, + }, + }, + { + id: '4959', + data: { + label: 'ZeitNet', + x: 32.92854024496049, + y: -2045.2475184125392, + z: 4320.283573090966, + }, + }, + { + id: '4958', + data: { + label: 'Cabletron Systems', + x: 6768.037083036157, + y: -1882.806918089699, + z: 51.66152076893283, + }, + }, + { + id: '4957', + data: { + label: 'Scitex Corporation', + x: 5620.344256587566, + y: 883.9090514996243, + z: 4639.304611075367, + }, + }, + { + id: '4956', + data: { + label: 'Bitstream', + x: 3236.696674453902, + y: 2362.6728584261464, + z: -4952.845469477215, + }, + }, + { + id: '4955', + data: { + label: 'Ares Software', + x: 2768.4653365220684, + y: 846.4661316128619, + z: -3961.2099732378288, + }, + }, + { + id: '4954', + data: { + label: 'Adobe Systems', + x: 2872.1938489516074, + y: 1073.4479446802036, + z: -3538.4835055556414, + }, + }, + { + id: '4953', + data: { + label: 'Denton', + x: 5396.320564383544, + y: -4116.159407537665, + z: 397.0596827604483, + }, + }, + { + id: '4952', + data: { + label: 'Osceola County', + x: -3066.708731343462, + y: 1659.4786033311293, + z: 3138.068523462782, + }, + }, + { + id: '4951', + data: { + label: 'Jones Intercable', + x: 1394.749758858003, + y: 146.6465930578869, + z: 2010.1994034623037, + }, + }, + { + id: '4950', + data: { + label: 'Adelphia Communications', + x: 2364.8451243149448, + y: 651.5083758689422, + z: 1914.0274794244117, + }, + }, + { + id: '4949', + data: { + label: 'NeoVista', + x: -3380.8471864842845, + y: -542.9591922184208, + z: -888.067241488836, + }, + }, + { + id: '4948', + data: { + label: 'Accrue Software', + x: 6869.47002252628, + y: -1081.385977902721, + z: -3012.529453491988, + }, + }, + { + id: '4947', + data: { + label: 'Wild File', + x: 3626.9427584590103, + y: 4071.254323404095, + z: 4248.773206260937, + }, + }, + { + id: '4946', + data: { + label: 'Adaptec', + x: 3096.5678902919967, + y: 531.0397799103736, + z: -1112.8016918593157, + }, + }, + { + id: '8202', + data: { + label: 'ConnectSouth Communications', + x: -224.99991374505566, + y: -3561.7808451946603, + z: -1827.254421236508, + }, + }, + { + id: '8203', + data: { + label: 'iSky', + x: 2510.431596814002, + y: 962.9725754329056, + z: -540.9448706974966, + }, + }, + { + id: ' Muse', + data: { + label: 'Hicks', + x: 3463.491668858534, + y: 1593.8705631184857, + z: -5032.706571284744, + }, + }, + { + id: '8206', + data: { + label: 'Hikari Tsushin', + x: -1920.1381262734678, + y: -1067.1345177044966, + z: -3902.5106485990236, + }, + }, + { + id: ' Davidow Ventures', + data: { + label: 'Mohr', + x: -3457.4957922396457, + y: 2723.1607933697737, + z: 844.0696498713224, + }, + }, + { + id: '8208', + data: { + label: 'BTC Korea', + x: -1120.632104085882, + y: -2679.291655895212, + z: 2930.24665026573, + }, + }, + { + id: '8209', + data: { + label: 'Mail Call', + x: 22.10334828386374, + y: -2329.0183824932938, + z: 4691.9189549047305, + }, + }, + { + id: 'node-0.4052802768502284', + data: { + x: -3827.8127032392777, + y: 697.4639698713513, + z: 1934.8984791125126, + }, + }, + { + id: '8210', + data: { + label: '', + x: 2062.955729606746, + y: 1900.657205774516, + z: -4938.210729130757, + }, + }, + { + id: ' Pincus & Co.', + data: { + label: 'EM Warburg', + x: -2284.688716008296, + y: -1381.845922760035, + z: -4093.118247848744, + }, + }, + { + id: '8212', + data: { + label: 'NET-tel Communications', + x: -1274.0464513593263, + y: 2931.0233848623498, + z: -246.63608181392416, + }, + }, + { + id: '8213', + data: { + label: 'OneLink Communications', + x: 760.5376361210397, + y: -1019.752753877171, + z: 5354.878678516834, + }, + }, + { + id: '8214', + data: { + label: 'Cayman Systems', + x: -2988.471109714482, + y: -315.0909080627941, + z: -2566.7326976223953, + }, + }, + { + id: '8217', + data: { + label: 'ATC Teleports', + x: 1961.821395867554, + y: 144.563795850924, + z: 5492.925673000624, + }, + }, + { + id: '8218', + data: { + label: 'Quentra Networks', + x: 4337.656077877742, + y: -1543.3577392186335, + z: 3990.1900801567385, + }, + }, + { + id: '8219', + data: { + label: 'WaveSplitter Technologies', + x: 501.129735826434, + y: 2622.5431154183543, + z: -4910.768025387444, + }, + }, + { + id: '8334', + data: { + label: 'Millet Software', + x: 5742.789263342111, + y: 1674.5201230966404, + z: 1610.2989477940307, + }, + }, + { + id: '8335', + data: { + label: 'Outpost Network', + x: 5566.555213138572, + y: 1946.5278719474952, + z: 1508.5201719247475, + }, + }, + { + id: '8336', + data: { + label: 'Saraide', + x: -2055.903405641505, + y: 4947.235396924857, + z: -238.02988415628164, + }, + }, + { + id: '8337', + data: { + label: 'TDLI.com', + x: 5859.300865571352, + y: 1745.026403122236, + z: 1126.9877505738675, + }, + }, + { + id: '8338', + data: { + label: 'Outpost', + x: 294.62289771548615, + y: 5032.42536859852, + z: 3410.8072670593283, + }, + }, + { + id: '8339', + data: { + label: 'Intermedia', + x: 6352.008175365091, + y: 1903.5701176616305, + z: -3161.502307231026, + }, + }, + { + id: '8340', + data: { + label: 'iPIX', + x: 1685.9141163370864, + y: -588.0271290073417, + z: 2993.153088833298, + }, + }, + { + id: '8341', + data: { + label: 'Lacerte', + x: 746.5233605378843, + y: -1870.2314314594678, + z: 684.1610169101805, + }, + }, + { + id: '8342', + data: { + label: 'Philips Optoelectronics B.V.', + x: -1704.950978702835, + y: 3473.7547814351774, + z: 113.41401754019097, + }, + }, + { + id: '8343', + data: { + label: 'Dragon Systems', + x: 3391.546041184018, + y: 389.4157924227533, + z: -3361.66508049886, + }, + }, + { + id: '8344', + data: { + label: 'OmniMed Transcription', + x: 3096.3575894708574, + y: 93.32150158498675, + z: -3452.642767810445, + }, + }, + { + id: '8345', + data: { + label: 'Linguistic Technologies', + x: 3201.5077176383797, + y: 292.0257304229401, + z: -3522.393360270134, + }, + }, + { + id: '8346', + data: { + label: 'Navio Communications', + x: 2631.495013786795, + y: 1829.6345159638622, + z: 5554.581705576961, + }, + }, + { + id: '8347', + data: { + label: 'Video Rentals', + x: 1368.824226076252, + y: -1656.8361232989284, + z: -740.7417243666823, + }, + }, + { + id: '8348', + data: { + label: 'A.F. Associates', + x: 1087.647829562442, + y: -1611.9338741592337, + z: -411.63099648706395, + }, + }, + { + id: '8349', + data: { + label: 'Triumph Communications Group', + x: 1268.4837593707882, + y: -1774.608192234491, + z: -522.3482948718744, + }, + }, + { + id: '8350', + data: { + label: 'SounDelux', + x: 1117.7152629451941, + y: -1460.3071343848837, + z: -624.5131042683553, + }, + }, + { + id: '8351', + data: { + label: 'Soho Group', + x: 1590.090421667929, + y: -1515.2016050227433, + z: -830.4825542647128, + }, + }, + { + id: '8352', + data: { + label: 'Four Media', + x: 1723.901375103091, + y: -860.159821543549, + z: -53.57912636138081, + }, + }, + { + id: '8353', + data: { + label: 'TCI Music', + x: 1946.716307257794, + y: -445.21380933420164, + z: -107.07698481365095, + }, + }, + { + id: '8354', + data: { + label: 'Teleport', + x: 2306.416816538724, + y: -4647.052130268143, + z: 3232.9572276047224, + }, + }, + { + id: '8355', + data: { + label: '4MC', + x: 1531.9319882849104, + y: -974.989714124965, + z: 372.17066512125047, + }, + }, + { + id: '8356', + data: { + label: 'The Todd-AO', + x: -1862.5612440819762, + y: 4243.118466181015, + z: -2470.373393634129, + }, + }, + { + id: '8357', + data: { + label: 'Ascent Entertainment Group', + x: 679.2309892718948, + y: 1999.0922338964858, + z: -4631.184558685319, + }, + }, + { + id: '8358', + data: { + label: 'DataPath Systems', + x: 3532.4645566558906, + y: -4454.2148536762315, + z: 2393.470396852429, + }, + }, + { + id: '8359', + data: { + label: 'ZSP', + x: 3053.117598989267, + y: -4683.292533460558, + z: 2848.755981937216, + }, + }, + { + id: '8360', + data: { + label: 'Intraserver Technology', + x: 3215.7772799851464, + y: -4110.117046107985, + z: 2509.2377763384075, + }, + }, + { + id: '8361', + data: { + label: 'ParaVoice Technologies', + x: 2855.443436283461, + y: -4291.304512240302, + z: 2707.833773164472, + }, + }, + { + id: '8362', + data: { + label: 'Syntax Systems', + x: 3420.5893250295076, + y: -4368.037095275443, + z: 2729.0702752638163, + }, + }, + { + id: '8363', + data: { + label: 'Creative Design Solutions', + x: 4063.773460604396, + y: -3191.326990254862, + z: 1759.904790075405, + }, + }, + { + id: '8364', + data: { + label: 'Texas Monthly', + x: 2759.1237579279577, + y: -2029.8519561962062, + z: -3470.1107393402117, + }, + }, + { + id: '8365', + data: { + label: 'Metamor', + x: 593.4277518041168, + y: -159.717170943598, + z: 5338.133713139113, + }, + }, + { + id: '8366', + data: { + label: 'Sage IT Partners', + x: 1687.1460413839047, + y: -2170.912284616102, + z: 3881.289686408451, + }, + }, + { + id: '8367', + data: { + label: 'Orion Film Classics', + x: 2265.5958980229398, + y: 2267.5199809304872, + z: 3504.428356827967, + }, + }, + { + id: '8368', + data: { + label: 'Micron Computer', + x: 3445.0822443269403, + y: 1271.103736645931, + z: -3261.5047215594514, + }, + }, + { + id: '8369', + data: { + label: 'Micron Custom Manufacturing Services', + x: 3387.757613802319, + y: 1303.4486431106782, + z: -3613.2925435195652, + }, + }, + { + id: '8370', + data: { + label: 'ZEOS International', + x: 3146.334531383672, + y: 1242.0155455222573, + z: -3807.436497148331, + }, + }, + { + id: '8371', + data: { + label: 'Steck-Vaughn Publishing', + x: 5595.924489615129, + y: -389.1428975677595, + z: -2421.7593333742097, + }, + }, + { + id: '8372', + data: { + label: 'Associative Computers', + x: 4748.589797099497, + y: 3236.498832218712, + z: 3203.3060067215374, + }, + }, + { + id: '8373', + data: { + label: 'Magic', + x: -4259.171595013741, + y: 1100.422319400856, + z: 771.5194121462143, + }, + }, + { + id: '8374', + data: { + label: 'CyberMedia', + x: -3904.5916806496994, + y: 962.7612107130531, + z: 313.37710364573365, + }, + }, + { + id: '8375', + data: { + label: 'Compusul', + x: -4080.6711066026137, + y: 1187.46545885532, + z: 529.335714961076, + }, + }, + { + id: ' Networks', + data: { + label: 'Cinco', + x: -1493.7996878666181, + y: 2549.005823697021, + z: 4356.081214282433, + }, + }, + { + id: '8377', + data: { + label: '3DV Technology', + x: -3833.5688273570404, + y: 700.4691695538477, + z: 703.0051300825108, + }, + }, + { + id: '8378', + data: { + label: 'QA Information Security Holding AB', + x: -4155.643604978958, + y: 867.7753947856594, + z: 876.6560798926075, + }, + }, + { + id: '8379', + data: { + label: 'Anyware Seguridad Informatica S.A.', + x: -4312.6139568318395, + y: 1129.4393173113735, + z: 322.8235563843865, + }, + }, + { + id: '8380', + data: { + label: 'Paradigm', + x: -4119.2851866280125, + y: 511.9440988769237, + z: 172.56671427967723, + }, + }, + { + id: '8381', + data: { + label: 'Newhouse Telecom Holdings', + x: 2652.085386929765, + y: -113.95761132636592, + z: 2266.9761756247863, + }, + }, + { + id: '8382', + data: { + label: 'Nextel', + x: -2422.406459176563, + y: -3771.0455251082208, + z: -358.834752636486, + }, + }, + { + id: '8383', + data: { + label: 'OneComm', + x: 2015.7601446254405, + y: -1178.436191153719, + z: 1849.9993475657518, + }, + }, + { + id: '8384', + data: { + label: 'Dial Page', + x: 2153.809807310851, + y: -1364.5382457680448, + z: 1739.1310700281588, + }, + }, + { + id: '8385', + data: { + label: 'Saber Communications', + x: 2296.6182606596976, + y: -1169.4631488189814, + z: 1891.1524534693754, + }, + }, + { + id: '8386', + data: { + label: 'Diamond Cable', + x: -99.22700887128892, + y: -3323.156614832561, + z: 1682.1758643987068, + }, + }, + { + id: '8387', + data: { + label: 'NTL (Triangle)', + x: 102.84498504802808, + y: -3598.2474067249727, + z: 2077.9767369353, + }, + }, + { + id: '8388', + data: { + label: 'Workplace Technologies plc', + x: 145.04555400635766, + y: -3863.2826963833068, + z: 1807.0805095503845, + }, + }, + { + id: '8389', + data: { + label: 'Cablelink', + x: -69.48998220548472, + y: -3637.16799356944, + z: 1824.641707102419, + }, + }, + { + id: '8390', + data: { + label: 'Comcast UK Cable Partners', + x: -70.74128735336649, + y: -3632.271881708255, + z: 2473.1778189533525, + }, + }, + { + id: '8391', + data: { + label: 'AetherWorks', + x: -603.1087373992976, + y: -1672.7409231383353, + z: -4658.655207970774, + }, + }, + { + id: '8392', + data: { + label: 'ODEUM Microsystems', + x: -1190.2556840149296, + y: 3113.802999067295, + z: -4099.995964731745, + }, + }, + { + id: '8393', + data: { + label: 'Xerographic Laser Images', + x: 3935.3125091371594, + y: 911.645027089559, + z: -3200.640383470769, + }, + }, + { + id: '8394', + data: { + label: 'Xionics', + x: 3786.532484844937, + y: 748.817834760325, + z: -3990.800192569421, + }, + }, + { + id: '8395', + data: { + label: 'Enterprise Technology Group', + x: 6474.173453386432, + y: -2203.980357924752, + z: -65.36330737546062, + }, + }, + { + id: '8396', + data: { + label: 'Spectradyne', + x: -706.0012735221826, + y: -297.8398481486184, + z: -4642.946445111166, + }, + }, + { + id: '8397', + data: { + label: 'Waypoint Software', + x: 1671.2833192016674, + y: -309.9798654049246, + z: -1998.2154343606987, + }, + }, + { + id: '8398', + data: { + label: 'Mission Critical Technologies', + x: 1570.3420387635908, + y: -46.3130951574602, + z: -1934.1048308683385, + }, + }, + { + id: '8399', + data: { + label: 'Treasury Services', + x: 6057.757715805534, + y: 3286.0900942698345, + z: 154.9806911352943, + }, + }, + { + id: '8400', + data: { + label: 'The Travel Channel', + x: 3253.4687929060638, + y: -2733.9578133247746, + z: -993.0086114270451, + }, + }, + { + id: '8401', + data: { + label: 'Barnhill Management', + x: 5644.125976206772, + y: -3430.6948961614553, + z: 925.0489171421646, + }, + }, + { + id: '8402', + data: { + label: 'F.Print UK', + x: 5313.627891847723, + y: -3330.1685370326077, + z: 861.2685691181371, + }, + }, + { + id: '8403', + data: { + label: 'Innovative Tech Systems', + x: 5747.7836815754645, + y: -3725.3317810499966, + z: 1135.367990084103, + }, + }, + { + id: '8404', + data: { + label: 'Loran Network Holding', + x: 4963.916850363485, + y: -3786.649268941871, + z: 1303.5846752185348, + }, + }, + { + id: '8405', + data: { + label: 'Telco Research', + x: 5420.185662853228, + y: -3594.8844629826626, + z: 705.9724197810577, + }, + }, + { + id: '8406', + data: { + label: 'Knowlix', + x: 5000.52181651464, + y: -3672.616734111979, + z: 872.2861008824441, + }, + }, + { + id: '8407', + data: { + label: 'SportsChannel Florida Associates', + x: 2041.809189754697, + y: 2416.9741562606673, + z: 1835.8014350464016, + }, + }, + { + id: '8408', + data: { + label: 'RF Microsystems', + x: -1933.527374901294, + y: 2354.98613458212, + z: 2322.8646010836824, + }, + }, + { + id: '8409', + data: { + label: 'Western Maine Cellular', + x: 4213.550765398724, + y: -393.4824491858116, + z: 5183.003346532662, + }, + }, + { + id: '8410', + data: { + label: 'Pacific Telesis Group', + x: -2852.6594294388424, + y: 1716.350546015509, + z: 1438.9784217564952, + }, + }, + { + id: '8411', + data: { + label: 'Comcast Cellular', + x: 3779.5525469795616, + y: -1910.1180760618317, + z: -1138.6582484264363, + }, + }, + { + id: '8412', + data: { + label: 'Cellular Communications', + x: 3379.4354942838363, + y: -1878.840015616792, + z: -1143.728933578158, + }, + }, + { + id: '8413', + data: { + label: 'Bell Canada', + x: 6909.973017728005, + y: 94.88935005370155, + z: 3237.1722576242614, + }, + }, + { + id: '8414', + data: { + label: 'Macmillan', + x: -795.8680790608385, + y: -799.0309402625306, + z: 1713.327706843436, + }, + }, + { + id: ' IA)', + data: { + label: 'KGAN-TV (Cedar Rapids', + x: 6189.433234971172, + y: -314.1112983034277, + z: -3637.2657499973743, + }, + }, + { + id: '8416', + data: { + label: 'WYZZ-TV', + x: 7027.519625324701, + y: -1518.1485958119092, + z: 862.5380938457506, + }, + }, + { + id: '8417', + data: { + label: 'WSTR-TV', + x: 797.8591831497803, + y: -5313.666004987291, + z: -945.3069457591605, + }, + }, + { + id: '8418', + data: { + label: 'WSMH-TV', + x: -751.7152664861243, + y: 4374.605850097751, + z: -3253.8374256615202, + }, + }, + { + id: '8419', + data: { + label: 'KSMO-TV', + x: 5581.947462178841, + y: 3798.7941675743145, + z: 3142.6167488809447, + }, + }, + { + id: '8420', + data: { + label: 'KUPN-TV', + x: -417.23820031549826, + y: 4039.9765133611386, + z: -1458.364426329443, + }, + }, + { + id: ' IL)', + data: { + label: 'WICS-TV (Springfield', + x: -4148.222637633797, + y: 217.15218922771948, + z: -452.02103517465224, + }, + }, + { + id: ' FL)', + data: { + label: 'WTWC-TV (Tallahassee', + x: 3532.408597369917, + y: -4540.420311531851, + z: -1061.9210335805603, + }, + }, + { + id: ' ME)', + data: { + label: 'WGME-TV (Portland', + x: -3978.569590597814, + y: -687.2265138040926, + z: -1122.8525378823213, + }, + }, + { + id: ' MA)', + data: { + label: 'WGGB-TV (Springfield', + x: 27.274452221091522, + y: 5829.169117340709, + z: 214.3229515748748, + }, + }, + { + id: '8427', + data: { + label: 'SourceSuite', + x: 5781.435564250398, + y: 3378.293191420949, + z: 465.3776727047708, + }, + }, + { + id: '8428', + data: { + label: 'BCH Holding', + x: 4081.7237016075724, + y: 2469.4312645748278, + z: -3176.880298927317, + }, + }, + { + id: '8429', + data: { + label: 'AXENT', + x: 4102.07674253588, + y: 1534.7871582528771, + z: -4432.022491810951, + }, + }, + { + id: '8430', + data: { + label: 'Binary Research', + x: 5561.413707610987, + y: 1382.0414876435939, + z: 3333.4952774379203, + }, + }, + { + id: '8431', + data: { + label: 'Quarterdeck', + x: 5601.727784202638, + y: 1976.00981903162, + z: 3226.3381602353406, + }, + }, + { + id: '8432', + data: { + label: 'URLabs', + x: 5419.108810338442, + y: 1692.682993625883, + z: 3200.1856533888904, + }, + }, + { + id: '8433', + data: { + label: '20/20 Software', + x: 5650.82109488736, + y: 1805.2322064816353, + z: 3486.212865634092, + }, + }, + { + id: '8434', + data: { + label: 'TCI', + x: -1023.7243285458998, + y: 2593.2467333750637, + z: -4052.6076427694425, + }, + }, + { + id: '8435', + data: { + label: 'Paradigm Music Entertainment', + x: 1813.1152390325408, + y: -540.5261564637788, + z: -600.9865707402055, + }, + }, + { + id: '8436', + data: { + label: 'The Box Worldwide', + x: 1907.9590838041452, + y: -321.56235154291, + z: -617.9622272784549, + }, + }, + { + id: '8437', + data: { + label: 'TeleCorp Wireless', + x: 1354.7033911221083, + y: -1347.755056985786, + z: 2691.9284440475276, + }, + }, + { + id: '8438', + data: { + label: 'Sovam Teleport', + x: 4250.517994225539, + y: -3170.835956742115, + z: 2525.2929990015473, + }, + }, + { + id: '8439', + data: { + label: 'TCM', + x: 3800.323017829015, + y: -3631.8091202873034, + z: 2699.226106360878, + }, + }, + { + id: '8440', + data: { + label: 'Telewest', + x: 6124.686301519412, + y: 1590.219901724888, + z: 3938.135252036657, + }, + }, + { + id: '8441', + data: { + label: 'Flextech', + x: -3516.275317270726, + y: -129.84166603896216, + z: -1982.5246361809386, + }, + }, + { + id: '8442', + data: { + label: 'Coherent', + x: -392.83693732118854, + y: -2287.213029016798, + z: -4531.29610354323, + }, + }, + { + id: '8443', + data: { + label: 'The Charles Rosner Bronfman Discretionary Trust', + x: 4669.707766660931, + y: 2962.087158838993, + z: -216.88356799441016, + }, + }, + { + id: '8444', + data: { + label: 'Ticketmaster Golf', + x: 3008.4845493578046, + y: -683.7369284059373, + z: -1763.5920742189758, + }, + }, + { + id: '8445', + data: { + label: 'The Ticket Shop', + x: 7417.250556260345, + y: 1636.829742749541, + z: -2011.5985503520653, + }, + }, + { + id: '8446', + data: { + label: 'Tennessee Performing Arts Center Management', + x: 3154.8316070644837, + y: -551.916660147838, + z: -1572.6174756285677, + }, + }, + { + id: '8447', + data: { + label: 'Ticketmaster Ireland', + x: 3301.948668806591, + y: -855.1215678301509, + z: -1683.513378662239, + }, + }, + { + id: '8448', + data: { + label: 'Synchro Systems', + x: 3280.427135258901, + y: -1249.5193064849716, + z: -1561.0617204132056, + }, + }, + { + id: '8449', + data: { + label: 'TM-Europe Group', + x: 2850.037044444608, + y: -609.5145663923878, + z: -1589.79009680576, + }, + }, + { + id: '8450', + data: { + label: 'Ticketmaster-Northwest', + x: 2964.908685101366, + y: -1145.0772168218625, + z: -1686.09452296928, + }, + }, + { + id: '8451', + data: { + label: 'Web Media Ventures', + x: 2710.2683512978997, + y: -691.6987252822095, + z: -1021.8644493139054, + }, + }, + { + id: '8452', + data: { + label: 'Ticketmaster-Southeast', + x: 2644.251752949062, + y: -847.2059049867087, + z: -1579.0823873407514, + }, + }, + { + id: '8453', + data: { + label: 'Ticketmaster-Australia', + x: 3003.263441772554, + y: -940.4797606014091, + z: -1827.2859039247555, + }, + }, + { + id: '8454', + data: { + label: 'Ticketmaster-Mexico', + x: 3387.3695618278052, + y: -1025.177692246241, + z: -1591.3865937383014, + }, + }, + { + id: '8455', + data: { + label: 'Ticketmaster-UK', + x: 2711.2260107071725, + y: -1112.0905602254036, + z: -1529.448357711119, + }, + }, + { + id: '8456', + data: { + label: 'Southern Satellite', + x: 3171.0284341582314, + y: -593.574151491753, + z: 1818.970521150816, + }, + }, + { + id: '8457', + data: { + label: 'GST Telecommunications', + x: 9.958657562470602, + y: 3805.8794794716514, + z: -4076.8257163766716, + }, + }, + { + id: '8458', + data: { + label: 'MetroComm AxS', + x: 2683.107509458995, + y: -397.15982441557964, + z: 2297.584747269786, + }, + }, + { + id: '8459', + data: { + label: 'Sound One', + x: 1334.0415623574281, + y: -1352.3377172682283, + z: -822.2589238601212, + }, + }, + { + id: '8460', + data: { + label: 'Vital Software', + x: 2035.5178363101284, + y: 37.7001833075933, + z: 3738.2232977154767, + }, + }, + { + id: '8461', + data: { + label: 'United Microelectronics', + x: 495.70085697195685, + y: -3257.4606055446143, + z: -4032.831188881384, + }, + }, + { + id: '8462', + data: { + label: 'United Integrated Circuits', + x: 489.43652038963, + y: -3538.664400355031, + z: -4310.279938121436, + }, + }, + { + id: '8463', + data: { + label: 'United Pan-Europe Communications', + x: 2179.9623749672082, + y: -4252.102820422251, + z: 3396.4972897183357, + }, + }, + { + id: '8464', + data: { + label: 'Videopole', + x: 2328.730564754384, + y: -2309.497299124807, + z: 675.8146903049729, + }, + }, + { + id: '8465', + data: { + label: 'United Video Satellite Group', + x: 3618.7656310471853, + y: -2092.4982586268775, + z: 5089.528558864115, + }, + }, + { + id: '8466', + data: { + label: 'Netlink USA', + x: 4412.12470161325, + y: 3010.897756145995, + z: -4576.528460951308, + }, + }, + { + id: '8467', + data: { + label: 'VTR', + x: 2197.160527245179, + y: -2330.7954485005675, + z: 458.1517294954863, + }, + }, + { + id: '8468', + data: { + label: 'UTH', + x: 1636.199612681157, + y: -2055.0340811408796, + z: 1038.009881623457, + }, + }, + { + id: '8469', + data: { + label: 'UPC Slovensko', + x: 1530.4406838431712, + y: -2116.550083093014, + z: 830.9554501956602, + }, + }, + { + id: '8470', + data: { + label: 'Tebecai', + x: 1642.341589327335, + y: -2410.885030798689, + z: 723.8539893649524, + }, + }, + { + id: '8471', + data: { + label: 'Stjarn', + x: 1553.3174474695347, + y: -2209.736850527736, + z: 637.5463237813116, + }, + }, + { + id: '8472', + data: { + label: 'RCF', + x: 2002.8339704263087, + y: -2491.009726593736, + z: 907.8800411339103, + }, + }, + { + id: '8473', + data: { + label: 'Monor', + x: 2048.758011248538, + y: -2352.236979495239, + z: 1092.863232990668, + }, + }, + { + id: '8474', + data: { + label: 'Kabel Plus', + x: 2222.856601972978, + y: -2417.115198825285, + z: 889.5654644977886, + }, + }, + { + id: '8475', + data: { + label: 'K&T Group', + x: 1622.776442078874, + y: -2291.999198817878, + z: 951.6950585389668, + }, + }, + { + id: '8476', + data: { + label: 'Intercomm', + x: 1681.2127961216631, + y: -2318.5975117951843, + z: 545.565401829947, + }, + }, + { + id: '8477', + data: { + label: 'El Tele Ostfold', + x: 2150.5051486741345, + y: -2475.265215368993, + z: 662.4291004997478, + }, + }, + { + id: '8478', + data: { + label: 'A2000', + x: 2259.1612421050213, + y: -2240.3351802203138, + z: 1045.539348587256, + }, + }, + { + id: '8479', + data: { + label: '@Entertainment', + x: 1818.4777348996404, + y: -2368.287755973607, + z: 1034.8629054809373, + }, + }, + { + id: '8480', + data: { + label: 'GelreVision', + x: 1844.5269813746559, + y: -2485.7453627588725, + z: 638.5308945063997, + }, + }, + { + id: '8481', + data: { + label: 'Pramer S.C.A.', + x: -4141.418462686454, + y: 965.0153456318463, + z: -1224.4513154420144, + }, + }, + { + id: '8482', + data: { + label: 'Crown Media Holdings', + x: 1881.472157601629, + y: -2147.631536276291, + z: 1138.5654474320518, + }, + }, + { + id: '8483', + data: { + label: 'PrimaCom', + x: 2103.1937074972416, + y: -2085.908821456157, + z: 1185.1809111704463, + }, + }, + { + id: '8484', + data: { + label: 'UVSG', + x: 921.0524603763955, + y: 914.2868736690534, + z: 872.1261019482349, + }, + }, + { + id: '8485', + data: { + label: 'Metastream', + x: 3202.676286426334, + y: 585.125288448549, + z: -4212.059146372968, + }, + }, + { + id: '8486', + data: { + label: 'Aerial Communications', + x: 2901.764015058052, + y: -2194.1309474735194, + z: 1377.5370445058609, + }, + }, + { + id: '8487', + data: { + label: 'iMandi', + x: 4375.810017341117, + y: 1667.8026973980436, + z: 737.979845208738, + }, + }, + { + id: '8488', + data: { + label: 'WWVR-FM', + x: -2599.470846907826, + y: 2648.403458678563, + z: -2731.426375419031, + }, + }, + { + id: '8489', + data: { + label: 'WFTX-TV', + x: 4822.861933466376, + y: 4073.714883931737, + z: -3130.9196791270083, + }, + }, + { + id: '8490', + data: { + label: 'WTHI-FM and AM', + x: 2000.8498275563697, + y: 1922.3701133457123, + z: 5516.569308672713, + }, + }, + { + id: '8491', + data: { + label: 'WTHI-TV', + x: -3566.6378743183323, + y: -210.50258999805106, + z: -2452.6648894979276, + }, + }, + { + id: '8492', + data: { + label: 'KTFM-FM', + x: -637.0716718622035, + y: -1891.9491568139608, + z: -273.8248911198202, + }, + }, + { + id: '8493', + data: { + label: 'KTSA-AM', + x: -563.0536760358166, + y: -1885.438132111296, + z: 95.81204089573876, + }, + }, + { + id: '8494', + data: { + label: 'MFS Communications', + x: -476.53186789662794, + y: -1370.7892025659169, + z: 5365.12204443743, + }, + }, + { + id: '8495', + data: { + label: 'Xenon 3', + x: 5186.397424069369, + y: -352.84045847400574, + z: -766.24986215789, + }, + }, + { + id: '8496', + data: { + label: 'Global Marine Systems', + x: 2237.7105852635127, + y: -2664.240958724219, + z: 1961.243974329578, + }, + }, + { + id: '8497', + data: { + label: 'Racal Telecom', + x: 2189.9145409221483, + y: -2409.905050414334, + z: 2163.606393835736, + }, + }, + ], + edges: [ + { id: 'edge-0.17155881424661512', source: '1', target: '37', data: {} }, + { id: 'edge-0.95640038570537', source: '1', target: '38', data: {} }, + { id: 'edge-0.21101914775652286', source: '1', target: '39', data: {} }, + { id: 'edge-0.30774266091548297', source: '1', target: '41', data: {} }, + { id: 'edge-0.08671980304297033', source: '1', target: '42', data: {} }, + { id: 'edge-0.4895692047125091', source: '1', target: '43', data: {} }, + { id: 'edge-0.9672314659608361', source: '1', target: '45', data: {} }, + { id: 'edge-0.7301755175660551', source: '1', target: '46', data: {} }, + { id: 'edge-0.8799860087280433', source: '46', target: '47', data: {} }, + { id: 'edge-0.7751695652762429', source: '1', target: '49', data: {} }, + { id: 'edge-0.44259850237257137', source: '1', target: '50', data: {} }, + { id: 'edge-0.30869197483404687', source: '1', target: '52', data: {} }, + { id: 'edge-0.8479825143535011', source: '1', target: '53', data: {} }, + { id: 'edge-0.058968496064680576', source: '53', target: '54', data: {} }, + { id: 'edge-0.15491985606301806', source: '53', target: '55', data: {} }, + { id: 'edge-0.3136243191436736', source: '53', target: '56', data: {} }, + { id: 'edge-0.09066765049050352', source: '53', target: '57', data: {} }, + { id: 'edge-0.21902376386699585', source: '53', target: '58', data: {} }, + { id: 'edge-0.24715734290962743', source: '53', target: '59', data: {} }, + { id: 'edge-0.9945489139327501', source: '53', target: '60', data: {} }, + { id: 'edge-0.7068504640687074', source: '53', target: '61', data: {} }, + { id: 'edge-0.9034072967105071', source: '53', target: '62', data: {} }, + { id: 'edge-0.21523837962081838', source: '1', target: '63', data: {} }, + { id: 'edge-0.23471080339008954', source: '1', target: '64', data: {} }, + { id: 'edge-0.030095583168989748', source: '64', target: '65', data: {} }, + { id: 'edge-0.8873222882499023', source: '64', target: '66', data: {} }, + { id: 'edge-0.43696839143841815', source: '64', target: '67', data: {} }, + { id: 'edge-0.9096975792691782', source: '64', target: '68', data: {} }, + { id: 'edge-0.5564178271706368', source: '64', target: '69', data: {} }, + { id: 'edge-0.7649313980986034', source: '64', target: '70', data: {} }, + { id: 'edge-0.3028396368703008', source: '64', target: '71', data: {} }, + { id: 'edge-0.006056375730192132', source: '64', target: '73', data: {} }, + { id: 'edge-0.42037369664414337', source: '64', target: '74', data: {} }, + { id: 'edge-0.7829297345585147', source: '64', target: '75', data: {} }, + { id: 'edge-0.729149472598372', source: '64', target: '76', data: {} }, + { id: 'edge-0.3135012548995666', source: '64', target: '77', data: {} }, + { id: 'edge-0.1880720680585215', source: '64', target: '78', data: {} }, + { id: 'edge-0.9239298761285171', source: '64', target: '79', data: {} }, + { id: 'edge-0.8772959989542011', source: '64', target: '80', data: {} }, + { id: 'edge-0.17022647313412942', source: '64', target: '81', data: {} }, + { id: 'edge-0.31152492983882984', source: '64', target: '82', data: {} }, + { id: 'edge-0.05043130029444609', source: '64', target: '83', data: {} }, + { id: 'edge-0.055132305809925786', source: '64', target: '84', data: {} }, + { id: 'edge-0.11852432630924903', source: '64', target: '85', data: {} }, + { id: 'edge-0.2506945507615663', source: '85', target: '86', data: {} }, + { id: 'edge-0.7832025988132088', source: '64', target: '3864', data: {} }, + { id: 'edge-0.5843330760343239', source: '64', target: '87', data: {} }, + { id: 'edge-0.29611612397871956', source: '1', target: '88', data: {} }, + { id: 'edge-0.009770973048322862', source: '88', target: '89', data: {} }, + { id: 'edge-0.745915528260247', source: '88', target: '90', data: {} }, + { id: 'edge-0.8114173951568846', source: '88', target: '72', data: {} }, + { id: 'edge-0.9816866563682292', source: '88', target: '91', data: {} }, + { id: 'edge-0.1792067406181097', source: '88', target: '3870', data: {} }, + { id: 'edge-0.8448729584458503', source: '88', target: '92', data: {} }, + { id: 'edge-0.26924093871893473', source: '88', target: '93', data: {} }, + { id: 'edge-0.9288067153600668', source: '88', target: '94', data: {} }, + { id: 'edge-0.6325209181633171', source: '88', target: '95', data: {} }, + { id: 'edge-0.8302887196901592', source: '88', target: '96', data: {} }, + { id: 'edge-0.7254756450890214', source: '88', target: '97', data: {} }, + { id: 'edge-0.35491171103467734', source: '88', target: '98', data: {} }, + { id: 'edge-0.17624900419728662', source: '88', target: '99', data: {} }, + { id: 'edge-0.5560091704019208', source: '88', target: '100', data: {} }, + { id: 'edge-0.5857363002046121', source: '1', target: '177', data: {} }, + { id: 'edge-0.24331690647207527', source: '1', target: '102', data: {} }, + { id: 'edge-0.09181769477938828', source: '1', target: '103', data: {} }, + { id: 'edge-0.7946820043152911', source: '1', target: '104', data: {} }, + { id: 'edge-0.774972331982799', source: '1', target: '3850', data: {} }, + { + id: 'edge-0.012015110827144238', + source: '3850', + target: '3851', + data: {}, + }, + { id: 'edge-0.8468365807744977', source: '3850', target: '3852', data: {} }, + { id: 'edge-0.8385098043106458', source: '3850', target: '3853', data: {} }, + { id: 'edge-0.8193024247286089', source: '3850', target: '3854', data: {} }, + { + id: 'edge-0.11004914120977216', + source: '3850', + target: '3855', + data: {}, + }, + { + id: 'edge-0.08935473640752134', + source: '3850', + target: '3856', + data: {}, + }, + { id: 'edge-0.7179314779232548', source: '3850', target: '3857', data: {} }, + { id: 'edge-0.8916757429563296', source: '3850', target: '3858', data: {} }, + { id: 'edge-0.9892893651499386', source: '3850', target: '3859', data: {} }, + { id: 'edge-0.004341255921213927', source: '1', target: '3860', data: {} }, + { + id: 'edge-0.16217527811156818', + source: '3860', + target: '3849', + data: {}, + }, + { id: 'edge-0.7091334597517038', source: '3860', target: '103', data: {} }, + { id: 'edge-0.8395682921985224', source: '3860', target: '3862', data: {} }, + { id: 'edge-0.193086185510982', source: '3860', target: '3863', data: {} }, + { id: 'edge-0.29020424829157765', source: '1', target: '3865', data: {} }, + { id: 'edge-0.53518533061482', source: '1', target: '3867', data: {} }, + { id: 'edge-0.7232511613650117', source: '1', target: '3868', data: {} }, + { id: 'edge-0.9103269396221989', source: '1', target: '3869', data: {} }, + { id: 'edge-0.9391594679350004', source: '1', target: '3871', data: {} }, + { id: 'edge-0.8092682167404193', source: '3872', target: '107', data: {} }, + { id: 'edge-0.6986979905581334', source: '3872', target: '108', data: {} }, + { id: 'edge-0.09889714635301528', source: '3872', target: '109', data: {} }, + { id: 'edge-0.6300966789765141', source: '3872', target: '110', data: {} }, + { id: 'edge-0.6884293594119051', source: '3872', target: '111', data: {} }, + { id: 'edge-0.7246305537183257', source: '3872', target: '112', data: {} }, + { id: 'edge-0.31957880800909066', source: '3872', target: '113', data: {} }, + { id: 'edge-0.5459112392530518', source: '3872', target: '114', data: {} }, + { id: 'edge-0.2552195318735384', source: '3872', target: '115', data: {} }, + { id: 'edge-0.3804989661998943', source: '3872', target: '116', data: {} }, + { + id: 'edge-0.055972478545912585', + source: '3872', + target: '117', + data: {}, + }, + { id: 'edge-0.4527830019759922', source: '3872', target: '118', data: {} }, + { id: 'edge-0.9302962513656574', source: '3872', target: '119', data: {} }, + { id: 'edge-0.9690816876745958', source: '3872', target: '120', data: {} }, + { id: 'edge-0.555693458976293', source: '3872', target: '121', data: {} }, + { id: 'edge-0.9842007819697749', source: '3872', target: '122', data: {} }, + { id: 'edge-0.7103635968799245', source: '3872', target: '123', data: {} }, + { id: 'edge-0.7718111927310551', source: '3872', target: '3875', data: {} }, + { id: 'edge-0.3437332099744508', source: '3872', target: '125', data: {} }, + { id: 'edge-0.9680544611650155', source: '3872', target: '3876', data: {} }, + { id: 'edge-0.5810472017972099', source: '3872', target: '127', data: {} }, + { id: 'edge-0.8322232618835155', source: '3872', target: '128', data: {} }, + { id: 'edge-0.53716358923835', source: '3872', target: '3877', data: {} }, + { id: 'edge-0.9381346314451218', source: '3872', target: '3878', data: {} }, + { id: 'edge-0.7740521130661004', source: '3872', target: '129', data: {} }, + { id: 'edge-0.3796924758686211', source: '129', target: '130', data: {} }, + { + id: 'edge-0.00008960399700463917', + source: '129', + target: '131', + data: {}, + }, + { id: 'edge-0.10973816976483519', source: '3872', target: '132', data: {} }, + { + id: 'edge-0.023077142414873686', + source: '3872', + target: '133', + data: {}, + }, + { id: 'edge-0.7756229487433439', source: '3872', target: '134', data: {} }, + { id: 'edge-0.7275769082575676', source: '3872', target: '139', data: {} }, + { id: 'edge-0.4816956555534164', source: '139', target: '140', data: {} }, + { id: 'edge-0.8610944884762994', source: '139', target: '141', data: {} }, + { id: 'edge-0.5816258433149382', source: '139', target: '142', data: {} }, + { id: 'edge-0.20439511387444598', source: '3872', target: '143', data: {} }, + { id: 'edge-0.5871536987719326', source: '4', target: '3879', data: {} }, + { id: 'edge-0.9855184994342565', source: '4', target: '3880', data: {} }, + { id: 'edge-0.8534705268547962', source: '4', target: '3881', data: {} }, + { id: 'edge-0.03815688935593653', source: '4', target: '3882', data: {} }, + { id: 'edge-0.90346314988091', source: '4', target: '3884', data: {} }, + { id: 'edge-0.7408963829055886', source: '4', target: '3885', data: {} }, + { id: 'edge-0.19536857720549428', source: '4', target: '3886', data: {} }, + { id: 'edge-0.22004708046839205', source: '4', target: '3887', data: {} }, + { id: 'edge-0.46869455120516657', source: '4', target: '3888', data: {} }, + { id: 'edge-0.6222159643092531', source: '4', target: '3889', data: {} }, + { id: 'edge-0.9335184126661205', source: '4', target: '3890', data: {} }, + { id: 'edge-0.3111658385500049', source: '4', target: '170', data: {} }, + { id: 'edge-0.23388583704242172', source: '4', target: '3891', data: {} }, + { id: 'edge-0.194510015535712', source: '4', target: '1297', data: {} }, + { id: 'edge-0.8174980708046251', source: '4', target: '164', data: {} }, + { id: 'edge-0.09518563413167214', source: '4', target: '167', data: {} }, + { id: 'edge-0.5855043367380435', source: '4', target: '3892', data: {} }, + { id: 'edge-0.5122861930158227', source: '170', target: '177', data: {} }, + { id: 'edge-0.8837113329141177', source: '171', target: '174', data: {} }, + { id: 'edge-0.0975735755154381', source: '171', target: '173', data: {} }, + { id: 'edge-0.8356046896264937', source: '171', target: '3893', data: {} }, + { id: 'edge-0.09772191386684681', source: '171', target: '3894', data: {} }, + { id: 'edge-0.9950524802950005', source: '170', target: '3951', data: {} }, + { id: 'edge-0.3761916793626279', source: '170', target: '175', data: {} }, + { id: 'edge-0.34634265599832403', source: '170', target: '3896', data: {} }, + { id: 'edge-0.31452469918323933', source: '170', target: '3897', data: {} }, + { id: 'edge-0.6790426550303441', source: '170', target: '220', data: {} }, + { id: 'edge-0.6689490480663216', source: '171', target: '3898', data: {} }, + { id: 'edge-0.5282027133176506', source: '171', target: '3899', data: {} }, + { id: 'edge-0.05454255713064482', source: '171', target: '3900', data: {} }, + { id: 'edge-0.1635245844121398', source: '171', target: '3901', data: {} }, + { id: 'edge-0.3731297830513818', source: '171', target: '3902', data: {} }, + { id: 'edge-0.8375715763304312', source: '170', target: '3903', data: {} }, + { id: 'edge-0.8879621525980044', source: '170', target: '238', data: {} }, + { id: 'edge-0.29499715508177204', source: '170', target: '239', data: {} }, + { id: 'edge-0.3498927286261142', source: '170', target: '246', data: {} }, + { id: 'edge-0.404005820620305', source: '170', target: '247', data: {} }, + { id: 'edge-0.7197290094305471', source: '170', target: '265', data: {} }, + { id: 'edge-0.36071640415186823', source: '170', target: '274', data: {} }, + { id: 'edge-0.540710619875773', source: '170', target: '280', data: {} }, + { id: 'edge-0.9191710043038099', source: '170', target: '281', data: {} }, + { id: 'edge-0.35982659330943845', source: '170', target: '282', data: {} }, + { id: 'edge-0.34858702795456775', source: '170', target: '176', data: {} }, + { id: 'edge-0.41334371871472775', source: '170', target: '329', data: {} }, + { id: 'edge-0.17677606534051415', source: '170', target: '332', data: {} }, + { id: 'edge-0.25030577393407794', source: '170', target: '330', data: {} }, + { id: 'edge-0.43290150329935195', source: '163', target: '334', data: {} }, + { id: 'edge-0.48372487215212234', source: '170', target: '337', data: {} }, + { id: 'edge-0.9112527352992272', source: '170', target: '331', data: {} }, + { id: 'edge-0.02457101123717842', source: '170', target: '3904', data: {} }, + { id: 'edge-0.4875574800488809', source: '170', target: '3905', data: {} }, + { id: 'edge-0.9514109534599007', source: '170', target: '3906', data: {} }, + { id: 'edge-0.16975183979166464', source: '170', target: '221', data: {} }, + { id: 'edge-0.5597212722986491', source: '170', target: '224', data: {} }, + { id: 'edge-0.49727974619750914', source: '170', target: '225', data: {} }, + { id: 'edge-0.08789442783036905', source: '170', target: '226', data: {} }, + { id: 'edge-0.6003969835550114', source: '170', target: '227', data: {} }, + { id: 'edge-0.05397075549059993', source: '170', target: '228', data: {} }, + { id: 'edge-0.6132168809874141', source: '170', target: '229', data: {} }, + { id: 'edge-0.23038371457536', source: '170', target: '230', data: {} }, + { id: 'edge-0.3370034621405982', source: '170', target: '231', data: {} }, + { id: 'edge-0.6860506251078069', source: '170', target: '232', data: {} }, + { id: 'edge-0.08748280234045591', source: '170', target: '233', data: {} }, + { id: 'edge-0.38911054765166164', source: '170', target: '234', data: {} }, + { id: 'edge-0.04247575958732197', source: '170', target: '235', data: {} }, + { id: 'edge-0.08317774349433948', source: '170', target: '236', data: {} }, + { id: 'edge-0.29964272078722876', source: '170', target: '237', data: {} }, + { id: 'edge-0.36239302402036855', source: '170', target: '240', data: {} }, + { id: 'edge-0.43877224630660017', source: '170', target: '241', data: {} }, + { id: 'edge-0.7380724625635204', source: '170', target: '242', data: {} }, + { id: 'edge-0.052026242921329624', source: '170', target: '244', data: {} }, + { id: 'edge-0.4445572742321835', source: '170', target: '245', data: {} }, + { id: 'edge-0.6139250148488336', source: '170', target: '195', data: {} }, + { id: 'edge-0.2954921309166769', source: '247', target: '248', data: {} }, + { id: 'edge-0.8185687097770575', source: '247', target: '249', data: {} }, + { id: 'edge-0.05741698509208448', source: '247', target: '250', data: {} }, + { id: 'edge-0.08066866341963785', source: '247', target: '251', data: {} }, + { id: 'edge-0.9101931988665535', source: '247', target: '252', data: {} }, + { id: 'edge-0.5756071130715146', source: '170', target: '253', data: {} }, + { id: 'edge-0.8034567497524943', source: '247', target: '254', data: {} }, + { id: 'edge-0.6823229716850612', source: '247', target: '255', data: {} }, + { id: 'edge-0.06093602469321957', source: '247', target: '256', data: {} }, + { id: 'edge-0.08276542463405279', source: '247', target: '257', data: {} }, + { id: 'edge-0.1925277914271013', source: '247', target: '258', data: {} }, + { id: 'edge-0.4477171110413112', source: '247', target: '259', data: {} }, + { id: 'edge-0.700108521120405', source: '247', target: '260', data: {} }, + { id: 'edge-0.1292685124499573', source: '247', target: '261', data: {} }, + { id: 'edge-0.3525352217584772', source: '247', target: '262', data: {} }, + { id: 'edge-0.49785971844451526', source: '247', target: '263', data: {} }, + { id: 'edge-0.9032464932956303', source: '170', target: '264', data: {} }, + { id: 'edge-0.28491423312694186', source: '170', target: '23', data: {} }, + { id: 'edge-0.4683790021462242', source: '265', target: '266', data: {} }, + { id: 'edge-0.8045358596748171', source: '265', target: '267', data: {} }, + { id: 'edge-0.1884122538216706', source: '265', target: '268', data: {} }, + { id: 'edge-0.02277660001908477', source: '265', target: '269', data: {} }, + { id: 'edge-0.36931317084999726', source: '265', target: '270', data: {} }, + { id: 'edge-0.7236275534968069', source: '265', target: '271', data: {} }, + { id: 'edge-0.9012001757538775', source: '265', target: '272', data: {} }, + { id: 'edge-0.21954100193637016', source: '265', target: '273', data: {} }, + { id: 'edge-0.49265153733880673', source: '170', target: '291', data: {} }, + { id: 'edge-0.4171065301250312', source: '170', target: '297', data: {} }, + { id: 'edge-0.5729954868853069', source: '32', target: '298', data: {} }, + { id: 'edge-0.9186796039689495', source: '4', target: '309', data: {} }, + { id: 'edge-0.44497394953338976', source: '35', target: '310', data: {} }, + { id: 'edge-0.35355839145954904', source: '4', target: '310', data: {} }, + { id: 'edge-0.007407446651060745', source: '4', target: '311', data: {} }, + { id: 'edge-0.7422271843043806', source: '4', target: '312', data: {} }, + { id: 'edge-0.5865211681265383', source: '4', target: '313', data: {} }, + { id: 'edge-0.9410677965736063', source: '4', target: '314', data: {} }, + { id: 'edge-0.09731823119814642', source: '4', target: '315', data: {} }, + { id: 'edge-0.5827514516118959', source: '4', target: '316', data: {} }, + { id: 'edge-0.2246865873524062', source: '4', target: '319', data: {} }, + { id: 'edge-0.5147907954583357', source: '4', target: '320', data: {} }, + { id: 'edge-0.9300420677086165', source: '4', target: '321', data: {} }, + { id: 'edge-0.4170601401022662', source: '4', target: '322', data: {} }, + { id: 'edge-0.2591229409570939', source: '4', target: '323', data: {} }, + { id: 'edge-0.04051269721557271', source: '4', target: '324', data: {} }, + { id: 'edge-0.5189627170629074', source: '4', target: '325', data: {} }, + { id: 'edge-0.07273395178209441', source: '4', target: '327', data: {} }, + { id: 'edge-0.2990381544396157', source: '170', target: '275', data: {} }, + { id: 'edge-0.56826815726771', source: '8', target: '275', data: {} }, + { id: 'edge-0.47916467830715503', source: '275', target: '276', data: {} }, + { id: 'edge-0.8846678778816197', source: '275', target: '277', data: {} }, + { id: 'edge-0.26283155177168793', source: '275', target: '278', data: {} }, + { id: 'edge-0.6872655221987372', source: '275', target: '279', data: {} }, + { id: 'edge-0.29876597261287396', source: '4172', target: '32', data: {} }, + { id: 'edge-0.9561835635746307', source: '32', target: '300', data: {} }, + { id: 'edge-0.47484728751502225', source: '32', target: '3907', data: {} }, + { id: 'edge-0.2601517214769624', source: '32', target: '3908', data: {} }, + { id: 'edge-0.8842195092201037', source: '32', target: '3909', data: {} }, + { + id: 'edge-0.46939752666963663', + source: '3907', + target: '3910', + data: {}, + }, + { id: 'edge-0.7585891896250243', source: '3907', target: '3501', data: {} }, + { id: 'edge-0.3199912216262384', source: '3910', target: '3911', data: {} }, + { + id: 'edge-0.09561843221704813', + source: '3910', + target: '3912', + data: {}, + }, + { id: 'edge-0.5750677411688636', source: '3910', target: '3913', data: {} }, + { id: 'edge-0.7213720916854565', source: '3907', target: '3508', data: {} }, + { + id: 'edge-0.36120723519667153', + source: '3508', + target: '3914', + data: {}, + }, + { id: 'edge-0.797617335285512', source: '3508', target: '3915', data: {} }, + { id: 'edge-0.5188577271094461', source: '3508', target: '3916', data: {} }, + { + id: 'edge-0.0017336944924914999', + source: '3908', + target: '299', + data: {}, + }, + { id: 'edge-0.7058739886090886', source: '3908', target: '3917', data: {} }, + { id: 'edge-0.6866482622240435', source: '3917', target: '3918', data: {} }, + { + id: 'edge-0.37913638094891544', + source: '3917', + target: '3919', + data: {}, + }, + { id: 'edge-0.6284568822699255', source: '3908', target: '303', data: {} }, + { id: 'edge-0.5743996290950855', source: '3908', target: '301', data: {} }, + { id: 'edge-0.9155796587185854', source: '3908', target: '304', data: {} }, + { + id: 'edge-0.29028704167430397', + source: '3908', + target: '3500', + data: {}, + }, + { + id: 'edge-0.44859955594454326', + source: '3909', + target: '3506', + data: {}, + }, + { + id: 'edge-0.11176110995319144', + source: '3909', + target: '3507', + data: {}, + }, + { id: 'edge-0.19541947371225232', source: '3909', target: '305', data: {} }, + { + id: 'edge-0.24557591242300392', + source: '3909', + target: '3921', + data: {}, + }, + { id: 'edge-0.897700537502993', source: '3909', target: '3920', data: {} }, + { id: 'edge-0.9914118232498199', source: '3909', target: '3509', data: {} }, + { id: 'edge-0.7906548764636767', source: '3942', target: '3935', data: {} }, + { id: 'edge-0.6439252586517565', source: '3942', target: '3936', data: {} }, + { id: 'edge-0.9428251534351999', source: '3942', target: '3937', data: {} }, + { id: 'edge-0.8873026029375348', source: '3942', target: '3938', data: {} }, + { id: 'edge-0.8036146013821004', source: '3942', target: '3939', data: {} }, + { + id: 'edge-0.47342495232734194', + source: '3942', + target: '3940', + data: {}, + }, + { id: 'edge-0.5174145926700728', source: '3941', target: '180', data: {} }, + { id: 'edge-0.7913996241377115', source: '3941', target: '182', data: {} }, + { id: 'edge-0.5674679128748532', source: '3941', target: '179', data: {} }, + { id: 'edge-0.3468176140843162', source: '3941', target: '178', data: {} }, + { id: 'edge-0.5599984260351496', source: '3942', target: '190', data: {} }, + { id: 'edge-0.18484663627069553', source: '3942', target: '191', data: {} }, + { + id: 'edge-0.029855567807034467', + source: '3942', + target: '192', + data: {}, + }, + { id: 'edge-0.2779825254680055', source: '3942', target: '193', data: {} }, + { id: 'edge-0.5573423868638396', source: '3942', target: '194', data: {} }, + { id: 'edge-0.6862869738629727', source: '3942', target: '195', data: {} }, + { id: 'edge-0.8897758437473473', source: '3942', target: '196', data: {} }, + { id: 'edge-0.3288091534416926', source: '3942', target: '197', data: {} }, + { id: 'edge-0.21539348398951086', source: '3942', target: '198', data: {} }, + { id: 'edge-0.29028250709067227', source: '3942', target: '199', data: {} }, + { id: 'edge-0.5695997386838212', source: '3942', target: '200', data: {} }, + { id: 'edge-0.03556738165958784', source: '3942', target: '201', data: {} }, + { id: 'edge-0.012520385905170572', source: '177', target: '183', data: {} }, + { id: 'edge-0.5607920315786468', source: '3941', target: '184', data: {} }, + { id: 'edge-0.7913340656959971', source: '3941', target: '185', data: {} }, + { id: 'edge-0.9072813602533245', source: '3941', target: '186', data: {} }, + { id: 'edge-0.6583357501657017', source: '3941', target: '187', data: {} }, + { id: 'edge-0.6098558738968174', source: '3941', target: '188', data: {} }, + { id: 'edge-0.2912333598822856', source: '3941', target: '189', data: {} }, + { id: 'edge-0.6627699729195262', source: '3941', target: '181', data: {} }, + { id: 'edge-0.6791755328796194', source: '177', target: '3941', data: {} }, + { id: 'edge-0.7297250920573293', source: '177', target: '3942', data: {} }, + { id: 'edge-0.7585444251286468', source: '3942', target: '3943', data: {} }, + { id: 'edge-0.7523483896974303', source: '3944', target: '3945', data: {} }, + { id: 'edge-0.6119329473325659', source: '3944', target: '3946', data: {} }, + { + id: 'edge-0.47431363413298455', + source: '3944', + target: '3947', + data: {}, + }, + { + id: 'edge-0.19294319520115355', + source: '3944', + target: '3948', + data: {}, + }, + { + id: 'edge-0.36794925771016374', + source: '3944', + target: '3949', + data: {}, + }, + { + id: 'edge-0.25894214823968564', + source: '3944', + target: '3950', + data: {}, + }, + { + id: 'edge-0.015239253460680224', + source: '3942', + target: '202', + data: {}, + }, + { id: 'edge-0.9303409678509802', source: '177', target: '203', data: {} }, + { id: 'edge-0.45691640358635177', source: '3951', target: '208', data: {} }, + { id: 'edge-0.06998879239868949', source: '3951', target: '205', data: {} }, + { id: 'edge-0.7687375107079355', source: '3951', target: '206', data: {} }, + { id: 'edge-0.38411029775367633', source: '3951', target: '210', data: {} }, + { id: 'edge-0.6507676839939014', source: '3951', target: '211', data: {} }, + { id: 'edge-0.19467745735751318', source: '3951', target: '212', data: {} }, + { id: 'edge-0.34581021720173477', source: '3951', target: '213', data: {} }, + { id: 'edge-0.03492717520871502', source: '3951', target: '214', data: {} }, + { id: 'edge-0.5764879900441982', source: '3951', target: '215', data: {} }, + { id: 'edge-0.6496800469274764', source: '3951', target: '216', data: {} }, + { id: 'edge-0.13416553643298168', source: '3951', target: '218', data: {} }, + { id: 'edge-0.5714876755455722', source: '170', target: '317', data: {} }, + { id: 'edge-0.9105101046202477', source: '170', target: '336', data: {} }, + { id: 'edge-0.7189584688014785', source: '170', target: '326', data: {} }, + { id: 'edge-0.9569550332993291', source: '170', target: '335', data: {} }, + { id: 'edge-0.339303744102059', source: '3903', target: '285', data: {} }, + { id: 'edge-0.33184265663373624', source: '170', target: '286', data: {} }, + { id: 'edge-0.6841164441093461', source: '3903', target: '287', data: {} }, + { id: 'edge-0.7817131522165615', source: '170', target: '288', data: {} }, + { id: 'edge-0.9469679097243622', source: '3903', target: '289', data: {} }, + { id: 'edge-0.5611834180809661', source: '3903', target: '290', data: {} }, + { + id: 'edge-0.029586491333350562', + source: '3848', + target: '324', + data: {}, + }, + { id: 'edge-0.1335709886820724', source: '471', target: '485', data: {} }, + { id: 'edge-0.6835102491783858', source: '2785', target: '485', data: {} }, + { id: 'edge-0.20164498655587293', source: '491', target: '492', data: {} }, + { id: 'edge-0.6720878115888431', source: '491', target: '493', data: {} }, + { id: 'edge-0.8808585996399501', source: '491', target: '494', data: {} }, + { id: 'edge-0.9954249503317489', source: '6', target: '495', data: {} }, + { id: 'edge-0.2103164393858643', source: '6', target: '497', data: {} }, + { id: 'edge-0.09090922599501283', source: '6', target: '498', data: {} }, + { id: 'edge-0.7686095118135186', source: '6', target: '499', data: {} }, + { id: 'edge-0.5965646855736044', source: '6', target: '500', data: {} }, + { id: 'edge-0.5367786684393885', source: '6', target: '501', data: {} }, + { id: 'edge-0.8091639126495258', source: '6', target: '502', data: {} }, + { id: 'edge-0.2460581626265248', source: '6', target: '504', data: {} }, + { id: 'edge-0.7308372607233851', source: '6', target: '505', data: {} }, + { id: 'edge-0.7987791642536035', source: '6', target: '471', data: {} }, + { id: 'edge-0.4287682895793927', source: '1611', target: '471', data: {} }, + { id: 'edge-0.16834885378137754', source: '471', target: '472', data: {} }, + { id: 'edge-0.49596216910214386', source: '471', target: '474', data: {} }, + { id: 'edge-0.6068185338369152', source: '1810', target: '1811', data: {} }, + { id: 'edge-0.6700868970469251', source: '3848', target: '3', data: {} }, + { id: 'edge-0.012792015253432432', source: '3', target: '145', data: {} }, + { id: 'edge-0.4132597153214952', source: '3', target: '146', data: {} }, + { id: 'edge-0.16387704177549423', source: '3', target: '147', data: {} }, + { id: 'edge-0.5360916596943532', source: '3', target: '148', data: {} }, + { id: 'edge-0.7092241147792284', source: '3', target: '150', data: {} }, + { id: 'edge-0.8382304805065821', source: '3', target: '151', data: {} }, + { id: 'edge-0.366154223050289', source: '275', target: '151', data: {} }, + { id: 'edge-0.3807774681207119', source: '3', target: '153', data: {} }, + { id: 'edge-0.45138100501801603', source: '3', target: '154', data: {} }, + { id: 'edge-0.7468001459953331', source: '3', target: '155', data: {} }, + { id: 'edge-0.8661676724999807', source: '3', target: '156', data: {} }, + { id: 'edge-0.3671808538142647', source: '3', target: '157', data: {} }, + { id: 'edge-0.11860854836387569', source: '3', target: '158', data: {} }, + { id: 'edge-0.04295412142091948', source: '3', target: '159', data: {} }, + { id: 'edge-0.30576316774453915', source: '3', target: '160', data: {} }, + { id: 'edge-0.2102932266071813', source: '30', target: '3952', data: {} }, + { id: 'edge-0.2873586649144779', source: '3952', target: '3953', data: {} }, + { + id: 'edge-0.19559923482191377', + source: '3952', + target: '3954', + data: {}, + }, + { + id: 'edge-0.03880708777776798', + source: '3952', + target: '3955', + data: {}, + }, + { id: 'edge-0.698781673386851', source: '3952', target: '3956', data: {} }, + { id: 'edge-0.03189214465658963', source: '30', target: '3957', data: {} }, + { id: 'edge-0.9295393634808542', source: '30', target: '3958', data: {} }, + { id: 'edge-0.16370651694255756', source: '30', target: '3959', data: {} }, + { id: 'edge-0.11452899561713892', source: '30', target: '3960', data: {} }, + { id: 'edge-0.46246436371692523', source: '30', target: '3961', data: {} }, + { id: 'edge-0.032763288979910765', source: '30', target: '3962', data: {} }, + { id: 'edge-0.014837204382940561', source: '30', target: '3963', data: {} }, + { id: 'edge-0.7519079042095291', source: '30', target: '3964', data: {} }, + { id: 'edge-0.09045519216080566', source: '30', target: '3965', data: {} }, + { id: 'edge-0.46077509346682133', source: '30', target: '3967', data: {} }, + { id: 'edge-0.42780900716317927', source: '30', target: '3968', data: {} }, + { id: 'edge-0.1438831373310805', source: '30', target: '3970', data: {} }, + { id: 'edge-0.19841664824736105', source: '30', target: '3971', data: {} }, + { id: 'edge-0.06438732445044693', source: '30', target: '3972', data: {} }, + { id: 'edge-0.8488910179005722', source: '30', target: '3973', data: {} }, + { id: 'edge-0.16603873840856376', source: '30', target: '3974', data: {} }, + { id: 'edge-0.08844457820916385', source: '30', target: '3976', data: {} }, + { id: 'edge-0.9445571666213901', source: '30', target: '3977', data: {} }, + { id: 'edge-0.20137856384060937', source: '30', target: '3978', data: {} }, + { id: 'edge-0.9107555353054073', source: '3992', target: '3979', data: {} }, + { + id: 'edge-0.40650113799135523', + source: '3993', + target: '3980', + data: {}, + }, + { + id: 'edge-0.06275314891516759', + source: '3994', + target: '3981', + data: {}, + }, + { id: 'edge-0.9499881915739032', source: '3996', target: '3983', data: {} }, + { id: 'edge-0.1575808280426545', source: '3997', target: '3984', data: {} }, + { id: 'edge-0.5751352647078509', source: '3998', target: '3985', data: {} }, + { id: 'edge-0.8101734463361685', source: '4000', target: '3987', data: {} }, + { + id: 'edge-0.24807422042512872', + source: '4001', + target: '3988', + data: {}, + }, + { id: 'edge-0.4405836463777413', source: '4002', target: '3989', data: {} }, + { + id: 'edge-0.23910849657440703', + source: '4003', + target: '3990', + data: {}, + }, + { id: 'edge-0.9378306557949572', source: '4004', target: '3991', data: {} }, + { id: 'edge-0.7637273141305709', source: '30', target: '3993', data: {} }, + { id: 'edge-0.3252138350347191', source: '30', target: '3994', data: {} }, + { id: 'edge-0.23361869670898705', source: '30', target: '3996', data: {} }, + { id: 'edge-0.48855985217448916', source: '30', target: '3997', data: {} }, + { id: 'edge-0.9181342934440928', source: '30', target: '3998', data: {} }, + { id: 'edge-0.7112218290757397', source: '30', target: '3999', data: {} }, + { id: 'edge-0.3047949164745176', source: '30', target: '4000', data: {} }, + { id: 'edge-0.25344893008846037', source: '30', target: '4001', data: {} }, + { id: 'edge-0.5297552987376628', source: '30', target: '4002', data: {} }, + { id: 'edge-0.02182790772880927', source: '30', target: '4003', data: {} }, + { id: 'edge-0.5949983719494414', source: '30', target: '176', data: {} }, + { id: 'edge-0.33032700854405217', source: '30', target: '4004', data: {} }, + { id: 'edge-0.019120190359830147', source: '30', target: '4005', data: {} }, + { id: 'edge-0.7906667711727879', source: '30', target: '4006', data: {} }, + { id: 'edge-0.668402123061562', source: '30', target: '4007', data: {} }, + { id: 'edge-0.3653490827181334', source: '30', target: '4008', data: {} }, + { id: 'edge-0.30693146215451317', source: '30', target: '4009', data: {} }, + { id: 'edge-0.4112721059311921', source: '30', target: '4010', data: {} }, + { id: 'edge-0.07727720778038427', source: '30', target: '3365', data: {} }, + { id: 'edge-0.7060467965167607', source: '30', target: '3440', data: {} }, + { id: 'edge-0.35554063154982596', source: '30', target: '4011', data: {} }, + { id: 'edge-0.47062296781409785', source: '30', target: '4012', data: {} }, + { id: 'edge-0.1620098399132628', source: '30', target: '4013', data: {} }, + { id: 'edge-0.8667913139322867', source: '30', target: '4014', data: {} }, + { id: 'edge-0.6145334736449515', source: '30', target: '4015', data: {} }, + { id: 'edge-0.9475581283460515', source: '30', target: '4016', data: {} }, + { id: 'edge-0.15761521812320378', source: '30', target: '4017', data: {} }, + { id: 'edge-0.5202650278700405', source: '30', target: '4018', data: {} }, + { id: 'edge-0.34819125583856647', source: '30', target: '4019', data: {} }, + { id: 'edge-0.18641828916301972', source: '30', target: '4020', data: {} }, + { id: 'edge-0.7284358501800257', source: '30', target: '4021', data: {} }, + { id: 'edge-0.5746520789688441', source: '30', target: '4022', data: {} }, + { id: 'edge-0.509191712009541', source: '30', target: '4023', data: {} }, + { id: 'edge-0.7118998353709896', source: '30', target: '4024', data: {} }, + { id: 'edge-0.7061616781328084', source: '4024', target: '4025', data: {} }, + { id: 'edge-0.6419565261736602', source: '4024', target: '4026', data: {} }, + { + id: 'edge-0.23907568195926698', + source: '4024', + target: '4027', + data: {}, + }, + { + id: 'edge-0.25385282636739315', + source: '4024', + target: '4028', + data: {}, + }, + { id: 'edge-0.6961041465323241', source: '4024', target: '4029', data: {} }, + { id: 'edge-0.8829470951008407', source: '4024', target: '4030', data: {} }, + { + id: 'edge-0.20144479147524907', + source: '4024', + target: '4031', + data: {}, + }, + { id: 'edge-0.571628966128537', source: '4024', target: '4032', data: {} }, + { + id: 'edge-0.18316440679640866', + source: '4024', + target: '4033', + data: {}, + }, + { id: 'edge-0.5526795619110505', source: '4024', target: '4034', data: {} }, + { id: 'edge-0.2540473801033911', source: '4034', target: '4035', data: {} }, + { + id: 'edge-0.09203742257331426', + source: '4034', + target: '4036', + data: {}, + }, + { + id: 'edge-0.17739933539426822', + source: '4034', + target: '4037', + data: {}, + }, + { id: 'edge-0.2764008623341905', source: '4024', target: '4038', data: {} }, + { + id: 'edge-0.017368487945141897', + source: '4024', + target: '4039', + data: {}, + }, + { id: 'edge-0.8886857783377182', source: '4039', target: '4040', data: {} }, + { + id: 'edge-0.25918801392433766', + source: '4039', + target: '4041', + data: {}, + }, + { id: 'edge-0.530390161142767', source: '30', target: '4042', data: {} }, + { id: 'edge-0.5618348467570049', source: '4042', target: '4043', data: {} }, + { + id: 'edge-0.30155995726956397', + source: '4042', + target: '4044', + data: {}, + }, + { id: 'edge-0.7053483084140848', source: '4042', target: '4045', data: {} }, + { id: 'edge-0.32037588006443074', source: '30', target: '4046', data: {} }, + { id: 'edge-0.4554643118984796', source: '4046', target: '4047', data: {} }, + { id: 'edge-0.3570529809124554', source: '30', target: '4048', data: {} }, + { id: 'edge-0.844188447987462', source: '30', target: '4049', data: {} }, + { id: 'edge-0.5287323017258285', source: '30', target: '4050', data: {} }, + { id: 'edge-0.47358252409890267', source: '30', target: '4051', data: {} }, + { id: 'edge-0.4489983974895355', source: '30', target: '4052', data: {} }, + { id: 'edge-0.49297719728018485', source: '30', target: '4053', data: {} }, + { id: 'edge-0.3181672532539408', source: '30', target: '4054', data: {} }, + { id: 'edge-0.4869034680978874', source: '4054', target: '4055', data: {} }, + { + id: 'edge-0.20884967997317605', + source: '4054', + target: '4056', + data: {}, + }, + { id: 'edge-0.1864953518026249', source: '4054', target: '4057', data: {} }, + { id: 'edge-0.1980415771173778', source: '30', target: '4058', data: {} }, + { id: 'edge-0.8235076441735141', source: '30', target: '4059', data: {} }, + { id: 'edge-0.22977231195833148', source: '30', target: '4060', data: {} }, + { id: 'edge-0.014156689686501078', source: '30', target: '4061', data: {} }, + { + id: 'edge-0.30985360877652224', + source: '4061', + target: '4062', + data: {}, + }, + { id: 'edge-0.770106260622671', source: '4061', target: '4063', data: {} }, + { id: 'edge-0.594890364558117', source: '4061', target: '4064', data: {} }, + { id: 'edge-0.8071189615591585', source: '4061', target: '4065', data: {} }, + { id: 'edge-0.6050196644926', source: '30', target: '3389', data: {} }, + { id: 'edge-0.27858174740095265', source: '30', target: '3391', data: {} }, + { id: 'edge-0.14448141740176723', source: '30', target: '3392', data: {} }, + { id: 'edge-0.7425553638999225', source: '30', target: '3393', data: {} }, + { id: 'edge-0.6938208544067042', source: '30', target: '3394', data: {} }, + { id: 'edge-0.811756461992271', source: '30', target: '3395', data: {} }, + { id: 'edge-0.5248706303767621', source: '30', target: '3396', data: {} }, + { id: 'edge-0.9302001780362432', source: '30', target: '3397', data: {} }, + { id: 'edge-0.5561585305770325', source: '30', target: '3398', data: {} }, + { id: 'edge-0.03266244014479236', source: '30', target: '3399', data: {} }, + { id: 'edge-0.06873090176109398', source: '30', target: '3400', data: {} }, + { id: 'edge-0.5897671651296008', source: '30', target: '3402', data: {} }, + { id: 'edge-0.8087046483517866', source: '30', target: '3403', data: {} }, + { id: 'edge-0.37444973278322835', source: '30', target: '3404', data: {} }, + { id: 'edge-0.4926527658290156', source: '30', target: '3405', data: {} }, + { id: 'edge-0.7577054352685118', source: '30', target: '3406', data: {} }, + { id: 'edge-0.8556532137641786', source: '30', target: '3407', data: {} }, + { id: 'edge-0.04114306740798934', source: '30', target: '4066', data: {} }, + { id: 'edge-0.9285593313146898', source: '30', target: '4067', data: {} }, + { id: 'edge-0.5988203875939675', source: '30', target: '4068', data: {} }, + { id: 'edge-0.8760314680293528', source: '30', target: '4069', data: {} }, + { id: 'edge-0.4214522926697788', source: '30', target: '4070', data: {} }, + { id: 'edge-0.7698241838745783', source: '30', target: '4071', data: {} }, + { id: 'edge-0.7206679687562587', source: '30', target: '4078', data: {} }, + { id: 'edge-0.6851117396977708', source: '30', target: '4079', data: {} }, + { id: 'edge-0.14166595943057048', source: '30', target: '4080', data: {} }, + { id: 'edge-0.772635019814393', source: '30', target: '4081', data: {} }, + { id: 'edge-0.5941292613715274', source: '30', target: '4082', data: {} }, + { id: 'edge-0.5945660797422587', source: '30', target: '4083', data: {} }, + { id: 'edge-0.9428673914851562', source: '4083', target: '4084', data: {} }, + { id: 'edge-0.774199783848224', source: '4083', target: '4085', data: {} }, + { id: 'edge-0.8671736811595905', source: '4083', target: '4086', data: {} }, + { id: 'edge-0.8971480123684401', source: '4083', target: '4087', data: {} }, + { + id: 'edge-0.0031565691363630854', + source: '4083', + target: '4088', + data: {}, + }, + { + id: 'edge-0.12647626037766235', + source: '4083', + target: '4089', + data: {}, + }, + { + id: 'edge-0.03288688174001164', + source: '4083', + target: '4090', + data: {}, + }, + { id: 'edge-0.5582568230493519', source: '4083', target: '4091', data: {} }, + { id: 'edge-0.4351385728947694', source: '4083', target: '4092', data: {} }, + { id: 'edge-0.9501040068983171', source: '4083', target: '4093', data: {} }, + { id: 'edge-0.4521560592675671', source: '4083', target: '4094', data: {} }, + { id: 'edge-0.9102321164660003', source: '4083', target: '4095', data: {} }, + { + id: 'edge-0.09444874660585834', + source: '4083', + target: '4096', + data: {}, + }, + { + id: 'edge-0.49861342392326224', + source: '4083', + target: '4097', + data: {}, + }, + { + id: 'edge-0.47764815288246587', + source: '4083', + target: '4098', + data: {}, + }, + { id: 'edge-0.4412464448678515', source: '4083', target: '4099', data: {} }, + { + id: 'edge-0.34521941227087316', + source: '4083', + target: '4101', + data: {}, + }, + { id: 'edge-0.5543285186825482', source: '4083', target: '4102', data: {} }, + { id: 'edge-0.938424843226608', source: '4083', target: '4104', data: {} }, + { id: 'edge-0.6324592662204112', source: '4083', target: '4105', data: {} }, + { id: 'edge-0.9342915709018362', source: '4083', target: '4106', data: {} }, + { id: 'edge-0.7293854898239576', source: '4083', target: '4107', data: {} }, + { id: 'edge-0.3207434450899773', source: '4083', target: '4108', data: {} }, + { id: 'edge-0.8931244667738107', source: '4083', target: '4109', data: {} }, + { id: 'edge-0.1892302664033314', source: '4083', target: '4110', data: {} }, + { id: 'edge-0.7624317519302746', source: '4083', target: '4111', data: {} }, + { + id: 'edge-0.19179794298188724', + source: '4083', + target: '4112', + data: {}, + }, + { id: 'edge-0.7171213951117763', source: '4083', target: '4113', data: {} }, + { id: 'edge-0.9549711285877756', source: '4083', target: '4114', data: {} }, + { id: 'edge-0.6714794524223922', source: '4083', target: '4115', data: {} }, + { id: 'edge-0.4847858117503603', source: '4083', target: '4116', data: {} }, + { id: 'edge-0.577635916014337', source: '4083', target: '4117', data: {} }, + { id: 'edge-0.3389873174068503', source: '4083', target: '4118', data: {} }, + { id: 'edge-0.7339017982461911', source: '4083', target: '4119', data: {} }, + { id: 'edge-0.1168291498030869', source: '4083', target: '4120', data: {} }, + { id: 'edge-0.8174266178592897', source: '4083', target: '4121', data: {} }, + { id: 'edge-0.3002757432202856', source: '4083', target: '4122', data: {} }, + { id: 'edge-0.8367966765727148', source: '4083', target: '4123', data: {} }, + { id: 'edge-0.8369410394936401', source: '4083', target: '4124', data: {} }, + { + id: 'edge-0.33680979453607063', + source: '4083', + target: '4125', + data: {}, + }, + { id: 'edge-0.8421013764661516', source: '4083', target: '4126', data: {} }, + { id: 'edge-0.7858831028083588', source: '4083', target: '4127', data: {} }, + { id: 'edge-0.6605815550565681', source: '4083', target: '4128', data: {} }, + { id: 'edge-0.5742187438512627', source: '4083', target: '4129', data: {} }, + { id: 'edge-0.9356328045862266', source: '4083', target: '4130', data: {} }, + { + id: 'edge-0.11368994432388058', + source: '4083', + target: '4131', + data: {}, + }, + { + id: 'edge-0.033496257871134194', + source: '4083', + target: '4132', + data: {}, + }, + { + id: 'edge-0.11240959600962608', + source: '4083', + target: '4133', + data: {}, + }, + { id: 'edge-0.5075876217535784', source: '4083', target: '4134', data: {} }, + { id: 'edge-0.6459034944091679', source: '4083', target: '4135', data: {} }, + { id: 'edge-0.0399410941484708', source: '30', target: '3220', data: {} }, + { id: 'edge-0.5517816702517695', source: '30', target: '4136', data: {} }, + { id: 'edge-0.8209497133821426', source: '30', target: '4138', data: {} }, + { id: 'edge-0.4519790619899253', source: '30', target: '4139', data: {} }, + { id: 'edge-0.9401396891072018', source: '30', target: '4140', data: {} }, + { id: 'edge-0.42587696673237874', source: '30', target: '4141', data: {} }, + { + id: 'edge-0.11987728025032629', + source: '4141', + target: '4142', + data: {}, + }, + { id: 'edge-0.2784517058146847', source: '4141', target: '4143', data: {} }, + { id: 'edge-0.9956675353985729', source: '4141', target: '4144', data: {} }, + { + id: 'edge-0.34922991730115904', + source: '4141', + target: '4145', + data: {}, + }, + { + id: 'edge-0.49458740331127804', + source: '4141', + target: '4146', + data: {}, + }, + { id: 'edge-0.7518452291889755', source: '4141', target: '4147', data: {} }, + { id: 'edge-0.3609063487996236', source: '4141', target: '4148', data: {} }, + { + id: 'edge-0.09334952196736168', + source: '4141', + target: '4149', + data: {}, + }, + { id: 'edge-0.8311780240795354', source: '4141', target: '4150', data: {} }, + { id: 'edge-0.727619696086029', source: '4141', target: '4151', data: {} }, + { id: 'edge-0.6582699468793198', source: '4141', target: '4152', data: {} }, + { + id: 'edge-0.29636911727715276', + source: '4141', + target: '4153', + data: {}, + }, + { id: 'edge-0.1775061852163411', source: '4141', target: '4154', data: {} }, + { + id: 'edge-0.42769086911498544', + source: '4141', + target: '4155', + data: {}, + }, + { id: 'edge-0.8124242499307324', source: '4141', target: '4156', data: {} }, + { id: 'edge-0.4077265015343834', source: '4141', target: '4157', data: {} }, + { + id: 'edge-0.23731131635570368', + source: '4141', + target: '4158', + data: {}, + }, + { id: 'edge-0.609176613074804', source: '4141', target: '4159', data: {} }, + { id: 'edge-0.6256765160334588', source: '4141', target: '4160', data: {} }, + { id: 'edge-0.7042660189698842', source: '4141', target: '4161', data: {} }, + { id: 'edge-0.1397651692991344', source: '4141', target: '4162', data: {} }, + { + id: 'edge-0.48363112484018256', + source: '4141', + target: '4163', + data: {}, + }, + { id: 'edge-0.8657084133440422', source: '4141', target: '4164', data: {} }, + { id: 'edge-0.1824739616838602', source: '4', target: '307', data: {} }, + { id: 'edge-0.4215929027495142', source: '15', target: '307', data: {} }, + { id: 'edge-0.9270362444385949', source: '170', target: '308', data: {} }, + { id: 'edge-0.9320877083277126', source: '5', target: '338', data: {} }, + { id: 'edge-0.37865428772066845', source: '338', target: '339', data: {} }, + { id: 'edge-0.6193528254509535', source: '338', target: '340', data: {} }, + { id: 'edge-0.4356152498631958', source: '338', target: '341', data: {} }, + { id: 'edge-0.7942016396430625', source: '338', target: '342', data: {} }, + { id: 'edge-0.5109906373630597', source: '338', target: '343', data: {} }, + { id: 'edge-0.9985478772440906', source: '338', target: '344', data: {} }, + { id: 'edge-0.4907498363489511', source: '338', target: '345', data: {} }, + { id: 'edge-0.46339654392883456', source: '338', target: '346', data: {} }, + { id: 'edge-0.9627993095107963', source: '338', target: '347', data: {} }, + { id: 'edge-0.9057525876051111', source: '5', target: '348', data: {} }, + { id: 'edge-0.8912676524186067', source: '348', target: '349', data: {} }, + { id: 'edge-0.15112222980412082', source: '348', target: '350', data: {} }, + { id: 'edge-0.5311500157640436', source: '348', target: '351', data: {} }, + { id: 'edge-0.5696311222955626', source: '5', target: '352', data: {} }, + { id: 'edge-0.04046679868436254', source: '352', target: '353', data: {} }, + { id: 'edge-0.6776558416709686', source: '352', target: '354', data: {} }, + { id: 'edge-0.3669519400392438', source: '352', target: '355', data: {} }, + { id: 'edge-0.3583454690936676', source: '352', target: '356', data: {} }, + { id: 'edge-0.6159951221158098', source: '352', target: '357', data: {} }, + { id: 'edge-0.7721623199200938', source: '352', target: '358', data: {} }, + { id: 'edge-0.17893737080760186', source: '352', target: '359', data: {} }, + { id: 'edge-0.3840940642134125', source: '352', target: '360', data: {} }, + { id: 'edge-0.6402439980193715', source: '352', target: '361', data: {} }, + { id: 'edge-0.4947366412153915', source: '352', target: '362', data: {} }, + { id: 'edge-0.3424586704554218', source: '352', target: '363', data: {} }, + { id: 'edge-0.5204885807815574', source: '352', target: '364', data: {} }, + { id: 'edge-0.020894389506555422', source: '352', target: '365', data: {} }, + { id: 'edge-0.5119640843326803', source: '352', target: '366', data: {} }, + { id: 'edge-0.07745797448532343', source: '352', target: '367', data: {} }, + { id: 'edge-0.3765522170027442', source: '5', target: '368', data: {} }, + { id: 'edge-0.6809594472334957', source: '5', target: '369', data: {} }, + { id: 'edge-0.5281530958665142', source: '5', target: '370', data: {} }, + { id: 'edge-0.6130270611194164', source: '5', target: '371', data: {} }, + { id: 'edge-0.5000407229399215', source: '5', target: '372', data: {} }, + { id: 'edge-0.045655023011918594', source: '5', target: '373', data: {} }, + { id: 'edge-0.9173063493334723', source: '5', target: '374', data: {} }, + { id: 'edge-0.2331378286653618', source: '5', target: '375', data: {} }, + { id: 'edge-0.9685905159269164', source: '5', target: '376', data: {} }, + { id: 'edge-0.8062678585930876', source: '5', target: '377', data: {} }, + { id: 'edge-0.052419091097056336', source: '5', target: '378', data: {} }, + { id: 'edge-0.8550788284825888', source: '5', target: '379', data: {} }, + { id: 'edge-0.8990540735633756', source: '5', target: '380', data: {} }, + { id: 'edge-0.46137205270223514', source: '5', target: '381', data: {} }, + { id: 'edge-0.7508383169818722', source: '5', target: '382', data: {} }, + { id: 'edge-0.28763008095994924', source: '5', target: '383', data: {} }, + { id: 'edge-0.060709777342754956', source: '5', target: '384', data: {} }, + { id: 'edge-0.7531396096268956', source: '5', target: '385', data: {} }, + { id: 'edge-0.9023102063118897', source: '5', target: '386', data: {} }, + { id: 'edge-0.16277421247569568', source: '5', target: '387', data: {} }, + { id: 'edge-0.333562326709282', source: '5', target: '388', data: {} }, + { id: 'edge-0.7015574943920821', source: '5', target: '389', data: {} }, + { id: 'edge-0.9198631111090085', source: '5', target: '390', data: {} }, + { id: 'edge-0.9657975062069579', source: '5', target: '391', data: {} }, + { id: 'edge-0.09600293860614295', source: '5', target: '392', data: {} }, + { id: 'edge-0.994758852302458', source: '5', target: '393', data: {} }, + { id: 'edge-0.9341330570605997', source: '5', target: '394', data: {} }, + { id: 'edge-0.9179965232215552', source: '5', target: '395', data: {} }, + { id: 'edge-0.4740189898216527', source: '5', target: '396', data: {} }, + { id: 'edge-0.8688497898186158', source: '5', target: '397', data: {} }, + { id: 'edge-0.49599669584914685', source: '5', target: '398', data: {} }, + { id: 'edge-0.5694236985014178', source: '5', target: '399', data: {} }, + { id: 'edge-0.019515743368058613', source: '5', target: '400', data: {} }, + { id: 'edge-0.8463178042206443', source: '10', target: '388', data: {} }, + { id: 'edge-0.776681316322164', source: '5', target: '401', data: {} }, + { id: 'edge-0.9726921205847845', source: '5', target: '402', data: {} }, + { id: 'edge-0.9199459349461243', source: '5', target: '403', data: {} }, + { id: 'edge-0.9699934622380992', source: '5', target: '404', data: {} }, + { id: 'edge-0.8201732347483255', source: '5', target: '405', data: {} }, + { id: 'edge-0.1907199739738452', source: '5', target: '406', data: {} }, + { id: 'edge-0.2939803201732223', source: '5', target: '407', data: {} }, + { id: 'edge-0.3950426721438909', source: '5', target: '408', data: {} }, + { id: 'edge-0.07299700230253037', source: '408', target: '409', data: {} }, + { id: 'edge-0.8755464068046781', source: '408', target: '410', data: {} }, + { id: 'edge-0.25251790236753835', source: '408', target: '411', data: {} }, + { id: 'edge-0.39609524881396085', source: '408', target: '412', data: {} }, + { id: 'edge-0.3396013319496869', source: '408', target: '413', data: {} }, + { id: 'edge-0.4451678108325594', source: '408', target: '414', data: {} }, + { id: 'edge-0.25420622810840987', source: '408', target: '415', data: {} }, + { id: 'edge-0.42475645074207025', source: '408', target: '416', data: {} }, + { id: 'edge-0.7964113831093687', source: '408', target: '417', data: {} }, + { id: 'edge-0.9685444015478757', source: '408', target: '418', data: {} }, + { id: 'edge-0.32639937830013466', source: '408', target: '419', data: {} }, + { id: 'edge-0.4655270368402564', source: '408', target: '420', data: {} }, + { id: 'edge-0.3427886308104733', source: '408', target: '421', data: {} }, + { id: 'edge-0.24808539423735776', source: '408', target: '422', data: {} }, + { id: 'edge-0.7985084821289214', source: '5', target: '423', data: {} }, + { id: 'edge-0.014565579744863388', source: '5', target: '424', data: {} }, + { id: 'edge-0.10502789411635338', source: '5', target: '425', data: {} }, + { id: 'edge-0.097925067079081', source: '5', target: '426', data: {} }, + { id: 'edge-0.44581382806494707', source: '5', target: '427', data: {} }, + { id: 'edge-0.7391351265951356', source: '5', target: '428', data: {} }, + { id: 'edge-0.7143415779726048', source: '5', target: '429', data: {} }, + { id: 'edge-0.5203856895079297', source: '5', target: '430', data: {} }, + { id: 'edge-0.4893917211451724', source: '5', target: '431', data: {} }, + { id: 'edge-0.8697182121006783', source: '5', target: '432', data: {} }, + { id: 'edge-0.0837189809023362', source: '5', target: '433', data: {} }, + { id: 'edge-0.8552101930329945', source: '5', target: '4171', data: {} }, + { id: 'edge-0.12463388611276893', source: '5', target: '434', data: {} }, + { id: 'edge-0.48219618129650477', source: '5', target: '435', data: {} }, + { id: 'edge-0.037581017720969445', source: '5', target: '436', data: {} }, + { id: 'edge-0.9337422390933618', source: '5', target: '437', data: {} }, + { id: 'edge-0.9438630450570338', source: '5', target: '438', data: {} }, + { id: 'edge-0.10676121990401866', source: '5', target: '439', data: {} }, + { id: 'edge-0.33705732074418027', source: '5', target: '440', data: {} }, + { id: 'edge-0.5951465169318073', source: '5', target: '441', data: {} }, + { id: 'edge-0.8096023804111778', source: '5', target: '442', data: {} }, + { id: 'edge-0.7772310459425369', source: '5', target: '443', data: {} }, + { id: 'edge-0.920647726432563', source: '443', target: '444', data: {} }, + { id: 'edge-0.27023403741092', source: '443', target: '445', data: {} }, + { id: 'edge-0.594324018173823', source: '443', target: '446', data: {} }, + { id: 'edge-0.42497327710423805', source: '443', target: '447', data: {} }, + { id: 'edge-0.14467245065938905', source: '443', target: '448', data: {} }, + { id: 'edge-0.7515278503529534', source: '443', target: '449', data: {} }, + { id: 'edge-0.5067927114727813', source: '443', target: '450', data: {} }, + { id: 'edge-0.7979199353673041', source: '443', target: '451', data: {} }, + { id: 'edge-0.025048648736412327', source: '443', target: '452', data: {} }, + { id: 'edge-0.27262765909726383', source: '443', target: '453', data: {} }, + { id: 'edge-0.7152110285738589', source: '443', target: '454', data: {} }, + { id: 'edge-0.3756907670754157', source: '443', target: '455', data: {} }, + { id: 'edge-0.47892089825415995', source: '443', target: '456', data: {} }, + { id: 'edge-0.30877546488079277', source: '443', target: '457', data: {} }, + { id: 'edge-0.5119450942723365', source: '443', target: '458', data: {} }, + { id: 'edge-0.025756811058531337', source: '443', target: '459', data: {} }, + { id: 'edge-0.8614095864399935', source: '443', target: '460', data: {} }, + { id: 'edge-0.9269439239850956', source: '443', target: '461', data: {} }, + { id: 'edge-0.015341901285967019', source: '443', target: '462', data: {} }, + { id: 'edge-0.24778316254288035', source: '443', target: '463', data: {} }, + { id: 'edge-0.9431363111120423', source: '443', target: '464', data: {} }, + { id: 'edge-0.34394295051439006', source: '443', target: '465', data: {} }, + { id: 'edge-0.061934310316227315', source: '6', target: '466', data: {} }, + { id: 'edge-0.7849114682641605', source: '6', target: '467', data: {} }, + { id: 'edge-0.98721840770875', source: '6', target: '468', data: {} }, + { id: 'edge-0.015115644570252496', source: '6', target: '469', data: {} }, + { id: 'edge-0.8407789656666009', source: '6', target: '470', data: {} }, + { id: 'edge-0.36826056737832435', source: '471', target: '475', data: {} }, + { id: 'edge-0.989516431545205', source: '471', target: '476', data: {} }, + { id: 'edge-0.7331465597845754', source: '476', target: '477', data: {} }, + { id: 'edge-0.8633768092730401', source: '476', target: '478', data: {} }, + { id: 'edge-0.6735533228001311', source: '476', target: '479', data: {} }, + { id: 'edge-0.5223985858327738', source: '476', target: '481', data: {} }, + { id: 'edge-0.2128036169675378', source: '471', target: '483', data: {} }, + { id: 'edge-0.6911597266701237', source: '471', target: '484', data: {} }, + { id: 'edge-0.03867454056174502', source: '33', target: '171', data: {} }, + { id: 'edge-0.6901398942065209', source: '7', target: '508', data: {} }, + { id: 'edge-0.18828756058121998', source: '7', target: '509', data: {} }, + { id: 'edge-0.15008886482046102', source: '7', target: '510', data: {} }, + { id: 'edge-0.3505859745777107', source: '7', target: '511', data: {} }, + { id: 'edge-0.869446471901123', source: '7', target: '512', data: {} }, + { id: 'edge-0.3184697436289803', source: '7', target: '513', data: {} }, + { id: 'edge-0.5762740506720923', source: '7', target: '516', data: {} }, + { id: 'edge-0.9762556831884464', source: '7', target: '517', data: {} }, + { id: 'edge-0.5572285525484271', source: '7', target: '519', data: {} }, + { id: 'edge-0.3546971294567127', source: '7', target: '522', data: {} }, + { id: 'edge-0.6347551895684329', source: '7', target: '523', data: {} }, + { id: 'edge-0.8479268707524064', source: '7', target: '524', data: {} }, + { id: 'edge-0.04738622499156797', source: '7', target: '525', data: {} }, + { id: 'edge-0.7398417481855608', source: '7', target: '526', data: {} }, + { id: 'edge-0.38652394139472124', source: '7', target: '527', data: {} }, + { id: 'edge-0.44105025357154637', source: '7', target: '528', data: {} }, + { id: 'edge-0.1571337255344616', source: '7', target: '530', data: {} }, + { id: 'edge-0.4098211751468679', source: '7', target: '531', data: {} }, + { id: 'edge-0.44572522620873656', source: '7', target: '532', data: {} }, + { id: 'edge-0.7728706445410782', source: '7', target: '533', data: {} }, + { id: 'edge-0.03533229175451025', source: '7', target: '535', data: {} }, + { id: 'edge-0.9723963980792316', source: '7', target: '537', data: {} }, + { id: 'edge-0.414362503198624', source: '7', target: '540', data: {} }, + { id: 'edge-0.4722527163550432', source: '7', target: '541', data: {} }, + { id: 'edge-0.32123997844409047', source: '7', target: '542', data: {} }, + { id: 'edge-0.4379874890558042', source: '7', target: '543', data: {} }, + { id: 'edge-0.4192979677831634', source: '7', target: '544', data: {} }, + { id: 'edge-0.7464134266412032', source: '7', target: '546', data: {} }, + { id: 'edge-0.2387243403910304', source: '7', target: '547', data: {} }, + { id: 'edge-0.5618001287140937', source: '7', target: '548', data: {} }, + { id: 'edge-0.7316017195211273', source: '7', target: '549', data: {} }, + { id: 'edge-0.48945920154792', source: '7', target: '550', data: {} }, + { id: 'edge-0.8803174343633648', source: '7', target: '552', data: {} }, + { id: 'edge-0.9767196653907317', source: '7', target: '553', data: {} }, + { id: 'edge-0.6101376448782638', source: '7', target: '554', data: {} }, + { id: 'edge-0.649468392352073', source: '7', target: '555', data: {} }, + { id: 'edge-0.5891030639124661', source: '7', target: '556', data: {} }, + { id: 'edge-0.6825211784841336', source: '7', target: '557', data: {} }, + { id: 'edge-0.29544048935190803', source: '7', target: '558', data: {} }, + { id: 'edge-0.6482297484369166', source: '7', target: '560', data: {} }, + { id: 'edge-0.0005077041908856383', source: '7', target: '562', data: {} }, + { id: 'edge-0.05190308792760501', source: '7', target: '564', data: {} }, + { id: 'edge-0.2144072333096736', source: '7', target: '565', data: {} }, + { id: 'edge-0.5431211817249391', source: '7', target: '567', data: {} }, + { id: 'edge-0.360224471364603', source: '7', target: '568', data: {} }, + { id: 'edge-0.42753502461131876', source: '7', target: '569', data: {} }, + { id: 'edge-0.20804190823287172', source: '7', target: '570', data: {} }, + { id: 'edge-0.21562676830887773', source: '7', target: '571', data: {} }, + { id: 'edge-0.28490737575132696', source: '7', target: '572', data: {} }, + { id: 'edge-0.1254076211597026', source: '7', target: '573', data: {} }, + { id: 'edge-0.08425181982730567', source: '7', target: '575', data: {} }, + { id: 'edge-0.48211900093710436', source: '7', target: '577', data: {} }, + { id: 'edge-0.230887095398413', source: '7', target: '578', data: {} }, + { id: 'edge-0.3721532966921772', source: '7', target: '579', data: {} }, + { id: 'edge-0.3298576102527362', source: '7', target: '580', data: {} }, + { id: 'edge-0.46462660924087484', source: '7', target: '581', data: {} }, + { id: 'edge-0.7084813825191596', source: '7', target: '585', data: {} }, + { id: 'edge-0.38078947497302384', source: '7', target: '586', data: {} }, + { id: 'edge-0.5959955811106494', source: '7', target: '587', data: {} }, + { id: 'edge-0.7565688156869574', source: '7', target: '588', data: {} }, + { id: 'edge-0.7213368274187779', source: '7', target: '590', data: {} }, + { id: 'edge-0.22861567302842611', source: '7', target: '591', data: {} }, + { id: 'edge-0.9362408432683829', source: '7', target: '592', data: {} }, + { id: 'edge-0.7908165600845989', source: '7', target: '593', data: {} }, + { id: 'edge-0.2640660285365537', source: '7', target: '594', data: {} }, + { id: 'edge-0.24874457264170835', source: '7', target: '595', data: {} }, + { id: 'edge-0.3111741783164903', source: '7', target: '596', data: {} }, + { id: 'edge-0.17792384211673795', source: '7', target: '599', data: {} }, + { id: 'edge-0.6872102980419494', source: '7', target: '600', data: {} }, + { id: 'edge-0.14192135921232873', source: '7', target: '602', data: {} }, + { id: 'edge-0.5484993494242689', source: '7', target: '611', data: {} }, + { id: 'edge-0.6155184757304473', source: '7', target: '614', data: {} }, + { id: 'edge-0.3490954975835632', source: '7', target: '619', data: {} }, + { id: 'edge-0.4661825539571105', source: '7', target: '623', data: {} }, + { id: 'edge-0.5167593556756154', source: '7', target: '624', data: {} }, + { id: 'edge-0.9311486618868345', source: '7', target: '625', data: {} }, + { id: 'edge-0.5000945227576603', source: '7', target: '626', data: {} }, + { id: 'edge-0.3630825517088745', source: '7', target: '627', data: {} }, + { id: 'edge-0.5681935909697646', source: '7', target: '628', data: {} }, + { id: 'edge-0.19628751264892141', source: '7', target: '629', data: {} }, + { id: 'edge-0.48582492726123006', source: '7', target: '630', data: {} }, + { id: 'edge-0.17951516973780923', source: '7', target: '631', data: {} }, + { id: 'edge-0.3321880123728509', source: '7', target: '632', data: {} }, + { id: 'edge-0.7515489722633064', source: '7', target: '633', data: {} }, + { id: 'edge-0.5824366810067969', source: '7', target: '634', data: {} }, + { id: 'edge-0.9572832139378467', source: '7', target: '636', data: {} }, + { id: 'edge-0.30568375359038047', source: '7', target: '637', data: {} }, + { id: 'edge-0.40994308313306504', source: '7', target: '638', data: {} }, + { id: 'edge-0.10525944654562203', source: '7', target: '639', data: {} }, + { id: 'edge-0.3173492118907759', source: '7', target: '640', data: {} }, + { id: 'edge-0.9150089779607706', source: '7', target: '641', data: {} }, + { id: 'edge-0.26198041069928935', source: '7', target: '642', data: {} }, + { id: 'edge-0.6069418426195363', source: '7', target: '643', data: {} }, + { id: 'edge-0.39247509652520973', source: '7', target: '644', data: {} }, + { id: 'edge-0.20253083703713815', source: '7', target: '646', data: {} }, + { id: 'edge-0.25674723288827495', source: '7', target: '648', data: {} }, + { id: 'edge-0.4115457596662677', source: '7', target: '650', data: {} }, + { id: 'edge-0.20734216177751463', source: '7', target: '651', data: {} }, + { id: 'edge-0.08225825860016722', source: '7', target: '652', data: {} }, + { id: 'edge-0.8471232619040259', source: '7', target: '654', data: {} }, + { id: 'edge-0.46218332439129584', source: '7', target: '655', data: {} }, + { id: 'edge-0.4652569115131684', source: '7', target: '656', data: {} }, + { id: 'edge-0.7508283562438007', source: '7', target: '658', data: {} }, + { id: 'edge-0.7802831460387796', source: '7', target: '659', data: {} }, + { id: 'edge-0.05284560213046574', source: '7', target: '662', data: {} }, + { id: 'edge-0.8428278106805316', source: '7', target: '663', data: {} }, + { id: 'edge-0.8915665440599927', source: '7', target: '664', data: {} }, + { id: 'edge-0.8618844670023147', source: '7', target: '665', data: {} }, + { id: 'edge-0.2047184766010144', source: '7', target: '666', data: {} }, + { id: 'edge-0.623881514873327', source: '7', target: '667', data: {} }, + { id: 'edge-0.6734198367843702', source: '7', target: '668', data: {} }, + { id: 'edge-0.06858159711741063', source: '7', target: '669', data: {} }, + { id: 'edge-0.5226058029266964', source: '7', target: '671', data: {} }, + { id: 'edge-0.45889745710503815', source: '7', target: '672', data: {} }, + { id: 'edge-0.5638633225645662', source: '7', target: '673', data: {} }, + { id: 'edge-0.07395338630519421', source: '7', target: '674', data: {} }, + { id: 'edge-0.5829564442594826', source: '7', target: '675', data: {} }, + { id: 'edge-0.24791630760054395', source: '7', target: '676', data: {} }, + { id: 'edge-0.6206530577775886', source: '7', target: '677', data: {} }, + { id: 'edge-0.7267981896207925', source: '7', target: '678', data: {} }, + { id: 'edge-0.18872858059508357', source: '7', target: '679', data: {} }, + { id: 'edge-0.0655419354314406', source: '7', target: '680', data: {} }, + { id: 'edge-0.35266703128523336', source: '7', target: '681', data: {} }, + { id: 'edge-0.7814932477211696', source: '7', target: '683', data: {} }, + { id: 'edge-0.7574365528426359', source: '7', target: '685', data: {} }, + { id: 'edge-0.32954697204259165', source: '7', target: '686', data: {} }, + { id: 'edge-0.7356478171010146', source: '7', target: '687', data: {} }, + { id: 'edge-0.5910820362024098', source: '7', target: '688', data: {} }, + { id: 'edge-0.681022348502907', source: '7', target: '689', data: {} }, + { id: 'edge-0.6768466924614986', source: '7', target: '690', data: {} }, + { id: 'edge-0.8089601751610906', source: '7', target: '691', data: {} }, + { id: 'edge-0.06091230259712743', source: '7', target: '693', data: {} }, + { id: 'edge-0.17345952098599215', source: '7', target: '694', data: {} }, + { id: 'edge-0.8517518015511527', source: '7', target: '695', data: {} }, + { id: 'edge-0.852635881015114', source: '7', target: '697', data: {} }, + { id: 'edge-0.397294688036975', source: '7', target: '698', data: {} }, + { id: 'edge-0.7631657704146841', source: '7', target: '700', data: {} }, + { id: 'edge-0.8510431643634002', source: '7', target: '701', data: {} }, + { id: 'edge-0.8363141774234528', source: '7', target: '702', data: {} }, + { id: 'edge-0.06304241712281944', source: '7', target: '703', data: {} }, + { id: 'edge-0.5117538297655257', source: '7', target: '704', data: {} }, + { id: 'edge-0.20070452999941502', source: '7', target: '705', data: {} }, + { id: 'edge-0.46243712585610175', source: '7', target: '706', data: {} }, + { id: 'edge-0.10197047847309837', source: '7', target: '707', data: {} }, + { id: 'edge-0.4503184702205032', source: '7', target: '708', data: {} }, + { id: 'edge-0.023026278576416148', source: '7', target: '709', data: {} }, + { id: 'edge-0.5737515558944641', source: '7', target: '710', data: {} }, + { id: 'edge-0.44471298477688115', source: '7', target: '711', data: {} }, + { id: 'edge-0.2998736724205233', source: '7', target: '712', data: {} }, + { id: 'edge-0.3269700327225622', source: '7', target: '714', data: {} }, + { id: 'edge-0.14506187770531898', source: '7', target: '717', data: {} }, + { id: 'edge-0.8623687822009793', source: '7', target: '719', data: {} }, + { id: 'edge-0.7613747394934589', source: '7', target: '720', data: {} }, + { id: 'edge-0.3481384847306297', source: '4173', target: '847', data: {} }, + { id: 'edge-0.5955463664196903', source: '4173', target: '848', data: {} }, + { id: 'edge-0.9208752116323515', source: '4173', target: '849', data: {} }, + { + id: 'edge-0.035682139411729485', + source: '4173', + target: '850', + data: {}, + }, + { id: 'edge-0.381526769705949', source: '4173', target: '851', data: {} }, + { id: 'edge-0.26283909927693094', source: '4173', target: '852', data: {} }, + { id: 'edge-0.8999496543536278', source: '4173', target: '853', data: {} }, + { id: 'edge-0.5118920378888072', source: '4173', target: '1243', data: {} }, + { id: 'edge-0.9241598295007907', source: '4173', target: '1244', data: {} }, + { id: 'edge-0.5519920451652667', source: '4173', target: '1265', data: {} }, + { id: 'edge-0.4440801220296764', source: '4173', target: '1266', data: {} }, + { id: 'edge-0.9610480120884801', source: '4173', target: '1267', data: {} }, + { id: 'edge-0.7893770103052962', source: '8', target: '8', data: {} }, + { id: 'edge-0.4972721651984542', source: '8', target: '1269', data: {} }, + { id: 'edge-0.1763522142948062', source: '8', target: '1270', data: {} }, + { id: 'edge-0.33386838765021665', source: '8', target: '220', data: {} }, + { id: 'edge-0.7080262662421191', source: '8', target: '1274', data: {} }, + { id: 'edge-0.8607248349023127', source: '8', target: '1275', data: {} }, + { id: 'edge-0.16313162485955846', source: '8', target: '1276', data: {} }, + { id: 'edge-0.8115424189523728', source: '8', target: '1277', data: {} }, + { id: 'edge-0.8083095741145851', source: '8', target: '1278', data: {} }, + { id: 'edge-0.7093170530744424', source: '8', target: '1281', data: {} }, + { id: 'edge-0.9644510213380761', source: '8', target: '1282', data: {} }, + { id: 'edge-0.3762947484637329', source: '1286', target: '1283', data: {} }, + { id: 'edge-0.7357049188103295', source: '1286', target: '1284', data: {} }, + { id: 'edge-0.06635246286149954', source: '8', target: '1285', data: {} }, + { id: 'edge-0.7358350832741374', source: '1286', target: '1287', data: {} }, + { id: 'edge-0.5954481609166298', source: '8', target: '1286', data: {} }, + { id: 'edge-0.45251838486154017', source: '9', target: '1317', data: {} }, + { id: 'edge-0.11438786564307368', source: '9', target: '1348', data: {} }, + { id: 'edge-0.5430573102007781', source: '9', target: '1362', data: {} }, + { id: 'edge-0.1110987114915658', source: '9', target: '1415', data: {} }, + { id: 'edge-0.9435350182447142', source: '4174', target: '1289', data: {} }, + { id: 'edge-0.5519019815591395', source: '4174', target: '1290', data: {} }, + { id: 'edge-0.5978041765256386', source: '4174', target: '1291', data: {} }, + { id: 'edge-0.22681727181858458', source: '4174', target: '335', data: {} }, + { id: 'edge-0.2719157815537858', source: '4174', target: '1293', data: {} }, + { id: 'edge-0.5665205635809059', source: '4174', target: '1294', data: {} }, + { + id: 'edge-0.16729366699396664', + source: '4174', + target: '1295', + data: {}, + }, + { + id: 'edge-0.38907335340387617', + source: '4174', + target: '1296', + data: {}, + }, + { + id: 'edge-0.21851175964144454', + source: '4174', + target: '1297', + data: {}, + }, + { + id: 'edge-0.36453152132883826', + source: '4174', + target: '1298', + data: {}, + }, + { + id: 'edge-0.10413437338351117', + source: '4174', + target: '1299', + data: {}, + }, + { + id: 'edge-0.08667091363406354', + source: '4174', + target: '1300', + data: {}, + }, + { + id: 'edge-0.22671499409151163', + source: '4174', + target: '1281', + data: {}, + }, + { id: 'edge-0.8556649643963055', source: '4174', target: '1308', data: {} }, + { id: 'edge-0.5418169999935705', source: '4174', target: '1312', data: {} }, + { + id: 'edge-0.39682605312205266', + source: '4174', + target: '1314', + data: {}, + }, + { id: 'edge-0.9682552930844608', source: '4174', target: '1316', data: {} }, + { + id: 'edge-0.20373983978414878', + source: '1317', + target: '1318', + data: {}, + }, + { id: 'edge-0.7892134236141899', source: '1317', target: '1319', data: {} }, + { + id: 'edge-0.37977762478257127', + source: '1317', + target: '1324', + data: {}, + }, + { + id: 'edge-0.09870454038191512', + source: '1317', + target: '1325', + data: {}, + }, + { id: 'edge-0.4468998955955814', source: '1317', target: '1326', data: {} }, + { + id: 'edge-0.043036744073065014', + source: '1317', + target: '1327', + data: {}, + }, + { id: 'edge-0.1886549336630945', source: '1317', target: '1328', data: {} }, + { id: 'edge-0.589208326116041', source: '1317', target: '1329', data: {} }, + { + id: 'edge-0.15826279582382852', + source: '1317', + target: '1330', + data: {}, + }, + { id: 'edge-0.9110466648994004', source: '1317', target: '1331', data: {} }, + { id: 'edge-0.4472643974117445', source: '1317', target: '1332', data: {} }, + { + id: 'edge-0.053109358467618106', + source: '1333', + target: '1334', + data: {}, + }, + { + id: 'edge-0.47875857605080574', + source: '1333', + target: '1343', + data: {}, + }, + { id: 'edge-0.8383646763547143', source: '9', target: '1333', data: {} }, + { id: 'edge-0.6441103261690939', source: '1348', target: '1357', data: {} }, + { id: 'edge-0.461533190850391', source: '1348', target: '1361', data: {} }, + { id: 'edge-0.9957766738520009', source: '10', target: '1416', data: {} }, + { id: 'edge-0.6140161855080075', source: '10', target: '1417', data: {} }, + { id: 'edge-0.7370818701643174', source: '10', target: '1418', data: {} }, + { id: 'edge-0.5013727703347415', source: '10', target: '1419', data: {} }, + { id: 'edge-0.14710177167031158', source: '10', target: '1420', data: {} }, + { id: 'edge-0.2503664749938266', source: '10', target: '1421', data: {} }, + { id: 'edge-0.8405879792798736', source: '10', target: '1422', data: {} }, + { id: 'edge-0.05453283845660106', source: '10', target: '1423', data: {} }, + { id: 'edge-0.1696731977477104', source: '10', target: '1424', data: {} }, + { id: 'edge-0.3434142402611786', source: '10', target: '1426', data: {} }, + { id: 'edge-0.7243175236120354', source: '10', target: '1427', data: {} }, + { id: 'edge-0.4812147122387753', source: '10', target: '1428', data: {} }, + { id: 'edge-0.7904431857280194', source: '10', target: '1429', data: {} }, + { id: 'edge-0.4182579342599697', source: '10', target: '1431', data: {} }, + { id: 'edge-0.6009265448056837', source: '10', target: '1432', data: {} }, + { id: 'edge-0.11788248126927203', source: '10', target: '1433', data: {} }, + { id: 'edge-0.37394152221028687', source: '10', target: '1435', data: {} }, + { id: 'edge-0.9782731215947376', source: '10', target: '1436', data: {} }, + { id: 'edge-0.5937618304927694', source: '10', target: '1437', data: {} }, + { id: 'edge-0.6082429856853926', source: '10', target: '1438', data: {} }, + { id: 'edge-0.543325487819696', source: '10', target: '1439', data: {} }, + { id: 'edge-0.12623050107870126', source: '10', target: '1440', data: {} }, + { id: 'edge-0.14724881153513358', source: '10', target: '1441', data: {} }, + { id: 'edge-0.2919553887898665', source: '10', target: '1442', data: {} }, + { id: 'edge-0.6532048919322584', source: '10', target: '1443', data: {} }, + { id: 'edge-0.0743411772665048', source: '10', target: '1446', data: {} }, + { id: 'edge-0.1626578111095205', source: '10', target: '1447', data: {} }, + { id: 'edge-0.47253766764301797', source: '10', target: '1448', data: {} }, + { id: 'edge-0.8633568940551162', source: '10', target: '1449', data: {} }, + { id: 'edge-0.471749527947501', source: '10', target: '1451', data: {} }, + { id: 'edge-0.3182550616204316', source: '10', target: '1452', data: {} }, + { id: 'edge-0.4060629970882701', source: '10', target: '1453', data: {} }, + { id: 'edge-0.2234685494325972', source: '10', target: '1454', data: {} }, + { id: 'edge-0.6828051731190217', source: '10', target: '1455', data: {} }, + { id: 'edge-0.5348726655725788', source: '10', target: '1456', data: {} }, + { id: 'edge-0.42780390924172074', source: '10', target: '1457', data: {} }, + { id: 'edge-0.8773639229829799', source: '10', target: '1458', data: {} }, + { id: 'edge-0.06331153082108942', source: '10', target: '1459', data: {} }, + { id: 'edge-0.43862861436773226', source: '10', target: '1460', data: {} }, + { id: 'edge-0.6023001644293793', source: '10', target: '1461', data: {} }, + { id: 'edge-0.26437135498419706', source: '10', target: '1462', data: {} }, + { id: 'edge-0.11438688860944479', source: '10', target: '1463', data: {} }, + { id: 'edge-0.5205910036474826', source: '10', target: '1464', data: {} }, + { id: 'edge-0.46895252168189816', source: '10', target: '1465', data: {} }, + { id: 'edge-0.54598825730075', source: '10', target: '1466', data: {} }, + { id: 'edge-0.14359651088741465', source: '10', target: '1467', data: {} }, + { id: 'edge-0.580671576611939', source: '10', target: '1468', data: {} }, + { id: 'edge-0.13408858432308723', source: '10', target: '1469', data: {} }, + { id: 'edge-0.7214459247292113', source: '10', target: '1470', data: {} }, + { id: 'edge-0.8063792384011548', source: '10', target: '1471', data: {} }, + { id: 'edge-0.2069782326631', source: '10', target: '1472', data: {} }, + { id: 'edge-0.8497008248666245', source: '10', target: '1473', data: {} }, + { id: 'edge-0.11634384873056303', source: '10', target: '1474', data: {} }, + { id: 'edge-0.8088721089863466', source: '10', target: '1475', data: {} }, + { id: 'edge-0.3394872565736593', source: '10', target: '1476', data: {} }, + { id: 'edge-0.5468052709506979', source: '10', target: '1477', data: {} }, + { id: 'edge-0.1734744242775319', source: '10', target: '1478', data: {} }, + { id: 'edge-0.8881756387647111', source: '10', target: '1479', data: {} }, + { id: 'edge-0.48560270080583945', source: '10', target: '1480', data: {} }, + { id: 'edge-0.6223981382104031', source: '10', target: '1481', data: {} }, + { id: 'edge-0.7973958473437122', source: '10', target: '1482', data: {} }, + { id: 'edge-0.13097959148688565', source: '10', target: '1483', data: {} }, + { id: 'edge-0.15041909140639076', source: '10', target: '1484', data: {} }, + { id: 'edge-0.8839877719496712', source: '10', target: '1485', data: {} }, + { id: 'edge-0.723129807890835', source: '10', target: '1486', data: {} }, + { id: 'edge-0.648710607208651', source: '10', target: '1487', data: {} }, + { id: 'edge-0.21629347294561518', source: '10', target: '1488', data: {} }, + { id: 'edge-0.9740664251490174', source: '10', target: '1489', data: {} }, + { id: 'edge-0.7558598590604193', source: '1492', target: '4177', data: {} }, + { id: 'edge-0.6464199991045652', source: '1492', target: '4178', data: {} }, + { id: 'edge-0.7298381207715601', source: '10', target: '1490', data: {} }, + { id: 'edge-0.6961280915858239', source: '10', target: '1491', data: {} }, + { id: 'edge-0.6669703285975681', source: '10', target: '1493', data: {} }, + { id: 'edge-0.6555555757833178', source: '10', target: '1495', data: {} }, + { id: 'edge-0.4726993387707259', source: '10', target: '1496', data: {} }, + { id: 'edge-0.15652524994727224', source: '10', target: '220', data: {} }, + { id: 'edge-0.2832280516473822', source: '10', target: '1498', data: {} }, + { id: 'edge-0.45583475573594723', source: '10', target: '1499', data: {} }, + { id: 'edge-0.5894395908501997', source: '10', target: '1500', data: {} }, + { id: 'edge-0.8193958045877143', source: '10', target: '1501', data: {} }, + { id: 'edge-0.8700631380092547', source: '10', target: '1502', data: {} }, + { id: 'edge-0.39363997230617565', source: '10', target: '1503', data: {} }, + { id: 'edge-0.33157049799128724', source: '10', target: '1504', data: {} }, + { id: 'edge-0.2937204218851688', source: '10', target: '1505', data: {} }, + { id: 'edge-0.09897125071198931', source: '10', target: '1506', data: {} }, + { id: 'edge-0.1101014978646142', source: '10', target: '1507', data: {} }, + { id: 'edge-0.3402365829680216', source: '10', target: '1508', data: {} }, + { id: 'edge-0.2766729657924831', source: '10', target: '1509', data: {} }, + { id: 'edge-0.03243900532891408', source: '10', target: '1510', data: {} }, + { id: 'edge-0.07525591452254221', source: '10', target: '1511', data: {} }, + { id: 'edge-0.6694687234345651', source: '10', target: '1512', data: {} }, + { id: 'edge-0.42777572089718974', source: '10', target: '1513', data: {} }, + { id: 'edge-0.2919300256098063', source: '10', target: '1514', data: {} }, + { id: 'edge-0.6803028029700624', source: '10', target: '1515', data: {} }, + { id: 'edge-0.7079536103114974', source: '1515', target: '1516', data: {} }, + { id: 'edge-0.5489464511991657', source: '1515', target: '1517', data: {} }, + { + id: 'edge-0.22853613050204613', + source: '1515', + target: '1518', + data: {}, + }, + { id: 'edge-0.5653454245706968', source: '10', target: '1519', data: {} }, + { id: 'edge-0.41454574472456995', source: '10', target: '1520', data: {} }, + { id: 'edge-0.8813569671568806', source: '10', target: '1522', data: {} }, + { id: 'edge-0.4475380150518875', source: '10', target: '1523', data: {} }, + { id: 'edge-0.6672399313559949', source: '10', target: '1524', data: {} }, + { id: 'edge-0.43471857487792587', source: '10', target: '1525', data: {} }, + { id: 'edge-0.3894712506690503', source: '10', target: '1526', data: {} }, + { id: 'edge-0.6342427351635898', source: '10', target: '1528', data: {} }, + { id: 'edge-0.4662494318138757', source: '10', target: '1529', data: {} }, + { id: 'edge-0.5418878047365046', source: '1529', target: '1530', data: {} }, + { id: 'edge-0.4227855884799121', source: '1529', target: '1531', data: {} }, + { id: 'edge-0.5985060332846375', source: '1529', target: '1532', data: {} }, + { id: 'edge-0.8660266589132217', source: '1529', target: '1533', data: {} }, + { + id: 'edge-0.058406387673630045', + source: '1529', + target: '1534', + data: {}, + }, + { id: 'edge-0.6189059378532702', source: '1529', target: '1535', data: {} }, + { id: 'edge-0.5007554370439229', source: '1529', target: '1536', data: {} }, + { + id: 'edge-0.29483429586128596', + source: '1529', + target: '1537', + data: {}, + }, + { + id: 'edge-0.31283755384670564', + source: '1529', + target: '1538', + data: {}, + }, + { id: 'edge-0.651732890742375', source: '1529', target: '1539', data: {} }, + { + id: 'edge-0.19824132532518868', + source: '1529', + target: '1540', + data: {}, + }, + { id: 'edge-0.4288486212631797', source: '1529', target: '1541', data: {} }, + { + id: 'edge-0.26433409604531644', + source: '1529', + target: '1542', + data: {}, + }, + { id: 'edge-0.1890996834456673', source: '1529', target: '1543', data: {} }, + { + id: 'edge-0.44028031987136207', + source: '1529', + target: '1544', + data: {}, + }, + { id: 'edge-0.6827398455184945', source: '10', target: '1545', data: {} }, + { id: 'edge-0.8222820819342247', source: '10', target: '1546', data: {} }, + { id: 'edge-0.7907596482657107', source: '10', target: '1547', data: {} }, + { id: 'edge-0.148637085634997', source: '10', target: '1548', data: {} }, + { id: 'edge-0.8811814850037591', source: '10', target: '1549', data: {} }, + { id: 'edge-0.748247083315543', source: '10', target: '1550', data: {} }, + { id: 'edge-0.4822815830973717', source: '10', target: '1551', data: {} }, + { id: 'edge-0.00998756590201788', source: '10', target: '1552', data: {} }, + { id: 'edge-0.3849065431591401', source: '10', target: '1553', data: {} }, + { id: 'edge-0.4466583814350109', source: '10', target: '1554', data: {} }, + { id: 'edge-0.9220491633066785', source: '10', target: '1555', data: {} }, + { id: 'edge-0.60592401274838', source: '10', target: '1556', data: {} }, + { id: 'edge-0.5764179483909884', source: '10', target: '1559', data: {} }, + { id: 'edge-0.5848294211858016', source: '10', target: '1560', data: {} }, + { id: 'edge-0.13273109861967614', source: '10', target: '1561', data: {} }, + { id: 'edge-0.7645254693823136', source: '10', target: '1562', data: {} }, + { id: 'edge-0.23482046942827162', source: '10', target: '1563', data: {} }, + { id: 'edge-0.006157039768818873', source: '10', target: '1564', data: {} }, + { id: 'edge-0.13453067838819321', source: '10', target: '1567', data: {} }, + { id: 'edge-0.1602075150591855', source: '10', target: '1568', data: {} }, + { id: 'edge-0.4960926126444707', source: '10', target: '1569', data: {} }, + { id: 'edge-0.3647704173872841', source: '10', target: '1570', data: {} }, + { id: 'edge-0.768412816878189', source: '10', target: '1571', data: {} }, + { id: 'edge-0.9159644188689802', source: '11', target: '1572', data: {} }, + { + id: 'edge-0.06068970321823164', + source: '1572', + target: '1573', + data: {}, + }, + { id: 'edge-0.469496323620457', source: '1572', target: '1574', data: {} }, + { id: 'edge-0.4089356805371587', source: '1574', target: '1575', data: {} }, + { id: 'edge-0.5833985236703847', source: '1572', target: '1576', data: {} }, + { + id: 'edge-0.34005888314276467', + source: '1572', + target: '1577', + data: {}, + }, + { id: 'edge-0.60970298864889', source: '1572', target: '1578', data: {} }, + { id: 'edge-0.806211354896478', source: '1572', target: '1579', data: {} }, + { id: 'edge-0.4468095451967853', source: '1572', target: '1580', data: {} }, + { id: 'edge-0.3490679140033961', source: '11', target: '1581', data: {} }, + { id: 'edge-0.34048181590215854', source: '15', target: '1581', data: {} }, + { id: 'edge-0.00924945444324976', source: '11', target: '1582', data: {} }, + { id: 'edge-0.652014249756929', source: '11', target: '1583', data: {} }, + { id: 'edge-0.35591506942209916', source: '11', target: '1584', data: {} }, + { id: 'edge-0.22224304316442178', source: '11', target: '1585', data: {} }, + { id: 'edge-0.4102927497316924', source: '11', target: '1586', data: {} }, + { id: 'edge-0.7977433939610725', source: '11', target: '1589', data: {} }, + { id: 'edge-0.7075802162647991', source: '11', target: '1590', data: {} }, + { id: 'edge-0.6024068459746166', source: '11', target: '1591', data: {} }, + { id: 'edge-0.9367338124892639', source: '11', target: '1592', data: {} }, + { id: 'edge-0.37126090141887014', source: '11', target: '1595', data: {} }, + { id: 'edge-0.6800260687329398', source: '11', target: '1596', data: {} }, + { id: 'edge-0.5142182646076361', source: '11', target: '1597', data: {} }, + { id: 'edge-0.313053070367167', source: '11', target: '1600', data: {} }, + { id: 'edge-0.5759206120420777', source: '11', target: '1602', data: {} }, + { id: 'edge-0.023694964757001724', source: '11', target: '1614', data: {} }, + { id: 'edge-0.5250159590949548', source: '11', target: '1616', data: {} }, + { id: 'edge-0.3332181969783796', source: '3897', target: '4205', data: {} }, + { + id: 'edge-0.02951643832183226', + source: '3897', + target: '4206', + data: {}, + }, + { + id: 'edge-0.40206542060742145', + source: '3897', + target: '4207', + data: {}, + }, + { id: 'edge-0.5338709250942395', source: '3897', target: '4208', data: {} }, + { + id: 'edge-0.052649723009419835', + source: '3897', + target: '4211', + data: {}, + }, + { id: 'edge-0.9231236472262918', source: '3897', target: '4212', data: {} }, + { id: 'edge-0.6633396488531897', source: '3897', target: '4213', data: {} }, + { id: 'edge-0.6178928444559169', source: '3897', target: '4214', data: {} }, + { + id: 'edge-0.02101340267040963', + source: '3897', + target: '4215', + data: {}, + }, + { id: 'edge-0.8402881977717052', source: '3897', target: '4216', data: {} }, + { id: 'edge-0.8372290153798756', source: '3897', target: '4217', data: {} }, + { id: 'edge-0.9856210933506728', source: '3897', target: '4218', data: {} }, + { + id: 'edge-0.18638205793766893', + source: '3897', + target: '4219', + data: {}, + }, + { id: 'edge-0.6592121697710593', source: '3897', target: '4220', data: {} }, + { id: 'edge-0.5511584330459376', source: '3897', target: '4221', data: {} }, + { id: 'edge-0.8887394398314514', source: '3897', target: '4222', data: {} }, + { + id: 'edge-0.45024610956845956', + source: '3897', + target: '4223', + data: {}, + }, + { id: 'edge-0.5025782661678726', source: '3897', target: '4224', data: {} }, + { id: 'edge-0.8607982619261318', source: '3897', target: '4225', data: {} }, + { id: 'edge-0.3169926469345097', source: '3897', target: '4226', data: {} }, + { + id: 'edge-0.37839447597272047', + source: '3897', + target: '4227', + data: {}, + }, + { id: 'edge-0.9160710403150643', source: '3897', target: '4228', data: {} }, + { id: 'edge-0.7708398471737885', source: '3897', target: '4229', data: {} }, + { id: 'edge-0.5804863848256154', source: '3897', target: '4230', data: {} }, + { id: 'edge-0.6447277016776862', source: '3897', target: '4231', data: {} }, + { id: 'edge-0.9751894214132755', source: '3897', target: '4232', data: {} }, + { id: 'edge-0.6706240756663393', source: '3897', target: '4233', data: {} }, + { id: 'edge-0.1747952045298624', source: '3897', target: '4234', data: {} }, + { id: 'edge-0.684683937736436', source: '3897', target: '4235', data: {} }, + { id: 'edge-0.6109118608818231', source: '12', target: '1617', data: {} }, + { id: 'edge-0.223042254442815', source: '12', target: '1618', data: {} }, + { id: 'edge-0.10614189427312137', source: '12', target: '1620', data: {} }, + { id: 'edge-0.3016735832483921', source: '12', target: '1622', data: {} }, + { id: 'edge-0.35463977459563', source: '12', target: '1623', data: {} }, + { id: 'edge-0.34905198899040846', source: '12', target: '1624', data: {} }, + { id: 'edge-0.8381753959701892', source: '12', target: '1625', data: {} }, + { id: 'edge-0.013746446139449864', source: '12', target: '1626', data: {} }, + { id: 'edge-0.3240925706370148', source: '12', target: '1628', data: {} }, + { id: 'edge-0.5748715113617722', source: '12', target: '1629', data: {} }, + { id: 'edge-0.7332606885682131', source: '12', target: '1631', data: {} }, + { id: 'edge-0.9747793456027174', source: '12', target: '1633', data: {} }, + { id: 'edge-0.5478772886496437', source: '12', target: '1634', data: {} }, + { id: 'edge-0.3121395381801231', source: '12', target: '1636', data: {} }, + { id: 'edge-0.5704294823481499', source: '12', target: '1648', data: {} }, + { id: 'edge-0.9872552311633616', source: '12', target: '1649', data: {} }, + { id: 'edge-0.5057796164212103', source: '12', target: '1650', data: {} }, + { id: 'edge-0.3085295200543443', source: '12', target: '1651', data: {} }, + { id: 'edge-0.6901838179592983', source: '12', target: '1652', data: {} }, + { id: 'edge-0.04742371405815837', source: '12', target: '1653', data: {} }, + { id: 'edge-0.7890401433446761', source: '12', target: '1655', data: {} }, + { id: 'edge-0.10361634164933098', source: '12', target: '1656', data: {} }, + { id: 'edge-0.04108188766292176', source: '12', target: '1657', data: {} }, + { id: 'edge-0.14621963604509158', source: '12', target: '1659', data: {} }, + { id: 'edge-0.4002488002230584', source: '12', target: '1660', data: {} }, + { id: 'edge-0.350170863204762', source: '12', target: '4236', data: {} }, + { id: 'edge-0.5191348470768997', source: '12', target: '4237', data: {} }, + { id: 'edge-0.749108002766981', source: '12', target: '4238', data: {} }, + { id: 'edge-0.6816472511927509', source: '12', target: '4239', data: {} }, + { id: 'edge-0.6392999528557368', source: '13', target: '1662', data: {} }, + { id: 'edge-0.16786386436502254', source: '13', target: '1663', data: {} }, + { id: 'edge-0.03996557156530778', source: '13', target: '1664', data: {} }, + { id: 'edge-0.010230199601987566', source: '13', target: '1665', data: {} }, + { id: 'edge-0.3447473425840548', source: '13', target: '1666', data: {} }, + { id: 'edge-0.6774201354499243', source: '13', target: '1667', data: {} }, + { id: 'edge-0.539057789759575', source: '13', target: '1668', data: {} }, + { id: 'edge-0.9485202833438735', source: '13', target: '1669', data: {} }, + { id: 'edge-0.6046906569403434', source: '13', target: '1671', data: {} }, + { id: 'edge-0.43476796491444447', source: '13', target: '1674', data: {} }, + { id: 'edge-0.28998717653500994', source: '13', target: '1675', data: {} }, + { id: 'edge-0.13465428679918867', source: '13', target: '1676', data: {} }, + { id: 'edge-0.14167050086073907', source: '13', target: '1677', data: {} }, + { id: 'edge-0.654233292341635', source: '13', target: '1678', data: {} }, + { id: 'edge-0.97769993239054', source: '13', target: '1682', data: {} }, + { id: 'edge-0.6179328872852392', source: '13', target: '1684', data: {} }, + { id: 'edge-0.5256931646321352', source: '13', target: '1685', data: {} }, + { id: 'edge-0.3676134677242311', source: '13', target: '1688', data: {} }, + { id: 'edge-0.587916410546125', source: '13', target: '1692', data: {} }, + { id: 'edge-0.3547419990834537', source: '13', target: '1693', data: {} }, + { id: 'edge-0.30741733447108643', source: '13', target: '1694', data: {} }, + { id: 'edge-0.9927617210325068', source: '13', target: '1698', data: {} }, + { id: 'edge-0.9870146867976943', source: '13', target: '1701', data: {} }, + { id: 'edge-0.9140777478635433', source: '13', target: '1703', data: {} }, + { id: 'edge-0.6594828062222244', source: '13', target: '1705', data: {} }, + { id: 'edge-0.9637139683599578', source: '13', target: '1706', data: {} }, + { id: 'edge-0.22643845135799134', source: '13', target: '1708', data: {} }, + { id: 'edge-0.59684149526736', source: '13', target: '1709', data: {} }, + { id: 'edge-0.8119887629935221', source: '13', target: '1710', data: {} }, + { id: 'edge-0.40233316361901683', source: '13', target: '1711', data: {} }, + { id: 'edge-0.38281128223490857', source: '13', target: '1718', data: {} }, + { id: 'edge-0.7694520670818996', source: '13', target: '1719', data: {} }, + { id: 'edge-0.07888415164735973', source: '13', target: '1720', data: {} }, + { id: 'edge-0.5271788801542643', source: '13', target: '1729', data: {} }, + { id: 'edge-0.12116105004828515', source: '13', target: '1732', data: {} }, + { id: 'edge-0.5450749483336224', source: '13', target: '1733', data: {} }, + { id: 'edge-0.11728579296387154', source: '13', target: '1734', data: {} }, + { id: 'edge-0.2982601941747891', source: '13', target: '1737', data: {} }, + { id: 'edge-0.6179475544146271', source: '13', target: '1742', data: {} }, + { id: 'edge-0.7431823518897138', source: '13', target: '1743', data: {} }, + { id: 'edge-0.7277391675123708', source: '13', target: '1747', data: {} }, + { id: 'edge-0.3799531931448501', source: '13', target: '1750', data: {} }, + { id: 'edge-0.8501113665571038', source: '13', target: '1751', data: {} }, + { id: 'edge-0.37106918082694484', source: '13', target: '1754', data: {} }, + { id: 'edge-0.14182813608226175', source: '13', target: '1756', data: {} }, + { id: 'edge-0.3277349664548945', source: '13', target: '1758', data: {} }, + { id: 'edge-0.7500229737071586', source: '13', target: '1760', data: {} }, + { id: 'edge-0.1532375462651001', source: '13', target: '1761', data: {} }, + { id: 'edge-0.36064430857424323', source: '13', target: '1764', data: {} }, + { id: 'edge-0.4860791000650102', source: '13', target: '1765', data: {} }, + { id: 'edge-0.9006821842331969', source: '13', target: '1768', data: {} }, + { id: 'edge-0.44580172415037866', source: '13', target: '1769', data: {} }, + { id: 'edge-0.6778548030210516', source: '13', target: '1770', data: {} }, + { id: 'edge-0.3910543600716718', source: '13', target: '1771', data: {} }, + { id: 'edge-0.5498894776068066', source: '13', target: '1772', data: {} }, + { id: 'edge-0.6253174882387436', source: '13', target: '1773', data: {} }, + { id: 'edge-0.6464483186954715', source: '1773', target: '1774', data: {} }, + { + id: 'edge-0.41802590266673967', + source: '1773', + target: '1775', + data: {}, + }, + { id: 'edge-0.3638622254810129', source: '1773', target: '1776', data: {} }, + { id: 'edge-0.5111686834102724', source: '1773', target: '1777', data: {} }, + { + id: 'edge-0.16876947357734529', + source: '1773', + target: '1778', + data: {}, + }, + { id: 'edge-0.3404921287540468', source: '1773', target: '1779', data: {} }, + { id: 'edge-0.5056631553108697', source: '1773', target: '1780', data: {} }, + { + id: 'edge-0.14333593235753672', + source: '1773', + target: '1781', + data: {}, + }, + { id: 'edge-0.1423428662570667', source: '13', target: '1801', data: {} }, + { id: 'edge-0.48682194779644616', source: '13', target: '1802', data: {} }, + { id: 'edge-0.060037653686358716', source: '13', target: '1803', data: {} }, + { id: 'edge-0.4212473743393417', source: '13', target: '1804', data: {} }, + { id: 'edge-0.5342136529697334', source: '13', target: '1806', data: {} }, + { id: 'edge-0.03205012303255872', source: '13', target: '1807', data: {} }, + { id: 'edge-0.9839789248364674', source: '13', target: '1808', data: {} }, + { id: 'edge-0.3680957173521169', source: '13', target: '1809', data: {} }, + { id: 'edge-0.3695448615028498', source: '14', target: '1810', data: {} }, + { + id: 'edge-0.42660456038001504', + source: '1810', + target: '1812', + data: {}, + }, + { id: 'edge-0.38818327381234674', source: '14', target: '1813', data: {} }, + { id: 'edge-0.8300288739097601', source: '14', target: '1814', data: {} }, + { id: 'edge-0.785880505129301', source: '14', target: '1815', data: {} }, + { id: 'edge-0.7205272489950729', source: '14', target: '1816', data: {} }, + { id: 'edge-0.6854536375664433', source: '14', target: '1817', data: {} }, + { id: 'edge-0.917555569630129', source: '14', target: '1818', data: {} }, + { id: 'edge-0.7508423950823706', source: '14', target: '1819', data: {} }, + { id: 'edge-0.059007781457537156', source: '14', target: '1820', data: {} }, + { id: 'edge-0.04457232554960444', source: '14', target: '1821', data: {} }, + { id: 'edge-0.7671531141205781', source: '14', target: '1822', data: {} }, + { id: 'edge-0.22071909510917687', source: '14', target: '1823', data: {} }, + { id: 'edge-0.15694389714947277', source: '14', target: '1824', data: {} }, + { id: 'edge-0.14717319095756265', source: '14', target: '1825', data: {} }, + { id: 'edge-0.4434553962311294', source: '1611', target: '1493', data: {} }, + { + id: 'edge-0.05797032778423383', + source: '1611', + target: '1829', + data: {}, + }, + { id: 'edge-0.9539793186826055', source: '4240', target: '475', data: {} }, + { id: 'edge-0.9959094543360782', source: '1611', target: '1838', data: {} }, + { id: 'edge-0.5449007161560733', source: '1611', target: '1846', data: {} }, + { id: 'edge-0.3912183128625897', source: '1611', target: '1848', data: {} }, + { + id: 'edge-0.39122874080130643', + source: '1611', + target: '1849', + data: {}, + }, + { id: 'edge-0.1395260261898088', source: '1611', target: '4241', data: {} }, + { id: 'edge-0.9547617081462643', source: '14', target: '1853', data: {} }, + { id: 'edge-0.4646968817514452', source: '1853', target: '1854', data: {} }, + { id: 'edge-0.130858466788232', source: '1853', target: '1855', data: {} }, + { id: 'edge-0.7192566318712403', source: '1853', target: '1856', data: {} }, + { + id: 'edge-0.12991651525358994', + source: '1853', + target: '1857', + data: {}, + }, + { id: 'edge-0.9482157732655789', source: '1853', target: '1858', data: {} }, + { + id: 'edge-0.11791977930242559', + source: '1853', + target: '1859', + data: {}, + }, + { + id: 'edge-0.27133341594859184', + source: '1853', + target: '1860', + data: {}, + }, + { + id: 'edge-0.22501210997085996', + source: '1853', + target: '1861', + data: {}, + }, + { id: 'edge-0.9612548998421528', source: '1853', target: '1862', data: {} }, + { id: 'edge-0.9873618126392805', source: '1853', target: '1863', data: {} }, + { id: 'edge-0.346541681504295', source: '1853', target: '1864', data: {} }, + { + id: 'edge-0.13217252755401798', + source: '1853', + target: '1865', + data: {}, + }, + { + id: 'edge-0.26257076595914963', + source: '1853', + target: '1866', + data: {}, + }, + { id: 'edge-0.700143077347972', source: '1853', target: '1867', data: {} }, + { id: 'edge-0.5706936577694763', source: '1853', target: '1868', data: {} }, + { + id: 'edge-0.007887737419136176', + source: '1853', + target: '1869', + data: {}, + }, + { id: 'edge-0.9908019815219284', source: '1869', target: '1870', data: {} }, + { id: 'edge-0.8529834924202306', source: '1869', target: '1871', data: {} }, + { id: 'edge-0.4791697698290127', source: '1869', target: '1872', data: {} }, + { id: 'edge-0.9121101244666221', source: '1869', target: '1873', data: {} }, + { id: 'edge-0.5250743726535181', source: '1869', target: '1874', data: {} }, + { id: 'edge-0.9057837166074909', source: '1869', target: '1875', data: {} }, + { id: 'edge-0.7143980075648984', source: '14', target: '1877', data: {} }, + { id: 'edge-0.6187028658475777', source: '14', target: '1316', data: {} }, + { id: 'edge-0.8772392012527757', source: '14', target: '1879', data: {} }, + { id: 'edge-0.7576595242211837', source: '14', target: '1880', data: {} }, + { id: 'edge-0.768824207463692', source: '14', target: '1881', data: {} }, + { id: 'edge-0.5895411464306988', source: '14', target: '1882', data: {} }, + { id: 'edge-0.6965044589955345', source: '14', target: '1883', data: {} }, + { id: 'edge-0.4700249866321693', source: '14', target: '1884', data: {} }, + { id: 'edge-0.1962128841095676', source: '14', target: '1885', data: {} }, + { id: 'edge-0.6177832876849283', source: '14', target: '1886', data: {} }, + { id: 'edge-0.12750191090102736', source: '14', target: '1887', data: {} }, + { id: 'edge-0.09786089115694585', source: '14', target: '1888', data: {} }, + { id: 'edge-0.9275502957706092', source: '14', target: '1889', data: {} }, + { id: 'edge-0.8904932846956142', source: '14', target: '1890', data: {} }, + { id: 'edge-0.883585801679339', source: '14', target: '1892', data: {} }, + { id: 'edge-0.24759033259743513', source: '14', target: '1893', data: {} }, + { id: 'edge-0.32520539223422484', source: '14', target: '1894', data: {} }, + { id: 'edge-0.4675654301260388', source: '15', target: '1897', data: {} }, + { id: 'edge-0.2093213877614304', source: '15', target: '1898', data: {} }, + { id: 'edge-0.9266824345675553', source: '15', target: '1899', data: {} }, + { id: 'edge-0.09880861728550316', source: '15', target: '1900', data: {} }, + { id: 'edge-0.7722767823199668', source: '15', target: '1901', data: {} }, + { id: 'edge-0.25641234096150756', source: '15', target: '1902', data: {} }, + { id: 'edge-0.6833286485510901', source: '15', target: '1903', data: {} }, + { id: 'edge-0.41489881532497397', source: '15', target: '1904', data: {} }, + { id: 'edge-0.9321028191011995', source: '15', target: '1905', data: {} }, + { id: 'edge-0.7660084072011251', source: '15', target: '1906', data: {} }, + { id: 'edge-0.4884959866929892', source: '15', target: '1907', data: {} }, + { id: 'edge-0.7591329194872733', source: '15', target: '1908', data: {} }, + { id: 'edge-0.8609647020656084', source: '15', target: '1909', data: {} }, + { id: 'edge-0.7973274971064848', source: '15', target: '1910', data: {} }, + { id: 'edge-0.4851919916692089', source: '15', target: '1911', data: {} }, + { id: 'edge-0.8736513180482011', source: '15', target: '1912', data: {} }, + { id: 'edge-0.7098031147178276', source: '15', target: '1913', data: {} }, + { id: 'edge-0.8516163453778538', source: '15', target: '1914', data: {} }, + { id: 'edge-0.7667566146632363', source: '15', target: '1915', data: {} }, + { id: 'edge-0.9749657995398231', source: '15', target: '1916', data: {} }, + { id: 'edge-0.22850597260220873', source: '15', target: '1917', data: {} }, + { id: 'edge-0.13095151001185434', source: '15', target: '1918', data: {} }, + { id: 'edge-0.6805350435003086', source: '15', target: '1919', data: {} }, + { id: 'edge-0.281145069880685', source: '15', target: '1920', data: {} }, + { id: 'edge-0.41587895328469693', source: '15', target: '1921', data: {} }, + { id: 'edge-0.1738468811680336', source: '15', target: '1922', data: {} }, + { id: 'edge-0.656646836203223', source: '15', target: '1923', data: {} }, + { id: 'edge-0.5621599012280218', source: '15', target: '1924', data: {} }, + { id: 'edge-0.5488433444176857', source: '15', target: '1925', data: {} }, + { id: 'edge-0.3047060134858717', source: '15', target: '1926', data: {} }, + { id: 'edge-0.5162818760921088', source: '15', target: '1927', data: {} }, + { id: 'edge-0.783262969303359', source: '15', target: '1928', data: {} }, + { id: 'edge-0.6602949973345256', source: '15', target: '4245', data: {} }, + { id: 'edge-0.6669542543664355', source: '15', target: '1929', data: {} }, + { id: 'edge-0.6095175294863293', source: '15', target: '1930', data: {} }, + { id: 'edge-0.20158541444077005', source: '15', target: '1931', data: {} }, + { id: 'edge-0.7848521952947196', source: '15', target: '1932', data: {} }, + { id: 'edge-0.14558373307872996', source: '15', target: '1933', data: {} }, + { id: 'edge-0.21307264042013752', source: '15', target: '1934', data: {} }, + { id: 'edge-0.30200795765172006', source: '15', target: '1935', data: {} }, + { id: 'edge-0.33700253703586225', source: '15', target: '1936', data: {} }, + { id: 'edge-0.7022058557893598', source: '15', target: '1937', data: {} }, + { id: 'edge-0.7925969582900032', source: '15', target: '1938', data: {} }, + { id: 'edge-0.7403218469733455', source: '15', target: '1939', data: {} }, + { id: 'edge-0.10782234974633242', source: '15', target: '1940', data: {} }, + { id: 'edge-0.04603560913377436', source: '15', target: '1941', data: {} }, + { id: 'edge-0.8797041109765067', source: '15', target: '1942', data: {} }, + { id: 'edge-0.7740916222503502', source: '15', target: '1943', data: {} }, + { id: 'edge-0.5139505437342058', source: '15', target: '1944', data: {} }, + { id: 'edge-0.45260360389769616', source: '15', target: '1945', data: {} }, + { id: 'edge-0.5220488858959835', source: '15', target: '1946', data: {} }, + { id: 'edge-0.7067042899211848', source: '15', target: '1947', data: {} }, + { id: 'edge-0.5008133284195075', source: '15', target: '1948', data: {} }, + { id: 'edge-0.4916875702346688', source: '15', target: '1949', data: {} }, + { id: 'edge-0.7165211786193704', source: '15', target: '1950', data: {} }, + { id: 'edge-0.6919030526518775', source: '15', target: '1951', data: {} }, + { id: 'edge-0.2598219238258528', source: '15', target: '1952', data: {} }, + { id: 'edge-0.8800308792468996', source: '15', target: '1954', data: {} }, + { id: 'edge-0.2599735116960651', source: '15', target: '1955', data: {} }, + { id: 'edge-0.4742044036412354', source: '15', target: '1956', data: {} }, + { id: 'edge-0.60237093356418', source: '15', target: '1957', data: {} }, + { id: 'edge-0.2708471594519479', source: '15', target: '1958', data: {} }, + { id: 'edge-0.3741690519584797', source: '15', target: '1959', data: {} }, + { id: 'edge-0.7647580920467236', source: '15', target: '1962', data: {} }, + { id: 'edge-0.6796164745277542', source: '15', target: '1963', data: {} }, + { id: 'edge-0.22940758826408314', source: '15', target: '1964', data: {} }, + { id: 'edge-0.6471094130130339', source: '15', target: '1965', data: {} }, + { id: 'edge-0.4504231123066851', source: '15', target: '1966', data: {} }, + { id: 'edge-0.9086137108908521', source: '15', target: '1953', data: {} }, + { id: 'edge-0.6378965641369518', source: '15', target: '1970', data: {} }, + { id: 'edge-0.13670020232022106', source: '15', target: '1971', data: {} }, + { id: 'edge-0.9730177487436471', source: '15', target: '1972', data: {} }, + { id: 'edge-0.833082444350921', source: '15', target: '1492', data: {} }, + { id: 'edge-0.6968323728958252', source: '10', target: '1492', data: {} }, + { id: 'edge-0.2792120130565994', source: '15', target: '1973', data: {} }, + { id: 'edge-0.6928445418740481', source: '15', target: '1974', data: {} }, + { id: 'edge-0.21348688030294083', source: '15', target: '1975', data: {} }, + { id: 'edge-0.34975860940327586', source: '15', target: '1976', data: {} }, + { id: 'edge-0.8028676075161412', source: '15', target: '1977', data: {} }, + { id: 'edge-0.8166178786430596', source: '15', target: '1978', data: {} }, + { id: 'edge-0.2518090442534131', source: '15', target: '1979', data: {} }, + { id: 'edge-0.3443701012651774', source: '15', target: '1981', data: {} }, + { id: 'edge-0.8959455476189', source: '15', target: '1982', data: {} }, + { id: 'edge-0.745960714068324', source: '15', target: '1983', data: {} }, + { id: 'edge-0.19256537169028443', source: '15', target: '1980', data: {} }, + { id: 'edge-0.3777180831218121', source: '16', target: '1984', data: {} }, + { id: 'edge-0.3613073888834317', source: '1984', target: '1985', data: {} }, + { id: 'edge-0.7266941698112157', source: '1984', target: '1986', data: {} }, + { id: 'edge-0.2115595118934097', source: '1990', target: '1991', data: {} }, + { id: 'edge-0.9077997690561699', source: '1990', target: '1992', data: {} }, + { id: 'edge-0.4946185785900221', source: '16', target: '1994', data: {} }, + { id: 'edge-0.881741817697488', source: '1994', target: '1995', data: {} }, + { + id: 'edge-0.07801360491153897', + source: '1994', + target: '1996', + data: {}, + }, + { + id: 'edge-0.29883357824523427', + source: '1994', + target: '1997', + data: {}, + }, + { id: 'edge-0.7747765300719534', source: '1994', target: '1998', data: {} }, + { + id: 'edge-0.04705626091934856', + source: '1994', + target: '1999', + data: {}, + }, + { + id: 'edge-0.48331102072188825', + source: '2000', + target: '2001', + data: {}, + }, + { id: 'edge-0.7950822991462929', source: '2000', target: '2002', data: {} }, + { id: 'edge-0.9271334844670529', source: '2000', target: '2003', data: {} }, + { id: 'edge-0.7113669592912095', source: '2000', target: '2004', data: {} }, + { + id: 'edge-0.05569056655288818', + source: '2000', + target: '2005', + data: {}, + }, + { id: 'edge-0.9801079345445425', source: '2000', target: '2006', data: {} }, + { + id: 'edge-0.07172702576860623', + source: '2000', + target: '2008', + data: {}, + }, + { id: 'edge-0.7574309303061231', source: '2000', target: '2009', data: {} }, + { id: 'edge-0.176279782598723', source: '2000', target: '2010', data: {} }, + { + id: 'edge-0.17195770179984216', + source: '2000', + target: '2011', + data: {}, + }, + { id: 'edge-0.5212299247697552', source: '2000', target: '2012', data: {} }, + { id: 'edge-0.927079828571483', source: '2000', target: '2013', data: {} }, + { id: 'edge-0.4983798375754953', source: '16', target: '2014', data: {} }, + { id: 'edge-0.7602208034901812', source: '2014', target: '2015', data: {} }, + { id: 'edge-0.9984106135662978', source: '2014', target: '2016', data: {} }, + { id: 'edge-0.07850422387632805', source: '16', target: '2017', data: {} }, + { + id: 'edge-0.28890510018907145', + source: '2017', + target: '2018', + data: {}, + }, + { id: 'edge-0.37004101431803305', source: '16', target: '2019', data: {} }, + { id: 'edge-0.781710967102436', source: '2019', target: '2020', data: {} }, + { id: 'edge-0.9211277353651477', source: '16', target: '2021', data: {} }, + { id: 'edge-0.4479722164095121', source: '16', target: '2022', data: {} }, + { id: 'edge-0.5095695383245324', source: '17', target: '2023', data: {} }, + { id: 'edge-0.8612106054303901', source: '17', target: '2024', data: {} }, + { id: 'edge-0.6872466736897473', source: '17', target: '2025', data: {} }, + { id: 'edge-0.2509435655861567', source: '17', target: '2027', data: {} }, + { id: 'edge-0.2834515158365547', source: '17', target: '2028', data: {} }, + { id: 'edge-0.9158899648361303', source: '17', target: '2030', data: {} }, + { id: 'edge-0.9793553763608815', source: '17', target: '2031', data: {} }, + { id: 'edge-0.5946142119216817', source: '2031', target: '2032', data: {} }, + { id: 'edge-0.5233232860757158', source: '2031', target: '2033', data: {} }, + { + id: 'edge-0.47955708532469155', + source: '2031', + target: '2034', + data: {}, + }, + { + id: 'edge-0.36692257356867053', + source: '2031', + target: '2035', + data: {}, + }, + { id: 'edge-0.6588072253169277', source: '17', target: '2036', data: {} }, + { id: 'edge-0.004443282455207642', source: '17', target: '2037', data: {} }, + { id: 'edge-0.027862630156870738', source: '17', target: '2039', data: {} }, + { id: 'edge-0.4788028581895196', source: '17', target: '2040', data: {} }, + { id: 'edge-0.651679856419952', source: '17', target: '2041', data: {} }, + { id: 'edge-0.8049839820408762', source: '17', target: '2042', data: {} }, + { id: 'edge-0.9997409093923786', source: '17', target: '2043', data: {} }, + { id: 'edge-0.15418506717264702', source: '17', target: '2044', data: {} }, + { + id: 'edge-0.07545838308391817', + source: '2044', + target: '2045', + data: {}, + }, + { id: 'edge-0.9484425517233186', source: '17', target: '2046', data: {} }, + { id: 'edge-0.9288501796932915', source: '17', target: '2048', data: {} }, + { id: 'edge-0.8820233339361736', source: '17', target: '2049', data: {} }, + { id: 'edge-0.9527680873543014', source: '17', target: '2050', data: {} }, + { id: 'edge-0.3441847908410105', source: '17', target: '2051', data: {} }, + { id: 'edge-0.20194716391870093', source: '17', target: '2052', data: {} }, + { id: 'edge-0.2910550987218288', source: '17', target: '2054', data: {} }, + { id: 'edge-0.175291339836813', source: '17', target: '2056', data: {} }, + { id: 'edge-0.9986398937100842', source: '17', target: '2058', data: {} }, + { id: 'edge-0.7148066039749268', source: '17', target: '2059', data: {} }, + { id: 'edge-0.9413886934738687', source: '17', target: '2062', data: {} }, + { id: 'edge-0.2782955175444677', source: '17', target: '2064', data: {} }, + { id: 'edge-0.6262695899128421', source: '17', target: '2065', data: {} }, + { id: 'edge-0.07487022330967608', source: '17', target: '2069', data: {} }, + { id: 'edge-0.10076268515383302', source: '17', target: '2073', data: {} }, + { id: 'edge-0.39006035459873867', source: '17', target: '2076', data: {} }, + { id: 'edge-0.09692245689162982', source: '17', target: '2077', data: {} }, + { id: 'edge-0.30305134709759773', source: '17', target: '2078', data: {} }, + { id: 'edge-0.36109829376067437', source: '17', target: '2079', data: {} }, + { id: 'edge-0.8840244951048886', source: '17', target: '2082', data: {} }, + { id: 'edge-0.898834031144804', source: '17', target: '2083', data: {} }, + { id: 'edge-0.6030818960662179', source: '17', target: '4250', data: {} }, + { id: 'edge-0.48239088385828377', source: '17', target: '2085', data: {} }, + { id: 'edge-0.2140143922729154', source: '17', target: '2751', data: {} }, + { id: 'edge-0.6382754961132282', source: '17', target: '2087', data: {} }, + { id: 'edge-0.47569333594744956', source: '17', target: '2676', data: {} }, + { id: 'edge-0.4189920061661365', source: '4251', target: '4252', data: {} }, + { id: 'edge-0.8276269144177233', source: '4251', target: '4253', data: {} }, + { id: 'edge-0.1007155931228556', source: '4251', target: '4258', data: {} }, + { id: 'edge-0.7397860844900999', source: '4251', target: '4276', data: {} }, + { + id: 'edge-0.07863982792161073', + source: '4251', + target: '4277', + data: {}, + }, + { + id: 'edge-0.28527234507223587', + source: '4251', + target: '4278', + data: {}, + }, + { id: 'edge-0.7667856930822343', source: '4251', target: '4279', data: {} }, + { id: 'edge-0.518762712145747', source: '4251', target: '4280', data: {} }, + { id: 'edge-0.4616928355245815', source: '4251', target: '4281', data: {} }, + { id: 'edge-0.4340410967725612', source: '4251', target: '4282', data: {} }, + { + id: 'edge-0.014691842221551399', + source: '4251', + target: '4283', + data: {}, + }, + { id: 'edge-0.6145889691725621', source: '4251', target: '4284', data: {} }, + { + id: 'edge-0.039992640107481936', + source: '4251', + target: '4285', + data: {}, + }, + { + id: 'edge-0.47705947481447186', + source: '4251', + target: '4286', + data: {}, + }, + { id: 'edge-0.916461658899435', source: '4251', target: '4287', data: {} }, + { id: 'edge-0.6510789646144906', source: '4251', target: '4288', data: {} }, + { id: 'edge-0.7165127971045464', source: '4251', target: '4289', data: {} }, + { + id: 'edge-0.46346013592329594', + source: '4251', + target: '4290', + data: {}, + }, + { id: 'edge-0.6879090600752784', source: '4251', target: '4291', data: {} }, + { + id: 'edge-0.034931874977166544', + source: '4251', + target: '4292', + data: {}, + }, + { id: 'edge-0.4078652637581588', source: '4251', target: '4293', data: {} }, + { id: 'edge-0.6287760438569301', source: '4251', target: '4294', data: {} }, + { id: 'edge-0.886362214788122', source: '4294', target: '4295', data: {} }, + { id: 'edge-0.5165694682547255', source: '9', target: '4293', data: {} }, + { id: 'edge-0.6661963222407155', source: '4298', target: '2093', data: {} }, + { + id: 'edge-0.49595574301350887', + source: '4298', + target: '2094', + data: {}, + }, + { id: 'edge-0.3180105113795695', source: '4298', target: '2095', data: {} }, + { id: 'edge-0.9324762528576964', source: '4298', target: '2101', data: {} }, + { + id: 'edge-0.34670029912176803', + source: '4298', + target: '2102', + data: {}, + }, + { + id: 'edge-0.11358781689311703', + source: '4298', + target: '2103', + data: {}, + }, + { id: 'edge-0.9753496332085592', source: '4298', target: '2104', data: {} }, + { + id: 'edge-0.17606541966683986', + source: '4298', + target: '2105', + data: {}, + }, + { id: 'edge-0.1259174293925962', source: '4298', target: '2106', data: {} }, + { + id: 'edge-0.40021019212629616', + source: '4298', + target: '2107', + data: {}, + }, + { id: 'edge-0.4847730669753676', source: '4298', target: '2108', data: {} }, + { id: 'edge-0.8561055368182624', source: '4298', target: '2109', data: {} }, + { + id: 'edge-0.18461734449541667', + source: '4298', + target: '2110', + data: {}, + }, + { id: 'edge-0.786060004178458', source: '4298', target: '2111', data: {} }, + { + id: 'edge-0.22012184473302798', + source: '4298', + target: '2112', + data: {}, + }, + { id: 'edge-0.5232288188143994', source: '4298', target: '2113', data: {} }, + { + id: 'edge-0.35457645702705354', + source: '4298', + target: '2114', + data: {}, + }, + { + id: 'edge-0.48162813693536943', + source: '4298', + target: '2115', + data: {}, + }, + { id: 'edge-0.5175730762744384', source: '4298', target: '2116', data: {} }, + { id: 'edge-0.9326430642788466', source: '4298', target: '2117', data: {} }, + { id: 'edge-0.6128159716603099', source: '4298', target: '2118', data: {} }, + { + id: 'edge-0.12506417284793048', + source: '4298', + target: '2119', + data: {}, + }, + { id: 'edge-0.9445602061084177', source: '4298', target: '2120', data: {} }, + { id: 'edge-0.5726722792319974', source: '4298', target: '2121', data: {} }, + { + id: 'edge-0.43213678056168825', + source: '4298', + target: '2127', + data: {}, + }, + { id: 'edge-0.4906618006759771', source: '4298', target: '2128', data: {} }, + { id: 'edge-0.3433927618099806', source: '4298', target: '2129', data: {} }, + { id: 'edge-0.4991643828065835', source: '4298', target: '2130', data: {} }, + { id: 'edge-0.2682985572874439', source: '4298', target: '2132', data: {} }, + { id: 'edge-0.7948943302474603', source: '4298', target: '2133', data: {} }, + { id: 'edge-0.9710348260326527', source: '4298', target: '2134', data: {} }, + { id: 'edge-0.3605448809322509', source: '4298', target: '2135', data: {} }, + { + id: 'edge-0.05668612306862597', + source: '4298', + target: '2136', + data: {}, + }, + { + id: 'edge-0.00017241517563904019', + source: '4298', + target: '2137', + data: {}, + }, + { id: 'edge-0.4884337724657706', source: '4298', target: '2138', data: {} }, + { id: 'edge-0.6382789455323303', source: '4298', target: '2142', data: {} }, + { + id: 'edge-0.025299411306462627', + source: '4298', + target: '2143', + data: {}, + }, + { id: 'edge-0.613057163509843', source: '4298', target: '2144', data: {} }, + { id: 'edge-0.4025427091511442', source: '4298', target: '2145', data: {} }, + { id: 'edge-0.3994822044484416', source: '4298', target: '2146', data: {} }, + { id: 'edge-0.8793743701386612', source: '4298', target: '2147', data: {} }, + { id: 'edge-0.2597136223449672', source: '4298', target: '2149', data: {} }, + { id: 'edge-0.921842489682074', source: '4298', target: '2161', data: {} }, + { id: 'edge-0.3719886498215035', source: '4298', target: '2164', data: {} }, + { id: 'edge-0.8432080015106449', source: '18', target: '2245', data: {} }, + { id: 'edge-0.7978389583763024', source: '18', target: '2246', data: {} }, + { id: 'edge-0.6411963402172982', source: '18', target: '2247', data: {} }, + { id: 'edge-0.3662709248483773', source: '18', target: '2258', data: {} }, + { id: 'edge-0.26960465166880376', source: '18', target: '2259', data: {} }, + { id: 'edge-0.8250164743283999', source: '18', target: '2260', data: {} }, + { id: 'edge-0.3773230270762593', source: '18', target: '2261', data: {} }, + { id: 'edge-0.2945879664152802', source: '18', target: '2262', data: {} }, + { id: 'edge-0.8503730233064606', source: '18', target: '2263', data: {} }, + { id: 'edge-0.28753362375496017', source: '18', target: '2266', data: {} }, + { id: 'edge-0.5035446960278054', source: '18', target: '2268', data: {} }, + { id: 'edge-0.20260619869458885', source: '18', target: '2269', data: {} }, + { id: 'edge-0.44448277493296295', source: '18', target: '2270', data: {} }, + { id: 'edge-0.2877657468184611', source: '18', target: '2271', data: {} }, + { id: 'edge-0.8104740339799601', source: '18', target: '2272', data: {} }, + { id: 'edge-0.5464178385199483', source: '18', target: '2273', data: {} }, + { id: 'edge-0.12301234709716735', source: '18', target: '2276', data: {} }, + { id: 'edge-0.3364855957844908', source: '18', target: '2279', data: {} }, + { id: 'edge-0.07637922224948013', source: '18', target: '2280', data: {} }, + { id: 'edge-0.5770592494308764', source: '18', target: '2282', data: {} }, + { id: 'edge-0.014951767349089984', source: '18', target: '2286', data: {} }, + { id: 'edge-0.010333844832897787', source: '18', target: '2287', data: {} }, + { id: 'edge-0.3774642207856853', source: '18', target: '2288', data: {} }, + { id: 'edge-0.5193626763948571', source: '18', target: '2292', data: {} }, + { id: 'edge-0.3678743515501739', source: '18', target: '2293', data: {} }, + { id: 'edge-0.8995809837132194', source: '18', target: '2294', data: {} }, + { id: 'edge-0.16980178054574058', source: '18', target: '2295', data: {} }, + { id: 'edge-0.4060842594036884', source: '18', target: '2296', data: {} }, + { id: 'edge-0.6563731303998983', source: '18', target: '2297', data: {} }, + { id: 'edge-0.7993834034299516', source: '18', target: '2298', data: {} }, + { id: 'edge-0.9468367802030748', source: '18', target: '2299', data: {} }, + { id: 'edge-0.24082446255706058', source: '18', target: '2300', data: {} }, + { id: 'edge-0.7590233150594148', source: '18', target: '2301', data: {} }, + { id: 'edge-0.8326579531432936', source: '18', target: '2302', data: {} }, + { id: 'edge-0.38021069308751354', source: '18', target: '2303', data: {} }, + { id: 'edge-0.578752055919131', source: '18', target: '2307', data: {} }, + { id: 'edge-0.43140239783040357', source: '18', target: '2308', data: {} }, + { id: 'edge-0.2000243409671456', source: '18', target: '2309', data: {} }, + { id: 'edge-0.7566936746919395', source: '18', target: '2310', data: {} }, + { id: 'edge-0.9684501911656711', source: '18', target: '2311', data: {} }, + { id: 'edge-0.5000382318838581', source: '18', target: '2312', data: {} }, + { id: 'edge-0.33588720954563867', source: '18', target: '2313', data: {} }, + { id: 'edge-0.9583587798576865', source: '18', target: '2315', data: {} }, + { id: 'edge-0.5751507522489876', source: '18', target: '2316', data: {} }, + { id: 'edge-0.5431542309925199', source: '18', target: '2320', data: {} }, + { id: 'edge-0.1335436376372594', source: '18', target: '2324', data: {} }, + { id: 'edge-0.9222104871703729', source: '18', target: '2325', data: {} }, + { id: 'edge-0.7503933972397601', source: '18', target: '2326', data: {} }, + { id: 'edge-0.7763318916287107', source: '18', target: '2329', data: {} }, + { id: 'edge-0.6298532074332277', source: '18', target: '2330', data: {} }, + { id: 'edge-0.5493592180775622', source: '18', target: '2331', data: {} }, + { id: 'edge-0.9574008109893399', source: '18', target: '2332', data: {} }, + { id: 'edge-0.22546067836265182', source: '18', target: '2333', data: {} }, + { id: 'edge-0.31183141632160916', source: '18', target: '2334', data: {} }, + { id: 'edge-0.7054449035710428', source: '18', target: '2335', data: {} }, + { id: 'edge-0.5135224425365548', source: '18', target: '2336', data: {} }, + { id: 'edge-0.04989149941609705', source: '18', target: '2337', data: {} }, + { id: 'edge-0.18352671027304335', source: '18', target: '2338', data: {} }, + { id: 'edge-0.9358644251096118', source: '18', target: '2339', data: {} }, + { id: 'edge-0.4683545485770624', source: '18', target: '2340', data: {} }, + { id: 'edge-0.7216408405509083', source: '18', target: '2341', data: {} }, + { id: 'edge-0.925823227665709', source: '18', target: '2342', data: {} }, + { id: 'edge-0.16076820930086977', source: '18', target: '2343', data: {} }, + { id: 'edge-0.07092390489317091', source: '18', target: '2344', data: {} }, + { id: 'edge-0.9665916918067643', source: '18', target: '2345', data: {} }, + { id: 'edge-0.7671377813563458', source: '18', target: '2346', data: {} }, + { id: 'edge-0.984098289621087', source: '18', target: '2347', data: {} }, + { id: 'edge-0.22555828382762488', source: '18', target: '2348', data: {} }, + { id: 'edge-0.20311164188856412', source: '18', target: '2349', data: {} }, + { id: 'edge-0.2504537451833806', source: '18', target: '2350', data: {} }, + { id: 'edge-0.6405113712427748', source: '18', target: '2351', data: {} }, + { id: 'edge-0.14208862545396084', source: '18', target: '2352', data: {} }, + { id: 'edge-0.338399507582809', source: '18', target: '2353', data: {} }, + { id: 'edge-0.13538209364729337', source: '18', target: '2354', data: {} }, + { id: 'edge-0.5626237262060751', source: '18', target: '2355', data: {} }, + { id: 'edge-0.028733457429946707', source: '18', target: '2356', data: {} }, + { id: 'edge-0.5495420824691537', source: '18', target: '2357', data: {} }, + { id: 'edge-0.9490830269688106', source: '18', target: '2358', data: {} }, + { id: 'edge-0.15990010961622736', source: '18', target: '2359', data: {} }, + { id: 'edge-0.709330491515967', source: '18', target: '2360', data: {} }, + { id: 'edge-0.007725550101183698', source: '18', target: '2361', data: {} }, + { id: 'edge-0.6512632457698397', source: '18', target: '2362', data: {} }, + { id: 'edge-0.41507718572632535', source: '18', target: '2363', data: {} }, + { id: 'edge-0.6922536482100066', source: '18', target: '2364', data: {} }, + { id: 'edge-0.8554557569054633', source: '18', target: '2365', data: {} }, + { id: 'edge-0.2288728139245928', source: '18', target: '2366', data: {} }, + { id: 'edge-0.9831119905084382', source: '18', target: '2367', data: {} }, + { id: 'edge-0.2030630050028166', source: '18', target: '2368', data: {} }, + { id: 'edge-0.776369578478991', source: '18', target: '2376', data: {} }, + { id: 'edge-0.35716494095063944', source: '18', target: '2377', data: {} }, + { id: 'edge-0.1540226613893263', source: '18', target: '2380', data: {} }, + { id: 'edge-0.4176294910299989', source: '18', target: '2381', data: {} }, + { id: 'edge-0.565668209121698', source: '18', target: '2382', data: {} }, + { id: 'edge-0.6462719884367238', source: '18', target: '2383', data: {} }, + { id: 'edge-0.8881469773481736', source: '18', target: '2384', data: {} }, + { id: 'edge-0.4358620837938816', source: '18', target: '2385', data: {} }, + { id: 'edge-0.9245292397181775', source: '18', target: '2386', data: {} }, + { id: 'edge-0.12931318680728365', source: '18', target: '2392', data: {} }, + { id: 'edge-0.6251532350383224', source: '18', target: '2393', data: {} }, + { id: 'edge-0.6439806398903687', source: '18', target: '2394', data: {} }, + { id: 'edge-0.5702298382156525', source: '18', target: '2395', data: {} }, + { id: 'edge-0.4190482340779582', source: '18', target: '2396', data: {} }, + { id: 'edge-0.48995358115973775', source: '18', target: '2397', data: {} }, + { id: 'edge-0.7036498347466276', source: '18', target: '2398', data: {} }, + { id: 'edge-0.7624989796836048', source: '18', target: '2401', data: {} }, + { id: 'edge-0.6451197649438234', source: '18', target: '2404', data: {} }, + { id: 'edge-0.6036626084753707', source: '18', target: '2411', data: {} }, + { id: 'edge-0.410671036018492', source: '18', target: '2413', data: {} }, + { id: 'edge-0.03934907621194417', source: '18', target: '2420', data: {} }, + { id: 'edge-0.8895885350927539', source: '18', target: '2421', data: {} }, + { id: 'edge-0.2322444705550859', source: '18', target: '2422', data: {} }, + { id: 'edge-0.7167510314409218', source: '18', target: '2424', data: {} }, + { id: 'edge-0.44891059346840234', source: '18', target: '2425', data: {} }, + { id: 'edge-0.034994221005379744', source: '18', target: '2426', data: {} }, + { id: 'edge-0.9046899563021049', source: '18', target: '2432', data: {} }, + { id: 'edge-0.998848813446632', source: '18', target: '2433', data: {} }, + { id: 'edge-0.581351822704574', source: '18', target: '2434', data: {} }, + { id: 'edge-0.5109453097294154', source: '18', target: '2435', data: {} }, + { id: 'edge-0.9101234669285823', source: '18', target: '2436', data: {} }, + { id: 'edge-0.4217864283319914', source: '18', target: '2438', data: {} }, + { id: 'edge-0.9550438483609762', source: '18', target: '2439', data: {} }, + { id: 'edge-0.6866985784377522', source: '18', target: '2440', data: {} }, + { id: 'edge-0.3946577602743915', source: '18', target: '2442', data: {} }, + { id: 'edge-0.274541801094603', source: '18', target: '2443', data: {} }, + { id: 'edge-0.7209385166923559', source: '18', target: '2444', data: {} }, + { id: 'edge-0.19803020938223148', source: '18', target: '2448', data: {} }, + { id: 'edge-0.7889232951198666', source: '18', target: '2449', data: {} }, + { id: 'edge-0.7362439964180822', source: '18', target: '2455', data: {} }, + { id: 'edge-0.26653244426391964', source: '18', target: '2456', data: {} }, + { id: 'edge-0.7705652997878802', source: '18', target: '2460', data: {} }, + { id: 'edge-0.0889207831269212', source: '18', target: '2461', data: {} }, + { id: 'edge-0.2395511785636535', source: '18', target: '2463', data: {} }, + { id: 'edge-0.9295032948198434', source: '18', target: '2464', data: {} }, + { id: 'edge-0.6531960329000897', source: '18', target: '2466', data: {} }, + { id: 'edge-0.7638096256652405', source: '18', target: '2467', data: {} }, + { id: 'edge-0.4346785601118732', source: '18', target: '2468', data: {} }, + { id: 'edge-0.9896673343985174', source: '18', target: '2469', data: {} }, + { id: 'edge-0.7375424126259122', source: '18', target: '2470', data: {} }, + { id: 'edge-0.41055073242154294', source: '18', target: '2471', data: {} }, + { id: 'edge-0.47812338903974894', source: '18', target: '2472', data: {} }, + { id: 'edge-0.8783787431365602', source: '18', target: '2473', data: {} }, + { id: 'edge-0.4203631808768493', source: '18', target: '2474', data: {} }, + { id: 'edge-0.6899760048318611', source: '18', target: '2475', data: {} }, + { id: 'edge-0.6738589367537797', source: '18', target: '2485', data: {} }, + { id: 'edge-0.9554543386783041', source: '18', target: '2500', data: {} }, + { id: 'edge-0.6982302566279432', source: '18', target: '2503', data: {} }, + { id: 'edge-0.10836855955444591', source: '18', target: '2504', data: {} }, + { id: 'edge-0.3726170018248496', source: '18', target: '2507', data: {} }, + { id: 'edge-0.958378397637164', source: '18', target: '2509', data: {} }, + { id: 'edge-0.12819129736984336', source: '18', target: '2510', data: {} }, + { id: 'edge-0.9352581775239257', source: '18', target: '2512', data: {} }, + { id: 'edge-0.30147057891278095', source: '18', target: '2515', data: {} }, + { id: 'edge-0.5267479590122266', source: '18', target: '2526', data: {} }, + { id: 'edge-0.93203164889585', source: '19', target: '2527', data: {} }, + { id: 'edge-0.0819751605107717', source: '19', target: '2528', data: {} }, + { id: 'edge-0.5102125969583926', source: '19', target: '2529', data: {} }, + { id: 'edge-0.43575739577608563', source: '19', target: '2530', data: {} }, + { id: 'edge-0.38890022720079664', source: '19', target: '2532', data: {} }, + { id: 'edge-0.7755700100842331', source: '19', target: '2534', data: {} }, + { id: 'edge-0.19303376434218267', source: '19', target: '2535', data: {} }, + { id: 'edge-0.8710155678490072', source: '19', target: '2536', data: {} }, + { id: 'edge-0.004936091054811298', source: '19', target: '2537', data: {} }, + { id: 'edge-0.4103999988693319', source: '19', target: '2538', data: {} }, + { id: 'edge-0.06851416536406751', source: '19', target: '2539', data: {} }, + { id: 'edge-0.4586722915672521', source: '19', target: '2540', data: {} }, + { id: 'edge-0.504103886861069', source: '19', target: '2541', data: {} }, + { id: 'edge-0.09024714095978936', source: '19', target: '2542', data: {} }, + { id: 'edge-0.24823911935219423', source: '19', target: '2543', data: {} }, + { id: 'edge-0.829240916703861', source: '19', target: '2544', data: {} }, + { id: 'edge-0.3484112857635615', source: '19', target: '2545', data: {} }, + { id: 'edge-0.4785697422841497', source: '19', target: '2546', data: {} }, + { id: 'edge-0.38599982922099074', source: '19', target: '2547', data: {} }, + { id: 'edge-0.07676661571462717', source: '19', target: '2548', data: {} }, + { id: 'edge-0.8666368334921333', source: '19', target: '2549', data: {} }, + { id: 'edge-0.5466546144106899', source: '19', target: '2550', data: {} }, + { id: 'edge-0.6276469186545557', source: '19', target: '2551', data: {} }, + { id: 'edge-0.8067242977442046', source: '19', target: '2552', data: {} }, + { id: 'edge-0.38899183913010726', source: '19', target: '2553', data: {} }, + { id: 'edge-0.6014120441304782', source: '19', target: '2554', data: {} }, + { id: 'edge-0.08475983928151654', source: '19', target: '2555', data: {} }, + { id: 'edge-0.4298302989007823', source: '19', target: '2556', data: {} }, + { id: 'edge-0.3076631079760992', source: '19', target: '2557', data: {} }, + { id: 'edge-0.8222163853762099', source: '19', target: '2558', data: {} }, + { id: 'edge-0.5720492670340886', source: '19', target: '2560', data: {} }, + { id: 'edge-0.18770485371416057', source: '19', target: '2561', data: {} }, + { id: 'edge-0.09097203109762564', source: '19', target: '2562', data: {} }, + { id: 'edge-0.34124749159571466', source: '19', target: '2563', data: {} }, + { id: 'edge-0.5147683340291285', source: '19', target: '2564', data: {} }, + { id: 'edge-0.681025681456944', source: '19', target: '2565', data: {} }, + { id: 'edge-0.055444972418369876', source: '19', target: '2566', data: {} }, + { id: 'edge-0.9971306767069039', source: '19', target: '2567', data: {} }, + { id: 'edge-0.5371151533659637', source: '19', target: '2568', data: {} }, + { id: 'edge-0.14771811062284468', source: '19', target: '2569', data: {} }, + { id: 'edge-0.4661764926417771', source: '19', target: '2572', data: {} }, + { id: 'edge-0.9932453244745649', source: '19', target: '2573', data: {} }, + { id: 'edge-0.8626966875962192', source: '19', target: '2574', data: {} }, + { id: 'edge-0.9557515188077099', source: '19', target: '2575', data: {} }, + { id: 'edge-0.3576337639104272', source: '19', target: '2576', data: {} }, + { id: 'edge-0.1910047083005959', source: '19', target: '2577', data: {} }, + { id: 'edge-0.679653737034996', source: '19', target: '2579', data: {} }, + { id: 'edge-0.7248591354736387', source: '19', target: '2580', data: {} }, + { id: 'edge-0.32955780634162113', source: '19', target: '2581', data: {} }, + { id: 'edge-0.2834578330466644', source: '19', target: '2583', data: {} }, + { id: 'edge-0.044759999830131125', source: '19', target: '2584', data: {} }, + { id: 'edge-0.5267791474453467', source: '19', target: '2585', data: {} }, + { id: 'edge-0.9422131164960608', source: '20', target: '2586', data: {} }, + { id: 'edge-0.4860553795006457', source: '20', target: '2587', data: {} }, + { id: 'edge-0.6776874215109536', source: '20', target: '2589', data: {} }, + { id: 'edge-0.6176706920615402', source: '20', target: '2595', data: {} }, + { id: 'edge-0.042260912106508064', source: '20', target: '2597', data: {} }, + { id: 'edge-0.6292362463934529', source: '20', target: '2601', data: {} }, + { id: 'edge-0.9861711672017426', source: '20', target: '2602', data: {} }, + { id: 'edge-0.6546077704777511', source: '20', target: '2603', data: {} }, + { id: 'edge-0.9570822338038443', source: '20', target: '2604', data: {} }, + { id: 'edge-0.15511375159742036', source: '20', target: '2605', data: {} }, + { id: 'edge-0.9892199260852033', source: '20', target: '2608', data: {} }, + { id: 'edge-0.4793277532978133', source: '20', target: '2611', data: {} }, + { id: 'edge-0.8621217437266497', source: '20', target: '2612', data: {} }, + { id: 'edge-0.6255872278253831', source: '20', target: '2623', data: {} }, + { id: 'edge-0.926091261917591', source: '20', target: '2624', data: {} }, + { id: 'edge-0.6376290237707019', source: '20', target: '2629', data: {} }, + { + id: 'edge-0.0014329321897530445', + source: '20', + target: '2638', + data: {}, + }, + { id: 'edge-0.6576620392635624', source: '20', target: '2640', data: {} }, + { id: 'edge-0.5251218296749938', source: '20', target: '2641', data: {} }, + { id: 'edge-0.9667997181874224', source: '20', target: '2642', data: {} }, + { id: 'edge-0.6667212076723144', source: '20', target: '2643', data: {} }, + { id: 'edge-0.9730156232721039', source: '20', target: '2647', data: {} }, + { id: 'edge-0.21754972824567043', source: '20', target: '2661', data: {} }, + { id: 'edge-0.021291708497097384', source: '20', target: '2675', data: {} }, + { id: 'edge-0.4026770991473012', source: '20', target: '2676', data: {} }, + { id: 'edge-0.868303505790361', source: '20', target: '2677', data: {} }, + { id: 'edge-0.5650794701462807', source: '20', target: '2678', data: {} }, + { id: 'edge-0.4877324338231126', source: '4299', target: '4300', data: {} }, + { id: 'edge-0.6310403710207206', source: '4299', target: '4301', data: {} }, + { id: 'edge-0.8931684763829966', source: '4299', target: '4304', data: {} }, + { id: 'edge-0.8163936835815335', source: '4299', target: '4307', data: {} }, + { id: 'edge-0.8754784857280591', source: '4299', target: '4309', data: {} }, + { id: 'edge-0.3080564133063475', source: '4299', target: '4311', data: {} }, + { id: 'edge-0.5381764355227745', source: '4299', target: '4313', data: {} }, + { + id: 'edge-0.08816454630998805', + source: '4299', + target: '4314', + data: {}, + }, + { id: 'edge-0.7409191294440376', source: '4299', target: '4315', data: {} }, + { + id: 'edge-0.24069661956137245', + source: '4299', + target: '4316', + data: {}, + }, + { + id: 'edge-0.047177062674222725', + source: '4299', + target: '4317', + data: {}, + }, + { id: 'edge-0.5239450046053982', source: '4299', target: '4318', data: {} }, + { + id: 'edge-0.11610503101067104', + source: '4299', + target: '4319', + data: {}, + }, + { + id: 'edge-0.28993032203447733', + source: '4299', + target: '4320', + data: {}, + }, + { id: 'edge-0.5501200982058727', source: '4299', target: '4324', data: {} }, + { id: 'edge-0.317659210293715', source: '4299', target: '4325', data: {} }, + { id: 'edge-0.7122775818298421', source: '4299', target: '4326', data: {} }, + { id: 'edge-0.4081470442359836', source: '4299', target: '4328', data: {} }, + { id: 'edge-0.7020674262046078', source: '4299', target: '4330', data: {} }, + { + id: 'edge-0.21165727726774586', + source: '4299', + target: '4331', + data: {}, + }, + { id: 'edge-0.8090852846906906', source: '4299', target: '4332', data: {} }, + { + id: 'edge-0.45553702747829217', + source: '4299', + target: '4333', + data: {}, + }, + { id: 'edge-0.9999077638050036', source: '4299', target: '4334', data: {} }, + { + id: 'edge-0.18311150629556971', + source: '4299', + target: '4335', + data: {}, + }, + { + id: 'edge-0.46641440992077343', + source: '4299', + target: '4336', + data: {}, + }, + { id: 'edge-0.2529580710824668', source: '4299', target: '4337', data: {} }, + { + id: 'edge-0.37933830485320685', + source: '4299', + target: '4338', + data: {}, + }, + { id: 'edge-0.2978066717634156', source: '4299', target: '4339', data: {} }, + { id: 'edge-0.2833213087414366', source: '4299', target: '4340', data: {} }, + { id: 'edge-0.4961847643121804', source: '4299', target: '4342', data: {} }, + { id: 'edge-0.724741405827366', source: '4299', target: '4343', data: {} }, + { id: 'edge-0.6861452353951187', source: '4299', target: '4344', data: {} }, + { + id: 'edge-0.09802151435072592', + source: '4299', + target: '4345', + data: {}, + }, + { id: 'edge-0.3958383593220858', source: '4299', target: '4346', data: {} }, + { id: 'edge-0.4440028732211345', source: '4299', target: '4349', data: {} }, + { + id: 'edge-0.10788739443715478', + source: '4299', + target: '4350', + data: {}, + }, + { id: 'edge-0.8659102579564464', source: '4299', target: '4351', data: {} }, + { id: 'edge-0.4898973383738163', source: '4299', target: '4352', data: {} }, + { id: 'edge-0.182743377077198', source: '4299', target: '4353', data: {} }, + { id: 'edge-0.7872403385864608', source: '4299', target: '169', data: {} }, + { id: 'edge-0.8465304672547216', source: '4299', target: '4355', data: {} }, + { id: 'edge-0.6235514351277869', source: '4299', target: '4356', data: {} }, + { id: 'edge-0.4814560694353438', source: '4299', target: '4357', data: {} }, + { id: 'edge-0.4658017847088882', source: '4299', target: '4358', data: {} }, + { id: 'edge-0.8188379844089493', source: '4299', target: '4359', data: {} }, + { id: 'edge-0.9196917180982878', source: '4299', target: '4360', data: {} }, + { id: 'edge-0.8535141798498505', source: '4299', target: '4361', data: {} }, + { id: 'edge-0.6783248915629003', source: '4299', target: '4362', data: {} }, + { id: 'edge-0.5678804995149203', source: '21', target: '2679', data: {} }, + { id: 'edge-0.7723214595769949', source: '21', target: '2680', data: {} }, + { id: 'edge-0.7247004422017349', source: '21', target: '2681', data: {} }, + { id: 'edge-0.5192201104228638', source: '21', target: '2682', data: {} }, + { id: 'edge-0.3396719003118165', source: '21', target: '2683', data: {} }, + { id: 'edge-0.3160906447812921', source: '21', target: '2684', data: {} }, + { id: 'edge-0.9741272923993818', source: '21', target: '2685', data: {} }, + { id: 'edge-0.8069148543774729', source: '21', target: '2686', data: {} }, + { id: 'edge-0.31180327764708715', source: '21', target: '2687', data: {} }, + { id: 'edge-0.2686624254654433', source: '21', target: '2688', data: {} }, + { id: 'edge-0.12399614819772453', source: '21', target: '2689', data: {} }, + { id: 'edge-0.9584369278255398', source: '21', target: '2690', data: {} }, + { id: 'edge-0.9114522951252597', source: '21', target: '2691', data: {} }, + { id: 'edge-0.6996346335283776', source: '21', target: '2692', data: {} }, + { id: 'edge-0.1729457928044036', source: '21', target: '2693', data: {} }, + { id: 'edge-0.9312812617087114', source: '21', target: '2694', data: {} }, + { id: 'edge-0.028211208567701762', source: '21', target: '2695', data: {} }, + { id: 'edge-0.5129663245772709', source: '21', target: '2696', data: {} }, + { id: 'edge-0.5956425797582017', source: '21', target: '2698', data: {} }, + { id: 'edge-0.6232813022263195', source: '21', target: '2699', data: {} }, + { id: 'edge-0.8433235660620204', source: '21', target: '2700', data: {} }, + { id: 'edge-0.43229855911416504', source: '21', target: '2701', data: {} }, + { id: 'edge-0.0819021080256308', source: '21', target: '2702', data: {} }, + { id: 'edge-0.2077441585462525', source: '21', target: '2703', data: {} }, + { id: 'edge-0.9026667805374775', source: '21', target: '2705', data: {} }, + { id: 'edge-0.6117216714814095', source: '21', target: '2721', data: {} }, + { id: 'edge-0.9626272487953', source: '22', target: '2723', data: {} }, + { id: 'edge-0.052201214750279945', source: '22', target: '2724', data: {} }, + { id: 'edge-0.7120147112097419', source: '22', target: '2725', data: {} }, + { id: 'edge-0.8589091752559379', source: '22', target: '2726', data: {} }, + { id: 'edge-0.6302368403137644', source: '22', target: '2728', data: {} }, + { id: 'edge-0.8146408396900957', source: '22', target: '2729', data: {} }, + { + id: 'edge-0.0012791685450319612', + source: '22', + target: '2730', + data: {}, + }, + { id: 'edge-0.6543934901012931', source: '22', target: '2732', data: {} }, + { id: 'edge-0.23326285015138337', source: '22', target: '2733', data: {} }, + { id: 'edge-0.2989196557118161', source: '22', target: '2735', data: {} }, + { id: 'edge-0.20081451737915468', source: '22', target: '2737', data: {} }, + { id: 'edge-0.8360333041838679', source: '22', target: '2738', data: {} }, + { id: 'edge-0.029008970602266926', source: '22', target: '2739', data: {} }, + { id: 'edge-0.13925086837661915', source: '22', target: '2740', data: {} }, + { id: 'edge-0.07664206220592096', source: '22', target: '2741', data: {} }, + { id: 'edge-0.2674471681463293', source: '22', target: '2746', data: {} }, + { id: 'edge-0.5941718592988889', source: '22', target: '2747', data: {} }, + { id: 'edge-0.06346008755334487', source: '22', target: '2748', data: {} }, + { id: 'edge-0.006933991745249557', source: '22', target: '2749', data: {} }, + { id: 'edge-0.9343369001439721', source: '22', target: '2750', data: {} }, + { id: 'edge-0.6089677163761795', source: '22', target: '2751', data: {} }, + { id: 'edge-0.14500252240968314', source: '23', target: '2752', data: {} }, + { id: 'edge-0.9603330246819841', source: '23', target: '2753', data: {} }, + { id: 'edge-0.6234480512150848', source: '2753', target: '2754', data: {} }, + { + id: 'edge-0.16207340510977652', + source: '2753', + target: '2755', + data: {}, + }, + { id: 'edge-0.8471338070129926', source: '2753', target: '2756', data: {} }, + { + id: 'edge-0.11974763080042816', + source: '2753', + target: '2757', + data: {}, + }, + { id: 'edge-0.8294981802529839', source: '2753', target: '2758', data: {} }, + { id: 'edge-0.757256393855319', source: '2753', target: '2759', data: {} }, + { id: 'edge-0.628562058051185', source: '2753', target: '2760', data: {} }, + { id: 'edge-0.6823050750413437', source: '2753', target: '2761', data: {} }, + { id: 'edge-0.3262975652664952', source: '23', target: '2762', data: {} }, + { id: 'edge-0.3490469029510088', source: '2762', target: '2763', data: {} }, + { + id: 'edge-0.22269382505587676', + source: '2762', + target: '2765', + data: {}, + }, + { + id: 'edge-0.21081058200578884', + source: '2762', + target: '2766', + data: {}, + }, + { + id: 'edge-0.44032496041652003', + source: '2762', + target: '2767', + data: {}, + }, + { id: 'edge-0.9832691843497057', source: '23', target: '2764', data: {} }, + { id: 'edge-0.5907865894026401', source: '23', target: '2768', data: {} }, + { id: 'edge-0.22479299689885246', source: '23', target: '2769', data: {} }, + { id: 'edge-0.6090047607834326', source: '2769', target: '2770', data: {} }, + { id: 'edge-0.909671579742005', source: '2769', target: '2771', data: {} }, + { id: 'edge-0.6522426409626896', source: '2769', target: '2772', data: {} }, + { id: 'edge-0.0706533622270813', source: '2769', target: '2773', data: {} }, + { + id: 'edge-0.31966720764994716', + source: '2769', + target: '2774', + data: {}, + }, + { id: 'edge-0.6554356683216389', source: '23', target: '2775', data: {} }, + { + id: 'edge-0.05619763978319847', + source: '2775', + target: '2776', + data: {}, + }, + { id: 'edge-0.5097978316082299', source: '2775', target: '2777', data: {} }, + { + id: 'edge-0.31045279074436705', + source: '2775', + target: '2778', + data: {}, + }, + { id: 'edge-0.5155675774577988', source: '2775', target: '2779', data: {} }, + { + id: 'edge-0.43918976044223257', + source: '2775', + target: '2780', + data: {}, + }, + { id: 'edge-0.9779015824992294', source: '2775', target: '2782', data: {} }, + { id: 'edge-0.5791106365970964', source: '23', target: '2783', data: {} }, + { id: 'edge-0.48847807343471406', source: '23', target: '4364', data: {} }, + { id: 'edge-0.0119414228295045', source: '23', target: '2784', data: {} }, + { id: 'edge-0.21985951359050993', source: '23', target: '2785', data: {} }, + { id: 'edge-0.05836024401388751', source: '23', target: '2786', data: {} }, + { id: 'edge-0.7092524185601314', source: '23', target: '2787', data: {} }, + { id: 'edge-0.8745375147569676', source: '4364', target: '2788', data: {} }, + { id: 'edge-0.3178645647995402', source: '4364', target: '2789', data: {} }, + { id: 'edge-0.5751058000683413', source: '4364', target: '2790', data: {} }, + { id: 'edge-0.6201020911591106', source: '4364', target: '2791', data: {} }, + { id: 'edge-0.9496810429762774', source: '4364', target: '2792', data: {} }, + { + id: 'edge-0.14577308713362824', + source: '4364', + target: '2793', + data: {}, + }, + { id: 'edge-0.796471490369729', source: '4364', target: '2794', data: {} }, + { + id: 'edge-0.08921287647283505', + source: '4364', + target: '2795', + data: {}, + }, + { id: 'edge-0.5006349499901661', source: '4364', target: '2796', data: {} }, + { + id: 'edge-0.08109039172478094', + source: '4364', + target: '2797', + data: {}, + }, + { id: 'edge-0.5346490276083669', source: '4364', target: '2798', data: {} }, + { id: 'edge-0.4223616048752272', source: '4364', target: '2799', data: {} }, + { id: 'edge-0.9593083939188283', source: '4364', target: '2800', data: {} }, + { + id: 'edge-0.18063243837876763', + source: '4364', + target: '2801', + data: {}, + }, + { id: 'edge-0.9256088991460911', source: '4364', target: '2802', data: {} }, + { + id: 'edge-0.19246386901880697', + source: '4364', + target: '2803', + data: {}, + }, + { id: 'edge-0.5346348683456337', source: '4364', target: '2804', data: {} }, + { + id: 'edge-0.46533796876727407', + source: '4364', + target: '2805', + data: {}, + }, + { id: 'edge-0.8451550191418604', source: '4364', target: '2806', data: {} }, + { id: 'edge-0.8231208910077372', source: '4364', target: '2807', data: {} }, + { + id: 'edge-0.42272286434954665', + source: '4364', + target: '2808', + data: {}, + }, + { id: 'edge-0.5641867140680659', source: '4364', target: '2809', data: {} }, + { + id: 'edge-0.031392568868251924', + source: '4364', + target: '2810', + data: {}, + }, + { id: 'edge-0.5703601885555938', source: '23', target: '2811', data: {} }, + { id: 'edge-0.23117323272903145', source: '23', target: '2812', data: {} }, + { + id: 'edge-0.12963921209546103', + source: '2811', + target: '2813', + data: {}, + }, + { id: 'edge-0.1410596659449308', source: '2811', target: '2814', data: {} }, + { id: 'edge-0.6280785379453186', source: '2811', target: '2815', data: {} }, + { + id: 'edge-0.25919339366283345', + source: '2811', + target: '2816', + data: {}, + }, + { + id: 'edge-0.005330191835343667', + source: '2811', + target: '2817', + data: {}, + }, + { id: 'edge-0.7561727178172559', source: '2811', target: '2818', data: {} }, + { id: 'edge-0.5696957489093122', source: '2811', target: '2819', data: {} }, + { id: 'edge-0.9128955276404498', source: '2811', target: '2820', data: {} }, + { id: 'edge-0.5233492840163345', source: '2811', target: '2821', data: {} }, + { id: 'edge-0.5029036910124156', source: '2811', target: '2822', data: {} }, + { id: 'edge-0.2963339456345311', source: '2811', target: '2823', data: {} }, + { id: 'edge-0.2923387893025895', source: '2811', target: '2826', data: {} }, + { id: 'edge-0.1539582192853235', source: '2811', target: '2827', data: {} }, + { + id: 'edge-0.18467620153705222', + source: '2811', + target: '2831', + data: {}, + }, + { id: 'edge-0.9113749123078425', source: '491', target: '2833', data: {} }, + { id: 'edge-0.10848162965747399', source: '491', target: '2834', data: {} }, + { + id: 'edge-0.40160639037908696', + source: '4365', + target: '2812', + data: {}, + }, + { id: 'edge-0.7277422879264002', source: '491', target: '2835', data: {} }, + { + id: 'edge-0.32413489300247855', + source: '2811', + target: '1847', + data: {}, + }, + { id: 'edge-0.1239148336740441', source: '1611', target: '1847', data: {} }, + { id: 'edge-0.5579353289624565', source: '23', target: '1278', data: {} }, + { id: 'edge-0.564934612229983', source: '23', target: '237', data: {} }, + { id: 'edge-0.5110193028111902', source: '237', target: '2840', data: {} }, + { id: 'edge-0.6592089806440902', source: '237', target: '2841', data: {} }, + { id: 'edge-0.6811640879369802', source: '2811', target: '2842', data: {} }, + { id: 'edge-0.6094991688897706', source: '2811', target: '2843', data: {} }, + { id: 'edge-0.3953731466896464', source: '23', target: '2847', data: {} }, + { id: 'edge-0.7795036131046755', source: '23', target: '2849', data: {} }, + { id: 'edge-0.13656252637010424', source: '23', target: '2850', data: {} }, + { id: 'edge-0.9572445230838291', source: '2847', target: '2851', data: {} }, + { id: 'edge-0.5535221520330134', source: '2847', target: '2852', data: {} }, + { id: 'edge-0.865323858909929', source: '23', target: '2853', data: {} }, + { id: 'edge-0.7628681154401913', source: '23', target: '2854', data: {} }, + { + id: 'edge-0.47574000387358195', + source: '2847', + target: '2855', + data: {}, + }, + { + id: 'edge-0.17424244717802817', + source: '2847', + target: '2856', + data: {}, + }, + { id: 'edge-0.5113760045362377', source: '2847', target: '2857', data: {} }, + { + id: 'edge-0.07748052368557179', + source: '2847', + target: '2858', + data: {}, + }, + { id: 'edge-0.3714723354874949', source: '2847', target: '2859', data: {} }, + { id: 'edge-0.6761265852756773', source: '23', target: '2860', data: {} }, + { id: 'edge-0.384004183230092', source: '23', target: '2861', data: {} }, + { id: 'edge-0.5496833640515022', source: '23', target: '2862', data: {} }, + { id: 'edge-0.4506951112246309', source: '23', target: '2863', data: {} }, + { + id: 'edge-0.30418070500032823', + source: '2863', + target: '2864', + data: {}, + }, + { id: 'edge-0.2379161130338976', source: '2863', target: '2865', data: {} }, + { + id: 'edge-0.16262261224484043', + source: '2863', + target: '2866', + data: {}, + }, + { + id: 'edge-0.48497085712499755', + source: '2863', + target: '2867', + data: {}, + }, + { id: 'edge-0.5577539658355852', source: '2863', target: '2868', data: {} }, + { id: 'edge-0.7858061593727588', source: '2863', target: '2869', data: {} }, + { id: 'edge-0.7176345513810765', source: '2863', target: '2870', data: {} }, + { id: 'edge-0.34490301033631976', source: '23', target: '2871', data: {} }, + { id: 'edge-0.4255616083039033', source: '23', target: '2872', data: {} }, + { id: 'edge-0.6297515135037495', source: '2872', target: '2873', data: {} }, + { id: 'edge-0.619909325361677', source: '2872', target: '2874', data: {} }, + { + id: 'edge-0.15987778800054464', + source: '2872', + target: '2875', + data: {}, + }, + { id: 'edge-0.8706900369042037', source: '2872', target: '2876', data: {} }, + { id: 'edge-0.6279883788882428', source: '2872', target: '2877', data: {} }, + { id: 'edge-0.645227415043244', source: '2872', target: '2878', data: {} }, + { id: 'edge-0.4120691328191206', source: '23', target: '2879', data: {} }, + { id: 'edge-0.9932815069752736', source: '23', target: '389', data: {} }, + { id: 'edge-0.8324715207099842', source: '23', target: '2880', data: {} }, + { id: 'edge-0.4900446339323552', source: '23', target: '2881', data: {} }, + { id: 'edge-0.6121214874381196', source: '23', target: '2882', data: {} }, + { id: 'edge-0.5062892885693113', source: '23', target: '2883', data: {} }, + { id: 'edge-0.3553207255200772', source: '23', target: '2884', data: {} }, + { id: 'edge-0.35316640185749937', source: '23', target: '2885', data: {} }, + { id: 'edge-0.5851978758889158', source: '23', target: '2886', data: {} }, + { id: 'edge-0.5596006218820644', source: '23', target: '2887', data: {} }, + { id: 'edge-0.5836094095886595', source: '23', target: '2888', data: {} }, + { id: 'edge-0.8483887627200855', source: '23', target: '2889', data: {} }, + { id: 'edge-0.9211338346797773', source: '23', target: '2890', data: {} }, + { id: 'edge-0.8444062372808812', source: '23', target: '2891', data: {} }, + { id: 'edge-0.6157046176861343', source: '23', target: '2892', data: {} }, + { id: 'edge-0.8737548115233782', source: '23', target: '2893', data: {} }, + { id: 'edge-0.9999577690863235', source: '23', target: '2894', data: {} }, + { id: 'edge-0.2327388654367184', source: '23', target: '2895', data: {} }, + { id: 'edge-0.9476239937337361', source: '23', target: '2896', data: {} }, + { id: 'edge-0.13115524154407288', source: '23', target: '2897', data: {} }, + { id: 'edge-0.2024694535966769', source: '23', target: '2898', data: {} }, + { id: 'edge-0.5997399742753668', source: '23', target: '2899', data: {} }, + { id: 'edge-0.5512489263264055', source: '23', target: '2900', data: {} }, + { id: 'edge-0.11347783059091743', source: '23', target: '2901', data: {} }, + { id: 'edge-0.7468290548463019', source: '23', target: '2902', data: {} }, + { id: 'edge-0.069498503562756', source: '23', target: '2903', data: {} }, + { id: 'edge-0.8940332281156089', source: '23', target: '2904', data: {} }, + { id: 'edge-0.9434968254581924', source: '23', target: '2905', data: {} }, + { id: 'edge-0.7240587082010088', source: '23', target: '2906', data: {} }, + { id: 'edge-0.6000867864595896', source: '23', target: '2907', data: {} }, + { id: 'edge-0.7542885401594324', source: '23', target: '2908', data: {} }, + { id: 'edge-0.13704246076553428', source: '23', target: '2909', data: {} }, + { id: 'edge-0.07730113797569405', source: '23', target: '2910', data: {} }, + { id: 'edge-0.9633811444492362', source: '23', target: '2911', data: {} }, + { id: 'edge-0.6445681156623975', source: '23', target: '2912', data: {} }, + { id: 'edge-0.25086022336113567', source: '23', target: '2913', data: {} }, + { id: 'edge-0.9483797661732467', source: '23', target: '2914', data: {} }, + { id: 'edge-0.6352341251613993', source: '23', target: '2915', data: {} }, + { id: 'edge-0.16680484772246706', source: '23', target: '2917', data: {} }, + { id: 'edge-0.5423681749779006', source: '23', target: '2918', data: {} }, + { id: 'edge-0.43511090382549944', source: '23', target: '2919', data: {} }, + { id: 'edge-0.9670989597952333', source: '23', target: '2920', data: {} }, + { id: 'edge-0.3722914195360576', source: '23', target: '2921', data: {} }, + { id: 'edge-0.3602863498497031', source: '23', target: '2922', data: {} }, + { id: 'edge-0.21194913481219846', source: '23', target: '2923', data: {} }, + { id: 'edge-0.3853139918541091', source: '23', target: '2925', data: {} }, + { id: 'edge-0.6644986863193758', source: '23', target: '2926', data: {} }, + { id: 'edge-0.8297008410304985', source: '23', target: '2927', data: {} }, + { id: 'edge-0.7823555125862613', source: '23', target: '2928', data: {} }, + { id: 'edge-0.6009894041149726', source: '23', target: '2929', data: {} }, + { id: 'edge-0.9577266745031476', source: '23', target: '2930', data: {} }, + { id: 'edge-0.00774507832148319', source: '23', target: '2931', data: {} }, + { id: 'edge-0.8057828222257906', source: '23', target: '2932', data: {} }, + { id: 'edge-0.17269242524211825', source: '23', target: '2933', data: {} }, + { + id: 'edge-0.14662355475040645', + source: '2933', + target: '2934', + data: {}, + }, + { id: 'edge-0.2919526412185949', source: '2933', target: '2935', data: {} }, + { id: 'edge-0.037822413540160804', source: '23', target: '2936', data: {} }, + { id: 'edge-0.8633546373298271', source: '2936', target: '2937', data: {} }, + { id: 'edge-0.6163618906357087', source: '2936', target: '2938', data: {} }, + { id: 'edge-0.8872382212121057', source: '23', target: '2939', data: {} }, + { id: 'edge-0.3321044649621625', source: '23', target: '2940', data: {} }, + { id: 'edge-0.5397851746706721', source: '23', target: '2941', data: {} }, + { id: 'edge-0.5751904603463416', source: '23', target: '2942', data: {} }, + { id: 'edge-0.9411092894087545', source: '23', target: '2944', data: {} }, + { id: 'edge-0.19594613554829876', source: '23', target: '2945', data: {} }, + { id: 'edge-0.6895369823324768', source: '23', target: '2946', data: {} }, + { id: 'edge-0.19107207016827732', source: '23', target: '2947', data: {} }, + { id: 'edge-0.9332310476004109', source: '23', target: '2948', data: {} }, + { id: 'edge-0.805364020252644', source: '23', target: '2949', data: {} }, + { id: 'edge-0.4167343724609951', source: '23', target: '2950', data: {} }, + { id: 'edge-0.759418177844311', source: '23', target: '2951', data: {} }, + { id: 'edge-0.34457897438579654', source: '23', target: '2952', data: {} }, + { id: 'edge-0.9979806417332842', source: '23', target: '2953', data: {} }, + { id: 'edge-0.7366386781685783', source: '23', target: '2954', data: {} }, + { id: 'edge-0.9754895839550692', source: '23', target: '2955', data: {} }, + { id: 'edge-0.370107067549738', source: '23', target: '2956', data: {} }, + { id: 'edge-0.5281872899247628', source: '23', target: '2957', data: {} }, + { id: 'edge-0.9034936720330429', source: '23', target: '2958', data: {} }, + { id: 'edge-0.7580383580405614', source: '23', target: '2959', data: {} }, + { id: 'edge-0.5326609225484513', source: '23', target: '2960', data: {} }, + { id: 'edge-0.7618718786845164', source: '23', target: '2985', data: {} }, + { id: 'edge-0.1461265600498154', source: '23', target: '2986', data: {} }, + { id: 'edge-0.037099591975995994', source: '23', target: '2987', data: {} }, + { id: 'edge-0.47215382232539316', source: '23', target: '2988', data: {} }, + { id: 'edge-0.9610635673892793', source: '23', target: '2989', data: {} }, + { id: 'edge-0.33248542053267194', source: '23', target: '2990', data: {} }, + { id: 'edge-0.11829039331785185', source: '23', target: '2991', data: {} }, + { id: 'edge-0.047042045450012226', source: '23', target: '2992', data: {} }, + { id: 'edge-0.2624446532812388', source: '23', target: '2993', data: {} }, + { id: 'edge-0.7451078824708779', source: '23', target: '497', data: {} }, + { id: 'edge-0.7997856369153151', source: '23', target: '498', data: {} }, + { id: 'edge-0.7210620392981975', source: '23', target: '2994', data: {} }, + { id: 'edge-0.027899557282716758', source: '23', target: '2997', data: {} }, + { id: 'edge-0.2768801419627731', source: '23', target: '2998', data: {} }, + { id: 'edge-0.6640035995404943', source: '23', target: '3000', data: {} }, + { id: 'edge-0.4364846351686289', source: '23', target: '3001', data: {} }, + { id: 'edge-0.45251747481434634', source: '23', target: '3002', data: {} }, + { id: 'edge-0.3049530174834194', source: '23', target: '3003', data: {} }, + { id: 'edge-0.8968294674410411', source: '23', target: '3004', data: {} }, + { id: 'edge-0.9340285382273832', source: '23', target: '3005', data: {} }, + { id: 'edge-0.3195020385319718', source: '23', target: '3006', data: {} }, + { id: 'edge-0.41525051957268677', source: '23', target: '3007', data: {} }, + { id: 'edge-0.22163689286769817', source: '23', target: '3008', data: {} }, + { id: 'edge-0.1684321732875429', source: '23', target: '3009', data: {} }, + { id: 'edge-0.77141080370399', source: '23', target: '3010', data: {} }, + { id: 'edge-0.9709758865444971', source: '23', target: '3011', data: {} }, + { id: 'edge-0.506661502815875', source: '23', target: '3012', data: {} }, + { id: 'edge-0.30973436983104485', source: '23', target: '3013', data: {} }, + { id: 'edge-0.2395095767829616', source: '23', target: '3014', data: {} }, + { id: 'edge-0.9390401255776164', source: '23', target: '3015', data: {} }, + { id: 'edge-0.6821037995008261', source: '23', target: '3016', data: {} }, + { id: 'edge-0.5927000982950048', source: '23', target: '3017', data: {} }, + { id: 'edge-0.2636899327123463', source: '23', target: '3018', data: {} }, + { id: 'edge-0.7666163521254055', source: '23', target: '3019', data: {} }, + { id: 'edge-0.14660830902274036', source: '23', target: '3020', data: {} }, + { id: 'edge-0.4915762674634627', source: '23', target: '3021', data: {} }, + { id: 'edge-0.5708353270265565', source: '23', target: '3022', data: {} }, + { id: 'edge-0.3536585345909713', source: '23', target: '3023', data: {} }, + { id: 'edge-0.2620483957046964', source: '23', target: '3024', data: {} }, + { id: 'edge-0.23155714704557573', source: '23', target: '3025', data: {} }, + { id: 'edge-0.9245159127747353', source: '23', target: '3026', data: {} }, + { id: 'edge-0.7599425415423051', source: '23', target: '3027', data: {} }, + { id: 'edge-0.013686320581530742', source: '23', target: '3028', data: {} }, + { id: 'edge-0.47659227021172157', source: '23', target: '3029', data: {} }, + { id: 'edge-0.13682798786263994', source: '23', target: '3030', data: {} }, + { + id: 'edge-0.0006626067581405604', + source: '24', + target: '3031', + data: {}, + }, + { id: 'edge-0.3126537143949082', source: '24', target: '3037', data: {} }, + { id: 'edge-0.028222839858777382', source: '24', target: '3038', data: {} }, + { id: 'edge-0.738417615290544', source: '24', target: '3039', data: {} }, + { id: 'edge-0.6823825931670511', source: '24', target: '3040', data: {} }, + { id: 'edge-0.4814847004505711', source: '24', target: '3042', data: {} }, + { id: 'edge-0.16218328311249675', source: '24', target: '3045', data: {} }, + { id: 'edge-0.6037480571709595', source: '24', target: '3047', data: {} }, + { id: 'edge-0.5812945551079842', source: '24', target: '3048', data: {} }, + { id: 'edge-0.5029693313447137', source: '24', target: '3052', data: {} }, + { id: 'edge-0.605937309133185', source: '24', target: '3053', data: {} }, + { id: 'edge-0.03120459435950762', source: '24', target: '3054', data: {} }, + { id: 'edge-0.32853231251883663', source: '24', target: '3055', data: {} }, + { id: 'edge-0.09569839182983375', source: '24', target: '3056', data: {} }, + { id: 'edge-0.6016998097435973', source: '3056', target: '3057', data: {} }, + { id: 'edge-0.5839222776937734', source: '24', target: '3058', data: {} }, + { id: 'edge-0.4193242062679219', source: '3058', target: '3059', data: {} }, + { id: 'edge-0.5476078326232925', source: '24', target: '3060', data: {} }, + { id: 'edge-0.8697785408029388', source: '24', target: '3061', data: {} }, + { id: 'edge-0.7377405084069877', source: '24', target: '3062', data: {} }, + { id: 'edge-0.4315842446107938', source: '24', target: '3063', data: {} }, + { id: 'edge-0.8418933177144545', source: '24', target: '3069', data: {} }, + { id: 'edge-0.7035250728376408', source: '24', target: '3072', data: {} }, + { id: 'edge-0.42818272765948895', source: '24', target: '3073', data: {} }, + { id: 'edge-0.9060619168241901', source: '24', target: '3074', data: {} }, + { id: 'edge-0.5877002608559487', source: '24', target: '3075', data: {} }, + { id: 'edge-0.5651377295958993', source: '4368', target: '4369', data: {} }, + { id: 'edge-0.641333417474399', source: '4367', target: '4370', data: {} }, + { + id: 'edge-0.12502897740941954', + source: '4370', + target: '4371', + data: {}, + }, + { id: 'edge-0.6495866935667407', source: '4370', target: '4372', data: {} }, + { id: 'edge-0.9334880601161877', source: '4370', target: '4373', data: {} }, + { id: 'edge-0.7247471740618114', source: '4370', target: '4374', data: {} }, + { id: 'edge-0.5191679986165738', source: '4370', target: '4375', data: {} }, + { id: 'edge-0.8592179895287948', source: '4370', target: '4376', data: {} }, + { id: 'edge-0.6295964709435122', source: '4370', target: '4377', data: {} }, + { + id: 'edge-0.30918147693994835', + source: '4370', + target: '4378', + data: {}, + }, + { + id: 'edge-0.27347751336009063', + source: '4370', + target: '4379', + data: {}, + }, + { + id: 'edge-0.29542175052640984', + source: '4370', + target: '4380', + data: {}, + }, + { + id: 'edge-0.012409932240352584', + source: '4370', + target: '4381', + data: {}, + }, + { + id: 'edge-0.23525994490106106', + source: '4370', + target: '4382', + data: {}, + }, + { id: 'edge-0.8224762592460639', source: '4370', target: '4383', data: {} }, + { id: 'edge-0.7839754996945918', source: '4370', target: '4384', data: {} }, + { id: 'edge-0.6614547611284809', source: '4370', target: '4385', data: {} }, + { id: 'edge-0.5099938974767766', source: '4370', target: '4386', data: {} }, + { id: 'edge-0.6203151592471841', source: '4370', target: '4387', data: {} }, + { id: 'edge-0.5601113527690667', source: '4370', target: '4388', data: {} }, + { id: 'edge-0.8300926411456486', source: '4370', target: '4389', data: {} }, + { id: 'edge-0.5823049316864295', source: '4370', target: '4390', data: {} }, + { + id: 'edge-0.41750409241774844', + source: '4370', + target: '4391', + data: {}, + }, + { + id: 'edge-0.20681879436972195', + source: '4370', + target: '4392', + data: {}, + }, + { + id: 'edge-0.05022410433011526', + source: '4370', + target: '4393', + data: {}, + }, + { + id: 'edge-0.04772319836573957', + source: '4370', + target: '4394', + data: {}, + }, + { id: 'edge-0.7119693414705766', source: '4370', target: '4395', data: {} }, + { id: 'edge-0.3208343872509527', source: '4370', target: '4396', data: {} }, + { id: 'edge-0.6753375867905478', source: '4370', target: '4397', data: {} }, + { id: 'edge-0.5605494311322083', source: '4370', target: '4398', data: {} }, + { + id: 'edge-0.19816360270414202', + source: '4370', + target: '4399', + data: {}, + }, + { + id: 'edge-0.10538971970396305', + source: '4370', + target: '4400', + data: {}, + }, + { + id: 'edge-0.09950556663021182', + source: '4370', + target: '4401', + data: {}, + }, + { id: 'edge-0.6835480544230059', source: '4370', target: '4402', data: {} }, + { + id: 'edge-0.49855336926220595', + source: '4370', + target: '4403', + data: {}, + }, + { id: 'edge-0.3088050625838239', source: '4370', target: '4404', data: {} }, + { id: 'edge-0.9954668052852855', source: '4370', target: '4405', data: {} }, + { id: 'edge-0.2610236345955852', source: '4370', target: '4406', data: {} }, + { id: 'edge-0.877823992046308', source: '4370', target: '4407', data: {} }, + { + id: 'edge-0.35074293409976764', + source: '4370', + target: '4408', + data: {}, + }, + { id: 'edge-0.3342224270975167', source: '4370', target: '4409', data: {} }, + { + id: 'edge-0.46071284716266026', + source: '4370', + target: '4410', + data: {}, + }, + { id: 'edge-0.7002131432525698', source: '4370', target: '4411', data: {} }, + { + id: 'edge-0.49362894563542037', + source: '4370', + target: '4412', + data: {}, + }, + { id: 'edge-0.8265700482391123', source: '4370', target: '4413', data: {} }, + { + id: 'edge-0.20217938629183596', + source: '4370', + target: '4415', + data: {}, + }, + { id: 'edge-0.0824696967698968', source: '4370', target: '4416', data: {} }, + { id: 'edge-0.883487554708283', source: '4370', target: '4417', data: {} }, + { id: 'edge-0.7590644608188886', source: '4370', target: '4418', data: {} }, + { + id: 'edge-0.28906588744957573', + source: '4370', + target: '4419', + data: {}, + }, + { id: 'edge-0.7477568645236865', source: '4370', target: '4420', data: {} }, + { id: 'edge-0.5443647495553765', source: '4370', target: '4422', data: {} }, + { id: 'edge-0.832947955022145', source: '4370', target: '4423', data: {} }, + { id: 'edge-0.7178692713515027', source: '4370', target: '4424', data: {} }, + { id: 'edge-0.7993956424167272', source: '4370', target: '4425', data: {} }, + { id: 'edge-0.7398031679930916', source: '4370', target: '4426', data: {} }, + { id: 'edge-0.4951232741710925', source: '4370', target: '4427', data: {} }, + { + id: 'edge-0.25678664544738683', + source: '4370', + target: '4428', + data: {}, + }, + { + id: 'edge-0.09398867536783206', + source: '4370', + target: '4429', + data: {}, + }, + { id: 'edge-0.6602132249117179', source: '4370', target: '4430', data: {} }, + { id: 'edge-0.7070673723030227', source: '4370', target: '4431', data: {} }, + { id: 'edge-0.218803303320936', source: '4370', target: '4432', data: {} }, + { id: 'edge-0.5941614010872689', source: '4370', target: '4433', data: {} }, + { id: 'edge-0.2887660162328529', source: '4370', target: '4434', data: {} }, + { id: 'edge-0.9352417283699836', source: '4370', target: '4435', data: {} }, + { + id: 'edge-0.11008748164468063', + source: '4370', + target: '4436', + data: {}, + }, + { + id: 'edge-0.08255444764018716', + source: '4370', + target: '4437', + data: {}, + }, + { id: 'edge-0.7364354978998713', source: '4370', target: '4438', data: {} }, + { + id: 'edge-0.26646947002566534', + source: '4370', + target: '4439', + data: {}, + }, + { id: 'edge-0.7036056875652035', source: '4370', target: '4440', data: {} }, + { id: 'edge-0.8195781865639391', source: '4370', target: '4441', data: {} }, + { + id: 'edge-0.09240358437739982', + source: '4370', + target: '4442', + data: {}, + }, + { id: 'edge-0.0747492114505961', source: '4370', target: '4443', data: {} }, + { id: 'edge-0.8260962776803966', source: '4370', target: '4444', data: {} }, + { id: 'edge-0.5848048133419517', source: '4370', target: '4445', data: {} }, + { id: 'edge-0.875578004363071', source: '4370', target: '4446', data: {} }, + { id: 'edge-0.9605411889317002', source: '4370', target: '4447', data: {} }, + { id: 'edge-0.5827234391739577', source: '4370', target: '4448', data: {} }, + { + id: 'edge-0.41632032876181535', + source: '4448', + target: '4449', + data: {}, + }, + { id: 'edge-0.877295627798339', source: '4448', target: '4450', data: {} }, + { id: 'edge-0.470592492488215', source: '4448', target: '4451', data: {} }, + { id: 'edge-0.8003751430876711', source: '4448', target: '4452', data: {} }, + { id: 'edge-0.8279870038012687', source: '4448', target: '4453', data: {} }, + { id: 'edge-0.6956959576540989', source: '4448', target: '4454', data: {} }, + { id: 'edge-0.603150961702317', source: '4448', target: '4455', data: {} }, + { id: 'edge-0.5663838053872876', source: '4367', target: '4456', data: {} }, + { + id: 'edge-0.09451139841892897', + source: '4367', + target: '4457', + data: {}, + }, + { id: 'edge-0.806751403157987', source: '4367', target: '4458', data: {} }, + { + id: 'edge-0.028481342822959554', + source: '4367', + target: '4459', + data: {}, + }, + { + id: 'edge-0.09368406152866582', + source: '4367', + target: '4460', + data: {}, + }, + { id: 'edge-0.7448926782242402', source: '4367', target: '4461', data: {} }, + { id: 'edge-0.9362356992925589', source: '4367', target: '4462', data: {} }, + { id: 'edge-0.8430946500907937', source: '4367', target: '4463', data: {} }, + { id: 'edge-0.3647219413658096', source: '4367', target: '4464', data: {} }, + { id: 'edge-0.193922591438634', source: '4367', target: '4465', data: {} }, + { + id: 'edge-0.11598207127333793', + source: '4367', + target: '4466', + data: {}, + }, + { id: 'edge-0.2247365813776221', source: '4367', target: '4467', data: {} }, + { id: 'edge-0.5664322028041444', source: '4367', target: '4469', data: {} }, + { + id: 'edge-0.07826337055417087', + source: '4367', + target: '4470', + data: {}, + }, + { id: 'edge-0.2495795166697823', source: '4367', target: '4471', data: {} }, + { id: 'edge-0.6661676770973126', source: '4367', target: '4472', data: {} }, + { + id: 'edge-0.44595502655982333', + source: '4367', + target: '4473', + data: {}, + }, + { id: 'edge-0.921943093024246', source: '4367', target: '4474', data: {} }, + { + id: 'edge-0.13131234035891692', + source: '4367', + target: '4475', + data: {}, + }, + { + id: 'edge-0.05986055861781603', + source: '4367', + target: '4476', + data: {}, + }, + { id: 'edge-0.6542785808859473', source: '4367', target: '4477', data: {} }, + { id: 'edge-0.4859794174639731', source: '4367', target: '4478', data: {} }, + { id: 'edge-0.2112562567988827', source: '4367', target: '4479', data: {} }, + { + id: 'edge-0.07192520428421245', + source: '4367', + target: '4480', + data: {}, + }, + { + id: 'edge-0.029576675935623076', + source: '4480', + target: '4481', + data: {}, + }, + { + id: 'edge-0.48430829402113895', + source: '4480', + target: '4482', + data: {}, + }, + { id: 'edge-0.9447638456290666', source: '4480', target: '4483', data: {} }, + { id: 'edge-0.9225517986555198', source: '4480', target: '4484', data: {} }, + { id: 'edge-0.4657387038659646', source: '4480', target: '4485', data: {} }, + { + id: 'edge-0.13189384100675006', + source: '4480', + target: '4486', + data: {}, + }, + { id: 'edge-0.5468679503661591', source: '4480', target: '4487', data: {} }, + { id: 'edge-0.4080342959077288', source: '4480', target: '4488', data: {} }, + { id: 'edge-0.27542145784732', source: '4480', target: '4489', data: {} }, + { id: 'edge-0.3032988772356715', source: '4480', target: '4490', data: {} }, + { id: 'edge-0.5700599675939004', source: '4480', target: '4491', data: {} }, + { id: 'edge-0.4220924006183151', source: '4480', target: '4492', data: {} }, + { id: 'edge-0.317932805288776', source: '4480', target: '4493', data: {} }, + { id: 'edge-0.4060616915112558', source: '4480', target: '4494', data: {} }, + { id: 'edge-0.7687278922474075', source: '4480', target: '4495', data: {} }, + { + id: 'edge-0.39705798337893894', + source: '4480', + target: '4496', + data: {}, + }, + { + id: 'edge-0.35698771199728574', + source: '4480', + target: '4497', + data: {}, + }, + { id: 'edge-0.7262241277782095', source: '4480', target: '4498', data: {} }, + { id: 'edge-0.6525909032681845', source: '4480', target: '4500', data: {} }, + { id: 'edge-0.8482107854756105', source: '4480', target: '4501', data: {} }, + { + id: 'edge-0.17646364266854087', + source: '4480', + target: '4502', + data: {}, + }, + { id: 'edge-0.8313570175583136', source: '4480', target: '4503', data: {} }, + { id: 'edge-0.7216569489129843', source: '4480', target: '4504', data: {} }, + { id: 'edge-0.7221613920755021', source: '4480', target: '4505', data: {} }, + { id: 'edge-0.7733087267672312', source: '4480', target: '4506', data: {} }, + { id: 'edge-0.7694412143068372', source: '4480', target: '4507', data: {} }, + { id: 'edge-0.9821569893451121', source: '4480', target: '4508', data: {} }, + { id: 'edge-0.889917476228254', source: '4480', target: '4509', data: {} }, + { id: 'edge-0.7857361815859998', source: '4480', target: '4510', data: {} }, + { id: 'edge-0.4882952384493817', source: '4480', target: '4511', data: {} }, + { id: 'edge-0.7377545875420783', source: '4480', target: '4512', data: {} }, + { id: 'edge-0.7030575806973232', source: '4480', target: '4513', data: {} }, + { id: 'edge-0.4040203580135511', source: '4480', target: '4514', data: {} }, + { id: 'edge-0.671216427935694', source: '4480', target: '4515', data: {} }, + { + id: 'edge-0.030076717510921336', + source: '4480', + target: '4516', + data: {}, + }, + { id: 'edge-0.2704456939181237', source: '4480', target: '4517', data: {} }, + { id: 'edge-0.5212337709513448', source: '4480', target: '4518', data: {} }, + { id: 'edge-0.1124770476587138', source: '4480', target: '4519', data: {} }, + { id: 'edge-0.6027653235546557', source: '4367', target: '4520', data: {} }, + { id: 'edge-0.4879935953812915', source: '4520', target: '4521', data: {} }, + { id: 'edge-0.7419538923189892', source: '4520', target: '4522', data: {} }, + { id: 'edge-0.84048176845708', source: '4367', target: '4523', data: {} }, + { + id: 'edge-0.11913734145967081', + source: '4523', + target: '4524', + data: {}, + }, + { + id: 'edge-0.19206857331502358', + source: '4523', + target: '4525', + data: {}, + }, + { id: 'edge-0.6345861615273352', source: '4523', target: '4526', data: {} }, + { id: 'edge-0.3733416557302216', source: '4523', target: '4527', data: {} }, + { id: 'edge-0.538122588836732', source: '4523', target: '4528', data: {} }, + { id: 'edge-0.8483653140704375', source: '4523', target: '4529', data: {} }, + { + id: 'edge-0.14055281276422926', + source: '4523', + target: '4530', + data: {}, + }, + { id: 'edge-0.9011140613068942', source: '4367', target: '4531', data: {} }, + { id: 'edge-0.5637723292826007', source: '4531', target: '4532', data: {} }, + { id: 'edge-0.9432024394800982', source: '4531', target: '4533', data: {} }, + { id: 'edge-0.9505462136296119', source: '4367', target: '4534', data: {} }, + { id: 'edge-0.3288351698097618', source: '4534', target: '4535', data: {} }, + { id: 'edge-0.6420730367076439', source: '4534', target: '4536', data: {} }, + { + id: 'edge-0.38413841377576996', + source: '4367', + target: '4537', + data: {}, + }, + { id: 'edge-0.5154191581439327', source: '326', target: '4538', data: {} }, + { id: 'edge-0.35721990225798206', source: '326', target: '4539', data: {} }, + { id: 'edge-0.40252169945509886', source: '326', target: '4540', data: {} }, + { id: 'edge-0.23268664251405458', source: '326', target: '4541', data: {} }, + { id: 'edge-0.4676790438298708', source: '326', target: '4542', data: {} }, + { id: 'edge-0.7737484621990038', source: '326', target: '4543', data: {} }, + { id: 'edge-0.7936103914542323', source: '326', target: '4544', data: {} }, + { id: 'edge-0.9963313276857282', source: '326', target: '4545', data: {} }, + { id: 'edge-0.7716163330135462', source: '326', target: '4546', data: {} }, + { + id: 'edge-0.36082797071152384', + source: '4546', + target: '4547', + data: {}, + }, + { + id: 'edge-0.05094821232547253', + source: '4546', + target: '4548', + data: {}, + }, + { id: 'edge-0.9529627126771347', source: '4546', target: '4549', data: {} }, + { + id: 'edge-0.22278115524384123', + source: '4546', + target: '4550', + data: {}, + }, + { id: 'edge-0.967380313834239', source: '4546', target: '4551', data: {} }, + { + id: 'edge-0.03084204033660165', + source: '4546', + target: '4552', + data: {}, + }, + { + id: 'edge-0.25366219165703296', + source: '4546', + target: '4553', + data: {}, + }, + { + id: 'edge-0.09460131783757086', + source: '4546', + target: '4554', + data: {}, + }, + { id: 'edge-0.7924974645265663', source: '4546', target: '4555', data: {} }, + { id: 'edge-0.7197530765970588', source: '4546', target: '4556', data: {} }, + { id: 'edge-0.3583710385113139', source: '326', target: '4557', data: {} }, + { id: 'edge-0.7038771322962969', source: '326', target: '4558', data: {} }, + { id: 'edge-0.6472431767009788', source: '326', target: '4559', data: {} }, + { id: 'edge-0.6830403503759304', source: '326', target: '4560', data: {} }, + { id: 'edge-0.12038982926579211', source: '326', target: '4561', data: {} }, + { id: 'edge-0.9289900501470918', source: '326', target: '4562', data: {} }, + { id: 'edge-0.3626710995375677', source: '326', target: '4563', data: {} }, + { id: 'edge-0.20422870165615215', source: '326', target: '4564', data: {} }, + { id: 'edge-0.21336023419033734', source: '326', target: '4565', data: {} }, + { id: 'edge-0.40466110653014264', source: '326', target: '4566', data: {} }, + { id: 'edge-0.9351516656736973', source: '326', target: '4567', data: {} }, + { id: 'edge-0.5465712561810672', source: '326', target: '4568', data: {} }, + { id: 'edge-0.9715274107806389', source: '326', target: '4569', data: {} }, + { id: 'edge-0.19901099878238537', source: '326', target: '4570', data: {} }, + { id: 'edge-0.123841981374605', source: '326', target: '4571', data: {} }, + { id: 'edge-0.33078103973911843', source: '326', target: '4572', data: {} }, + { + id: 'edge-0.020568526513360608', + source: '326', + target: '4573', + data: {}, + }, + { id: 'edge-0.24831681628065105', source: '326', target: '4574', data: {} }, + { id: 'edge-0.4707497667138343', source: '326', target: '4575', data: {} }, + { id: 'edge-0.36442400251776497', source: '326', target: '4576', data: {} }, + { id: 'edge-0.10972335649270937', source: '326', target: '4577', data: {} }, + { id: 'edge-0.33118272832590456', source: '326', target: '4578', data: {} }, + { id: 'edge-0.23572974862756824', source: '326', target: '4579', data: {} }, + { + id: 'edge-0.047356175518986854', + source: '326', + target: '4580', + data: {}, + }, + { id: 'edge-0.9077819400176685', source: '326', target: '4581', data: {} }, + { id: 'edge-0.18616685821915913', source: '326', target: '4582', data: {} }, + { id: 'edge-0.8604813942295519', source: '326', target: '4583', data: {} }, + { id: 'edge-0.6064496527543688', source: '326', target: '4584', data: {} }, + { id: 'edge-0.31324804910752424', source: '326', target: '4585', data: {} }, + { id: 'edge-0.6060544626512434', source: '326', target: '4586', data: {} }, + { id: 'edge-0.3069250013316076', source: '326', target: '4587', data: {} }, + { id: 'edge-0.9510848702901111', source: '326', target: '4588', data: {} }, + { id: 'edge-0.9981974672435785', source: '326', target: '4589', data: {} }, + { id: 'edge-0.3727648647583248', source: '326', target: '4590', data: {} }, + { id: 'edge-0.6127407831238416', source: '326', target: '4591', data: {} }, + { id: 'edge-0.02757868391578211', source: '326', target: '4592', data: {} }, + { id: 'edge-0.6489808847838985', source: '326', target: '4593', data: {} }, + { id: 'edge-0.05298980173407175', source: '326', target: '4594', data: {} }, + { id: 'edge-0.5577573773423321', source: '326', target: '4595', data: {} }, + { id: 'edge-0.03991339704316177', source: '326', target: '4596', data: {} }, + { id: 'edge-0.7491147793977173', source: '326', target: '4597', data: {} }, + { id: 'edge-0.8572686233229789', source: '326', target: '4598', data: {} }, + { id: 'edge-0.22218267448042517', source: '326', target: '4599', data: {} }, + { id: 'edge-0.6652732239347983', source: '326', target: '4600', data: {} }, + { id: 'edge-0.8509787672489448', source: '326', target: '4601', data: {} }, + { id: 'edge-0.09361867810681579', source: '326', target: '4602', data: {} }, + { id: 'edge-0.8027057663141284', source: '326', target: '4603', data: {} }, + { + id: 'edge-0.055715898419834264', + source: '326', + target: '4604', + data: {}, + }, + { id: 'edge-0.41936619971000777', source: '326', target: '4605', data: {} }, + { id: 'edge-0.26278437970373236', source: '326', target: '4606', data: {} }, + { id: 'edge-0.11114170608493201', source: '326', target: '4607', data: {} }, + { id: 'edge-0.6765049631237356', source: '326', target: '4608', data: {} }, + { id: 'edge-0.29654037706300307', source: '326', target: '4609', data: {} }, + { id: 'edge-0.23918376676404884', source: '326', target: '4610', data: {} }, + { + id: 'edge-0.004637058822338114', + source: '326', + target: '4611', + data: {}, + }, + { id: 'edge-0.06833209722191946', source: '326', target: '4612', data: {} }, + { id: 'edge-0.4190059281284164', source: '326', target: '4613', data: {} }, + { id: 'edge-0.5371578874744378', source: '326', target: '4614', data: {} }, + { id: 'edge-0.40790421267738886', source: '326', target: '4615', data: {} }, + { + id: 'edge-0.058680407198336226', + source: '326', + target: '4616', + data: {}, + }, + { id: 'edge-0.6933790253983632', source: '326', target: '4617', data: {} }, + { id: 'edge-0.8925277418312139', source: '326', target: '4618', data: {} }, + { id: 'edge-0.840992392372917', source: '326', target: '4619', data: {} }, + { id: 'edge-0.13953948792038928', source: '326', target: '4620', data: {} }, + { id: 'edge-0.26319560016264787', source: '326', target: '4621', data: {} }, + { id: 'edge-0.20297864972654311', source: '326', target: '4622', data: {} }, + { id: 'edge-0.20151630183689684', source: '326', target: '4623', data: {} }, + { id: 'edge-0.9407488036451068', source: '326', target: '4624', data: {} }, + { id: 'edge-0.06545458152637695', source: '326', target: '4625', data: {} }, + { id: 'edge-0.5863489462350246', source: '326', target: '4626', data: {} }, + { id: 'edge-0.46826171177403264', source: '326', target: '4627', data: {} }, + { id: 'edge-0.4297236873665533', source: '326', target: '4628', data: {} }, + { id: 'edge-0.44353728384525115', source: '326', target: '4629', data: {} }, + { id: 'edge-0.4594561355608189', source: '326', target: '4630', data: {} }, + { id: 'edge-0.7722367949974083', source: '326', target: '4631', data: {} }, + { id: 'edge-0.40509925391854185', source: '326', target: '4632', data: {} }, + { id: 'edge-0.18341369039575395', source: '326', target: '4633', data: {} }, + { id: 'edge-0.6690304139721224', source: '326', target: '4634', data: {} }, + { id: 'edge-0.6757003261215038', source: '326', target: '4635', data: {} }, + { id: 'edge-0.530550778110519', source: '326', target: '4636', data: {} }, + { id: 'edge-0.9713159592368132', source: '326', target: '4637', data: {} }, + { id: 'edge-0.9841133973475291', source: '326', target: '4638', data: {} }, + { id: 'edge-0.9132180114071735', source: '326', target: '4639', data: {} }, + { id: 'edge-0.3741402988705247', source: '326', target: '4640', data: {} }, + { + id: 'edge-0.017333948229259155', + source: '326', + target: '4641', + data: {}, + }, + { id: 'edge-0.83611256519182', source: '326', target: '4642', data: {} }, + { id: 'edge-0.9540437638513111', source: '326', target: '4643', data: {} }, + { id: 'edge-0.33775895286817526', source: '326', target: '4644', data: {} }, + { id: 'edge-0.8369855229095113', source: '326', target: '4645', data: {} }, + { id: 'edge-0.06602818557536971', source: '326', target: '4646', data: {} }, + { id: 'edge-0.6742617386619136', source: '326', target: '4647', data: {} }, + { id: 'edge-0.1748876053577728', source: '326', target: '4648', data: {} }, + { id: 'edge-0.547105794929662', source: '326', target: '4649', data: {} }, + { id: 'edge-0.3797933766331665', source: '326', target: '4650', data: {} }, + { id: 'edge-0.9599865791185149', source: '326', target: '4651', data: {} }, + { id: 'edge-0.2181001469410737', source: '326', target: '4652', data: {} }, + { id: 'edge-0.6343099328051145', source: '326', target: '4653', data: {} }, + { id: 'edge-0.7050391592973937', source: '326', target: '4654', data: {} }, + { id: 'edge-0.09689963553900127', source: '326', target: '4655', data: {} }, + { id: 'edge-0.48756799864724787', source: '326', target: '4656', data: {} }, + { id: 'edge-0.11579733795222569', source: '326', target: '4657', data: {} }, + { id: 'edge-0.393188479293868', source: '326', target: '4658', data: {} }, + { + id: 'edge-0.012925752729408657', + source: '326', + target: '4659', + data: {}, + }, + { id: 'edge-0.6430783613614286', source: '326', target: '4660', data: {} }, + { id: 'edge-0.5230120578992168', source: '326', target: '4661', data: {} }, + { id: 'edge-0.488335413987975', source: '326', target: '4662', data: {} }, + { id: 'edge-0.6195363283586655', source: '326', target: '4663', data: {} }, + { id: 'edge-0.26317615842993436', source: '326', target: '4664', data: {} }, + { id: 'edge-0.7632444047594564', source: '326', target: '4665', data: {} }, + { id: 'edge-0.39166616111473185', source: '326', target: '4666', data: {} }, + { id: 'edge-0.142802657401514', source: '326', target: '4667', data: {} }, + { id: 'edge-0.9170029955168526', source: '25', target: '4669', data: {} }, + { id: 'edge-0.6368729384930671', source: '25', target: '4670', data: {} }, + { id: 'edge-0.09114830131868223', source: '25', target: '4671', data: {} }, + { id: 'edge-0.9528165197497653', source: '25', target: '4672', data: {} }, + { id: 'edge-0.8874040877311582', source: '25', target: '4673', data: {} }, + { id: 'edge-0.9453025912961486', source: '25', target: '4674', data: {} }, + { id: 'edge-0.49828212585419074', source: '25', target: '4675', data: {} }, + { id: 'edge-0.4524797190201877', source: '25', target: '4676', data: {} }, + { id: 'edge-0.0846134545061199', source: '25', target: '4677', data: {} }, + { id: 'edge-0.7360080304055803', source: '4677', target: '4678', data: {} }, + { + id: 'edge-0.34601997646433813', + source: '4677', + target: '4679', + data: {}, + }, + { id: 'edge-0.862132217871521', source: '25', target: '4681', data: {} }, + { id: 'edge-0.6642326331549804', source: '25', target: '4682', data: {} }, + { id: 'edge-0.3681839895414287', source: '25', target: '4683', data: {} }, + { id: 'edge-0.5937576798215991', source: '25', target: '4685', data: {} }, + { id: 'edge-0.04761395344712649', source: '25', target: '4686', data: {} }, + { id: 'edge-0.491053451560294', source: '25', target: '4687', data: {} }, + { id: 'edge-0.8793965059555384', source: '25', target: '4688', data: {} }, + { id: 'edge-0.29835448458691705', source: '25', target: '1439', data: {} }, + { id: 'edge-0.861904078114526', source: '25', target: '4691', data: {} }, + { id: 'edge-0.9872395305405475', source: '25', target: '4692', data: {} }, + { id: 'edge-0.3975775567117843', source: '25', target: '4693', data: {} }, + { id: 'edge-0.5584498753501126', source: '25', target: '4694', data: {} }, + { id: 'edge-0.6116623243517973', source: '25', target: '4695', data: {} }, + { id: 'edge-0.8550883273208871', source: '25', target: '4696', data: {} }, + { id: 'edge-0.5565283037912527', source: '25', target: '4697', data: {} }, + { id: 'edge-0.1322067330035317', source: '25', target: '4698', data: {} }, + { id: 'edge-0.833312687906544', source: '25', target: '4699', data: {} }, + { id: 'edge-0.9963377767784498', source: '25', target: '4700', data: {} }, + { id: 'edge-0.25684564356324646', source: '25', target: '4701', data: {} }, + { id: 'edge-0.1177594218942839', source: '25', target: '4702', data: {} }, + { id: 'edge-0.25311340352706924', source: '25', target: '4703', data: {} }, + { id: 'edge-0.7736376043835886', source: '25', target: '4704', data: {} }, + { id: 'edge-0.09097094160196284', source: '25', target: '4705', data: {} }, + { id: 'edge-0.9754212093277976', source: '4705', target: '4706', data: {} }, + { + id: 'edge-0.14127561954637446', + source: '4705', + target: '4707', + data: {}, + }, + { id: 'edge-0.5755088696231894', source: '4705', target: '4708', data: {} }, + { id: 'edge-0.3197524429510803', source: '4705', target: '4709', data: {} }, + { + id: 'edge-0.43785508843009335', + source: '4705', + target: '4710', + data: {}, + }, + { + id: 'edge-0.050357720421971175', + source: '4705', + target: '4711', + data: {}, + }, + { id: 'edge-0.20255760064462325', source: '25', target: '4712', data: {} }, + { id: 'edge-0.5213591727828808', source: '25', target: '3121', data: {} }, + { id: 'edge-0.08101566231961388', source: '25', target: '3122', data: {} }, + { id: 'edge-0.048818780905221404', source: '25', target: '4715', data: {} }, + { id: 'edge-0.5932973097665908', source: '25', target: '4716', data: {} }, + { id: 'edge-0.5814948153013391', source: '25', target: '4717', data: {} }, + { id: 'edge-0.8755465611418278', source: '25', target: '4718', data: {} }, + { id: 'edge-0.0786562417013339', source: '28', target: '3299', data: {} }, + { id: 'edge-0.1817073647492058', source: '28', target: '3300', data: {} }, + { id: 'edge-0.6571896758887805', source: '28', target: '3301', data: {} }, + { id: 'edge-0.1494732652689139', source: '28', target: '3302', data: {} }, + { id: 'edge-0.6758301423342847', source: '28', target: '3303', data: {} }, + { id: 'edge-0.8134762474790749', source: '28', target: '3304', data: {} }, + { id: 'edge-0.1335328068012478', source: '28', target: '3305', data: {} }, + { id: 'edge-0.3262174881861759', source: '28', target: '3306', data: {} }, + { id: 'edge-0.2286676370573495', source: '28', target: '3307', data: {} }, + { id: 'edge-0.7613838593442064', source: '3305', target: '3309', data: {} }, + { id: 'edge-0.8057129635139069', source: '28', target: '4722', data: {} }, + { id: 'edge-0.20093157880454982', source: '28', target: '3352', data: {} }, + { id: 'edge-0.294161762338532', source: '30', target: '3352', data: {} }, + { id: 'edge-0.6382186242191825', source: '28', target: '3310', data: {} }, + { id: 'edge-0.07203089928325612', source: '28', target: '3311', data: {} }, + { id: 'edge-0.18325777351030537', source: '28', target: '3312', data: {} }, + { id: 'edge-0.1893365443122872', source: '28', target: '3313', data: {} }, + { id: 'edge-0.0134569545630423', source: '28', target: '3314', data: {} }, + { id: 'edge-0.8936670831443652', source: '28', target: '3315', data: {} }, + { id: 'edge-0.9367142955202779', source: '28', target: '3316', data: {} }, + { id: 'edge-0.2026595142281482', source: '28', target: '3317', data: {} }, + { id: 'edge-0.43555077336682113', source: '28', target: '3318', data: {} }, + { id: 'edge-0.8686390529586576', source: '28', target: '3319', data: {} }, + { id: 'edge-0.04461773983196182', source: '28', target: '3320', data: {} }, + { id: 'edge-0.004691818729279262', source: '28', target: '3321', data: {} }, + { id: 'edge-0.35992745611903376', source: '28', target: '3322', data: {} }, + { id: 'edge-0.8597866897718702', source: '28', target: '3323', data: {} }, + { id: 'edge-0.7686987244378474', source: '28', target: '3324', data: {} }, + { id: 'edge-0.32781556771123554', source: '28', target: '3325', data: {} }, + { id: 'edge-0.6986171183999788', source: '28', target: '3326', data: {} }, + { id: 'edge-0.658096109188868', source: '28', target: '3327', data: {} }, + { id: 'edge-0.9934561126633554', source: '28', target: '3328', data: {} }, + { id: 'edge-0.2248026652512085', source: '28', target: '3329', data: {} }, + { id: 'edge-0.5781915578331103', source: '28', target: '3330', data: {} }, + { id: 'edge-0.3802894115542941', source: '28', target: '3331', data: {} }, + { id: 'edge-0.8770336014490967', source: '28', target: '3332', data: {} }, + { id: 'edge-0.7369166898882973', source: '28', target: '3333', data: {} }, + { id: 'edge-0.87784239491473', source: '28', target: '3334', data: {} }, + { id: 'edge-0.030718965342725113', source: '28', target: '3335', data: {} }, + { id: 'edge-0.12780449158309137', source: '28', target: '3336', data: {} }, + { id: 'edge-0.29200690130912466', source: '28', target: '3337', data: {} }, + { id: 'edge-0.3425803472133566', source: '28', target: '3338', data: {} }, + { id: 'edge-0.17385508955775042', source: '28', target: '3339', data: {} }, + { id: 'edge-0.5595674459135465', source: '28', target: '3340', data: {} }, + { id: 'edge-0.5143349320081696', source: '28', target: '3341', data: {} }, + { id: 'edge-0.8275701847435248', source: '28', target: '3342', data: {} }, + { id: 'edge-0.9404224906165317', source: '28', target: '3343', data: {} }, + { id: 'edge-0.6817817156789545', source: '28', target: '3344', data: {} }, + { id: 'edge-0.14001995228829545', source: '28', target: '3345', data: {} }, + { id: 'edge-0.3250198207776902', source: '28', target: '3346', data: {} }, + { id: 'edge-0.08425955730143575', source: '28', target: '3347', data: {} }, + { id: 'edge-0.36310697827639205', source: '28', target: '3348', data: {} }, + { id: 'edge-0.6166751183206141', source: '28', target: '3349', data: {} }, + { id: 'edge-0.8828817769791997', source: '28', target: '3350', data: {} }, + { id: 'edge-0.8274540510298705', source: '28', target: '3351', data: {} }, + { id: 'edge-0.9974123009141944', source: '28', target: '3355', data: {} }, + { id: 'edge-0.03529729207234977', source: '28', target: '3356', data: {} }, + { id: 'edge-0.2556047100522645', source: '28', target: '3357', data: {} }, + { id: 'edge-0.3115363156658548', source: '28', target: '3358', data: {} }, + { id: 'edge-0.4379337423961036', source: '28', target: '3359', data: {} }, + { id: 'edge-0.5923742840413717', source: '28', target: '3360', data: {} }, + { id: 'edge-0.43575138235734734', source: '28', target: '3361', data: {} }, + { id: 'edge-0.7784405050027501', source: '28', target: '3364', data: {} }, + { id: 'edge-0.7864400602974368', source: '28', target: '4724', data: {} }, + { id: 'edge-0.8124578902188091', source: '28', target: '3367', data: {} }, + { id: 'edge-0.7545201515334246', source: '28', target: '3368', data: {} }, + { id: 'edge-0.03517985708559013', source: '28', target: '3370', data: {} }, + { id: 'edge-0.48086818456794544', source: '28', target: '3371', data: {} }, + { id: 'edge-0.08388428733980424', source: '28', target: '3372', data: {} }, + { id: 'edge-0.5302461282651569', source: '28', target: '3373', data: {} }, + { id: 'edge-0.9974276337605268', source: '28', target: '3374', data: {} }, + { id: 'edge-0.9317574009451477', source: '28', target: '3375', data: {} }, + { id: 'edge-0.6270069214726495', source: '28', target: '3376', data: {} }, + { id: 'edge-0.9745091644621422', source: '28', target: '3377', data: {} }, + { id: 'edge-0.5759581078513731', source: '31', target: '3417', data: {} }, + { id: 'edge-0.7579241581551581', source: '31', target: '3418', data: {} }, + { id: 'edge-0.6426155520402377', source: '31', target: '3419', data: {} }, + { id: 'edge-0.7657877963788065', source: '31', target: '3420', data: {} }, + { id: 'edge-0.31695213246563525', source: '31', target: '3421', data: {} }, + { id: 'edge-0.8940374189815348', source: '31', target: '3422', data: {} }, + { id: 'edge-0.7057523733529809', source: '31', target: '3423', data: {} }, + { id: 'edge-0.11642900749200469', source: '31', target: '3424', data: {} }, + { id: 'edge-0.9574672414432581', source: '31', target: '3425', data: {} }, + { id: 'edge-0.46348853337533513', source: '31', target: '3426', data: {} }, + { id: 'edge-0.2049593589104799', source: '31', target: '3427', data: {} }, + { id: 'edge-0.6300923691933558', source: '31', target: '3428', data: {} }, + { id: 'edge-0.5335463423465976', source: '31', target: '3429', data: {} }, + { id: 'edge-0.3031182756003117', source: '31', target: '3430', data: {} }, + { id: 'edge-0.44129618535223636', source: '31', target: '3431', data: {} }, + { id: 'edge-0.6347752361932506', source: '31', target: '3432', data: {} }, + { id: 'edge-0.9302848858626989', source: '31', target: '3433', data: {} }, + { id: 'edge-0.8599619346238543', source: '31', target: '3434', data: {} }, + { id: 'edge-0.18009449360377738', source: '31', target: '3435', data: {} }, + { id: 'edge-0.5301479648540299', source: '31', target: '3436', data: {} }, + { id: 'edge-0.02979370115952995', source: '31', target: '3438', data: {} }, + { id: 'edge-0.7834798435308923', source: '31', target: '3439', data: {} }, + { id: 'edge-0.20718466966496552', source: '31', target: '3440', data: {} }, + { id: 'edge-0.17876563237908272', source: '31', target: '3441', data: {} }, + { id: 'edge-0.9829242096338928', source: '31', target: '1658', data: {} }, + { id: 'edge-0.011580089379981118', source: '31', target: '3444', data: {} }, + { id: 'edge-0.0635348451718234', source: '31', target: '3445', data: {} }, + { id: 'edge-0.779137710925401', source: '31', target: '3446', data: {} }, + { id: 'edge-0.5166265161088393', source: '31', target: '3447', data: {} }, + { id: 'edge-0.005117566549303287', source: '31', target: '3448', data: {} }, + { id: 'edge-0.9889754616378661', source: '31', target: '3449', data: {} }, + { id: 'edge-0.26773640183134995', source: '31', target: '3450', data: {} }, + { id: 'edge-0.13041539153637727', source: '31', target: '3451', data: {} }, + { id: 'edge-0.4874819634189047', source: '31', target: '3453', data: {} }, + { id: 'edge-0.18122630743447954', source: '31', target: '3380', data: {} }, + { id: 'edge-0.9636276532530896', source: '31', target: '3381', data: {} }, + { id: 'edge-0.03848478992377369', source: '31', target: '3382', data: {} }, + { id: 'edge-0.5529362498330934', source: '31', target: '3383', data: {} }, + { id: 'edge-0.6224612123601607', source: '31', target: '3384', data: {} }, + { id: 'edge-0.5790380867828913', source: '31', target: '3385', data: {} }, + { id: 'edge-0.14244665907823828', source: '31', target: '3386', data: {} }, + { id: 'edge-0.5361067324168334', source: '3453', target: '3454', data: {} }, + { id: 'edge-0.9038060056457924', source: '3453', target: '3455', data: {} }, + { id: 'edge-0.693632468552638', source: '31', target: '3457', data: {} }, + { id: 'edge-0.1208243705919112', source: '31', target: '3458', data: {} }, + { id: 'edge-0.7507826608136858', source: '31', target: '3459', data: {} }, + { id: 'edge-0.6669189279897407', source: '31', target: '3460', data: {} }, + { id: 'edge-0.16879001340862376', source: '31', target: '3461', data: {} }, + { id: 'edge-0.18158551303125114', source: '31', target: '3462', data: {} }, + { id: 'edge-0.8883705018771246', source: '31', target: '3463', data: {} }, + { id: 'edge-0.931136743774462', source: '31', target: '3464', data: {} }, + { id: 'edge-0.32980505813038685', source: '31', target: '3465', data: {} }, + { id: 'edge-0.2429900784120842', source: '31', target: '3466', data: {} }, + { id: 'edge-0.06207268206577732', source: '31', target: '3467', data: {} }, + { + id: 'edge-0.49400178325886435', + source: '1805', + target: '3468', + data: {}, + }, + { id: 'edge-0.5498284089056644', source: '1805', target: '3469', data: {} }, + { id: 'edge-0.9301958217224788', source: '31', target: '3470', data: {} }, + { id: 'edge-0.5225112322435113', source: '31', target: '3476', data: {} }, + { id: 'edge-0.578623533137075', source: '31', target: '3477', data: {} }, + { + id: 'edge-0.20358123164270592', + source: '3477', + target: '3479', + data: {}, + }, + { id: 'edge-0.3214189943202985', source: '3477', target: '148', data: {} }, + { id: 'edge-0.26430048327237077', source: '4', target: '163', data: {} }, + { id: 'edge-0.0770557760027768', source: '3477', target: '3482', data: {} }, + { id: 'edge-0.5097392283702697', source: '3477', target: '3483', data: {} }, + { id: 'edge-0.6827346379874581', source: '3477', target: '3484', data: {} }, + { id: 'edge-0.9960609461490473', source: '3477', target: '3486', data: {} }, + { + id: 'edge-0.05496863935001706', + source: '3477', + target: '3487', + data: {}, + }, + { id: 'edge-0.9974830223741367', source: '3477', target: '3488', data: {} }, + { id: 'edge-0.231027220575027', source: '3477', target: '3490', data: {} }, + { id: 'edge-0.7491576055603935', source: '3477', target: '4250', data: {} }, + { id: 'edge-0.5622097305038889', source: '3477', target: '1805', data: {} }, + { id: 'edge-0.8507550852068348', source: '32', target: '3503', data: {} }, + { id: 'edge-0.39585545074269035', source: '32', target: '3504', data: {} }, + { id: 'edge-0.36075328326808265', source: '32', target: '3505', data: {} }, + { id: 'edge-0.046319746803613615', source: '32', target: '3508', data: {} }, + { id: 'edge-0.8680613682238447', source: '4172', target: '2847', data: {} }, + { id: 'edge-0.3073585756605901', source: '33', target: '3510', data: {} }, + { + id: 'edge-0.17390259917534223', + source: '3510', + target: '3511', + data: {}, + }, + { + id: 'edge-0.07151859271988092', + source: '3510', + target: '3512', + data: {}, + }, + { id: 'edge-0.5246828462011985', source: '3510', target: '3513', data: {} }, + { id: 'edge-0.3767433112605141', source: '3510', target: '3514', data: {} }, + { + id: 'edge-0.23534355783459748', + source: '3510', + target: '3516', + data: {}, + }, + { id: 'edge-0.4343614818048427', source: '3510', target: '3517', data: {} }, + { id: 'edge-0.5941129676553618', source: '3510', target: '3518', data: {} }, + { id: 'edge-0.1824185669376699', source: '3510', target: '3519', data: {} }, + { id: 'edge-0.1434016907888942', source: '3510', target: '3520', data: {} }, + { + id: 'edge-0.20789089763878987', + source: '3510', + target: '3521', + data: {}, + }, + { id: 'edge-0.3564191212425314', source: '3510', target: '3522', data: {} }, + { id: 'edge-0.7023640711705088', source: '3510', target: '3523', data: {} }, + { id: 'edge-0.6871471736103412', source: '3510', target: '3524', data: {} }, + { id: 'edge-0.9273360899008687', source: '3510', target: '112', data: {} }, + { id: 'edge-0.7119185872387559', source: '3510', target: '3526', data: {} }, + { + id: 'edge-0.24067513957812614', + source: '3510', + target: '3528', + data: {}, + }, + { id: 'edge-0.22734543026242893', source: '33', target: '4725', data: {} }, + { id: 'edge-0.35608057516167535', source: '33', target: '3529', data: {} }, + { id: 'edge-0.7929898100447166', source: '33', target: '3530', data: {} }, + { id: 'edge-0.3791866233722072', source: '3530', target: '3531', data: {} }, + { id: 'edge-0.4369374242529187', source: '3530', target: '3532', data: {} }, + { + id: 'edge-0.28998163573355096', + source: '3530', + target: '3533', + data: {}, + }, + { id: 'edge-0.6686744162747187', source: '3530', target: '3534', data: {} }, + { id: 'edge-0.7910583222123888', source: '3530', target: '3535', data: {} }, + { + id: 'edge-0.44746769365518113', + source: '3530', + target: '3537', + data: {}, + }, + { + id: 'edge-0.35134993586279717', + source: '3530', + target: '3538', + data: {}, + }, + { id: 'edge-0.5416093626296503', source: '33', target: '3539', data: {} }, + { id: 'edge-0.5195943519078385', source: '3539', target: '3540', data: {} }, + { id: 'edge-0.6005238993550619', source: '3539', target: '3541', data: {} }, + { id: 'edge-0.4802484988728337', source: '3539', target: '3542', data: {} }, + { id: 'edge-0.64061895045885', source: '3539', target: '3543', data: {} }, + { id: 'edge-0.6898409619880979', source: '3539', target: '3544', data: {} }, + { id: 'edge-0.5571250459056993', source: '3539', target: '3545', data: {} }, + { id: 'edge-0.7872470578000668', source: '3539', target: '3546', data: {} }, + { id: 'edge-0.9982363845246176', source: '3539', target: '3547', data: {} }, + { id: 'edge-0.6372402408875966', source: '3539', target: '3548', data: {} }, + { + id: 'edge-0.27473915879663524', + source: '3539', + target: '3549', + data: {}, + }, + { id: 'edge-0.1423670952303424', source: '3539', target: '2860', data: {} }, + { id: 'edge-0.21315614353478907', source: '33', target: '3550', data: {} }, + { id: 'edge-0.6486390479520965', source: '3550', target: '3551', data: {} }, + { + id: 'edge-0.43385076501872066', + source: '3550', + target: '3552', + data: {}, + }, + { + id: 'edge-0.48451813547017797', + source: '3550', + target: '3553', + data: {}, + }, + { id: 'edge-0.7640758531702447', source: '33', target: '3993', data: {} }, + { id: 'edge-0.08933861986885727', source: '33', target: '3554', data: {} }, + { + id: 'edge-0.26469583368439564', + source: '3554', + target: '3555', + data: {}, + }, + { + id: 'edge-0.16444021417751808', + source: '3554', + target: '3556', + data: {}, + }, + { id: 'edge-0.757438857218264', source: '3554', target: '3557', data: {} }, + { id: 'edge-0.8825820731286771', source: '3554', target: '3558', data: {} }, + { + id: 'edge-0.025276678818025422', + source: '3554', + target: '3559', + data: {}, + }, + { + id: 'edge-0.030526257402465173', + source: '3554', + target: '3560', + data: {}, + }, + { id: 'edge-0.6153856798274493', source: '33', target: '3561', data: {} }, + { id: 'edge-0.5017356994375664', source: '4728', target: '3561', data: {} }, + { id: 'edge-0.7291909043349694', source: '33', target: '3562', data: {} }, + { id: 'edge-0.8858724646653793', source: '33', target: '3563', data: {} }, + { id: 'edge-0.10773042027878743', source: '33', target: '3564', data: {} }, + { id: 'edge-0.6680624868511786', source: '33', target: '3565', data: {} }, + { id: 'edge-0.4075606878752889', source: '33', target: '3566', data: {} }, + { id: 'edge-0.44387038934449485', source: '33', target: '3567', data: {} }, + { id: 'edge-0.5255133656257771', source: '33', target: '3569', data: {} }, + { id: 'edge-0.07424102917224307', source: '33', target: '3571', data: {} }, + { id: 'edge-0.5992498457804072', source: '33', target: '3572', data: {} }, + { id: 'edge-0.515335206648635', source: '33', target: '3573', data: {} }, + { id: 'edge-0.8809397197332813', source: '33', target: '3574', data: {} }, + { id: 'edge-0.14423540538141122', source: '33', target: '3575', data: {} }, + { id: 'edge-0.30531019496529277', source: '33', target: '3576', data: {} }, + { id: 'edge-0.94875116280535', source: '33', target: '3577', data: {} }, + { id: 'edge-0.4031096529142515', source: '33', target: '3578', data: {} }, + { id: 'edge-0.2537649670368711', source: '33', target: '3579', data: {} }, + { id: 'edge-0.9734166706717411', source: '33', target: '3580', data: {} }, + { id: 'edge-0.05497237659733134', source: '33', target: '3581', data: {} }, + { id: 'edge-0.07400642606274155', source: '33', target: '3582', data: {} }, + { id: 'edge-0.6349874429547075', source: '3582', target: '3583', data: {} }, + { id: 'edge-0.825940416682104', source: '3582', target: '3584', data: {} }, + { id: 'edge-0.2718855386559589', source: '3582', target: '3585', data: {} }, + { + id: 'edge-0.19402797857950205', + source: '3582', + target: '3586', + data: {}, + }, + { id: 'edge-0.4119985239978876', source: '3582', target: '3587', data: {} }, + { + id: 'edge-0.13770764860157625', + source: '3582', + target: '3588', + data: {}, + }, + { + id: 'edge-0.11096064298133568', + source: '3582', + target: '3589', + data: {}, + }, + { id: 'edge-0.8259549049380159', source: '33', target: '3590', data: {} }, + { id: 'edge-0.10637674675271125', source: '33', target: '3591', data: {} }, + { id: 'edge-0.14232551127011228', source: '33', target: '3593', data: {} }, + { id: 'edge-0.815062396204681', source: '33', target: '3594', data: {} }, + { id: 'edge-0.24999806807177372', source: '33', target: '3595', data: {} }, + { id: 'edge-0.309497788729421', source: '33', target: '3596', data: {} }, + { id: 'edge-0.5138410270734344', source: '33', target: '3597', data: {} }, + { id: 'edge-0.8581074583865056', source: '33', target: '3598', data: {} }, + { id: 'edge-0.12618440036437373', source: '33', target: '3599', data: {} }, + { id: 'edge-0.7431505051755611', source: '33', target: '3601', data: {} }, + { id: 'edge-0.032877753533059106', source: '33', target: '3602', data: {} }, + { id: 'edge-0.22455102911368074', source: '33', target: '3603', data: {} }, + { id: 'edge-0.7384123262564775', source: '33', target: '3604', data: {} }, + { id: 'edge-0.5364707769528965', source: '33', target: '3605', data: {} }, + { id: 'edge-0.9311483921502963', source: '33', target: '3606', data: {} }, + { id: 'edge-0.8025295336178377', source: '33', target: '3607', data: {} }, + { id: 'edge-0.9271021850794259', source: '33', target: '3608', data: {} }, + { id: 'edge-0.6753452479742916', source: '33', target: '3609', data: {} }, + { id: 'edge-0.6840132394256788', source: '33', target: '3610', data: {} }, + { id: 'edge-0.11155535255776639', source: '33', target: '3611', data: {} }, + { id: 'edge-0.41850684243857184', source: '33', target: '1520', data: {} }, + { id: 'edge-0.26875033386987557', source: '33', target: '3613', data: {} }, + { id: 'edge-0.9061258770968523', source: '33', target: '3614', data: {} }, + { id: 'edge-0.7710478782396037', source: '33', target: '3615', data: {} }, + { id: 'edge-0.07677342798663922', source: '33', target: '3618', data: {} }, + { id: 'edge-0.597168124347045', source: '33', target: '3619', data: {} }, + { id: 'edge-0.905430844310982', source: '33', target: '3620', data: {} }, + { id: 'edge-0.8118557562114186', source: '33', target: '3621', data: {} }, + { id: 'edge-0.5749861873587814', source: '33', target: '3622', data: {} }, + { id: 'edge-0.8808837818910094', source: '33', target: '3623', data: {} }, + { id: 'edge-0.09239487586611705', source: '33', target: '3624', data: {} }, + { id: 'edge-0.1706923086106762', source: '33', target: '3625', data: {} }, + { id: 'edge-0.1662476168028728', source: '33', target: '3626', data: {} }, + { id: 'edge-0.6294922382133894', source: '33', target: '3627', data: {} }, + { + id: 'edge-0.0016626770482268682', + source: '33', + target: '3628', + data: {}, + }, + { id: 'edge-0.7166779147910283', source: '33', target: '3629', data: {} }, + { id: 'edge-0.5254489238536411', source: '33', target: '3630', data: {} }, + { id: 'edge-0.5662494455723932', source: '33', target: '3631', data: {} }, + { id: 'edge-0.6013522816435377', source: '33', target: '3632', data: {} }, + { id: 'edge-0.5359479785918777', source: '33', target: '3633', data: {} }, + { id: 'edge-0.8756222654648533', source: '33', target: '3634', data: {} }, + { id: 'edge-0.5954503945331431', source: '33', target: '3616', data: {} }, + { id: 'edge-0.3637515480391349', source: '33', target: '3635', data: {} }, + { id: 'edge-0.3796346952992897', source: '33', target: '3636', data: {} }, + { id: 'edge-0.21843541220382479', source: '33', target: '3637', data: {} }, + { id: 'edge-0.8280661726472631', source: '33', target: '3638', data: {} }, + { + id: 'edge-0.39935273033334884', + source: '4733', + target: '3638', + data: {}, + }, + { id: 'edge-0.4888778668257414', source: '33', target: '3640', data: {} }, + { id: 'edge-0.20754804380193081', source: '33', target: '3641', data: {} }, + { + id: 'edge-0.13631086558535133', + source: '4368', + target: '3641', + data: {}, + }, + { id: 'edge-0.6481279964485083', source: '33', target: '3642', data: {} }, + { id: 'edge-0.5048980742279814', source: '3642', target: '3643', data: {} }, + { + id: 'edge-0.09725692696418786', + source: '3642', + target: '3644', + data: {}, + }, + { + id: 'edge-0.23338385024467723', + source: '3642', + target: '3645', + data: {}, + }, + { id: 'edge-0.4850985256300939', source: '3642', target: '3646', data: {} }, + { id: 'edge-0.650712237237385', source: '3642', target: '3647', data: {} }, + { + id: 'edge-0.048637490154914254', + source: '3642', + target: '3648', + data: {}, + }, + { id: 'edge-0.8984482646455056', source: '3642', target: '3649', data: {} }, + { + id: 'edge-0.15559372941741612', + source: '3642', + target: '3650', + data: {}, + }, + { id: 'edge-0.8128471457219586', source: '3642', target: '3651', data: {} }, + { id: 'edge-0.2827502189322151', source: '3642', target: '3652', data: {} }, + { id: 'edge-0.7950241956612687', source: '3642', target: '3653', data: {} }, + { id: 'edge-0.6544081142127305', source: '3642', target: '3654', data: {} }, + { id: 'edge-0.6818060588759582', source: '3642', target: '3655', data: {} }, + { id: 'edge-0.3713366193741463', source: '3642', target: '3656', data: {} }, + { id: 'edge-0.4248454111074036', source: '3642', target: '3657', data: {} }, + { id: 'edge-0.3211867073333867', source: '3642', target: '3658', data: {} }, + { id: 'edge-0.9338922285977644', source: '3642', target: '3659', data: {} }, + { id: 'edge-0.7340694697366086', source: '3642', target: '3660', data: {} }, + { id: 'edge-0.8866777075546719', source: '3642', target: '3661', data: {} }, + { id: 'edge-0.6264604298797574', source: '3642', target: '3662', data: {} }, + { + id: 'edge-0.28912592337101684', + source: '3642', + target: '3663', + data: {}, + }, + { id: 'edge-0.4819682320697749', source: '3642', target: '3664', data: {} }, + { id: 'edge-0.451298029595258', source: '3642', target: '3665', data: {} }, + { + id: 'edge-0.11141026971637213', + source: '3642', + target: '3666', + data: {}, + }, + { + id: 'edge-0.18923763906958557', + source: '3642', + target: '3667', + data: {}, + }, + { + id: 'edge-0.38828698525744065', + source: '3642', + target: '3668', + data: {}, + }, + { id: 'edge-0.2705474003843704', source: '3642', target: '3669', data: {} }, + { id: 'edge-0.574500525934545', source: '3642', target: '3670', data: {} }, + { + id: 'edge-0.43634351803610527', + source: '3642', + target: '3671', + data: {}, + }, + { + id: 'edge-0.34560235071575884', + source: '3642', + target: '3672', + data: {}, + }, + { id: 'edge-0.8087958063705842', source: '3642', target: '3673', data: {} }, + { id: 'edge-0.4993491063965285', source: '3642', target: '3674', data: {} }, + { id: 'edge-0.9234236910657281', source: '3642', target: '3675', data: {} }, + { + id: 'edge-0.35545954541707014', + source: '3642', + target: '3676', + data: {}, + }, + { + id: 'edge-0.12911565210374465', + source: '3642', + target: '3677', + data: {}, + }, + { id: 'edge-0.9860072767334618', source: '3642', target: '3678', data: {} }, + { + id: 'edge-0.030933124268053502', + source: '3642', + target: '3679', + data: {}, + }, + { + id: 'edge-0.19493934996390938', + source: '3642', + target: '3680', + data: {}, + }, + { id: 'edge-0.6196204016811924', source: '3642', target: '3681', data: {} }, + { id: 'edge-0.6122623923103505', source: '3642', target: '3682', data: {} }, + { + id: 'edge-0.06817818588463442', + source: '3642', + target: '3683', + data: {}, + }, + { id: 'edge-0.4143112785406047', source: '3642', target: '3684', data: {} }, + { + id: 'edge-0.08265607724867574', + source: '3642', + target: '3685', + data: {}, + }, + { id: 'edge-0.6656007568168372', source: '3642', target: '3686', data: {} }, + { id: 'edge-0.7159524001268303', source: '3642', target: '3687', data: {} }, + { id: 'edge-0.8261714942410705', source: '3642', target: '3688', data: {} }, + { + id: 'edge-0.43637741147732134', + source: '3642', + target: '3689', + data: {}, + }, + { id: 'edge-0.6523077609971164', source: '3642', target: '3690', data: {} }, + { + id: 'edge-0.25847701914842625', + source: '3642', + target: '3691', + data: {}, + }, + { id: 'edge-0.1578400171184713', source: '3642', target: '3692', data: {} }, + { id: 'edge-0.2559656108596451', source: '3642', target: '3693', data: {} }, + { id: 'edge-0.7497207922920457', source: '3642', target: '3694', data: {} }, + { id: 'edge-0.8650404378285019', source: '3642', target: '3695', data: {} }, + { + id: 'edge-0.07912736706106549', + source: '3642', + target: '3696', + data: {}, + }, + { id: 'edge-0.2894352093188899', source: '3642', target: '3697', data: {} }, + { id: 'edge-0.9428711753461381', source: '3642', target: '3698', data: {} }, + { + id: 'edge-0.07519956315893617', + source: '3642', + target: '3699', + data: {}, + }, + { id: 'edge-0.7603986414784127', source: '3642', target: '3700', data: {} }, + { id: 'edge-0.728873541342459', source: '3642', target: '3701', data: {} }, + { id: 'edge-0.5017147028382518', source: '3642', target: '3702', data: {} }, + { id: 'edge-0.41118887981539', source: '3642', target: '3703', data: {} }, + { id: 'edge-0.5138201018456883', source: '3642', target: '3704', data: {} }, + { id: 'edge-0.0339889388870982', source: '3642', target: '3705', data: {} }, + { + id: 'edge-0.08027084158343945', + source: '3642', + target: '3706', + data: {}, + }, + { id: 'edge-0.9552422653451997', source: '3642', target: '3707', data: {} }, + { id: 'edge-0.8136749492460971', source: '3642', target: '3708', data: {} }, + { id: 'edge-0.817764992648961', source: '3642', target: '3709', data: {} }, + { id: 'edge-0.7678556169960638', source: '3642', target: '3710', data: {} }, + { id: 'edge-0.494514157681496', source: '3642', target: '3711', data: {} }, + { id: 'edge-0.7327865369696713', source: '3642', target: '3712', data: {} }, + { + id: 'edge-0.09573601072379567', + source: '3642', + target: '3713', + data: {}, + }, + { id: 'edge-0.6016911534206759', source: '3642', target: '3714', data: {} }, + { id: 'edge-0.6427769838028388', source: '3642', target: '3715', data: {} }, + { id: 'edge-0.9609329455903062', source: '3642', target: '3716', data: {} }, + { + id: 'edge-0.047763391064420624', + source: '3642', + target: '3717', + data: {}, + }, + { id: 'edge-0.7072888970525733', source: '3642', target: '3718', data: {} }, + { id: 'edge-0.8852006624038335', source: '3642', target: '3719', data: {} }, + { + id: 'edge-0.12671655043269836', + source: '3642', + target: '3720', + data: {}, + }, + { id: 'edge-0.9310900181143855', source: '3642', target: '3721', data: {} }, + { id: 'edge-0.5976244615560034', source: '3642', target: '3722', data: {} }, + { + id: 'edge-0.02341895706367847', + source: '3642', + target: '3723', + data: {}, + }, + { id: 'edge-0.1445339582919709', source: '3642', target: '3724', data: {} }, + { id: 'edge-0.4698826487671064', source: '3642', target: '3725', data: {} }, + { id: 'edge-0.446574113842126', source: '3642', target: '3726', data: {} }, + { id: 'edge-0.8535063045127511', source: '3642', target: '3727', data: {} }, + { + id: 'edge-0.08309408901594839', + source: '3642', + target: '3728', + data: {}, + }, + { + id: 'edge-0.15590356701415375', + source: '3642', + target: '3729', + data: {}, + }, + { id: 'edge-0.9406618785065066', source: '3642', target: '3730', data: {} }, + { + id: 'edge-0.40843042715450295', + source: '3642', + target: '3731', + data: {}, + }, + { id: 'edge-0.9795266848593371', source: '3642', target: '3732', data: {} }, + { id: 'edge-0.9916630310786905', source: '3642', target: '3733', data: {} }, + { id: 'edge-0.7149761543101703', source: '3642', target: '3734', data: {} }, + { id: 'edge-0.6882172799562982', source: '3642', target: '3735', data: {} }, + { + id: 'edge-0.18056299217061755', + source: '3642', + target: '3736', + data: {}, + }, + { + id: 'edge-0.09496766624559183', + source: '3642', + target: '3737', + data: {}, + }, + { id: 'edge-0.7749288008036324', source: '3642', target: '3738', data: {} }, + { id: 'edge-0.8126136130475445', source: '3642', target: '3739', data: {} }, + { + id: 'edge-0.013579616845552867', + source: '3642', + target: '3740', + data: {}, + }, + { id: 'edge-0.9302243280067297', source: '3642', target: '3741', data: {} }, + { + id: 'edge-0.20156954170786512', + source: '3642', + target: '3742', + data: {}, + }, + { + id: 'edge-0.02721272190347168', + source: '3642', + target: '3743', + data: {}, + }, + { id: 'edge-0.6201932037538989', source: '3642', target: '3744', data: {} }, + { + id: 'edge-0.08583206580585845', + source: '3642', + target: '3745', + data: {}, + }, + { id: 'edge-0.9182157964343749', source: '3642', target: '3746', data: {} }, + { + id: 'edge-0.39640302750185885', + source: '3642', + target: '3747', + data: {}, + }, + { + id: 'edge-0.39025627707639643', + source: '3642', + target: '3748', + data: {}, + }, + { id: 'edge-0.5942623162353478', source: '3642', target: '3749', data: {} }, + { id: 'edge-0.9561675856846052', source: '3642', target: '3750', data: {} }, + { id: 'edge-0.7647938352006647', source: '3642', target: '3751', data: {} }, + { id: 'edge-0.2671994508306459', source: '3642', target: '3752', data: {} }, + { id: 'edge-0.6082000863351187', source: '3642', target: '3753', data: {} }, + { id: 'edge-0.2272660611094668', source: '3642', target: '3754', data: {} }, + { + id: 'edge-0.15581964688344496', + source: '3642', + target: '3755', + data: {}, + }, + { id: 'edge-0.5946800991077072', source: '3642', target: '3756', data: {} }, + { + id: 'edge-0.030036416106832275', + source: '3642', + target: '3757', + data: {}, + }, + { id: 'edge-0.9328052332868861', source: '3642', target: '3758', data: {} }, + { + id: 'edge-0.17879626374956525', + source: '3642', + target: '3759', + data: {}, + }, + { + id: 'edge-0.10419414641696756', + source: '3642', + target: '3760', + data: {}, + }, + { id: 'edge-0.3804132146964969', source: '3642', target: '3761', data: {} }, + { + id: 'edge-0.06537645098076572', + source: '3642', + target: '3762', + data: {}, + }, + { id: 'edge-0.6291465539575767', source: '3642', target: '3763', data: {} }, + { id: 'edge-0.8646125108432112', source: '3642', target: '3764', data: {} }, + { + id: 'edge-0.48343062754909316', + source: '3642', + target: '3765', + data: {}, + }, + { id: 'edge-0.9067255624292663', source: '3642', target: '3766', data: {} }, + { id: 'edge-0.4513161034920792', source: '3642', target: '3767', data: {} }, + { id: 'edge-0.3941698071982631', source: '3642', target: '3768', data: {} }, + { id: 'edge-0.1429183725112746', source: '3642', target: '3769', data: {} }, + { id: 'edge-0.9650059600617364', source: '3642', target: '3770', data: {} }, + { + id: 'edge-0.43846269121345727', + source: '3642', + target: '3771', + data: {}, + }, + { + id: 'edge-0.44356810614471165', + source: '3642', + target: '3772', + data: {}, + }, + { id: 'edge-0.9616374930472311', source: '3642', target: '3773', data: {} }, + { id: 'edge-0.5783088298853569', source: '3642', target: '3774', data: {} }, + { + id: 'edge-0.28269602847131137', + source: '3642', + target: '3775', + data: {}, + }, + { id: 'edge-0.0695795778252788', source: '3642', target: '3776', data: {} }, + { id: 'edge-0.4842199247301071', source: '3642', target: '3777', data: {} }, + { id: 'edge-0.6675606672057863', source: '3642', target: '3778', data: {} }, + { id: 'edge-0.5070392269948183', source: '3642', target: '3779', data: {} }, + { id: 'edge-0.5329085156640176', source: '3642', target: '3780', data: {} }, + { + id: 'edge-0.14864244296865992', + source: '3642', + target: '3781', + data: {}, + }, + { + id: 'edge-0.019635399525863573', + source: '3642', + target: '3782', + data: {}, + }, + { id: 'edge-0.9316487077361093', source: '3642', target: '3783', data: {} }, + { id: 'edge-0.584713756183062', source: '3642', target: '3788', data: {} }, + { + id: 'edge-0.01203518744257881', + source: '3642', + target: '3789', + data: {}, + }, + { id: 'edge-0.1600284270473662', source: '33', target: '3790', data: {} }, + { id: 'edge-0.04121722347554302', source: '33', target: '3791', data: {} }, + { id: 'edge-0.49197737850865564', source: '33', target: '3792', data: {} }, + { id: 'edge-0.5732444402512056', source: '33', target: '3793', data: {} }, + { id: 'edge-0.99374473901917', source: '33', target: '3794', data: {} }, + { id: 'edge-0.8537984742808142', source: '33', target: '3795', data: {} }, + { id: 'edge-0.4683946758089208', source: '4172', target: '3139', data: {} }, + { id: 'edge-0.5281878906775661', source: '4172', target: '3136', data: {} }, + { id: 'edge-0.3241043845903133', source: '4172', target: '3137', data: {} }, + { + id: 'edge-0.14829587201721495', + source: '4172', + target: '3138', + data: {}, + }, + { + id: 'edge-0.16157166581762938', + source: '4172', + target: '3140', + data: {}, + }, + { + id: 'edge-0.10562003759623306', + source: '4172', + target: '3141', + data: {}, + }, + { id: 'edge-0.8962739515827995', source: '4172', target: '3142', data: {} }, + { id: 'edge-0.7828232301921709', source: '4172', target: '3143', data: {} }, + { + id: 'edge-0.08121075940837152', + source: '4172', + target: '4736', + data: {}, + }, + { + id: 'edge-0.18647598618131878', + source: '4172', + target: '4738', + data: {}, + }, + { id: 'edge-0.8913116303051225', source: '4738', target: '4739', data: {} }, + { id: 'edge-0.783101679715654', source: '4738', target: '4740', data: {} }, + { + id: 'edge-0.44589094744943547', + source: '4738', + target: '4741', + data: {}, + }, + { id: 'edge-0.5835690718234319', source: '4738', target: '4742', data: {} }, + { id: 'edge-0.345335930190658', source: '4738', target: '4743', data: {} }, + { id: 'edge-0.9645964186284726', source: '4738', target: '4744', data: {} }, + { id: 'edge-0.8733234932193636', source: '4738', target: '4745', data: {} }, + { + id: 'edge-0.12055423466036386', + source: '4738', + target: '4746', + data: {}, + }, + { id: 'edge-0.3429862961694923', source: '4738', target: '4747', data: {} }, + { id: 'edge-0.7969965362399649', source: '4738', target: '4748', data: {} }, + { id: 'edge-0.8471808746300087', source: '4738', target: '4749', data: {} }, + { id: 'edge-0.5743423141234185', source: '4738', target: '4750', data: {} }, + { + id: 'edge-0.03243044188588473', + source: '4738', + target: '4751', + data: {}, + }, + { id: 'edge-0.2940624728847008', source: '4738', target: '4752', data: {} }, + { id: 'edge-0.4559910556727462', source: '4738', target: '4753', data: {} }, + { + id: 'edge-0.29556983166196993', + source: '4738', + target: '4754', + data: {}, + }, + { + id: 'edge-0.42774395019135425', + source: '4738', + target: '4755', + data: {}, + }, + { id: 'edge-0.6996017987707006', source: '4172', target: '4756', data: {} }, + { id: 'edge-0.8171367969653494', source: '4756', target: '4757', data: {} }, + { id: 'edge-0.7665934143765054', source: '4757', target: '4758', data: {} }, + { id: 'edge-0.1517575028283964', source: '4757', target: '4759', data: {} }, + { + id: 'edge-0.39798361389844206', + source: '4756', + target: '4760', + data: {}, + }, + { id: 'edge-0.6447733520547638', source: '4760', target: '4761', data: {} }, + { id: 'edge-0.8371521339911872', source: '4760', target: '4762', data: {} }, + { id: 'edge-0.699838608694122', source: '4760', target: '4763', data: {} }, + { id: 'edge-0.9960164556356972', source: '4760', target: '4764', data: {} }, + { + id: 'edge-0.34848655243010485', + source: '4756', + target: '4765', + data: {}, + }, + { id: 'edge-0.5555727677252855', source: '4765', target: '4766', data: {} }, + { id: 'edge-0.9456765824504143', source: '4765', target: '4767', data: {} }, + { + id: 'edge-0.25226750817361876', + source: '4765', + target: '4768', + data: {}, + }, + { + id: 'edge-0.08679874461709969', + source: '4765', + target: '4769', + data: {}, + }, + { + id: 'edge-0.24285917380033117', + source: '4765', + target: '4770', + data: {}, + }, + { id: 'edge-0.3702419357656299', source: '4765', target: '4771', data: {} }, + { + id: 'edge-0.26204313521402933', + source: '4765', + target: '4772', + data: {}, + }, + { + id: 'edge-0.12925019711094987', + source: '4765', + target: '4773', + data: {}, + }, + { id: 'edge-0.7435468269303309', source: '4765', target: '4774', data: {} }, + { id: 'edge-0.6036323335874147', source: '4765', target: '4775', data: {} }, + { id: 'edge-0.5208006657441098', source: '4765', target: '4776', data: {} }, + { id: 'edge-0.2725444259447172', source: '4756', target: '4777', data: {} }, + { + id: 'edge-0.44495185534188963', + source: '4777', + target: '4778', + data: {}, + }, + { id: 'edge-0.9660200790388582', source: '4777', target: '4779', data: {} }, + { + id: 'edge-0.11215336344887361', + source: '4777', + target: '4780', + data: {}, + }, + { id: 'edge-0.3762790615012672', source: '4777', target: '4781', data: {} }, + { id: 'edge-0.1664605543352371', source: '4777', target: '4782', data: {} }, + { + id: 'edge-0.23064010672877222', + source: '4777', + target: '4783', + data: {}, + }, + { id: 'edge-0.765848855300086', source: '4777', target: '4784', data: {} }, + { id: 'edge-0.8590936832633722', source: '4777', target: '4785', data: {} }, + { + id: 'edge-0.43820577105626746', + source: '4172', + target: '4786', + data: {}, + }, + { + id: 'edge-0.28075968293041376', + source: '4786', + target: '4787', + data: {}, + }, + { + id: 'edge-0.41874186543859304', + source: '4787', + target: '4788', + data: {}, + }, + { id: 'edge-0.7953073864121247', source: '4787', target: '4789', data: {} }, + { + id: 'edge-0.33170866419347766', + source: '4787', + target: '4772', + data: {}, + }, + { id: 'edge-0.6802700987718275', source: '4787', target: '4774', data: {} }, + { + id: 'edge-0.04657983087269546', + source: '4787', + target: '4766', + data: {}, + }, + { id: 'edge-0.8795891128940803', source: '4787', target: '4793', data: {} }, + { id: 'edge-0.9061461748663089', source: '4787', target: '4794', data: {} }, + { + id: 'edge-0.20195558173632588', + source: '4787', + target: '4795', + data: {}, + }, + { id: 'edge-0.8343346127602469', source: '4787', target: '4796', data: {} }, + { + id: 'edge-0.15128776460017535', + source: '4786', + target: '4797', + data: {}, + }, + { id: 'edge-0.6811595397525609', source: '4797', target: '4798', data: {} }, + { + id: 'edge-0.12997873575066987', + source: '4786', + target: '4799', + data: {}, + }, + { + id: 'edge-0.24588223631932538', + source: '4799', + target: '4800', + data: {}, + }, + { id: 'edge-0.9042274918448787', source: '4799', target: '4801', data: {} }, + { id: 'edge-0.7386328450488024', source: '4799', target: '4743', data: {} }, + { id: 'edge-0.5265940263098627', source: '4799', target: '4803', data: {} }, + { id: 'edge-0.5167504248966832', source: '4172', target: '3145', data: {} }, + { + id: 'edge-0.45896237714910115', + source: '4172', + target: '3146', + data: {}, + }, + { + id: 'edge-0.07278798687375465', + source: '4172', + target: '3147', + data: {}, + }, + { + id: 'edge-0.19517032344112129', + source: '4172', + target: '3148', + data: {}, + }, + { id: 'edge-0.346378741772712', source: '4172', target: '3149', data: {} }, + { + id: 'edge-0.25061454318821097', + source: '4172', + target: '3150', + data: {}, + }, + { id: 'edge-0.6304875285780831', source: '4172', target: '3151', data: {} }, + { id: 'edge-0.4230498732129653', source: '4172', target: '4807', data: {} }, + { + id: 'edge-0.24512266550188855', + source: '3847', + target: '4807', + data: {}, + }, + { id: 'edge-0.4069614683433951', source: '4172', target: '4804', data: {} }, + { id: 'edge-0.6897920251229066', source: '4172', target: '4805', data: {} }, + { + id: 'edge-0.14135014852124206', + source: '4172', + target: '4806', + data: {}, + }, + { + id: 'edge-0.49955438606265323', + source: '4172', + target: '4808', + data: {}, + }, + { + id: 'edge-0.08142486916973213', + source: '4172', + target: '4809', + data: {}, + }, + { id: 'edge-0.2933817059414179', source: '4172', target: '4810', data: {} }, + { id: 'edge-0.5127044750914007', source: '4172', target: '3153', data: {} }, + { + id: 'edge-0.24863078684326134', + source: '4172', + target: '3154', + data: {}, + }, + { id: 'edge-0.9324645986057964', source: '3154', target: '3155', data: {} }, + { + id: 'edge-0.49682637217449943', + source: '3154', + target: '3156', + data: {}, + }, + { id: 'edge-0.537402879487731', source: '3154', target: '3157', data: {} }, + { id: 'edge-0.8335721659381672', source: '3154', target: '3158', data: {} }, + { id: 'edge-0.6756410524269671', source: '3154', target: '3159', data: {} }, + { + id: 'edge-0.32512464125705565', + source: '3154', + target: '3160', + data: {}, + }, + { id: 'edge-0.6913321387088078', source: '3154', target: '3161', data: {} }, + { id: 'edge-0.1791375643151596', source: '3154', target: '3162', data: {} }, + { + id: 'edge-0.020064543937086343', + source: '3154', + target: '3163', + data: {}, + }, + { id: 'edge-0.3298975809252067', source: '3154', target: '3164', data: {} }, + { id: 'edge-0.9174574294748652', source: '3154', target: '3165', data: {} }, + { + id: 'edge-0.22788685792468688', + source: '3154', + target: '3166', + data: {}, + }, + { + id: 'edge-0.048050267981775585', + source: '3154', + target: '3167', + data: {}, + }, + { id: 'edge-0.3178560022585617', source: '3154', target: '3168', data: {} }, + { id: 'edge-0.6960830609902344', source: '3154', target: '3169', data: {} }, + { id: 'edge-0.6311359717495579', source: '3154', target: '3181', data: {} }, + { + id: 'edge-0.16303255879909395', + source: '3154', + target: '4811', + data: {}, + }, + { + id: 'edge-0.055404010228939704', + source: '3154', + target: '3170', + data: {}, + }, + { id: 'edge-0.8973171422930277', source: '4172', target: '3171', data: {} }, + { id: 'edge-0.6405216792503119', source: '4172', target: '3172', data: {} }, + { id: 'edge-0.9730105099019779', source: '4172', target: '4813', data: {} }, + { id: 'edge-0.8680378817254824', source: '4172', target: '4814', data: {} }, + { + id: 'edge-0.008193629430746752', + source: '4172', + target: '3229', + data: {}, + }, + { + id: 'edge-0.32322091542610765', + source: '4172', + target: '3230', + data: {}, + }, + { id: 'edge-0.6080522290704273', source: '4172', target: '3231', data: {} }, + { id: 'edge-0.5197545644351942', source: '4172', target: '4816', data: {} }, + { id: 'edge-0.5263937229290099', source: '34', target: '4817', data: {} }, + { id: 'edge-0.7760772432154814', source: '34', target: '3796', data: {} }, + { id: 'edge-0.06347922243968251', source: '34', target: '3797', data: {} }, + { id: 'edge-0.8360636238448673', source: '34', target: '3798', data: {} }, + { id: 'edge-0.49564918534240654', source: '34', target: '4818', data: {} }, + { id: 'edge-0.9638630591024908', source: '34', target: '4819', data: {} }, + { id: 'edge-0.6525193673271694', source: '34', target: '4820', data: {} }, + { id: 'edge-0.33719933400904334', source: '34', target: '4821', data: {} }, + { id: 'edge-0.37744373920111074', source: '34', target: '4822', data: {} }, + { id: 'edge-0.13528944007858268', source: '34', target: '4823', data: {} }, + { id: 'edge-0.5491856106477797', source: '34', target: '4824', data: {} }, + { id: 'edge-0.31160388977181186', source: '34', target: '4825', data: {} }, + { id: 'edge-0.5256660309392303', source: '34', target: '4826', data: {} }, + { id: 'edge-0.7290450874527261', source: '34', target: '4827', data: {} }, + { id: 'edge-0.2829968278581041', source: '34', target: '4828', data: {} }, + { id: 'edge-0.5324692105047539', source: '34', target: '4829', data: {} }, + { id: 'edge-0.047275876698632535', source: '34', target: '4830', data: {} }, + { id: 'edge-0.9527868590016031', source: '34', target: '4831', data: {} }, + { id: 'edge-0.5236352058111056', source: '34', target: '4832', data: {} }, + { id: 'edge-0.34819950758266716', source: '34', target: '4833', data: {} }, + { id: 'edge-0.9526692837482886', source: '34', target: '4834', data: {} }, + { id: 'edge-0.3141307805984941', source: '34', target: '4835', data: {} }, + { id: 'edge-0.12206992354064283', source: '34', target: '4836', data: {} }, + { id: 'edge-0.6908656356564566', source: '34', target: '4837', data: {} }, + { id: 'edge-0.5414694722248972', source: '34', target: '4838', data: {} }, + { id: 'edge-0.5962291522360768', source: '34', target: '4839', data: {} }, + { id: 'edge-0.19538535188445705', source: '34', target: '4840', data: {} }, + { id: 'edge-0.41154334134635806', source: '34', target: '4841', data: {} }, + { id: 'edge-0.5781370174932328', source: '34', target: '4842', data: {} }, + { id: 'edge-0.09896694312866816', source: '34', target: '4843', data: {} }, + { id: 'edge-0.7427001239065205', source: '34', target: '4844', data: {} }, + { id: 'edge-0.7011120412648357', source: '34', target: '4845', data: {} }, + { id: 'edge-0.9462044236278842', source: '34', target: '4846', data: {} }, + { id: 'edge-0.3942694839363341', source: '35', target: '3800', data: {} }, + { id: 'edge-0.701899307538586', source: '35', target: '3801', data: {} }, + { id: 'edge-0.6659981595580962', source: '35', target: '3802', data: {} }, + { id: 'edge-0.15477302591590125', source: '35', target: '3039', data: {} }, + { id: 'edge-0.4365968695931939', source: '35', target: '3386', data: {} }, + { id: 'edge-0.19951380241546035', source: '35', target: '3807', data: {} }, + { id: 'edge-0.41049697518226824', source: '35', target: '3808', data: {} }, + { id: 'edge-0.6882151263634066', source: '35', target: '3809', data: {} }, + { id: 'edge-0.8671290896687154', source: '35', target: '3810', data: {} }, + { id: 'edge-0.5638614881536268', source: '35', target: '3811', data: {} }, + { id: 'edge-0.17700402483218447', source: '35', target: '3812', data: {} }, + { id: 'edge-0.45465872130766716', source: '35', target: '3813', data: {} }, + { id: 'edge-0.9647101982331103', source: '35', target: '3814', data: {} }, + { id: 'edge-0.8673057987257167', source: '35', target: '3815', data: {} }, + { id: 'edge-0.098754309916542', source: '35', target: '3816', data: {} }, + { id: 'edge-0.9913494859524763', source: '35', target: '3817', data: {} }, + { id: 'edge-0.24085937121416978', source: '35', target: '3818', data: {} }, + { id: 'edge-0.07514605827830922', source: '35', target: '3819', data: {} }, + { id: 'edge-0.36552482239346573', source: '35', target: '3820', data: {} }, + { id: 'edge-0.20816618013039756', source: '35', target: '3821', data: {} }, + { id: 'edge-0.9897638064439132', source: '35', target: '3823', data: {} }, + { id: 'edge-0.7240721515698216', source: '35', target: '3824', data: {} }, + { id: 'edge-0.07989434167067588', source: '35', target: '3825', data: {} }, + { id: 'edge-0.6981535104957353', source: '35', target: '3826', data: {} }, + { id: 'edge-0.4356657011928622', source: '35', target: '3828', data: {} }, + { id: 'edge-0.5880185718232676', source: '35', target: '3829', data: {} }, + { id: 'edge-0.03579484678276579', source: '35', target: '3830', data: {} }, + { id: 'edge-0.11557179792710048', source: '35', target: '3831', data: {} }, + { id: 'edge-0.9904483450551098', source: '35', target: '3832', data: {} }, + { id: 'edge-0.013552890800121453', source: '36', target: '3833', data: {} }, + { id: 'edge-0.721329006539789', source: '36', target: '3834', data: {} }, + { id: 'edge-0.28688811633052613', source: '36', target: '3835', data: {} }, + { id: 'edge-0.4574289940102474', source: '36', target: '3836', data: {} }, + { id: 'edge-0.19702554405959094', source: '36', target: '3837', data: {} }, + { id: 'edge-0.9417602673588998', source: '36', target: '3838', data: {} }, + { id: 'edge-0.8987158711336796', source: '36', target: '3839', data: {} }, + { id: 'edge-0.6455161209552072', source: '36', target: '3840', data: {} }, + { id: 'edge-0.7948347964136226', source: '36', target: '3841', data: {} }, + { id: 'edge-0.2447544711518359', source: '36', target: '3842', data: {} }, + { id: 'edge-0.1773345287506407', source: '36', target: '3843', data: {} }, + { id: 'edge-0.8973610356707344', source: '36', target: '3844', data: {} }, + { id: 'edge-0.34500093038723745', source: '36', target: '3845', data: {} }, + { id: 'edge-0.9568490130420224', source: '36', target: '3846', data: {} }, + { id: 'edge-0.9730135601472045', source: '3847', target: '36', data: {} }, + { id: 'edge-0.9223425248596953', source: '27', target: '4855', data: {} }, + { id: 'edge-0.05073417441810957', source: '27', target: '4856', data: {} }, + { id: 'edge-0.6733463166789668', source: '27', target: '4857', data: {} }, + { id: 'edge-0.5102627436795226', source: '27', target: '4858', data: {} }, + { id: 'edge-0.8448456481694566', source: '27', target: '4859', data: {} }, + { id: 'edge-0.07943478911080915', source: '27', target: '4860', data: {} }, + { id: 'edge-0.5760474649244269', source: '27', target: '4861', data: {} }, + { id: 'edge-0.8314793500932836', source: '27', target: '3278', data: {} }, + { id: 'edge-0.7906393473012434', source: '27', target: '4867', data: {} }, + { id: 'edge-0.9688103081416493', source: '27', target: '4871', data: {} }, + { id: 'edge-0.2931854098179596', source: '27', target: '4875', data: {} }, + { id: 'edge-0.654876957028339', source: '27', target: '4876', data: {} }, + { id: 'edge-0.8796154323612961', source: '27', target: '4877', data: {} }, + { id: 'edge-0.5945343816333302', source: '3507', target: '4922', data: {} }, + { id: 'edge-0.4939774309321976', source: '3848', target: '30', data: {} }, + { id: 'edge-0.3526690881969894', source: '3848', target: '429', data: {} }, + { id: 'edge-0.37898102645931386', source: '3848', target: '428', data: {} }, + { id: 'edge-0.9618693354740331', source: '3848', target: '149', data: {} }, + { id: 'edge-0.9974614867826288', source: '8', target: '166', data: {} }, + { id: 'edge-0.9127695415226356', source: '163', target: '166', data: {} }, + { id: 'edge-0.4700658836606417', source: '9', target: '166', data: {} }, + { id: 'edge-0.42821776698583847', source: '166', target: '3481', data: {} }, + { id: 'edge-0.14964416042232442', source: '4299', target: '168', data: {} }, + { id: 'edge-0.17498712572598185', source: '170', target: '32', data: {} }, + { id: 'edge-0.04783216134227808', source: '170', target: '4940', data: {} }, + { id: 'edge-0.3458516679241961', source: '23', target: '4940', data: {} }, + { id: 'edge-0.5570554557125671', source: '9', target: '4174', data: {} }, + { id: 'edge-0.2782288273610447', source: '163', target: '4943', data: {} }, + { id: 'edge-0.4949592012361508', source: '4817', target: '1521', data: {} }, + { id: 'edge-0.9649085768242502', source: '5911', target: '5946', data: {} }, + { id: 'edge-0.6302597713245905', source: '5490', target: '8002', data: {} }, + { id: 'edge-0.5360742655476076', source: '8023', target: '8024', data: {} }, + { id: 'edge-0.21439458361073882', source: '326', target: '1873', data: {} }, + { id: 'edge-0.9660756925847731', source: '6051', target: '1873', data: {} }, + { id: 'edge-0.6621748694270095', source: '4926', target: '1873', data: {} }, + { id: 'edge-0.4082572713220245', source: '8020', target: '6265', data: {} }, + { id: 'edge-0.2883537452838367', source: '5091', target: '6265', data: {} }, + { id: 'edge-0.9379758617383116', source: '4926', target: '6265', data: {} }, + { id: 'edge-0.8365185781893465', source: '8003', target: '8002', data: {} }, + { id: 'edge-0.6350466630742868', source: '8197', target: '8005', data: {} }, + { + id: 'edge-0.38789416475865957', + source: '8006', + target: '8005', + data: {}, + }, + { id: 'edge-0.9939589796906294', source: '8197', target: '5975', data: {} }, + { + id: 'edge-0.013499691292805815', + source: '5974', + target: '5975', + data: {}, + }, + { id: 'edge-0.1900409225606008', source: '8007', target: '8008', data: {} }, + { id: 'edge-0.3667120254594749', source: '8009', target: '8010', data: {} }, + { + id: 'edge-0.46141303859132954', + source: '5269', + target: '5688', + data: {}, + }, + { id: 'edge-0.2106397292001616', source: '5826', target: '5688', data: {} }, + { id: 'edge-0.8011491964196784', source: '471', target: '5497', data: {} }, + { id: 'edge-0.38226671198235596', source: '471', target: '6', data: {} }, + { id: 'edge-0.8145665508984525', source: '6383', target: '6384', data: {} }, + { id: 'edge-0.885144034291002', source: '4960', target: '6352', data: {} }, + { id: 'edge-0.9365448792793587', source: '8025', target: '8200', data: {} }, + { id: 'edge-0.2631911403620042', source: '8011', target: '8199', data: {} }, + { id: 'edge-0.8861784108409692', source: '8013', target: '8014', data: {} }, + { + id: 'edge-0.004766062143755967', + source: '6106', + target: '6107', + data: {}, + }, + { id: 'edge-0.697201170782993', source: '8015', target: '8016', data: {} }, + { id: 'edge-0.5715406095036581', source: '8017', target: '8018', data: {} }, + { id: 'edge-0.8433201274755875', source: '4926', target: '4116', data: {} }, + { id: 'edge-0.3902418791938731', source: '8019', target: '8018', data: {} }, + { + id: 'edge-0.10803695753045073', + source: '5911', + target: '5945', + data: {}, + }, + { id: 'edge-0.6687942535946729', source: '4972', target: '5938', data: {} }, + { id: 'edge-0.8191570496024407', source: '5777', target: '4972', data: {} }, + { + id: 'edge-0.26617291505961593', + source: '7997', + target: '7998', + data: {}, + }, + { id: 'edge-0.5170136773029288', source: '4993', target: '8031', data: {} }, + { id: 'edge-0.6553587204491331', source: '5753', target: '6657', data: {} }, + { id: 'edge-0.8945359916520665', source: '8034', target: '8202', data: {} }, + { id: 'edge-0.5481396683446285', source: '8036', target: '8202', data: {} }, + { id: 'edge-0.9578125012952343', source: '5772', target: '5773', data: {} }, + { + id: 'edge-0.27831950707715913', + source: '6733', + target: '6734', + data: {}, + }, + { + id: 'edge-0.22117656961858678', + source: '5010', + target: '6241', + data: {}, + }, + { id: 'edge-0.1531565601863889', source: '6754', target: '315', data: {} }, + { id: 'edge-0.8289515728181975', source: '4817', target: '315', data: {} }, + { id: 'edge-0.644754330652235', source: '4116', target: '6754', data: {} }, + { id: 'edge-0.4397784479331188', source: '5091', target: '6754', data: {} }, + { id: 'edge-0.7727701739929838', source: '1314', target: '6501', data: {} }, + { id: 'edge-0.01976522072454978', source: '166', target: '6501', data: {} }, + { id: 'edge-0.3512179372812205', source: '5304', target: '6501', data: {} }, + { id: 'edge-0.887793749396929', source: '1314', target: '1315', data: {} }, + { id: 'edge-0.9907909962553252', source: '8043', target: '8044', data: {} }, + { id: 'edge-0.4854695064236443', source: '9', target: '6502', data: {} }, + { id: 'edge-0.148393468987009', source: '4810', target: '6502', data: {} }, + { id: 'edge-0.7652759078547746', source: '8047', target: '8048', data: {} }, + { id: 'edge-0.7392813392616229', source: '9', target: '8048', data: {} }, + { id: 'edge-0.2771383786350763', source: '8049', target: '8048', data: {} }, + { id: 'edge-0.6431267704184171', source: '4', target: '8', data: {} }, + { id: 'edge-0.20958970112886544', source: '4', target: '4174', data: {} }, + { id: 'edge-0.848021063990011', source: '4', target: '166', data: {} }, + { id: 'edge-0.2848400642896116', source: '6870', target: '6871', data: {} }, + { id: 'edge-0.742376341512661', source: '6870', target: '8053', data: {} }, + { + id: 'edge-0.37027662415448526', + source: '4817', + target: '6871', + data: {}, + }, + { id: 'edge-0.9801212671142749', source: '2812', target: '8203', data: {} }, + { id: 'edge-0.7200752629246434', source: '8055', target: '8203', data: {} }, + { id: 'edge-0.8445833448956555', source: '6923', target: '5539', data: {} }, + { + id: 'edge-0.03622787126788185', + source: '5901', + target: '8059', + data: {}, + }, + { id: 'edge-0.7149781465850649', source: '8060', target: '8061', data: {} }, + { id: 'edge-0.4765317177867743', source: '8062', target: '8061', data: {} }, + { + id: 'edge-0.034430834532313215', + source: '5644', + target: '6950', + data: {}, + }, + { + id: 'edge-0.009222680444256337', + source: '5644', + target: '6948', + data: {}, + }, + { id: 'edge-0.8498825817914446', source: '5644', target: '7755', data: {} }, + { + id: 'edge-0.11551055609010841', + source: '5146', + target: '5747', + data: {}, + }, + { id: 'edge-0.5173616709404076', source: '5735', target: '6976', data: {} }, + { + id: 'edge-0.21505721608713557', + source: '5735', + target: '6977', + data: {}, + }, + { id: 'edge-0.6217749325165882', source: '5735', target: '6979', data: {} }, + { id: 'edge-0.410945743822031', source: '8066', target: '8067', data: {} }, + { id: 'edge-0.8967593999357526', source: '6266', target: '6267', data: {} }, + { id: 'edge-0.6875053926517558', source: '6268', target: '6267', data: {} }, + { id: 'edge-0.4264536168164368', source: '5914', target: '8071', data: {} }, + { id: 'edge-0.5455974743242831', source: '5914', target: '7012', data: {} }, + { id: 'edge-0.9476016853407399', source: '8076', target: '6443', data: {} }, + { + id: 'edge-0.25157096672870916', + source: '6210', + target: '5554', + data: {}, + }, + { id: 'edge-0.8429271454128437', source: '8080', target: '8081', data: {} }, + { id: 'edge-0.6754079141158311', source: '6381', target: '8082', data: {} }, + { + id: 'edge-0.21585146171797187', + source: '6612', + target: '6613', + data: {}, + }, + { id: 'edge-0.8721052729079426', source: '8084', target: '7106', data: {} }, + { id: 'edge-0.5941179320655632', source: '8086', target: '8087', data: {} }, + { id: 'edge-0.6225721650891267', source: '6289', target: '6290', data: {} }, + { id: 'edge-0.4365871440328426', source: '8090', target: '8091', data: {} }, + { id: 'edge-0.5984572663742964', source: '8092', target: '8091', data: {} }, + { id: 'edge-0.7714257480329338', source: '8206', target: '8094', data: {} }, + { id: 'edge-0.7559030790774102', source: '5633', target: '8096', data: {} }, + { id: 'edge-0.4869583213435069', source: '8097', target: '8098', data: {} }, + { id: 'edge-0.8158021485208422', source: '6721', target: '8099', data: {} }, + { id: 'edge-0.9623781862594041', source: '5589', target: '5590', data: {} }, + { id: 'edge-0.6458992380061521', source: '6817', target: '6560', data: {} }, + { + id: 'edge-0.27334166643842783', + source: '6434', + target: '7154', + data: {}, + }, + { id: 'edge-0.6549554201979495', source: '5036', target: '7209', data: {} }, + { + id: 'edge-0.24164913574047442', + source: '8208', + target: '8103', + data: {}, + }, + { id: 'edge-0.6775753754232483', source: '5386', target: '5997', data: {} }, + { id: 'edge-0.8939992731689674', source: '5997', target: '5998', data: {} }, + { id: 'edge-0.7125113009527806', source: '5322', target: '8107', data: {} }, + { id: 'edge-0.7849910977802588', source: '8108', target: '8109', data: {} }, + { + id: 'edge-0.07376556677716484', + source: '8110', + target: '8109', + data: {}, + }, + { + id: 'edge-0.07780871260235811', + source: '8110', + target: '8111', + data: {}, + }, + { id: 'edge-0.8649964167151327', source: '5036', target: '6528', data: {} }, + { id: 'edge-0.636352231952966', source: '6691', target: '5751', data: {} }, + { + id: 'edge-0.009867487971962907', + source: '8115', + target: '6308', + data: {}, + }, + { id: 'edge-0.7563728549296287', source: '8117', target: '8118', data: {} }, + { + id: 'edge-0.47613283748203306', + source: '6691', + target: '8118', + data: {}, + }, + { + id: 'edge-0.21946960707467533', + source: '8119', + target: '8209', + data: {}, + }, + { + id: 'edge-0.04104450871314236', + source: '8121', + target: '8122', + data: {}, + }, + { + id: 'edge-0.16513289181047908', + source: '6090', + target: '6091', + data: {}, + }, + { id: 'edge-0.6185253553858252', source: '5410', target: '8124', data: {} }, + { + id: 'edge-0.012358750784415173', + source: '7349', + target: '8126', + data: {}, + }, + { id: 'edge-0.5657591883419477', source: '4817', target: '5040', data: {} }, + { id: 'edge-0.971078088224562', source: '6123', target: '7192', data: {} }, + { id: 'edge-0.9231281895756627', source: '5386', target: '8212', data: {} }, + { + id: 'edge-0.006312380237500692', + source: '5386', + target: '7479', + data: {}, + }, + { id: 'edge-0.5897096969289435', source: '5386', target: '7519', data: {} }, + { id: 'edge-0.5709056878916758', source: '5386', target: '7367', data: {} }, + { + id: 'edge-0.46695857651374917', + source: '7097', + target: '7098', + data: {}, + }, + { + id: 'edge-0.03657828874062807', + source: '5355', + target: '7098', + data: {}, + }, + { + id: 'edge-0.27037158416445184', + source: '4933', + target: '5953', + data: {}, + }, + { id: 'edge-0.9724454701721255', source: '5953', target: '5777', data: {} }, + { id: 'edge-0.7988363605148694', source: '5951', target: '5777', data: {} }, + { + id: 'edge-0.44124272676702314', + source: '8135', + target: '5777', + data: {}, + }, + { id: 'edge-0.4198769140213099', source: '5070', target: '5777', data: {} }, + { id: 'edge-0.6003294597166613', source: '8136', target: '8213', data: {} }, + { id: 'edge-0.8486548865097894', source: '8138', target: '8214', data: {} }, + { id: 'edge-0.5409588564982961', source: '8138', target: '8140', data: {} }, + { id: 'edge-0.302873148910324', source: '8141', target: '8214', data: {} }, + { + id: 'edge-0.19074153487113432', + source: '8141', + target: '8140', + data: {}, + }, + { id: 'edge-0.9775628480652363', source: '8143', target: '8144', data: {} }, + { id: 'edge-0.6149065904301183', source: '8145', target: '8144', data: {} }, + { id: 'edge-0.8998133546866929', source: '5660', target: '7576', data: {} }, + { id: 'edge-0.2502445257861472', source: '5842', target: '5843', data: {} }, + { + id: 'edge-0.40367755345704204', + source: '5353', + target: '5842', + data: {}, + }, + { id: 'edge-0.5269089497832982', source: '5070', target: '7232', data: {} }, + { id: 'edge-0.8724830443672165', source: '5824', target: '7239', data: {} }, + { id: 'edge-0.4529245096682466', source: '5070', target: '7239', data: {} }, + { id: 'edge-0.5810306333440427', source: '8217', target: '8154', data: {} }, + { id: 'edge-0.7713575522565455', source: '8155', target: '8154', data: {} }, + { id: 'edge-0.8897726172614817', source: '5070', target: '8156', data: {} }, + { id: 'edge-0.908434963873687', source: '8218', target: '7146', data: {} }, + { id: 'edge-0.7045869525042583', source: '8158', target: '5879', data: {} }, + { id: 'edge-0.9966531563340615', source: '4116', target: '5879', data: {} }, + { id: 'edge-0.5447669923571128', source: '4116', target: '6643', data: {} }, + { id: 'edge-0.8382740778768858', source: '8159', target: '8160', data: {} }, + { id: 'edge-0.3568154604664928', source: '7609', target: '8160', data: {} }, + { + id: 'edge-0.39241777812339085', + source: '8162', + target: '8160', + data: {}, + }, + { id: 'edge-0.7821974712773547', source: '4', target: '6336', data: {} }, + { id: 'edge-0.4572846709555136', source: '4941', target: '6336', data: {} }, + { id: 'edge-0.6610014532229156', source: '5256', target: '6643', data: {} }, + { id: 'edge-0.6111262144210423', source: '5297', target: '6643', data: {} }, + { id: 'edge-0.18159927205295', source: '8164', target: '6643', data: {} }, + { id: 'edge-0.0215867420363538', source: '8165', target: '8166', data: {} }, + { id: 'edge-0.9619145233808488', source: '8167', target: '7657', data: {} }, + { id: 'edge-0.7293094738612182', source: '5327', target: '8169', data: {} }, + { id: 'edge-0.4908652535477749', source: '5327', target: '7582', data: {} }, + { id: 'edge-0.5288503470355996', source: '8170', target: '8171', data: {} }, + { + id: 'edge-0.33102186697625036', + source: '8172', + target: '8171', + data: {}, + }, + { id: 'edge-0.062084181342837', source: '5308', target: '7678', data: {} }, + { id: 'edge-0.8121412492786702', source: '5705', target: '5485', data: {} }, + { + id: 'edge-0.16102610957321017', + source: '5001', + target: '5485', + data: {}, + }, + { id: 'edge-0.5204332340109896', source: '6617', target: '8175', data: {} }, + { id: 'edge-0.3298696244312307', source: '6617', target: '6072', data: {} }, + { id: 'edge-0.3418392570672959', source: '8177', target: '5324', data: {} }, + { id: 'edge-0.779578658000706', source: '5259', target: '5786', data: {} }, + { + id: 'edge-0.14934321780245208', + source: '8179', + target: '8180', + data: {}, + }, + { id: 'edge-0.8505705856216699', source: '8181', target: '8180', data: {} }, + { id: 'edge-0.7466315332110611', source: '5641', target: '6443', data: {} }, + { + id: 'edge-0.36237659787234033', + source: '5947', + target: '5948', + data: {}, + }, + { id: 'edge-0.9248396228753324', source: '170', target: '4942', data: {} }, + { + id: 'edge-0.11732574462015344', + source: '5645', + target: '8188', + data: {}, + }, + { + id: 'edge-0.12054907348546329', + source: '8189', + target: '5649', + data: {}, + }, + { id: 'edge-0.9621493772613761', source: '5355', target: '8191', data: {} }, + { + id: 'edge-0.17535349933431932', + source: '6536', + target: '6537', + data: {}, + }, + { + id: 'edge-0.28976518684609753', + source: '6569', + target: '8219', + data: {}, + }, + { + id: 'edge-0.012869286130233082', + source: '8194', + target: '8195', + data: {}, + }, + { + id: 'edge-0.007234964867917748', + source: '5905', + target: '5906', + data: {}, + }, + { id: 'edge-0.8502049274798553', source: '5676', target: '5677', data: {} }, + { + id: 'edge-0.47535760784424785', + source: '5678', + target: '5679', + data: {}, + }, + { id: 'edge-0.2141841159948099', source: '5680', target: '5681', data: {} }, + { + id: 'edge-0.054749996113879096', + source: '5269', + target: '5682', + data: {}, + }, + { id: 'edge-0.5356385343754555', source: '5269', target: '5683', data: {} }, + { + id: 'edge-0.20066126634862602', + source: '4817', + target: '5683', + data: {}, + }, + { id: 'edge-0.5756495190372237', source: '5269', target: '5684', data: {} }, + { id: 'edge-0.8843996942019348', source: '5269', target: '5685', data: {} }, + { id: 'edge-0.3597187263518966', source: '5269', target: '5686', data: {} }, + { + id: 'edge-0.24028426594594765', + source: '5269', + target: '5687', + data: {}, + }, + { id: 'edge-0.7510884561682349', source: '5269', target: '5689', data: {} }, + { id: 'edge-0.1383952939244264', source: '5269', target: '5690', data: {} }, + { id: 'edge-0.4551476946479929', source: '5269', target: '5691', data: {} }, + { id: 'edge-0.8482123086233342', source: '5692', target: '5693', data: {} }, + { id: 'edge-0.3453243923277485', source: '5694', target: '5695', data: {} }, + { id: 'edge-0.889814780344711', source: '5273', target: '5696', data: {} }, + { + id: 'edge-0.49572786934290947', + source: '5273', + target: '5697', + data: {}, + }, + { id: 'edge-0.9254448943745013', source: '5698', target: '5699', data: {} }, + { id: 'edge-0.6185813007666658', source: '5700', target: '5701', data: {} }, + { id: 'edge-0.2284683328151904', source: '5702', target: '5701', data: {} }, + { id: 'edge-0.6250346918344192', source: '5703', target: '5704', data: {} }, + { + id: 'edge-0.17825886228219812', + source: '5705', + target: '5706', + data: {}, + }, + { + id: 'edge-0.05138605857789513', + source: '1315', + target: '5707', + data: {}, + }, + { id: 'edge-0.7829111706981988', source: '5503', target: '5708', data: {} }, + { id: 'edge-0.4504906787047329', source: '5263', target: '5709', data: {} }, + { + id: 'edge-0.13751275467042512', + source: '5070', + target: '5710', + data: {}, + }, + { id: 'edge-0.5349879081251019', source: '5711', target: '152', data: {} }, + { id: 'edge-0.9614979465915352', source: '5712', target: '5713', data: {} }, + { + id: 'edge-0.024725850911839986', + source: '5714', + target: '5715', + data: {}, + }, + { id: 'edge-0.9292783874945789', source: '5716', target: '5717', data: {} }, + { + id: 'edge-0.21143768614624436', + source: '5718', + target: '5719', + data: {}, + }, + { + id: 'edge-0.07445773891632235', + source: '5488', + target: '5721', + data: {}, + }, + { id: 'edge-0.4356837620280498', source: '5633', target: '5634', data: {} }, + { id: 'edge-0.1382647007162623', source: '4817', target: '5722', data: {} }, + { id: 'edge-0.0942007698759324', source: '5723', target: '5724', data: {} }, + { id: 'edge-0.2529472688800165', source: '5355', target: '5726', data: {} }, + { id: 'edge-0.9083715306324596', source: '5154', target: '5727', data: {} }, + { id: 'edge-0.9370775556565931', source: '5727', target: '5729', data: {} }, + { id: 'edge-0.41132610204647846', source: '3486', target: '309', data: {} }, + { id: 'edge-0.8568602045771287', source: '3847', target: '5731', data: {} }, + { id: 'edge-0.7914091910025267', source: '3847', target: '5666', data: {} }, + { id: 'edge-0.8143719144725245', source: '5213', target: '5529', data: {} }, + { id: 'edge-0.4735701549080811', source: '5733', target: '5734', data: {} }, + { id: 'edge-0.6762589236574565', source: '5735', target: '5736', data: {} }, + { + id: 'edge-0.045376404990813635', + source: '5737', + target: '5738', + data: {}, + }, + { id: 'edge-0.5735022073274549', source: '5739', target: '5740', data: {} }, + { id: 'edge-0.8564937422336514', source: '5743', target: '5744', data: {} }, + { + id: 'edge-0.26438701629533057', + source: '5745', + target: '5746', + data: {}, + }, + { id: 'edge-0.1399178184730765', source: '5748', target: '5749', data: {} }, + { id: 'edge-0.8281887418040996', source: '8', target: '5750', data: {} }, + { + id: 'edge-0.19442710562731436', + source: '5751', + target: '5752', + data: {}, + }, + { + id: 'edge-0.31185861401230386', + source: '5753', + target: '5754', + data: {}, + }, + { + id: 'edge-0.11914674963980332', + source: '5755', + target: '5754', + data: {}, + }, + { id: 'edge-0.5024450802984901', source: '5756', target: '5568', data: {} }, + { id: 'edge-0.9881489737149463', source: '33', target: '5568', data: {} }, + { id: 'edge-0.8338111234551357', source: '5757', target: '5758', data: {} }, + { id: 'edge-0.99296353370527', source: '4172', target: '5666', data: {} }, + { id: 'edge-0.3933966532127895', source: '5760', target: '5761', data: {} }, + { + id: 'edge-0.22451289184140788', + source: '5762', + target: '5763', + data: {}, + }, + { id: 'edge-0.4479035359798431', source: '5529', target: '5764', data: {} }, + { + id: 'edge-0.30746758235628757', + source: '5765', + target: '5766', + data: {}, + }, + { id: 'edge-0.9652621499345304', source: '5767', target: '5768', data: {} }, + { id: 'edge-0.8425107514554899', source: '5769', target: '5770', data: {} }, + { id: 'edge-0.6350845704461401', source: '3847', target: '5771', data: {} }, + { id: 'edge-0.7954222851455914', source: '5774', target: '5775', data: {} }, + { id: 'edge-0.6116905164156436', source: '5733', target: '5776', data: {} }, + { id: 'edge-0.9645363846148343', source: '5778', target: '5779', data: {} }, + { id: 'edge-0.8113958415559841', source: '5780', target: '5781', data: {} }, + { id: 'edge-0.741840543554926', source: '5782', target: '5783', data: {} }, + { + id: 'edge-0.0035241184381051838', + source: '5784', + target: '5785', + data: {}, + }, + { id: 'edge-0.1320938602421955', source: '4817', target: '5787', data: {} }, + { id: 'edge-0.9030144767278039', source: '5259', target: '5788', data: {} }, + { + id: 'edge-0.18053628950273803', + source: '3920', + target: '5789', + data: {}, + }, + { id: 'edge-0.5239227186029654', source: '5790', target: '5791', data: {} }, + { id: 'edge-0.5214294406257425', source: '4669', target: '5792', data: {} }, + { + id: 'edge-0.29529288829504985', + source: '5793', + target: '5794', + data: {}, + }, + { id: 'edge-0.827668441936606', source: '5795', target: '5796', data: {} }, + { id: 'edge-0.8751772010902266', source: '5797', target: '5798', data: {} }, + { id: 'edge-0.3552467120332765', source: '5799', target: '5707', data: {} }, + { id: 'edge-0.8392444160454855', source: '5800', target: '5801', data: {} }, + { id: 'edge-0.3364559235205149', source: '5802', target: '5803', data: {} }, + { + id: 'edge-0.20954903464735541', + source: '5804', + target: '5805', + data: {}, + }, + { + id: 'edge-0.19191125903638584', + source: '5806', + target: '5807', + data: {}, + }, + { id: 'edge-0.5831647598212344', source: '5213', target: '310', data: {} }, + { id: 'edge-0.7137630073451624', source: '310', target: '5808', data: {} }, + { id: 'edge-0.2729659555814983', source: '5809', target: '5810', data: {} }, + { id: 'edge-0.597358276929679', source: '5790', target: '5812', data: {} }, + { id: 'edge-0.739303037669689', source: '5590', target: '5813', data: {} }, + { id: 'edge-0.2464211111581054', source: '5308', target: '5813', data: {} }, + { id: 'edge-0.2521444274376159', source: '5813', target: '5814', data: {} }, + { + id: 'edge-0.08928554191272098', + source: '5815', + target: '5816', + data: {}, + }, + { id: 'edge-0.6194663982652309', source: '5817', target: '5818', data: {} }, + { + id: 'edge-0.40809570262810624', + source: '4954', + target: '5819', + data: {}, + }, + { + id: 'edge-0.13425574670556673', + source: '5308', + target: '5819', + data: {}, + }, + { id: 'edge-0.9608237444750645', source: '5279', target: '5819', data: {} }, + { id: 'edge-0.6381019898632574', source: '4954', target: '5821', data: {} }, + { id: 'edge-0.3280556226844942', source: '5822', target: '5823', data: {} }, + { id: 'edge-0.584011840227322', source: '5824', target: '5825', data: {} }, + { id: 'edge-0.739597377914117', source: '1879', target: '5827', data: {} }, + { id: 'edge-0.6649734391470152', source: '1267', target: '5828', data: {} }, + { id: 'edge-0.7783454433890553', source: '5829', target: '5634', data: {} }, + { + id: 'edge-0.32306531062619337', + source: '1879', + target: '5634', + data: {}, + }, + { id: 'edge-0.4500667931317037', source: '5297', target: '5831', data: {} }, + { + id: 'edge-0.10815229740584509', + source: '5832', + target: '5833', + data: {}, + }, + { id: 'edge-0.8929881509441693', source: '5834', target: '5835', data: {} }, + { id: 'edge-0.4138606296760079', source: '5836', target: '5837', data: {} }, + { + id: 'edge-0.42930601563173343', + source: '5838', + target: '5839', + data: {}, + }, + { + id: 'edge-0.39170841887829666', + source: '5822', + target: '5840', + data: {}, + }, + { id: 'edge-0.3463203092279159', source: '5822', target: '5841', data: {} }, + { id: 'edge-0.8515598648532416', source: '5844', target: '5845', data: {} }, + { id: 'edge-0.6294107588308981', source: '5846', target: '5847', data: {} }, + { + id: 'edge-0.10702710026975404', + source: '5848', + target: '5849', + data: {}, + }, + { id: 'edge-0.401434881850961', source: '5316', target: '5850', data: {} }, + { + id: 'edge-0.040001686487793675', + source: '5577', + target: '5851', + data: {}, + }, + { id: 'edge-0.6122943089695012', source: '3479', target: '5852', data: {} }, + { + id: 'edge-0.30534933165797784', + source: '3024', + target: '5854', + data: {}, + }, + { + id: 'edge-0.16164803316795662', + source: '5855', + target: '5856', + data: {}, + }, + { + id: 'edge-0.03712087068276437', + source: '5316', + target: '5857', + data: {}, + }, + { id: 'edge-0.4624876186799578', source: '5858', target: '5859', data: {} }, + { + id: 'edge-0.29779567748710156', + source: '4984', + target: '5861', + data: {}, + }, + { + id: 'edge-0.04324819952954018', + source: '5862', + target: '5863', + data: {}, + }, + { id: 'edge-0.628879178228291', source: '5864', target: '5865', data: {} }, + { id: 'edge-0.5312608647737576', source: '5866', target: '5867', data: {} }, + { id: 'edge-0.208166970734893', source: '5868', target: '5869', data: {} }, + { id: 'edge-0.303772084674216', source: '5870', target: '5871', data: {} }, + { id: 'edge-0.0390207103684006', source: '170', target: '5066', data: {} }, + { id: 'edge-0.4322524268963639', source: '5872', target: '5873', data: {} }, + { id: 'edge-0.6574518452901728', source: '5874', target: '5875', data: {} }, + { + id: 'edge-0.08249805307456759', + source: '5876', + target: '5877', + data: {}, + }, + { id: 'edge-0.7947230889166297', source: '5337', target: '5398', data: {} }, + { + id: 'edge-0.23653517797641777', + source: '5880', + target: '5881', + data: {}, + }, + { + id: 'edge-0.35781415384309057', + source: '5882', + target: '5883', + data: {}, + }, + { id: 'edge-0.5458502679407562', source: '5535', target: '5884', data: {} }, + { + id: 'edge-0.40318080367400344', + source: '5885', + target: '5886', + data: {}, + }, + { id: 'edge-0.8624083028638589', source: '5887', target: '5888', data: {} }, + { id: 'edge-0.6187401929624219', source: '5889', target: '5890', data: {} }, + { id: 'edge-0.1908992198089483', source: '5891', target: '5892', data: {} }, + { + id: 'edge-0.05748875441491008', + source: '5893', + target: '5894', + data: {}, + }, + { id: 'edge-0.8799227323248908', source: '5895', target: '5896', data: {} }, + { + id: 'edge-0.23724696938240153', + source: '5897', + target: '5898', + data: {}, + }, + { id: 'edge-0.8264943428437657', source: '5899', target: '5900', data: {} }, + { id: 'edge-0.714747351508412', source: '5901', target: '5902', data: {} }, + { + id: 'edge-0.15646628168646726', + source: '5903', + target: '5904', + data: {}, + }, + { id: 'edge-0.9095650269565403', source: '5907', target: '5908', data: {} }, + { id: 'edge-0.7101775953074052', source: '5909', target: '5910', data: {} }, + { id: 'edge-0.5365143810892976', source: '5911', target: '5912', data: {} }, + { + id: 'edge-0.23806214351231714', + source: '5913', + target: '5914', + data: {}, + }, + { + id: 'edge-0.24860400429404006', + source: '3020', + target: '5916', + data: {}, + }, + { id: 'edge-0.9742116901048323', source: '5917', target: '5918', data: {} }, + { id: 'edge-0.6379304405098156', source: '5919', target: '5920', data: {} }, + { id: 'edge-0.5651384343041426', source: '335', target: '5921', data: {} }, + { id: 'edge-0.8770754129720555', source: '5922', target: '5923', data: {} }, + { + id: 'edge-0.16402892481913978', + source: '5924', + target: '5925', + data: {}, + }, + { id: 'edge-0.667442248975628', source: '5924', target: '5926', data: {} }, + { id: 'edge-0.6629774768809369', source: '5927', target: '5928', data: {} }, + { id: 'edge-0.9055333010412365', source: '5929', target: '5930', data: {} }, + { id: 'edge-0.9995123974691746', source: '5931', target: '5932', data: {} }, + { id: 'edge-0.8130942322749284', source: '5933', target: '5934', data: {} }, + { id: 'edge-0.3563082762737635', source: '5893', target: '5936', data: {} }, + { id: 'edge-0.1448660707178655', source: '5937', target: '5936', data: {} }, + { id: 'edge-0.7473215765544208', source: '4972', target: '4975', data: {} }, + { + id: 'edge-0.22844775032404074', + source: '5036', + target: '5940', + data: {}, + }, + { id: 'edge-0.5971930165726205', source: '5941', target: '5942', data: {} }, + { id: 'edge-0.5477305867869566', source: '5646', target: '5941', data: {} }, + { id: 'edge-0.0718003542719865', source: '5949', target: '5950', data: {} }, + { + id: 'edge-0.24288399538723282', + source: '5951', + target: '5952', + data: {}, + }, + { id: 'edge-0.270520736021195', source: '5951', target: '5954', data: {} }, + { id: 'edge-0.545677535637465', source: '5951', target: '5955', data: {} }, + { id: 'edge-0.685405538198258', source: '5951', target: '5956', data: {} }, + { id: 'edge-0.7398741960920343', source: '5951', target: '5958', data: {} }, + { + id: 'edge-0.36269954535089455', + source: '5959', + target: '5960', + data: {}, + }, + { + id: 'edge-0.44249624803815557', + source: '5961', + target: '5962', + data: {}, + }, + { id: 'edge-0.5057071060448108', source: '5490', target: '5963', data: {} }, + { id: 'edge-0.6401789578737214', source: '5490', target: '5965', data: {} }, + { id: 'edge-0.8227676079626851', source: '5966', target: '5490', data: {} }, + { id: 'edge-0.277150299256929', source: '4819', target: '5967', data: {} }, + { id: 'edge-0.8783572262909256', source: '4819', target: '5968', data: {} }, + { + id: 'edge-0.45660195630051725', + source: '5969', + target: '5970', + data: {}, + }, + { id: 'edge-0.5575691585023141', source: '5308', target: '5971', data: {} }, + { + id: 'edge-0.24002978539997644', + source: '5972', + target: '5971', + data: {}, + }, + { id: 'edge-0.7149270795259948', source: '3024', target: '5973', data: {} }, + { + id: 'edge-0.24178132022420562', + source: '5976', + target: '5977', + data: {}, + }, + { id: 'edge-0.4949283545498555', source: '5978', target: '5979', data: {} }, + { + id: 'edge-0.29514170104942483', + source: '5980', + target: '5981', + data: {}, + }, + { id: 'edge-0.7774624760389384', source: '4658', target: '5983', data: {} }, + { id: 'edge-0.9588039489422431', source: '5984', target: '5985', data: {} }, + { id: 'edge-0.3773820786444637', source: '5986', target: '5987', data: {} }, + { id: 'edge-0.6546170946613106', source: '5070', target: '5988', data: {} }, + { + id: 'edge-0.07551095837729882', + source: '5378', + target: '5989', + data: {}, + }, + { id: 'edge-0.5211198561157018', source: '5705', target: '5378', data: {} }, + { id: 'edge-0.2043838065265482', source: '5689', target: '5993', data: {} }, + { id: 'edge-0.3273932798368864', source: '5386', target: '5689', data: {} }, + { + id: 'edge-0.044084838030155504', + source: '5689', + target: '5994', + data: {}, + }, + { + id: 'edge-0.0065327106078987285', + source: '5995', + target: '5996', + data: {}, + }, + { id: 'edge-0.5984041187112028', source: '3', target: '4842', data: {} }, + { id: 'edge-0.10996347886247504', source: '3', target: '5999', data: {} }, + { id: 'edge-0.8990263208711893', source: '6000', target: '5999', data: {} }, + { + id: 'edge-0.44156152524072834', + source: '6001', + target: '6002', + data: {}, + }, + { id: 'edge-0.8771926721733698', source: '3', target: '6003', data: {} }, + { id: 'edge-0.6336562366511165', source: '3', target: '6005', data: {} }, + { id: 'edge-0.5197516671319615', source: '3', target: '6006', data: {} }, + { id: 'edge-0.6006244118246733', source: '5997', target: '6007', data: {} }, + { id: 'edge-0.154555348381185', source: '6008', target: '6009', data: {} }, + { id: 'edge-0.8445144176370354', source: '6008', target: '6010', data: {} }, + { id: 'edge-0.3209797952025326', source: '6011', target: '6012', data: {} }, + { id: 'edge-0.9908168873513032', source: '5997', target: '6013', data: {} }, + { id: 'edge-0.7830915935145448', source: '5997', target: '6014', data: {} }, + { id: 'edge-0.5612424288175613', source: '6008', target: '6015', data: {} }, + { id: 'edge-0.8775946681836133', source: '5711', target: '324', data: {} }, + { + id: 'edge-0.48850763684003784', + source: '5711', + target: '6016', + data: {}, + }, + { id: 'edge-0.6111079462953173', source: '5711', target: '6017', data: {} }, + { id: 'edge-0.4760450835476855', source: '6018', target: '6019', data: {} }, + { id: 'edge-0.0726076323655751', source: '5997', target: '6020', data: {} }, + { id: 'edge-0.4449751501118675', source: '4', target: '4935', data: {} }, + { id: 'edge-0.6292714785819553', source: '6022', target: '6023', data: {} }, + { id: 'edge-0.3609291969837114', source: '6024', target: '6025', data: {} }, + { id: 'edge-0.6863073495980854', source: '6024', target: '6026', data: {} }, + { + id: 'edge-0.24697051054137287', + source: '6024', + target: '6027', + data: {}, + }, + { + id: 'edge-0.21603043739229277', + source: '6028', + target: '6029', + data: {}, + }, + { id: 'edge-0.9731919697218174', source: '5487', target: '6030', data: {} }, + { id: 'edge-0.7263709863724108', source: '5144', target: '6032', data: {} }, + { id: 'edge-0.5876132057703165', source: '6024', target: '6033', data: {} }, + { id: 'edge-0.6558794418688458', source: '6034', target: '5575', data: {} }, + { id: 'edge-0.932598575579916', source: '5362', target: '6035', data: {} }, + { id: 'edge-0.2109561559489972', source: '6036', target: '6037', data: {} }, + { + id: 'edge-0.09407648475273733', + source: '6038', + target: '6039', + data: {}, + }, + { + id: 'edge-0.11421015260687328', + source: '6040', + target: '6041', + data: {}, + }, + { + id: 'edge-0.41856544374352933', + source: '6042', + target: '6043', + data: {}, + }, + { id: 'edge-0.4971922679619618', source: '6044', target: '6045', data: {} }, + { id: 'edge-0.6800505791164082', source: '6046', target: '6047', data: {} }, + { + id: 'edge-0.24363373921114984', + source: '6024', + target: '6048', + data: {}, + }, + { id: 'edge-0.2602045325721116', source: '6052', target: '6053', data: {} }, + { id: 'edge-0.5541037251742289', source: '5349', target: '6054', data: {} }, + { + id: 'edge-0.34643359105898885', + source: '5349', + target: '6055', + data: {}, + }, + { id: 'edge-0.5566622447065783', source: '6056', target: '6057', data: {} }, + { id: 'edge-0.6676481351098738', source: '4999', target: '6058', data: {} }, + { id: 'edge-0.631119671267778', source: '6059', target: '6060', data: {} }, + { id: 'edge-0.7020630504731646', source: '5381', target: '6062', data: {} }, + { id: 'edge-0.5308212739337705', source: '5381', target: '6063', data: {} }, + { id: 'edge-0.2143690598777419', source: '5381', target: '6064', data: {} }, + { + id: 'edge-0.38907382758233666', + source: '6065', + target: '6066', + data: {}, + }, + { id: 'edge-0.2276936095162927', source: '6067', target: '6068', data: {} }, + { id: 'edge-0.786652393963484', source: '3', target: '6069', data: {} }, + { id: 'edge-0.5660732256992034', source: '6070', target: '6071', data: {} }, + { id: 'edge-0.8600067522518915', source: '5952', target: '6072', data: {} }, + { id: 'edge-0.9674485602478804', source: '6073', target: '6074', data: {} }, + { id: 'edge-0.9989015852256966', source: '6073', target: '6075', data: {} }, + { + id: 'edge-0.14975859889118714', + source: '6073', + target: '6076', + data: {}, + }, + { + id: 'edge-0.08366832720220829', + source: '6077', + target: '6078', + data: {}, + }, + { id: 'edge-0.3165578107367153', source: '6080', target: '6081', data: {} }, + { + id: 'edge-0.11249915914637953', + source: '5388', + target: '6082', + data: {}, + }, + { id: 'edge-0.3151867526855956', source: '5388', target: '6083', data: {} }, + { id: 'edge-0.8323401927058538', source: '5646', target: '6084', data: {} }, + { id: 'edge-0.9562151960252339', source: '5646', target: '6085', data: {} }, + { id: 'edge-0.9256614209854106', source: '5819', target: '445', data: {} }, + { id: 'edge-0.4736116384377851', source: '5398', target: '6087', data: {} }, + { id: 'edge-0.6536401745725424', source: '6088', target: '5070', data: {} }, + { + id: 'edge-0.20677195979263563', + source: '6092', + target: '6093', + data: {}, + }, + { id: 'edge-0.4395031795010711', source: '6094', target: '6095', data: {} }, + { id: 'edge-0.9285354213063457', source: '6096', target: '6097', data: {} }, + { id: 'edge-0.7121366464887187', source: '6098', target: '6099', data: {} }, + { id: 'edge-0.4007163333874122', source: '5675', target: '6101', data: {} }, + { + id: 'edge-0.08715674587484878', + source: '6102', + target: '6103', + data: {}, + }, + { + id: 'edge-0.24196657066063376', + source: '6104', + target: '6105', + data: {}, + }, + { + id: 'edge-0.13821912759252197', + source: '6108', + target: '6109', + data: {}, + }, + { id: 'edge-0.7620187837173356', source: '4823', target: '1890', data: {} }, + { id: 'edge-0.0467899942520964', source: '6111', target: '6112', data: {} }, + { id: 'edge-0.6463811907753776', source: '6114', target: '320', data: {} }, + { id: 'edge-0.5426333120140197', source: '6115', target: '320', data: {} }, + { id: 'edge-0.7270764809554771', source: '5404', target: '6116', data: {} }, + { id: 'edge-0.4572838870139835', source: '5404', target: '6118', data: {} }, + { id: 'edge-0.4215795569432814', source: '6119', target: '6120', data: {} }, + { id: 'edge-0.7578511075092045', source: '6120', target: '6122', data: {} }, + { + id: 'edge-0.06059916616707617', + source: '6123', + target: '6124', + data: {}, + }, + { id: 'edge-0.9390499880029799', source: '6125', target: '6126', data: {} }, + { + id: 'edge-0.33609863087629077', + source: '5383', + target: '5384', + data: {}, + }, + { id: 'edge-0.8894926634866529', source: '5384', target: '6127', data: {} }, + { id: 'edge-0.9627248364454155', source: '6128', target: '6129', data: {} }, + { id: 'edge-0.9393433210064976', source: '6130', target: '6131', data: {} }, + { + id: 'edge-0.44205063169618053', + source: '5279', + target: '6132', + data: {}, + }, + { + id: 'edge-0.13685496261014984', + source: '6133', + target: '6134', + data: {}, + }, + { id: 'edge-0.5680086330030263', source: '5848', target: '6135', data: {} }, + { + id: 'edge-0.27198445413059047', + source: '6136', + target: '6137', + data: {}, + }, + { id: 'edge-0.5916898565798234', source: '4817', target: '6138', data: {} }, + { id: 'edge-0.4750502907058194', source: '6139', target: '6140', data: {} }, + { id: 'edge-0.6408686986753065', source: '6141', target: '6142', data: {} }, + { + id: 'edge-0.08692786648240292', + source: '6143', + target: '6032', + data: {}, + }, + { id: 'edge-0.6148500662122165', source: '6145', target: '6146', data: {} }, + { + id: 'edge-0.40505157997364183', + source: '5612', + target: '6148', + data: {}, + }, + { id: 'edge-0.6213127848923408', source: '6149', target: '5612', data: {} }, + { id: 'edge-0.4477619575915559', source: '5612', target: '6150', data: {} }, + { id: 'edge-0.7225099007351028', source: '5353', target: '6151', data: {} }, + { id: 'edge-0.5151366337840113', source: '6152', target: '6153', data: {} }, + { + id: 'edge-0.42933086620390615', + source: '6154', + target: '6155', + data: {}, + }, + { + id: 'edge-0.18912778718643963', + source: '5411', + target: '5508', + data: {}, + }, + { + id: 'edge-0.24793903668396733', + source: '6156', + target: '6157', + data: {}, + }, + { id: 'edge-0.653563458642876', source: '6158', target: '6157', data: {} }, + { + id: 'edge-0.010662031618171586', + source: '6159', + target: '6160', + data: {}, + }, + { + id: 'edge-0.46139023635016385', + source: '6161', + target: '6162', + data: {}, + }, + { id: 'edge-0.9330782417548129', source: '6163', target: '6164', data: {} }, + { id: 'edge-0.7835820095406547', source: '6165', target: '6166', data: {} }, + { id: 'edge-0.3026136659298566', source: '5907', target: '6168', data: {} }, + { + id: 'edge-0.021641075805331145', + source: '6169', + target: '6170', + data: {}, + }, + { id: 'edge-0.9475779209278758', source: '6163', target: '6172', data: {} }, + { + id: 'edge-0.21506807211149415', + source: '6163', + target: '6173', + data: {}, + }, + { id: 'edge-0.1515507564593146', source: '6174', target: '6175', data: {} }, + { id: 'edge-0.1721236993670403', source: '6176', target: '6177', data: {} }, + { + id: 'edge-0.21683314320067826', + source: '5353', + target: '6177', + data: {}, + }, + { id: 'edge-0.4701539742784675', source: '5469', target: '6178', data: {} }, + { id: 'edge-0.5914895351554532', source: '6179', target: '6180', data: {} }, + { id: 'edge-0.8145271836319004', source: '5688', target: '6182', data: {} }, + { + id: 'edge-0.45328238042829416', + source: '6183', + target: '6184', + data: {}, + }, + { id: 'edge-0.7077868067414981', source: '6185', target: '6186', data: {} }, + { id: 'edge-0.4714369445785245', source: '6187', target: '6188', data: {} }, + { + id: 'edge-0.34881849065617576', + source: '6163', + target: '6189', + data: {}, + }, + { + id: 'edge-0.01264526078117667', + source: '4667', + target: '6190', + data: {}, + }, + { id: 'edge-0.3009332527749995', source: '6163', target: '6191', data: {} }, + { id: 'edge-0.5456249441985712', source: '6192', target: '6193', data: {} }, + { id: 'edge-0.2503358752901892', source: '6194', target: '6195', data: {} }, + { id: 'edge-0.5434317889852152', source: '6090', target: '6123', data: {} }, + { + id: 'edge-0.006986116411850096', + source: '3994', + target: '6197', + data: {}, + }, + { + id: 'edge-0.11356611166662356', + source: '6198', + target: '6199', + data: {}, + }, + { id: 'edge-0.683850968161392', source: '5353', target: '6200', data: {} }, + { id: 'edge-0.6226788970630766', source: '5893', target: '6200', data: {} }, + { id: 'edge-0.8763193861256475', source: '6201', target: '6202', data: {} }, + { id: 'edge-0.7403707218932556', source: '6203', target: '6204', data: {} }, + { id: 'edge-0.8480034492831117', source: '167', target: '5414', data: {} }, + { + id: 'edge-0.03292579831096254', + source: '5893', + target: '5414', + data: {}, + }, + { id: 'edge-0.1013478538793986', source: '5893', target: '6205', data: {} }, + { id: 'edge-0.3260478092923593', source: '6206', target: '6207', data: {} }, + { id: 'edge-0.630638232439344', source: '6208', target: '6209', data: {} }, + { id: 'edge-0.2670969620345507', source: '6210', target: '6211', data: {} }, + { + id: 'edge-0.24725769197860048', + source: '5320', + target: '6212', + data: {}, + }, + { id: 'edge-0.8324093437782529', source: '4922', target: '5110', data: {} }, + { + id: 'edge-0.36124571700643027', + source: '6213', + target: '6214', + data: {}, + }, + { id: 'edge-0.8256231966626055', source: '6213', target: '6215', data: {} }, + { id: 'edge-0.7065919916019683', source: '5028', target: '6216', data: {} }, + { id: 'edge-0.6419005114232212', source: '6217', target: '6218', data: {} }, + { id: 'edge-0.8334580389440023', source: '5842', target: '6219', data: {} }, + { id: 'edge-0.6282540344899352', source: '6220', target: '6221', data: {} }, + { + id: 'edge-0.010389621893623913', + source: '6213', + target: '6222', + data: {}, + }, + { + id: 'edge-0.22800095013315946', + source: '6213', + target: '6223', + data: {}, + }, + { id: 'edge-0.4495268221408908', source: '6224', target: '6225', data: {} }, + { id: 'edge-0.23846321751214772', source: '6226', target: '320', data: {} }, + { id: 'edge-0.645449271025105', source: '5459', target: '6229', data: {} }, + { id: 'edge-0.6453724191536128', source: '5459', target: '6230', data: {} }, + { + id: 'edge-0.22624912572882705', + source: '5110', + target: '6232', + data: {}, + }, + { id: 'edge-0.7317463343781734', source: '6213', target: '6233', data: {} }, + { id: 'edge-0.633338228149974', source: '6213', target: '6234', data: {} }, + { id: 'edge-0.3077345302853174', source: '6235', target: '6236', data: {} }, + { id: 'edge-0.8460681682670304', source: '6237', target: '6238', data: {} }, + { id: 'edge-0.8895559859991464', source: '6213', target: '6239', data: {} }, + { id: 'edge-0.8207481993350496', source: '6051', target: '6240', data: {} }, + { + id: 'edge-0.08309032249972548', + source: '6242', + target: '6243', + data: {}, + }, + { id: 'edge-0.6573776523880561', source: '5459', target: '6243', data: {} }, + { + id: 'edge-0.013153999263289862', + source: '6244', + target: '6243', + data: {}, + }, + { id: 'edge-0.6721615824016292', source: '6245', target: '6246', data: {} }, + { + id: 'edge-0.11111625435033257', + source: '5607', + target: '6247', + data: {}, + }, + { id: 'edge-0.9498081520545003', source: '5620', target: '6248', data: {} }, + { id: 'edge-0.2176382359537694', source: '6213', target: '5114', data: {} }, + { + id: 'edge-0.01324639095034974', + source: '6250', + target: '6251', + data: {}, + }, + { id: 'edge-0.7126068485636332', source: '6213', target: '6252', data: {} }, + { id: 'edge-0.4405133453189738', source: '6253', target: '6224', data: {} }, + { + id: 'edge-0.23917734416822745', + source: '6254', + target: '6255', + data: {}, + }, + { id: 'edge-0.8450134497491719', source: '5503', target: '6256', data: {} }, + { id: 'edge-0.1198067645375549', source: '5441', target: '6258', data: {} }, + { id: 'edge-0.5753152769736192', source: '5441', target: '6259', data: {} }, + { + id: 'edge-0.07926661970654947', + source: '5441', + target: '6261', + data: {}, + }, + { + id: 'edge-0.19423552914694708', + source: '5441', + target: '6262', + data: {}, + }, + { + id: 'edge-0.31572955340389974', + source: '6263', + target: '6264', + data: {}, + }, + { id: 'edge-0.7935092050058077', source: '5', target: '6269', data: {} }, + { id: 'edge-0.5252862114169281', source: '5', target: '6271', data: {} }, + { id: 'edge-0.2664951129761728', source: '5', target: '6272', data: {} }, + { id: 'edge-0.9366475555733391', source: '5213', target: '6273', data: {} }, + { + id: 'edge-0.25621568150774254', + source: '6274', + target: '6275', + data: {}, + }, + { id: 'edge-0.8758992321777594', source: '6276', target: '6277', data: {} }, + { + id: 'edge-0.48855171945682296', + source: '6278', + target: '6279', + data: {}, + }, + { + id: 'edge-0.15530547262642957', + source: '5694', + target: '6280', + data: {}, + }, + { id: 'edge-0.9171254262823167', source: '6281', target: '6282', data: {} }, + { id: 'edge-0.3889283754870969', source: '6283', target: '6284', data: {} }, + { id: 'edge-0.6030382007457338', source: '6285', target: '6286', data: {} }, + { + id: 'edge-0.37017770446973164', + source: '6287', + target: '6288', + data: {}, + }, + { id: 'edge-0.76448643537561', source: '6291', target: '6292', data: {} }, + { id: 'edge-0.7689699352157324', source: '6291', target: '6293', data: {} }, + { id: 'edge-0.6910755296776494', source: '6291', target: '6294', data: {} }, + { + id: 'edge-0.21896020147796547', + source: '6291', + target: '6296', + data: {}, + }, + { id: 'edge-0.894807270709459', source: '5714', target: '6298', data: {} }, + { id: 'edge-0.4840488019201652', source: '6291', target: '6299', data: {} }, + { id: 'edge-0.9673051132586474', source: '6300', target: '6301', data: {} }, + { id: 'edge-0.5112565824131365', source: '6300', target: '6302', data: {} }, + { + id: 'edge-0.04216474273480264', + source: '6303', + target: '6304', + data: {}, + }, + { id: 'edge-0.2399909697040341', source: '5293', target: '6306', data: {} }, + { id: 'edge-0.9227762611602888', source: '443', target: '6308', data: {} }, + { + id: 'edge-0.04538105187637487', + source: '6309', + target: '6310', + data: {}, + }, + { id: 'edge-0.9195951283034194', source: '6311', target: '6312', data: {} }, + { + id: 'edge-0.39618832133493864', + source: '6313', + target: '6314', + data: {}, + }, + { + id: 'edge-0.11972922861033308', + source: '6313', + target: '6315', + data: {}, + }, + { id: 'edge-0.3232481670753742', source: '6316', target: '6317', data: {} }, + { id: 'edge-0.4183044617253777', source: '6316', target: '6319', data: {} }, + { id: 'edge-0.665977546792375', source: '6316', target: '6320', data: {} }, + { id: 'edge-0.606697362955666', source: '6321', target: '6322', data: {} }, + { id: 'edge-0.7533661061634458', source: '5306', target: '6323', data: {} }, + { id: 'edge-0.3872400786169323', source: '5822', target: '6324', data: {} }, + { id: 'edge-0.587995792491754', source: '6324', target: '6325', data: {} }, + { + id: 'edge-0.15757082307069448', + source: '6324', + target: '6326', + data: {}, + }, + { id: 'edge-0.8581727023138261', source: '6324', target: '6328', data: {} }, + { id: 'edge-0.9649573587242963', source: '5411', target: '6329', data: {} }, + { id: 'edge-0.5062737079232986', source: '4368', target: '6331', data: {} }, + { + id: 'edge-0.022381001688109192', + source: '6332', + target: '6333', + data: {}, + }, + { id: 'edge-0.3586664050529298', source: '6334', target: '6335', data: {} }, + { id: 'edge-0.6291090247217106', source: '6337', target: '6338', data: {} }, + { id: 'edge-0.7959680785864647', source: '4299', target: '163', data: {} }, + { + id: 'edge-0.15008620016647223', + source: '5549', + target: '5285', + data: {}, + }, + { id: 'edge-0.4946199148971786', source: '5092', target: '6341', data: {} }, + { id: 'edge-0.6693946065756238', source: '5191', target: '6342', data: {} }, + { id: 'edge-0.03998409211288623', source: '315', target: '4659', data: {} }, + { + id: 'edge-0.10869011035965737', + source: '4962', + target: '6344', + data: {}, + }, + { id: 'edge-0.7060482079703223', source: '4962', target: '6345', data: {} }, + { id: 'edge-0.679744244290089', source: '4962', target: '6346', data: {} }, + { id: 'edge-0.3220155578232682', source: '4962', target: '6347', data: {} }, + { id: 'edge-0.8182543726093521', source: '4962', target: '4965', data: {} }, + { id: 'edge-0.4120218653342862', source: '4962', target: '6348', data: {} }, + { id: 'edge-0.811117704794764', source: '4962', target: '6349', data: {} }, + { id: 'edge-0.0580085106318875', source: '4962', target: '5294', data: {} }, + { + id: 'edge-0.40543635502035813', + source: '5308', + target: '6350', + data: {}, + }, + { id: 'edge-0.9020056202915296', source: '5353', target: '5310', data: {} }, + { + id: 'edge-0.20609029656304445', + source: '5310', + target: '6351', + data: {}, + }, + { id: 'edge-0.6773986216905254', source: '6303', target: '6353', data: {} }, + { id: 'edge-0.749373930734003', source: '6354', target: '6355', data: {} }, + { + id: 'edge-0.42307156275163904', + source: '6356', + target: '6357', + data: {}, + }, + { id: 'edge-0.0541356644883908', source: '5947', target: '6358', data: {} }, + { + id: 'edge-0.08613377418319157', + source: '6359', + target: '6360', + data: {}, + }, + { id: 'edge-0.8897598944900642', source: '6359', target: '6361', data: {} }, + { id: 'edge-0.6102777020728571', source: '6359', target: '6362', data: {} }, + { id: 'edge-0.9915472875187701', source: '6136', target: '5832', data: {} }, + { id: 'edge-0.8751377472146096', source: '6363', target: '6364', data: {} }, + { id: 'edge-0.9668514627784432', source: '6365', target: '6366', data: {} }, + { id: 'edge-0.7908155759659832', source: '6367', target: '6368', data: {} }, + { + id: 'edge-0.19136751305649624', + source: '6369', + target: '6370', + data: {}, + }, + { id: 'edge-0.7496619547713435', source: '6371', target: '6372', data: {} }, + { id: 'edge-0.3497347639001773', source: '5070', target: '6373', data: {} }, + { id: 'edge-0.7944748611246861', source: '5451', target: '6375', data: {} }, + { id: 'edge-0.9954647329796871', source: '5355', target: '6376', data: {} }, + { id: 'edge-0.5543144607579866', source: '6377', target: '6378', data: {} }, + { + id: 'edge-0.44340026504480123', + source: '6379', + target: '6380', + data: {}, + }, + { + id: 'edge-0.31608434606410185', + source: '6206', + target: '6381', + data: {}, + }, + { + id: 'edge-0.17644286726685632', + source: '6377', + target: '6382', + data: {}, + }, + { id: 'edge-0.8440281924917974', source: '6385', target: '5883', data: {} }, + { + id: 'edge-0.04139900190058654', + source: '6386', + target: '5883', + data: {}, + }, + { id: 'edge-0.8588093562605357', source: '5883', target: '6387', data: {} }, + { + id: 'edge-0.14835333299176456', + source: '5955', + target: '6389', + data: {}, + }, + { id: 'edge-0.8271615718844509', source: '5438', target: '6390', data: {} }, + { + id: 'edge-0.05839097163773066', + source: '6391', + target: '6392', + data: {}, + }, + { id: 'edge-0.9316178799136119', source: '6393', target: '6394', data: {} }, + { + id: 'edge-0.48210532772468784', + source: '6395', + target: '6396', + data: {}, + }, + { id: 'edge-0.2645229095591697', source: '6397', target: '6398', data: {} }, + { id: 'edge-0.9753937729069266', source: '6399', target: '6400', data: {} }, + { id: 'edge-0.5861649718319242', source: '5066', target: '5065', data: {} }, + { + id: 'edge-0.44544066382117076', + source: '6401', + target: '6402', + data: {}, + }, + { id: 'edge-0.6615013244424608', source: '5066', target: '5064', data: {} }, + { id: 'edge-0.9345728401386231', source: '6401', target: '4659', data: {} }, + { + id: 'edge-0.49891701044027803', + source: '6404', + target: '6405', + data: {}, + }, + { id: 'edge-0.698260561665508', source: '6406', target: '6407', data: {} }, + { id: 'edge-0.9174481814947548', source: '6408', target: '6409', data: {} }, + { id: 'edge-0.9666051489468073', source: '6410', target: '6411', data: {} }, + { id: 'edge-0.6877052400449246', source: '6123', target: '6412', data: {} }, + { id: 'edge-0.5379000673091101', source: '6413', target: '6414', data: {} }, + { id: 'edge-0.08500411197822455', source: '3', target: '6415', data: {} }, + { + id: 'edge-0.02895612786392676', + source: '5213', + target: '6416', + data: {}, + }, + { id: 'edge-0.7474407767644022', source: '6417', target: '6418', data: {} }, + { + id: 'edge-0.42267225124953667', + source: '6419', + target: '6420', + data: {}, + }, + { + id: 'edge-0.07149121217877652', + source: '4647', + target: '6422', + data: {}, + }, + { id: 'edge-0.8162153579946951', source: '5431', target: '6423', data: {} }, + { + id: 'edge-0.046215866421207785', + source: '5518', + target: '6424', + data: {}, + }, + { + id: 'edge-0.26075739874638093', + source: '5651', + target: '6425', + data: {}, + }, + { id: 'edge-0.9617087539056488', source: '6426', target: '6427', data: {} }, + { id: 'edge-0.6913605947323447', source: '5213', target: '6428', data: {} }, + { id: 'edge-0.4287255010847162', source: '6429', target: '6430', data: {} }, + { id: 'edge-0.7158815164468282', source: '6431', target: '6432', data: {} }, + { id: 'edge-0.6139052247972314', source: '3154', target: '6308', data: {} }, + { + id: 'edge-0.13446951285080888', + source: '6434', + target: '6435', + data: {}, + }, + { + id: 'edge-0.010367005079915836', + source: '6436', + target: '6437', + data: {}, + }, + { id: 'edge-0.412562285241276', source: '6438', target: '6439', data: {} }, + { id: 'edge-0.5730453699541982', source: '6440', target: '6441', data: {} }, + { id: 'edge-0.2629772091690059', source: '6440', target: '6442', data: {} }, + { id: 'edge-0.1231121785918956', source: '5606', target: '5565', data: {} }, + { + id: 'edge-0.31587625110720263', + source: '6443', + target: '6444', + data: {}, + }, + { id: 'edge-0.1722045407163717', source: '6445', target: '163', data: {} }, + { id: 'edge-0.6492818421679019', source: '4958', target: '6448', data: {} }, + { id: 'edge-0.4927403871091913', source: '6449', target: '6450', data: {} }, + { id: 'edge-0.43740197639739', source: '6450', target: '6451', data: {} }, + { + id: 'edge-0.013155707397432881', + source: '6450', + target: '6452', + data: {}, + }, + { id: 'edge-0.6401343119657561', source: '6453', target: '5314', data: {} }, + { + id: 'edge-0.13408225906207472', + source: '5688', + target: '6455', + data: {}, + }, + { + id: 'edge-0.25614270573386344', + source: '5297', + target: '6456', + data: {}, + }, + { id: 'edge-0.9003785279321794', source: '5319', target: '6458', data: {} }, + { + id: 'edge-0.01590843684860488', + source: '5319', + target: '6459', + data: {}, + }, + { id: 'edge-0.2226351325285434', source: '6460', target: '6461', data: {} }, + { id: 'edge-0.6014184528514743', source: '6244', target: '6463', data: {} }, + { + id: 'edge-0.33447372385185536', + source: '6464', + target: '6465', + data: {}, + }, + { id: 'edge-0.03179654686602662', source: '6464', target: '16', data: {} }, + { + id: 'edge-0.04797021381847344', + source: '6467', + target: '6468', + data: {}, + }, + { + id: 'edge-0.14997352752970516', + source: '6469', + target: '6470', + data: {}, + }, + { + id: 'edge-0.17164254273619384', + source: '6471', + target: '6472', + data: {}, + }, + { id: 'edge-0.6989452538445844', source: '6473', target: '6474', data: {} }, + { id: 'edge-0.593130595418101', source: '6475', target: '6476', data: {} }, + { + id: 'edge-0.06399502854142503', + source: '6477', + target: '6478', + data: {}, + }, + { id: 'edge-0.7760184114448887', source: '5385', target: '6479', data: {} }, + { id: 'edge-0.6362662856316583', source: '6480', target: '1875', data: {} }, + { + id: 'edge-0.03279524118632593', + source: '6481', + target: '6482', + data: {}, + }, + { id: 'edge-0.6107994573432272', source: '6483', target: '6484', data: {} }, + { + id: 'edge-0.49501072359511045', + source: '6485', + target: '6484', + data: {}, + }, + { + id: 'edge-0.34054526211155944', + source: '4817', + target: '5284', + data: {}, + }, + { id: 'edge-0.8470350435302514', source: '5274', target: '6486', data: {} }, + { id: 'edge-0.8953662415957493', source: '5010', target: '6487', data: {} }, + { id: 'edge-0.568094810731556', source: '6488', target: '6489', data: {} }, + { id: 'edge-0.1352247403815252', source: '6490', target: '6491', data: {} }, + { id: 'edge-0.5809725705957496', source: '6492', target: '6493', data: {} }, + { id: 'edge-0.5110159166891017', source: '6494', target: '6495', data: {} }, + { id: 'edge-0.6161165631795937', source: '6496', target: '6497', data: {} }, + { + id: 'edge-0.12074266881053752', + source: '5118', + target: '6498', + data: {}, + }, + { + id: 'edge-0.025468411776201405', + source: '5118', + target: '6500', + data: {}, + }, + { + id: 'edge-0.09240282317181636', + source: '5712', + target: '6504', + data: {}, + }, + { id: 'edge-0.2148720203613108', source: '6505', target: '6506', data: {} }, + { id: 'edge-0.7276138788485811', source: '3847', target: '6507', data: {} }, + { id: 'edge-0.7938802570548054', source: '5493', target: '6508', data: {} }, + { id: 'edge-0.5457614635968664', source: '6509', target: '5741', data: {} }, + { id: 'edge-0.956800425651227', source: '5741', target: '6510', data: {} }, + { id: 'edge-0.1511859120582506', source: '5741', target: '6511', data: {} }, + { id: 'edge-0.7478586943889394', source: '5741', target: '6512', data: {} }, + { + id: 'edge-0.12097722629486651', + source: '5741', + target: '6513', + data: {}, + }, + { id: 'edge-0.9586075939822203', source: '5741', target: '6514', data: {} }, + { id: 'edge-0.5315145717726222', source: '5741', target: '6515', data: {} }, + { + id: 'edge-0.024530944970237556', + source: '6516', + target: '6517', + data: {}, + }, + { id: 'edge-0.7005951688853242', source: '6518', target: '6519', data: {} }, + { id: 'edge-0.6109204485411401', source: '5502', target: '6521', data: {} }, + { id: 'edge-0.8912871829598856', source: '6522', target: '6523', data: {} }, + { id: 'edge-0.6652610087778219', source: '6524', target: '6525', data: {} }, + { + id: 'edge-0.08816949695676324', + source: '6526', + target: '6527', + data: {}, + }, + { + id: 'edge-0.35191069859549406', + source: '6531', + target: '6532', + data: {}, + }, + { + id: 'edge-0.26871753125690545', + source: '6533', + target: '6534', + data: {}, + }, + { + id: 'edge-0.04458714542558462', + source: '5242', + target: '6535', + data: {}, + }, + { id: 'edge-0.3046700965465441', source: '6538', target: '6539', data: {} }, + { + id: 'edge-0.33156658078476164', + source: '6540', + target: '6541', + data: {}, + }, + { id: 'edge-0.5070175644154598', source: '6542', target: '6543', data: {} }, + { + id: 'edge-0.11216053814232074', + source: '5430', + target: '6544', + data: {}, + }, + { id: 'edge-0.9377673181818462', source: '6545', target: '6546', data: {} }, + { id: 'edge-0.5006930141427544', source: '6545', target: '6547', data: {} }, + { id: 'edge-0.9121437788682487', source: '6548', target: '6545', data: {} }, + { id: 'edge-0.4427311536743104', source: '6545', target: '6550', data: {} }, + { id: 'edge-0.9187623802006013', source: '4826', target: '6551', data: {} }, + { id: 'edge-0.7426755598233368', source: '4826', target: '6552', data: {} }, + { id: 'edge-0.1982661969564592', source: '6553', target: '6554', data: {} }, + { id: 'edge-0.8937036283749236', source: '6550', target: '6555', data: {} }, + { + id: 'edge-0.28082890153083895', + source: '6556', + target: '6557', + data: {}, + }, + { + id: 'edge-0.43443796602269846', + source: '6558', + target: '6559', + data: {}, + }, + { id: 'edge-0.7085878391319791', source: '6560', target: '6561', data: {} }, + { id: 'edge-0.9010820672782376', source: '6562', target: '6563', data: {} }, + { id: 'edge-0.8646732040511118', source: '6564', target: '6565', data: {} }, + { id: 'edge-0.7754607188742519', source: '4817', target: '5406', data: {} }, + { id: 'edge-0.6520785974302914', source: '6566', target: '6567', data: {} }, + { id: 'edge-0.832360471365376', source: '6244', target: '6568', data: {} }, + { id: 'edge-0.4829887190682298', source: '6569', target: '6570', data: {} }, + { id: 'edge-0.3345137811599257', source: '6571', target: '4653', data: {} }, + { + id: 'edge-0.30651728829327984', + source: '4653', + target: '6574', + data: {}, + }, + { id: 'edge-0.8258114795848381', source: '4653', target: '6575', data: {} }, + { id: 'edge-0.5712841819630223', source: '6576', target: '6577', data: {} }, + { id: 'edge-0.4921535536016781', source: '6578', target: '6579', data: {} }, + { + id: 'edge-0.18201085988104704', + source: '6580', + target: '6581', + data: {}, + }, + { id: 'edge-0.6620904179788858', source: '6580', target: '6582', data: {} }, + { id: 'edge-0.4311640157939285', source: '6580', target: '6583', data: {} }, + { id: 'edge-0.7057339491813885', source: '5377', target: '3638', data: {} }, + { + id: 'edge-0.32075959855701375', + source: '3897', + target: '4199', + data: {}, + }, + { + id: 'edge-0.26423652706357315', + source: '4922', + target: '6584', + data: {}, + }, + { id: 'edge-0.9122637473962625', source: '4922', target: '3641', data: {} }, + { + id: 'edge-0.016936502642656004', + source: '4922', + target: '6586', + data: {}, + }, + { id: 'edge-0.3986333067647174', source: '4922', target: '6587', data: {} }, + { id: 'edge-0.5319274563616052', source: '6588', target: '6589', data: {} }, + { id: 'edge-0.5654302234194051', source: '6590', target: '6591', data: {} }, + { id: 'edge-0.61314791632164', source: '5329', target: '6593', data: {} }, + { + id: 'edge-0.29058805402876864', + source: '6594', + target: '6595', + data: {}, + }, + { + id: 'edge-0.02664659185141338', + source: '6596', + target: '6597', + data: {}, + }, + { id: 'edge-0.733054037717001', source: '6598', target: '6599', data: {} }, + { id: 'edge-0.1562199075212254', source: '6443', target: '6600', data: {} }, + { id: 'edge-0.8648240755653342', source: '5743', target: '6601', data: {} }, + { id: 'edge-0.7540823498582971', source: '4993', target: '6602', data: {} }, + { + id: 'edge-0.48810331551577857', + source: '5070', + target: '6605', + data: {}, + }, + { id: 'edge-0.410583476020278', source: '5452', target: '6606', data: {} }, + { + id: 'edge-0.059510124301011214', + source: '6179', + target: '6607', + data: {}, + }, + { + id: 'edge-0.42418194314986546', + source: '6608', + target: '3479', + data: {}, + }, + { id: 'edge-0.8033645963337412', source: '6609', target: '6610', data: {} }, + { + id: 'edge-0.19107896919854817', + source: '6611', + target: '5529', + data: {}, + }, + { id: 'edge-0.2078357676346574', source: '5087', target: '5529', data: {} }, + { + id: 'edge-0.32998768316637195', + source: '6614', + target: '6615', + data: {}, + }, + { id: 'edge-0.4272362049992011', source: '6609', target: '6616', data: {} }, + { id: 'edge-0.4020246713448794', source: '6617', target: '6618', data: {} }, + { id: 'edge-0.8598204663312059', source: '6619', target: '6620', data: {} }, + { + id: 'edge-0.20225817393164847', + source: '6621', + target: '6622', + data: {}, + }, + { + id: 'edge-0.05156646804427534', + source: '6623', + target: '6624', + data: {}, + }, + { id: 'edge-0.5163244879105153', source: '5629', target: '6625', data: {} }, + { + id: 'edge-0.07520802056787912', + source: '5337', + target: '6626', + data: {}, + }, + { id: 'edge-0.6642885493994977', source: '6627', target: '6628', data: {} }, + { + id: 'edge-0.45319900535560254', + source: '6629', + target: '3486', + data: {}, + }, + { id: 'edge-0.8745552310296956', source: '6630', target: '6631', data: {} }, + { id: 'edge-0.7757057461184367', source: '6139', target: '6632', data: {} }, + { id: 'edge-0.0873792242055933', source: '5297', target: '6633', data: {} }, + { id: 'edge-0.6609101863502524', source: '5297', target: '6634', data: {} }, + { id: 'edge-0.5488956216343515', source: '5297', target: '6635', data: {} }, + { id: 'edge-0.7675360300493967', source: '5297', target: '6636', data: {} }, + { + id: 'edge-0.002016339679027146', + source: '5297', + target: '6637', + data: {}, + }, + { id: 'edge-0.559597885106468', source: '5297', target: '6638', data: {} }, + { + id: 'edge-0.20532235285950184', + source: '5297', + target: '6639', + data: {}, + }, + { id: 'edge-0.6722113004790924', source: '5297', target: '6640', data: {} }, + { id: 'edge-0.810531537966608', source: '5297', target: '6641', data: {} }, + { + id: 'edge-0.15912214472518516', + source: '5297', + target: '6642', + data: {}, + }, + { id: 'edge-0.7731858651044772', source: '5297', target: '5210', data: {} }, + { id: 'edge-0.5108284277783395', source: '5297', target: '6644', data: {} }, + { id: 'edge-0.8931983278646556', source: '5297', target: '6645', data: {} }, + { id: 'edge-0.9548193896229953', source: '5297', target: '5276', data: {} }, + { id: 'edge-0.9079829420483618', source: '5297', target: '6646', data: {} }, + { id: 'edge-0.2941257168227358', source: '5297', target: '6647', data: {} }, + { id: 'edge-0.1383274199097273', source: '5297', target: '6648', data: {} }, + { id: 'edge-0.3692771450923391', source: '5297', target: '6649', data: {} }, + { id: 'edge-0.7942559377806537', source: '5297', target: '6650', data: {} }, + { id: 'edge-0.7526605527141288', source: '5297', target: '6651', data: {} }, + { + id: 'edge-0.34496394717561896', + source: '5297', + target: '6652', + data: {}, + }, + { id: 'edge-0.7526935750231079', source: '5335', target: '6653', data: {} }, + { id: 'edge-0.9225706406047229', source: '5335', target: '6057', data: {} }, + { id: 'edge-0.9402688574781704', source: '6654', target: '6655', data: {} }, + { id: 'edge-0.4395396020796054', source: '5809', target: '6656', data: {} }, + { id: 'edge-0.1621517733189548', source: '5428', target: '5042', data: {} }, + { + id: 'edge-0.10067406332114714', + source: '4824', + target: '6659', + data: {}, + }, + { id: 'edge-0.6031839447920975', source: '6660', target: '6661', data: {} }, + { id: 'edge-0.6267104315918202', source: '4823', target: '5827', data: {} }, + { + id: 'edge-0.11867608338758706', + source: '4823', + target: '6663', + data: {}, + }, + { id: 'edge-0.8223751096937082', source: '4823', target: '6664', data: {} }, + { id: 'edge-0.47994955919283', source: '4823', target: '6665', data: {} }, + { + id: 'edge-0.10133405852598454', + source: '4823', + target: '6666', + data: {}, + }, + { id: 'edge-0.5705826213770455', source: '4823', target: '6667', data: {} }, + { id: 'edge-0.9114404184308111', source: '4823', target: '6668', data: {} }, + { id: 'edge-0.6739221623930622', source: '4823', target: '6669', data: {} }, + { + id: 'edge-0.31564487009786646', + source: '4823', + target: '6670', + data: {}, + }, + { id: 'edge-0.4687894006689868', source: '4823', target: '6671', data: {} }, + { + id: 'edge-0.08887472657969742', + source: '4823', + target: '5692', + data: {}, + }, + { id: 'edge-0.2754618117004828', source: '4823', target: '4847', data: {} }, + { id: 'edge-0.6278494526600438', source: '4823', target: '6675', data: {} }, + { id: 'edge-0.4128974152513478', source: '4823', target: '6676', data: {} }, + { id: 'edge-0.2778137198475199', source: '4823', target: '6677', data: {} }, + { id: 'edge-0.943177318316023', source: '6678', target: '6677', data: {} }, + { id: 'edge-0.7080928102060706', source: '4823', target: '6679', data: {} }, + { id: 'edge-0.5624987836022954', source: '6680', target: '5956', data: {} }, + { + id: 'edge-0.14336754290315534', + source: '6682', + target: '6683', + data: {}, + }, + { id: 'edge-0.5354789655414454', source: '6244', target: '6684', data: {} }, + { id: 'edge-0.9568514047768575', source: '6684', target: '6685', data: {} }, + { + id: 'edge-0.25482132884433106', + source: '5800', + target: '6686', + data: {}, + }, + { id: 'edge-0.5082707665016835', source: '5800', target: '6687', data: {} }, + { + id: 'edge-0.07940981883736264', + source: '5800', + target: '6689', + data: {}, + }, + { id: 'edge-0.8650579802888418', source: '5800', target: '6690', data: {} }, + { id: 'edge-0.79407000653745', source: '6693', target: '6694', data: {} }, + { id: 'edge-0.21062793016587', source: '6695', target: '6696', data: {} }, + { id: 'edge-0.8541563917135258', source: '6697', target: '6698', data: {} }, + { id: 'edge-0.5664117924214009', source: '6700', target: '6699', data: {} }, + { id: 'edge-0.7410339071027654', source: '6700', target: '4166', data: {} }, + { id: 'edge-0.618919098177372', source: '6701', target: '6702', data: {} }, + { id: 'edge-0.9478992006853197', source: '6703', target: '6704', data: {} }, + { id: 'edge-0.9749605158864065', source: '6705', target: '6706', data: {} }, + { + id: 'edge-0.15924312359615134', + source: '5757', + target: '6707', + data: {}, + }, + { + id: 'edge-0.01901755740452682', + source: '7012', + target: '6709', + data: {}, + }, + { + id: 'edge-0.12019946559859918', + source: '6253', + target: '6710', + data: {}, + }, + { id: 'edge-0.3720393502858619', source: '6711', target: '6712', data: {} }, + { id: 'edge-0.6366354092064466', source: '6713', target: '6714', data: {} }, + { id: 'edge-0.5405167898138743', source: '8', target: '6715', data: {} }, + { + id: 'edge-0.08865502387887947', + source: '6716', + target: '6717', + data: {}, + }, + { id: 'edge-0.2905107544282919', source: '6718', target: '6719', data: {} }, + { id: 'edge-0.6210721442808604', source: '5347', target: '6720', data: {} }, + { id: 'edge-0.761724959885203', source: '6721', target: '6722', data: {} }, + { id: 'edge-0.8311454696724954', source: '5279', target: '6723', data: {} }, + { id: 'edge-0.0389067075163525', source: '6724', target: '5347', data: {} }, + { + id: 'edge-0.48766668229642773', + source: '6725', + target: '6726', + data: {}, + }, + { + id: 'edge-0.24460164259016448', + source: '6727', + target: '6728', + data: {}, + }, + { id: 'edge-0.3926280917565399', source: '5382', target: '6729', data: {} }, + { id: 'edge-0.6186037977487064', source: '5382', target: '6730', data: {} }, + { + id: 'edge-0.44390816031248614', + source: '6731', + target: '6732', + data: {}, + }, + { + id: 'edge-0.46910293023472827', + source: '5587', + target: '6736', + data: {}, + }, + { + id: 'edge-0.16244341439089793', + source: '6727', + target: '6737', + data: {}, + }, + { + id: 'edge-0.12628930147652717', + source: '6738', + target: '6739', + data: {}, + }, + { + id: 'edge-0.35099641238679813', + source: '6740', + target: '6741', + data: {}, + }, + { id: 'edge-0.8559793991441027', source: '6742', target: '6743', data: {} }, + { id: 'edge-0.9641227071032166', source: '5308', target: '6744', data: {} }, + { id: 'edge-0.7109136097418538', source: '6536', target: '6745', data: {} }, + { id: 'edge-0.7808224581186451', source: '6746', target: '6747', data: {} }, + { + id: 'edge-0.05267578334591838', + source: '6748', + target: '6749', + data: {}, + }, + { + id: 'edge-0.16763804874407717', + source: '3897', + target: '6750', + data: {}, + }, + { id: 'edge-0.8169249252961568', source: '6740', target: '6751', data: {} }, + { id: 'edge-0.4193784671800873', source: '6752', target: '6753', data: {} }, + { id: 'edge-0.5835123281518952', source: '6755', target: '6756', data: {} }, + { id: 'edge-0.9572198443080446', source: '6757', target: '6758', data: {} }, + { + id: 'edge-0.025099086578112884', + source: '6759', + target: '6760', + data: {}, + }, + { + id: 'edge-0.09243487044488052', + source: '5001', + target: '6761', + data: {}, + }, + { + id: 'edge-0.34244087638051757', + source: '6008', + target: '1894', + data: {}, + }, + { id: 'edge-0.4339456777466568', source: '5001', target: '6104', data: {} }, + { id: 'edge-0.7027189188381406', source: '5723', target: '6764', data: {} }, + { id: 'edge-0.5383094946095901', source: '5001', target: '6765', data: {} }, + { + id: 'edge-0.39413921479278846', + source: '6475', + target: '6766', + data: {}, + }, + { id: 'edge-0.8506868132062873', source: '6767', target: '6768', data: {} }, + { id: 'edge-0.4309248716774321', source: '6475', target: '6770', data: {} }, + { id: 'edge-0.7259967393715385', source: '4817', target: '6770', data: {} }, + { id: 'edge-0.9296759639195082', source: '6366', target: '6771', data: {} }, + { id: 'edge-0.7458742758397361', source: '6772', target: '6773', data: {} }, + { id: 'edge-0.3952284111350819', source: '5383', target: '6775', data: {} }, + { id: 'edge-0.8211551950871179', source: '6776', target: '6777', data: {} }, + { id: 'edge-0.270857593279789', source: '6778', target: '6779', data: {} }, + { + id: 'edge-0.12460007434938514', + source: '3303', + target: '6780', + data: {}, + }, + { id: 'edge-0.7580195184538809', source: '6781', target: '6782', data: {} }, + { id: 'edge-0.8217928481921155', source: '6783', target: '6784', data: {} }, + { id: 'edge-0.7443178514495261', source: '6785', target: '6786', data: {} }, + { id: 'edge-0.8279902632885152', source: '6787', target: '6788', data: {} }, + { id: 'edge-0.6742446133426594', source: '6660', target: '6789', data: {} }, + { id: 'edge-0.8080349796059494', source: '5829', target: '6790', data: {} }, + { + id: 'edge-0.47718418781123084', + source: '6197', + target: '6791', + data: {}, + }, + { id: 'edge-0.700577024214917', source: '5154', target: '6792', data: {} }, + { id: 'edge-0.8428526067672135', source: '3910', target: '6794', data: {} }, + { id: 'edge-0.674806449729856', source: '6795', target: '6796', data: {} }, + { id: 'edge-0.5423378878398912', source: '6797', target: '6798', data: {} }, + { id: 'edge-0.7100262138172757', source: '1953', target: '313', data: {} }, + { id: 'edge-0.19394624918011139', source: '6799', target: '313', data: {} }, + { + id: 'edge-0.08593530283116113', + source: '6438', + target: '6800', + data: {}, + }, + { + id: 'edge-0.30941205258591076', + source: '6801', + target: '6802', + data: {}, + }, + { id: 'edge-0.5167764269301871', source: '6803', target: '6804', data: {} }, + { id: 'edge-0.1559390931309903', source: '6038', target: '6805', data: {} }, + { id: 'edge-0.2199618350420034', source: '177', target: '6806', data: {} }, + { id: 'edge-0.7093261080783462', source: '6123', target: '6807', data: {} }, + { id: 'edge-0.6899282025522868', source: '6808', target: '6809', data: {} }, + { + id: 'edge-0.44945078623721746', + source: '6810', + target: '6490', + data: {}, + }, + { id: 'edge-0.7272354931272793', source: '6811', target: '6812', data: {} }, + { + id: 'edge-0.31549818529896045', + source: '6172', + target: '6813', + data: {}, + }, + { id: 'edge-0.4102582353784614', source: '6814', target: '6815', data: {} }, + { id: 'edge-0.3241750501327665', source: '6560', target: '6816', data: {} }, + { id: 'edge-0.8096415944150679', source: '6560', target: '6818', data: {} }, + { + id: 'edge-0.16081150834218305', + source: '6560', + target: '6819', + data: {}, + }, + { + id: 'edge-0.23021064535939217', + source: '5590', + target: '6820', + data: {}, + }, + { + id: 'edge-0.02246154380173282', + source: '5590', + target: '6821', + data: {}, + }, + { id: 'edge-0.4105011626263224', source: '5590', target: '6822', data: {} }, + { id: 'edge-0.2991669328195221', source: '6823', target: '6824', data: {} }, + { id: 'edge-0.5012052831266476', source: '6825', target: '6310', data: {} }, + { id: 'edge-0.6954337949270959', source: '6826', target: '6827', data: {} }, + { id: 'edge-0.8786141661217719', source: '5391', target: '6828', data: {} }, + { id: 'edge-0.1058510886251618', source: '6829', target: '6830', data: {} }, + { id: 'edge-0.9327044585662696', source: '6829', target: '6831', data: {} }, + { id: 'edge-0.9688147370924471', source: '5584', target: '6833', data: {} }, + { id: 'edge-0.9126236435845283', source: '6834', target: '6835', data: {} }, + { id: 'edge-0.3781774572375547', source: '5308', target: '6836', data: {} }, + { id: 'edge-0.7228224503254512', source: '6837', target: '6838', data: {} }, + { id: 'edge-0.525389596654996', source: '5308', target: '6839', data: {} }, + { + id: 'edge-0.44828490061600124', + source: '5308', + target: '6840', + data: {}, + }, + { id: 'edge-0.351121625568817', source: '5308', target: '6841', data: {} }, + { + id: 'edge-0.14778006773332453', + source: '5308', + target: '6843', + data: {}, + }, + { id: 'edge-0.4865939620188109', source: '5308', target: '6844', data: {} }, + { id: 'edge-0.3913138198705528', source: '5308', target: '6845', data: {} }, + { id: 'edge-0.0641671460198705', source: '5308', target: '6846', data: {} }, + { id: 'edge-0.8808240393372229', source: '6810', target: '6848', data: {} }, + { + id: 'edge-0.10859631507698242', + source: '6810', + target: '6849', + data: {}, + }, + { id: 'edge-0.995216490918492', source: '6850', target: '5613', data: {} }, + { id: 'edge-0.4427725767373849', source: '6852', target: '6853', data: {} }, + { id: 'edge-0.7535348308609173', source: '5822', target: '6854', data: {} }, + { id: 'edge-0.68627084701627', source: '5733', target: '6855', data: {} }, + { id: 'edge-0.9683098311866878', source: '6856', target: '6857', data: {} }, + { id: 'edge-0.791223236712328', source: '3303', target: '6858', data: {} }, + { id: 'edge-0.9570291980953627', source: '5995', target: '6859', data: {} }, + { id: 'edge-0.9404384860295789', source: '6860', target: '5906', data: {} }, + { id: 'edge-0.030321123071958', source: '6861', target: '6862', data: {} }, + { id: 'edge-0.6639183009779446', source: '6778', target: '6864', data: {} }, + { id: 'edge-0.7041301850478854', source: '6865', target: '154', data: {} }, + { id: 'edge-0.35100737420177763', source: '6867', target: '154', data: {} }, + { id: 'edge-0.47786362087809153', source: '154', target: '6869', data: {} }, + { + id: 'edge-0.023627382295937194', + source: '6871', + target: '6872', + data: {}, + }, + { id: 'edge-0.3900771157418106', source: '5126', target: '5127', data: {} }, + { id: 'edge-0.8564961844004857', source: '4166', target: '6874', data: {} }, + { id: 'edge-0.6200835882388935', source: '5877', target: '6875', data: {} }, + { id: 'edge-0.9847094686325633', source: '4842', target: '5877', data: {} }, + { id: 'edge-0.5265991559265728', source: '6876', target: '5877', data: {} }, + { id: 'edge-0.7716529068164741', source: '6877', target: '6878', data: {} }, + { + id: 'edge-0.29986155756275834', + source: '6879', + target: '6880', + data: {}, + }, + { id: 'edge-0.7759396209931941', source: '6879', target: '5046', data: {} }, + { id: 'edge-0.9563936585149369', source: '6882', target: '6072', data: {} }, + { id: 'edge-0.3483690523342182', source: '6072', target: '6883', data: {} }, + { id: 'edge-0.9717617431846748', source: '6072', target: '6884', data: {} }, + { id: 'edge-0.9807063764384623', source: '6438', target: '6886', data: {} }, + { + id: 'edge-0.49612158387595584', + source: '6742', + target: '6887', + data: {}, + }, + { id: 'edge-0.5528883978333443', source: '6742', target: '6888', data: {} }, + { id: 'edge-0.5470491044704562', source: '6889', target: '6890', data: {} }, + { id: 'edge-0.6473826934737819', source: '5414', target: '6892', data: {} }, + { id: 'edge-0.9848307174042852', source: '5129', target: '6893', data: {} }, + { id: 'edge-0.6488881109883802', source: '6894', target: '6895', data: {} }, + { id: 'edge-0.6513109191950583', source: '6731', target: '6896', data: {} }, + { id: 'edge-0.5713700740098442', source: '5131', target: '6897', data: {} }, + { id: 'edge-0.9938648690385254', source: '6898', target: '5131', data: {} }, + { id: 'edge-0.7319030572933456', source: '6899', target: '6900', data: {} }, + { id: 'edge-0.2928381039660093', source: '6899', target: '6901', data: {} }, + { id: 'edge-0.3004445718890454', source: '6899', target: '6903', data: {} }, + { id: 'edge-0.6787895764495826', source: '6526', target: '6905', data: {} }, + { + id: 'edge-0.30723353453939084', + source: '6526', + target: '6907', + data: {}, + }, + { id: 'edge-0.6662505017246276', source: '6526', target: '6908', data: {} }, + { id: 'edge-0.4935316566586234', source: '6909', target: '6910', data: {} }, + { id: 'edge-0.834584952070641', source: '5866', target: '6911', data: {} }, + { id: 'edge-0.010815937646467377', source: '14', target: '6914', data: {} }, + { id: 'edge-0.9684609326339784', source: '14', target: '6916', data: {} }, + { + id: 'edge-0.011944408600188527', + source: '6917', + target: '6918', + data: {}, + }, + { + id: 'edge-0.46350234853829053', + source: '5535', + target: '6919', + data: {}, + }, + { id: 'edge-0.5691860784150571', source: '4817', target: '6920', data: {} }, + { id: 'edge-0.9253076370782725', source: '6921', target: '6922', data: {} }, + { + id: 'edge-0.02437776113853629', + source: '5539', + target: '6924', + data: {}, + }, + { id: 'edge-0.3877149269034461', source: '6925', target: '6926', data: {} }, + { id: 'edge-0.6809952013015192', source: '5322', target: '6654', data: {} }, + { + id: 'edge-0.32812697863253293', + source: '6927', + target: '6928', + data: {}, + }, + { id: 'edge-0.7067894109746433', source: '5058', target: '6930', data: {} }, + { + id: 'edge-0.18985328842664972', + source: '6931', + target: '6932', + data: {}, + }, + { id: 'edge-0.6287820509705944', source: '6933', target: '6934', data: {} }, + { id: 'edge-0.7671034727487249', source: '6934', target: '6936', data: {} }, + { + id: 'edge-0.11348682344113858', + source: '6937', + target: '6938', + data: {}, + }, + { id: 'edge-0.9158419608601103', source: '6939', target: '6940', data: {} }, + { id: 'edge-0.5003256161813565', source: '6941', target: '6942', data: {} }, + { + id: 'edge-0.44548917953654876', + source: '5541', + target: '6946', + data: {}, + }, + { id: 'edge-0.7776808985666124', source: '5644', target: '6949', data: {} }, + { id: 'edge-0.9830154547147492', source: '5644', target: '6951', data: {} }, + { id: 'edge-0.8043982914494694', source: '5644', target: '6952', data: {} }, + { + id: 'edge-0.06473674199037394', + source: '5308', + target: '6953', + data: {}, + }, + { + id: 'edge-0.010085090956839737', + source: '6953', + target: '6955', + data: {}, + }, + { id: 'edge-0.9133023003966869', source: '6953', target: '6956', data: {} }, + { id: 'edge-0.8788683468723362', source: '6957', target: '6953', data: {} }, + { id: 'edge-0.6605779678358061', source: '6958', target: '6959', data: {} }, + { id: 'edge-0.5831132962501484', source: '6960', target: '6961', data: {} }, + { id: 'edge-0.5967226795028588', source: '6274', target: '6963', data: {} }, + { + id: 'edge-0.37288753080372805', + source: '6274', + target: '6964', + data: {}, + }, + { id: 'edge-0.6697721987749004', source: '6274', target: '6965', data: {} }, + { + id: 'edge-0.11610292351394591', + source: '6274', + target: '6966', + data: {}, + }, + { id: 'edge-0.8565543207981015', source: '6274', target: '6967', data: {} }, + { + id: 'edge-0.11451457239945695', + source: '6274', + target: '6968', + data: {}, + }, + { id: 'edge-0.4551895496276259', source: '6274', target: '6970', data: {} }, + { id: 'edge-0.305815307514383', source: '6274', target: '6971', data: {} }, + { id: 'edge-0.7886194318316313', source: '6972', target: '6476', data: {} }, + { id: 'edge-0.06213385251496817', source: '432', target: '6973', data: {} }, + { id: 'edge-0.5218669490778189', source: '6972', target: '6974', data: {} }, + { id: 'edge-0.65507199511122', source: '5735', target: '6981', data: {} }, + { id: 'edge-0.4006072602460151', source: '6982', target: '6983', data: {} }, + { id: 'edge-0.7233988605661681', source: '3506', target: '4923', data: {} }, + { + id: 'edge-0.36887413347811937', + source: '6985', + target: '6986', + data: {}, + }, + { + id: 'edge-0.14449843933750928', + source: '6985', + target: '6987', + data: {}, + }, + { + id: 'edge-0.18303016772641034', + source: '5136', + target: '5171', + data: {}, + }, + { id: 'edge-0.6702246226870687', source: '5144', target: '5544', data: {} }, + { id: 'edge-0.8907585596903518', source: '5144', target: '6988', data: {} }, + { id: 'edge-0.7451960972359442', source: '6806', target: '6989', data: {} }, + { id: 'edge-0.8965058025435231', source: '5327', target: '6990', data: {} }, + { + id: 'edge-0.006827754425271504', + source: '6991', + target: '6992', + data: {}, + }, + { id: 'edge-0.6949586075910295', source: '5438', target: '5440', data: {} }, + { + id: 'edge-0.041550008094229485', + source: '6993', + target: '6994', + data: {}, + }, + { id: 'edge-0.9911098810607011', source: '6995', target: '6996', data: {} }, + { + id: 'edge-0.35602875624076846', + source: '6531', + target: '6553', + data: {}, + }, + { id: 'edge-0.5800847048484379', source: '408', target: '6999', data: {} }, + { id: 'edge-0.8392452120251404', source: '7000', target: '7001', data: {} }, + { + id: 'edge-0.40986730657022785', + source: '7002', + target: '7003', + data: {}, + }, + { + id: 'edge-0.08054109414637045', + source: '7004', + target: '5088', + data: {}, + }, + { id: 'edge-0.5926206017729989', source: '6556', target: '7005', data: {} }, + { id: 'edge-0.5764275867171524', source: '7006', target: '6195', data: {} }, + { id: 'edge-0.165721795655412', source: '7007', target: '7008', data: {} }, + { + id: 'edge-0.44761273796506695', + source: '7009', + target: '7010', + data: {}, + }, + { id: 'edge-0.2932325694335385', source: '6032', target: '7012', data: {} }, + { id: 'edge-0.3918018777818151', source: '7013', target: '7014', data: {} }, + { id: 'edge-0.9658354335051669', source: '7015', target: '7016', data: {} }, + { id: 'edge-0.6521519673969667', source: '6556', target: '7017', data: {} }, + { id: 'edge-0.4625190681910949', source: '7018', target: '7019', data: {} }, + { + id: 'edge-0.13086985846905153', + source: '7020', + target: '7021', + data: {}, + }, + { + id: 'edge-0.21102051524635046', + source: '7022', + target: '7023', + data: {}, + }, + { + id: 'edge-0.24231888798619194', + source: '5659', + target: '7024', + data: {}, + }, + { id: 'edge-0.6287808013042862', source: '5308', target: '7025', data: {} }, + { id: 'edge-0.8146800168065822', source: '3045', target: '6693', data: {} }, + { + id: 'edge-0.30868425941446076', + source: '6483', + target: '7027', + data: {}, + }, + { id: 'edge-0.8426519968551647', source: '6485', target: '7027', data: {} }, + { id: 'edge-0.7827216763359539', source: '6780', target: '7028', data: {} }, + { id: 'edge-0.9917667965566619', source: '6780', target: '7029', data: {} }, + { + id: 'edge-0.20839583914024895', + source: '7030', + target: '7031', + data: {}, + }, + { id: 'edge-0.9925707833107962', source: '6740', target: '7032', data: {} }, + { id: 'edge-0.5422072715847253', source: '6740', target: '7033', data: {} }, + { + id: 'edge-0.023367100010306174', + source: '6740', + target: '7034', + data: {}, + }, + { id: 'edge-0.572070850652393', source: '7035', target: '7036', data: {} }, + { + id: 'edge-0.011118123920298206', + source: '5157', + target: '5475', + data: {}, + }, + { + id: 'edge-0.28028331297436826', + source: '5316', + target: '7038', + data: {}, + }, + { id: 'edge-0.3639060371512397', source: '5316', target: '7039', data: {} }, + { id: 'edge-0.6100787551954876', source: '5334', target: '7040', data: {} }, + { + id: 'edge-0.14782308266369393', + source: '5151', + target: '7041', + data: {}, + }, + { id: 'edge-0.9745664896996167', source: '5875', target: '7043', data: {} }, + { + id: 'edge-0.27312023623710546', + source: '5875', + target: '2020', + data: {}, + }, + { + id: 'edge-0.43805501456157314', + source: '7045', + target: '7046', + data: {}, + }, + { id: 'edge-0.8691251183364237', source: '13', target: '7048', data: {} }, + { id: 'edge-0.8700479794670577', source: '7049', target: '7050', data: {} }, + { id: 'edge-0.746955245729567', source: '7051', target: '7052', data: {} }, + { + id: 'edge-0.34045579594964503', + source: '7053', + target: '7054', + data: {}, + }, + { id: 'edge-0.7688185184985579', source: '7055', target: '7056', data: {} }, + { id: 'edge-0.7610502621049544', source: '7057', target: '7058', data: {} }, + { id: 'edge-0.8281892323890105', source: '5832', target: '7059', data: {} }, + { id: 'edge-0.5686185989779013', source: '5829', target: '321', data: {} }, + { id: 'edge-0.7246072277979587', source: '6467', target: '7060', data: {} }, + { id: 'edge-0.3997173675976611', source: '7061', target: '7062', data: {} }, + { + id: 'edge-0.10473384670260533', + source: '7063', + target: '7064', + data: {}, + }, + { + id: 'edge-0.48037825093975206', + source: '5357', + target: '7066', + data: {}, + }, + { + id: 'edge-0.14689532187021448', + source: '6467', + target: '7068', + data: {}, + }, + { id: 'edge-0.7276502722663261', source: '6008', target: '7069', data: {} }, + { + id: 'edge-0.47651492344636837', + source: '6008', + target: '7070', + data: {}, + }, + { id: 'edge-0.5126984422022165', source: '7071', target: '7072', data: {} }, + { id: 'edge-0.7878316878704816', source: '7073', target: '7074', data: {} }, + { + id: 'edge-0.21183436961565394', + source: '7076', + target: '7077', + data: {}, + }, + { id: 'edge-0.6469020070775422', source: '6381', target: '7078', data: {} }, + { id: 'edge-0.4935974990907426', source: '5165', target: '7079', data: {} }, + { id: 'edge-0.3336712786334568', source: '7080', target: '7081', data: {} }, + { id: 'edge-0.7571591040507755', source: '7082', target: '5251', data: {} }, + { id: 'edge-0.4352586249934185', source: '7084', target: '7085', data: {} }, + { id: 'edge-0.956248802345455', source: '5070', target: '7086', data: {} }, + { id: 'edge-0.8369529609979209', source: '5146', target: '5371', data: {} }, + { + id: 'edge-0.009233013179689165', + source: '5842', + target: '7088', + data: {}, + }, + { + id: 'edge-0.059337121986184904', + source: '7089', + target: '7090', + data: {}, + }, + { id: 'edge-0.7064568669155888', source: '439', target: '7091', data: {} }, + { id: 'edge-0.5037044561913107', source: '5324', target: '7092', data: {} }, + { + id: 'edge-0.26049559867409644', + source: '5562', + target: '7094', + data: {}, + }, + { id: 'edge-0.5003474067411071', source: '7095', target: '7096', data: {} }, + { id: 'edge-0.8519102449931291', source: '4817', target: '6154', data: {} }, + { + id: 'edge-0.31968439176663965', + source: '5111', + target: '7099', + data: {}, + }, + { id: 'edge-0.0578991794357282', source: '7082', target: '1871', data: {} }, + { id: 'edge-0.5318640280397573', source: '7100', target: '7101', data: {} }, + { + id: 'edge-0.22767838682037578', + source: '7102', + target: '7103', + data: {}, + }, + { id: 'edge-0.6586113101721327', source: '5191', target: '4831', data: {} }, + { id: 'edge-0.8328563309728061', source: '7106', target: '7107', data: {} }, + { id: 'edge-0.9648632456913566', source: '7106', target: '7108', data: {} }, + { + id: 'edge-0.45758549453437114', + source: '7109', + target: '7110', + data: {}, + }, + { id: 'edge-0.8048524019242944', source: '321', target: '7112', data: {} }, + { id: 'edge-0.8418036013293977', source: '7113', target: '7114', data: {} }, + { id: 'edge-0.7817876123181766', source: '6244', target: '7115', data: {} }, + { id: 'edge-0.9425886789944773', source: '7116', target: '7117', data: {} }, + { + id: 'edge-0.04363968329132151', + source: '5722', + target: '7119', + data: {}, + }, + { id: 'edge-0.8083266264448445', source: '5705', target: '7120', data: {} }, + { id: 'edge-0.9338298043196327', source: '7121', target: '7122', data: {} }, + { id: 'edge-0.072618389251208', source: '7123', target: '7124', data: {} }, + { + id: 'edge-0.06347381214397618', + source: '5913', + target: '7125', + data: {}, + }, + { + id: 'edge-0.03232276948711621', + source: '5171', + target: '7126', + data: {}, + }, + { id: 'edge-0.8910322172509668', source: '7127', target: '7128', data: {} }, + { id: 'edge-0.8611335978782193', source: '5668', target: '7129', data: {} }, + { + id: 'edge-0.33217757073070153', + source: '7130', + target: '7131', + data: {}, + }, + { id: 'edge-0.8233541677432514', source: '5353', target: '7132', data: {} }, + { + id: 'edge-0.03461307989144746', + source: '5177', + target: '7134', + data: {}, + }, + { + id: 'edge-0.13567125453850304', + source: '5177', + target: '7135', + data: {}, + }, + { + id: 'edge-0.18541455504691728', + source: '7136', + target: '5180', + data: {}, + }, + { id: 'edge-0.3353823833596552', source: '7137', target: '7138', data: {} }, + { id: 'edge-0.4414415413896784', source: '7139', target: '7140', data: {} }, + { id: 'edge-0.5691691289772345', source: '7141', target: '7142', data: {} }, + { + id: 'edge-0.06514703487170603', + source: '7143', + target: '7144', + data: {}, + }, + { id: 'edge-0.9202958841354616', source: '7145', target: '7146', data: {} }, + { + id: 'edge-0.14140807046867931', + source: '7147', + target: '6744', + data: {}, + }, + { id: 'edge-0.5412568175897421', source: '6721', target: '7149', data: {} }, + { id: 'edge-0.9738663844537347', source: '7150', target: '7151', data: {} }, + { id: 'edge-0.490475780475065', source: '6165', target: '7152', data: {} }, + { id: 'edge-0.8035809143760015', source: '6465', target: '7153', data: {} }, + { id: 'edge-0.7263827369548088', source: '170', target: '5357', data: {} }, + { + id: 'edge-0.07374482165966079', + source: '5256', + target: '5114', + data: {}, + }, + { id: 'edge-0.4465460596917046', source: '7154', target: '7156', data: {} }, + { id: 'edge-0.7367707324103101', source: '7154', target: '7158', data: {} }, + { id: 'edge-0.1313608807639397', source: '3904', target: '3881', data: {} }, + { + id: 'edge-0.20131393461791203', + source: '7159', + target: '7160', + data: {}, + }, + { id: 'edge-0.7575858625800593', source: '7161', target: '7162', data: {} }, + { + id: 'edge-0.19726195039344852', + source: '5589', + target: '7164', + data: {}, + }, + { + id: 'edge-0.28375556474926156', + source: '5589', + target: '7166', + data: {}, + }, + { id: 'edge-0.4832234389309864', source: '7167', target: '7168', data: {} }, + { id: 'edge-0.9277182661141146', source: '6903', target: '7169', data: {} }, + { + id: 'edge-0.45204948142726065', + source: '7170', + target: '7171', + data: {}, + }, + { id: 'edge-0.7420336171978141', source: '7172', target: '7173', data: {} }, + { id: 'edge-0.6447480224346287', source: '5577', target: '7174', data: {} }, + { id: 'edge-0.1913075633389849', source: '5070', target: '7175', data: {} }, + { id: 'edge-0.3886678174754763', source: '5421', target: '7176', data: {} }, + { id: 'edge-0.5113432190291416', source: '7177', target: '7178', data: {} }, + { id: 'edge-0.7578101309035281', source: '5308', target: '7179', data: {} }, + { id: 'edge-0.7350006099739348', source: '5308', target: '7180', data: {} }, + { id: 'edge-0.8590057670095645', source: '5829', target: '7182', data: {} }, + { id: 'edge-0.6512843079209523', source: '5338', target: '7183', data: {} }, + { id: 'edge-0.0974945303314918', source: '7184', target: '7185', data: {} }, + { id: 'edge-0.8640143142540826', source: '5666', target: '7186', data: {} }, + { + id: 'edge-0.12171362104266881', + source: '7187', + target: '7188', + data: {}, + }, + { id: 'edge-0.9610868934855579', source: '7189', target: '7190', data: {} }, + { + id: 'edge-0.32862731675011525', + source: '4817', + target: '5956', + data: {}, + }, + { + id: 'edge-0.38802895019157946', + source: '5593', + target: '7191', + data: {}, + }, + { id: 'edge-0.8472428245327883', source: '5594', target: '7193', data: {} }, + { id: 'edge-0.9984083493015363', source: '5594', target: '7194', data: {} }, + { id: 'edge-0.7386338237636201', source: '7195', target: '7196', data: {} }, + { id: 'edge-0.5303853476796074', source: '7195', target: '7197', data: {} }, + { id: 'edge-0.2037241528580005', source: '7195', target: '7198', data: {} }, + { id: 'edge-0.8405105344936219', source: '5469', target: '7199', data: {} }, + { + id: 'edge-0.15100512171331748', + source: '5469', + target: '7200', + data: {}, + }, + { id: 'edge-0.1158922818296042', source: '5469', target: '7201', data: {} }, + { id: 'edge-0.9114115025459344', source: '5469', target: '7202', data: {} }, + { id: 'edge-0.5188822076530843', source: '6599', target: '5469', data: {} }, + { + id: 'edge-0.30051519042458974', + source: '5469', + target: '7203', + data: {}, + }, + { id: 'edge-0.544803293079384', source: '7204', target: '7205', data: {} }, + { id: 'edge-0.640223430679554', source: '6434', target: '7206', data: {} }, + { + id: 'edge-0.23768044461962745', + source: '7207', + target: '7208', + data: {}, + }, + { id: 'edge-0.9097642264588301', source: '7209', target: '7210', data: {} }, + { id: 'edge-0.7983223313356036', source: '5822', target: '7211', data: {} }, + { id: 'edge-0.4903812823779816', source: '5198', target: '7212', data: {} }, + { + id: 'edge-0.13888854642767479', + source: '5386', + target: '5198', + data: {}, + }, + { id: 'edge-0.2162806286243486', source: '6473', target: '7213', data: {} }, + { id: 'edge-0.5200761044173325', source: '23', target: '5971', data: {} }, + { id: 'edge-0.21656006809960981', source: '326', target: '4829', data: {} }, + { id: 'edge-0.5746498263030679', source: '326', target: '7217', data: {} }, + { id: 'edge-0.08733161642013143', source: '326', target: '7218', data: {} }, + { + id: 'edge-0.19838663542424873', + source: '2568', + target: '7220', + data: {}, + }, + { id: 'edge-0.7749534710044481', source: '5714', target: '7221', data: {} }, + { id: 'edge-0.453659355890194', source: '7222', target: '7223', data: {} }, + { + id: 'edge-0.015009605136005133', + source: '7224', + target: '7225', + data: {}, + }, + { id: 'edge-0.7152400915173025', source: '7226', target: '7227', data: {} }, + { + id: 'edge-0.24992555901752467', + source: '7227', + target: '7229', + data: {}, + }, + { id: 'edge-0.9897728513522139', source: '5087', target: '5359', data: {} }, + { id: 'edge-0.7217798802815769', source: '7230', target: '7231', data: {} }, + { id: 'edge-0.2572529336833249', source: '5070', target: '7233', data: {} }, + { id: 'edge-0.6141206492515796', source: '5070', target: '7234', data: {} }, + { id: 'edge-0.6532269100823127', source: '5070', target: '7235', data: {} }, + { id: 'edge-0.9463065603337846', source: '5070', target: '7236', data: {} }, + { + id: 'edge-0.46162320828466097', + source: '5070', + target: '7237', + data: {}, + }, + { id: 'edge-0.2500030717012893', source: '5070', target: '7238', data: {} }, + { id: 'edge-0.5123114236813509', source: '5070', target: '7240', data: {} }, + { id: 'edge-0.869127287226813', source: '5070', target: '7241', data: {} }, + { id: 'edge-0.6461471282823099', source: '5070', target: '7242', data: {} }, + { id: 'edge-0.6519169648872762', source: '7243', target: '5070', data: {} }, + { id: 'edge-0.7799955327648871', source: '5428', target: '5070', data: {} }, + { id: 'edge-0.5133473734081617', source: '7244', target: '7245', data: {} }, + { id: 'edge-0.7130572732089313', source: '7246', target: '7247', data: {} }, + { id: 'edge-0.8872141477127569', source: '7248', target: '7249', data: {} }, + { id: 'edge-0.9287251539799433', source: '7250', target: '7251', data: {} }, + { + id: 'edge-0.18601502547642856', + source: '5897', + target: '7253', + data: {}, + }, + { + id: 'edge-0.21626269305645018', + source: '7254', + target: '7255', + data: {}, + }, + { id: 'edge-0.8314226624102214', source: '7256', target: '7257', data: {} }, + { id: 'edge-0.4723232516239242', source: '7258', target: '7259', data: {} }, + { + id: 'edge-0.37683818316521345', + source: '6148', + target: '7260', + data: {}, + }, + { + id: 'edge-0.18874039163913392', + source: '6148', + target: '7261', + data: {}, + }, + { id: 'edge-0.8892215134347956', source: '321', target: '5361', data: {} }, + { + id: 'edge-0.43380114295122163', + source: '6161', + target: '7262', + data: {}, + }, + { + id: 'edge-0.46226238971399614', + source: '6161', + target: '7264', + data: {}, + }, + { id: 'edge-0.6692912215619582', source: '7265', target: '7266', data: {} }, + { id: 'edge-0.4365144608300351', source: '7265', target: '7267', data: {} }, + { id: 'edge-0.6795927775391044', source: '5842', target: '7268', data: {} }, + { + id: 'edge-0.16399013052707834', + source: '4933', + target: '7269', + data: {}, + }, + { + id: 'edge-0.23542853830396715', + source: '4366', + target: '7271', + data: {}, + }, + { id: 'edge-0.9162787195227617', source: '5201', target: '7272', data: {} }, + { id: 'edge-0.8390685320363207', source: '5797', target: '7274', data: {} }, + { + id: 'edge-0.49900224985786235', + source: '5575', + target: '7275', + data: {}, + }, + { + id: 'edge-0.07590505206730791', + source: '6377', + target: '7276', + data: {}, + }, + { id: 'edge-0.4140268588335201', source: '6244', target: '7278', data: {} }, + { + id: 'edge-0.11803917803039266', + source: '7279', + target: '7280', + data: {}, + }, + { + id: 'edge-0.39317632626163146', + source: '5889', + target: '7281', + data: {}, + }, + { id: 'edge-0.7988949669901957', source: '7282', target: '7283', data: {} }, + { id: 'edge-0.9150902341941383', source: '5308', target: '5206', data: {} }, + { id: 'edge-0.4565780545333671', source: '5210', target: '7286', data: {} }, + { id: 'edge-0.7391846345752608', source: '5210', target: '7287', data: {} }, + { + id: 'edge-0.08560918094627534', + source: '7288', + target: '7289', + data: {}, + }, + { id: 'edge-0.8430935735921239', source: '5320', target: '7290', data: {} }, + { id: 'edge-0.7365972393586344', source: '5320', target: '7291', data: {} }, + { id: 'edge-0.6465202340754392', source: '5320', target: '7292', data: {} }, + { + id: 'edge-0.15970196665476255', + source: '7293', + target: '7294', + data: {}, + }, + { id: 'edge-0.8514219916377208', source: '7295', target: '7296', data: {} }, + { id: 'edge-0.5992001781444758', source: '6475', target: '7297', data: {} }, + { id: 'edge-0.8032558621815229', source: '5829', target: '7297', data: {} }, + { id: 'edge-0.8233187822664587', source: '5997', target: '7298', data: {} }, + { id: 'edge-0.3850540509261109', source: '7299', target: '7300', data: {} }, + { + id: 'edge-0.31679509641026016', + source: '7301', + target: '7302', + data: {}, + }, + { id: 'edge-0.3273401708703727', source: '5669', target: '7303', data: {} }, + { id: 'edge-0.6459075992749574', source: '5955', target: '7304', data: {} }, + { id: 'edge-0.5484262085291227', source: '5036', target: '7305', data: {} }, + { id: 'edge-0.4537135796146978', source: '5036', target: '7306', data: {} }, + { + id: 'edge-0.34270700065987936', + source: '5036', + target: '7307', + data: {}, + }, + { id: 'edge-0.9636442461856345', source: '5036', target: '7308', data: {} }, + { + id: 'edge-0.28507708475872273', + source: '5036', + target: '7309', + data: {}, + }, + { + id: 'edge-0.18182212894332683', + source: '5036', + target: '7310', + data: {}, + }, + { + id: 'edge-0.022313760490327184', + source: '5036', + target: '7311', + data: {}, + }, + { + id: 'edge-0.22561515261668563', + source: '5036', + target: '7312', + data: {}, + }, + { id: 'edge-0.6353324199199897', source: '5609', target: '7313', data: {} }, + { + id: 'edge-0.016762569164823438', + source: '5609', + target: '7314', + data: {}, + }, + { + id: 'edge-0.27365039330112984', + source: '5609', + target: '7315', + data: {}, + }, + { id: 'edge-0.6642774233065019', source: '7316', target: '7317', data: {} }, + { id: 'edge-0.7318972756003075', source: '5442', target: '5613', data: {} }, + { id: 'edge-0.3941275429497826', source: '5682', target: '7318', data: {} }, + { id: 'edge-0.4083851236857108', source: '7319', target: '5613', data: {} }, + { id: 'edge-0.9524751900372075', source: '5733', target: '7320', data: {} }, + { id: 'edge-0.5355755175800363', source: '7321', target: '7322', data: {} }, + { id: 'edge-0.980443775741972', source: '5503', target: '84', data: {} }, + { id: 'edge-0.5644712314900826', source: '7248', target: '7325', data: {} }, + { id: 'edge-0.5216956063860607', source: '7326', target: '7327', data: {} }, + { + id: 'edge-0.40396922193477525', + source: '6203', + target: '7329', + data: {}, + }, + { id: 'edge-0.6422195763145797', source: '7331', target: '7332', data: {} }, + { + id: 'edge-0.34033698781096366', + source: '5154', + target: '7333', + data: {}, + }, + { + id: 'edge-0.28723439329879863', + source: '7334', + target: '7335', + data: {}, + }, + { id: 'edge-0.8001718617579971', source: '7336', target: '7337', data: {} }, + { id: 'edge-0.8845514674220121', source: '7338', target: '7339', data: {} }, + { id: 'edge-0.631507820921906', source: '5410', target: '7340', data: {} }, + { + id: 'edge-0.36297918819694464', + source: '5410', + target: '7341', + data: {}, + }, + { id: 'edge-0.6360743490876157', source: '7342', target: '7343', data: {} }, + { id: 'edge-0.6694177786839155', source: '4817', target: '7343', data: {} }, + { id: 'edge-0.3144892868757003', source: '5387', target: '7344', data: {} }, + { + id: 'edge-0.09716366371755303', + source: '7345', + target: '7346', + data: {}, + }, + { + id: 'edge-0.20663684454470133', + source: '5317', + target: '6267', + data: {}, + }, + { id: 'edge-0.7699547899579142', source: '7347', target: '7348', data: {} }, + { id: 'edge-0.1462623870700972', source: '7349', target: '7350', data: {} }, + { + id: 'edge-0.30456682181617434', + source: '7351', + target: '7352', + data: {}, + }, + { id: 'edge-0.3534165858015026', source: '7353', target: '7354', data: {} }, + { id: 'edge-0.722920618283394', source: '7355', target: '7356', data: {} }, + { + id: 'edge-0.40442639816477066', + source: '7357', + target: '7358', + data: {}, + }, + { id: 'edge-0.7102565072893854', source: '7359', target: '7360', data: {} }, + { id: 'edge-0.6187451240791564', source: '7361', target: '7362', data: {} }, + { + id: 'edge-0.033713357094142804', + source: '7363', + target: '7364', + data: {}, + }, + { id: 'edge-0.4139423366854107', source: '5862', target: '7366', data: {} }, + { + id: 'edge-0.07512288651582755', + source: '7368', + target: '7369', + data: {}, + }, + { id: 'edge-0.3992267981827258', source: '7370', target: '7371', data: {} }, + { + id: 'edge-0.22622112039494513', + source: '7372', + target: '7373', + data: {}, + }, + { id: 'edge-0.8126092627009907', source: '7375', target: '7376', data: {} }, + { id: 'edge-0.2211564562517827', source: '7377', target: '7378', data: {} }, + { + id: 'edge-0.31946500824890856', + source: '7379', + target: '7380', + data: {}, + }, + { + id: 'edge-0.39770055404051474', + source: '7381', + target: '4243', + data: {}, + }, + { + id: 'edge-0.06745030231052751', + source: '5829', + target: '4243', + data: {}, + }, + { id: 'edge-0.3649614052373966', source: '1879', target: '1890', data: {} }, + { + id: 'edge-0.36773074513220805', + source: '1879', + target: '7382', + data: {}, + }, + { id: 'edge-0.6848597135966699', source: '1879', target: '1891', data: {} }, + { id: 'edge-0.8043830676999275', source: '1879', target: '7383', data: {} }, + { id: 'edge-0.6427718131789941', source: '5829', target: '7048', data: {} }, + { + id: 'edge-0.41812360399250825', + source: '5829', + target: '7384', + data: {}, + }, + { id: 'edge-0.9488251495072586', source: '7385', target: '7386', data: {} }, + { id: 'edge-0.7102374044448034', source: '5561', target: '7387', data: {} }, + { id: 'edge-0.6968982169999156', source: '5026', target: '5027', data: {} }, + { id: 'edge-0.2723841974785639', source: '5026', target: '7388', data: {} }, + { id: 'edge-0.268287623044841', source: '7389', target: '7390', data: {} }, + { id: 'edge-0.8833246097002012', source: '7391', target: '7392', data: {} }, + { id: 'edge-0.920077955826125', source: '5389', target: '7393', data: {} }, + { id: 'edge-0.93692468406876', source: '5610', target: '7394', data: {} }, + { + id: 'edge-0.13965274745756795', + source: '7395', + target: '7396', + data: {}, + }, + { id: 'edge-0.9418494985573742', source: '7397', target: '7398', data: {} }, + { + id: 'edge-0.13447236302075183', + source: '7397', + target: '7399', + data: {}, + }, + { id: 'edge-0.3802787895116444', source: '7400', target: '7401', data: {} }, + { id: 'edge-0.9355975001640526', source: '7402', target: '7403', data: {} }, + { id: 'edge-0.8267822700779974', source: '7404', target: '7405', data: {} }, + { id: 'edge-0.2874659848095089', source: '7404', target: '7406', data: {} }, + { + id: 'edge-0.16006251553841522', + source: '7407', + target: '7408', + data: {}, + }, + { id: 'edge-0.7068650525101148', source: '7409', target: '7410', data: {} }, + { id: 'edge-0.7380019579454471', source: '7409', target: '7411', data: {} }, + { id: 'edge-0.8967168245427932', source: '7329', target: '7412', data: {} }, + { + id: 'edge-0.42734792270500654', + source: '7329', + target: '7413', + data: {}, + }, + { id: 'edge-0.5272892779134803', source: '5360', target: '7414', data: {} }, + { id: 'edge-0.5155053624814576', source: '5359', target: '5360', data: {} }, + { + id: 'edge-0.23830368743298957', + source: '7415', + target: '6884', + data: {}, + }, + { + id: 'edge-0.10349603208255043', + source: '5812', + target: '6069', + data: {}, + }, + { + id: 'edge-0.37240880362869033', + source: '7418', + target: '7419', + data: {}, + }, + { + id: 'edge-0.09680144392633494', + source: '7420', + target: '7421', + data: {}, + }, + { id: 'edge-0.495885518095164', source: '7422', target: '7423', data: {} }, + { id: 'edge-0.5703053436192542', source: '7424', target: '7425', data: {} }, + { id: 'edge-0.6055591646732439', source: '7425', target: '7427', data: {} }, + { + id: 'edge-0.11750544092268767', + source: '7428', + target: '7429', + data: {}, + }, + { + id: 'edge-0.30969712620065937', + source: '7430', + target: '7431', + data: {}, + }, + { + id: 'edge-0.32233634723422666', + source: '6230', + target: '7432', + data: {}, + }, + { + id: 'edge-0.45495291218146594', + source: '6230', + target: '7433', + data: {}, + }, + { id: 'edge-0.165859943500825', source: '6230', target: '7434', data: {} }, + { id: 'edge-0.5376393607013197', source: '6230', target: '7435', data: {} }, + { id: 'edge-0.4487387916154677', source: '23', target: '6693', data: {} }, + { id: 'edge-0.6119355447108565', source: '5070', target: '7436', data: {} }, + { id: 'edge-0.2732429111857557', source: '5111', target: '5423', data: {} }, + { id: 'edge-0.9345929874505237', source: '7437', target: '7438', data: {} }, + { + id: 'edge-0.29410575422040774', + source: '4150', + target: '7439', + data: {}, + }, + { + id: 'edge-0.20850987053434689', + source: '6098', + target: '7440', + data: {}, + }, + { + id: 'edge-0.35476149850727046', + source: '7441', + target: '7442', + data: {}, + }, + { id: 'edge-0.4107263118861131', source: '7359', target: '7444', data: {} }, + { id: 'edge-0.1948465118577305', source: '7445', target: '7446', data: {} }, + { + id: 'edge-0.37642755759867486', + source: '5070', + target: '7447', + data: {}, + }, + { id: 'edge-0.3466768306734638', source: '5208', target: '5650', data: {} }, + { id: 'edge-0.9031706898612393', source: '7449', target: '7450', data: {} }, + { id: 'edge-0.08930011528332926', source: '17', target: '7451', data: {} }, + { id: 'edge-0.8798031885250894', source: '31', target: '7451', data: {} }, + { id: 'edge-0.6902335022273873', source: '7452', target: '7453', data: {} }, + { id: 'edge-0.7787193762267421', source: '6366', target: '7455', data: {} }, + { + id: 'edge-0.31519402905853267', + source: '6314', + target: '7456', + data: {}, + }, + { id: 'edge-0.8528942231744459', source: '7457', target: '7458', data: {} }, + { id: 'edge-0.1273433763965297', source: '7459', target: '7460', data: {} }, + { id: 'edge-0.9373936751937928', source: '7461', target: '3881', data: {} }, + { id: 'edge-0.6966800080724769', source: '3881', target: '4937', data: {} }, + { + id: 'edge-0.48606886053990483', + source: '5428', + target: '7463', + data: {}, + }, + { id: 'edge-0.7096508124911287', source: '7464', target: '7465', data: {} }, + { id: 'edge-0.8627784350460836', source: '7466', target: '7467', data: {} }, + { + id: 'edge-0.0014791977962751446', + source: '7468', + target: '7469', + data: {}, + }, + { + id: 'edge-0.07173965074267996', + source: '7470', + target: '7471', + data: {}, + }, + { + id: 'edge-0.14745202265126678', + source: '5029', + target: '7472', + data: {}, + }, + { id: 'edge-0.3067336647744623', source: '7473', target: '6709', data: {} }, + { id: 'edge-0.3355061108504558', source: '5108', target: '5506', data: {} }, + { id: 'edge-0.9728890519671645', source: '6123', target: '7474', data: {} }, + { id: 'edge-0.6524187381879178', source: '6123', target: '7475', data: {} }, + { id: 'edge-0.896100012318666', source: '5386', target: '7476', data: {} }, + { id: 'edge-0.6099860511204711', source: '5386', target: '7478', data: {} }, + { id: 'edge-0.5566816291763503', source: '5386', target: '7480', data: {} }, + { id: 'edge-0.9757944249559283', source: '5386', target: '7481', data: {} }, + { id: 'edge-0.5247757365442443', source: '5386', target: '7482', data: {} }, + { id: 'edge-0.9779195216302328', source: '5386', target: '7483', data: {} }, + { id: 'edge-0.7431382845119097', source: '5442', target: '7484', data: {} }, + { + id: 'edge-0.32447100778161597', + source: '5442', + target: '7485', + data: {}, + }, + { id: 'edge-0.1779221001251916', source: '5442', target: '7486', data: {} }, + { id: 'edge-0.5621833733598935', source: '5442', target: '7487', data: {} }, + { + id: 'edge-0.30295383181011926', + source: '7488', + target: '7489', + data: {}, + }, + { + id: 'edge-0.10935137868236677', + source: '7490', + target: '7491', + data: {}, + }, + { id: 'edge-0.5208729296715897', source: '5028', target: '7492', data: {} }, + { id: 'edge-0.7578113523017993', source: '7493', target: '7494', data: {} }, + { + id: 'edge-0.20957427521088046', + source: '5777', + target: '7495', + data: {}, + }, + { id: 'edge-0.7982217334237875', source: '7496', target: '7497', data: {} }, + { id: 'edge-0.9391974255298143', source: '7498', target: '6197', data: {} }, + { id: 'edge-0.3055725628753594', source: '5660', target: '7499', data: {} }, + { id: 'edge-0.8791709389847244', source: '7500', target: '7501', data: {} }, + { id: 'edge-0.8643686112123778', source: '6550', target: '7502', data: {} }, + { id: 'edge-0.7538191064601116', source: '7503', target: '7504', data: {} }, + { + id: 'edge-0.29032806676688483', + source: '7505', + target: '7506', + data: {}, + }, + { id: 'edge-0.9532374733528493', source: '7507', target: '7508', data: {} }, + { id: 'edge-0.5192735468643632', source: '7509', target: '7510', data: {} }, + { id: 'edge-0.5710545642520735', source: '7509', target: '7511', data: {} }, + { + id: 'edge-0.06791556241908081', + source: '3487', + target: '7512', + data: {}, + }, + { + id: 'edge-0.08013970769754963', + source: '7513', + target: '4094', + data: {}, + }, + { id: 'edge-0.4486815292514963', source: '5751', target: '7515', data: {} }, + { id: 'edge-0.6668051243383204', source: '7516', target: '7517', data: {} }, + { id: 'edge-0.8996442504585798', source: '5757', target: '7518', data: {} }, + { + id: 'edge-0.04267413724559499', + source: '5017', + target: '7521', + data: {}, + }, + { id: 'edge-0.792831915585074', source: '7522', target: '7523', data: {} }, + { id: 'edge-0.8059477872616394', source: '7524', target: '7525', data: {} }, + { id: 'edge-0.4908232060315978', source: '7524', target: '7526', data: {} }, + { id: 'edge-0.9297181805419945', source: '7524', target: '5542', data: {} }, + { id: 'edge-0.8170683693892409', source: '7524', target: '7527', data: {} }, + { id: 'edge-0.1965845886045905', source: '5542', target: '7529', data: {} }, + { + id: 'edge-0.18262801213312718', + source: '7530', + target: '7531', + data: {}, + }, + { id: 'edge-0.2666870769289704', source: '5338', target: '6719', data: {} }, + { + id: 'edge-0.21173803354290577', + source: '5420', + target: '7532', + data: {}, + }, + { id: 'edge-0.9185108660355044', source: '7533', target: '4838', data: {} }, + { + id: 'edge-0.05044744256429534', + source: '5435', + target: '7534', + data: {}, + }, + { + id: 'edge-0.24888084479480277', + source: '6443', + target: '7293', + data: {}, + }, + { id: 'edge-0.9129651612105647', source: '7535', target: '7536', data: {} }, + { + id: 'edge-0.46646387940009837', + source: '6250', + target: '7537', + data: {}, + }, + { id: 'edge-0.7888461757168355', source: '7538', target: '7539', data: {} }, + { + id: 'edge-0.07056327748398261', + source: '7540', + target: '7541', + data: {}, + }, + { + id: 'edge-0.23338268714570454', + source: '7542', + target: '7543', + data: {}, + }, + { id: 'edge-0.4432245906676182', source: '6253', target: '7544', data: {} }, + { id: 'edge-0.2871989027119499', source: '7545', target: '5832', data: {} }, + { id: 'edge-0.3047583657140378', source: '7547', target: '7548', data: {} }, + { id: 'edge-0.7622686348139545', source: '7549', target: '3488', data: {} }, + { + id: 'edge-0.20511862339171705', + source: '3488', + target: '7550', + data: {}, + }, + { id: 'edge-0.5979950943453927', source: '7551', target: '7552', data: {} }, + { id: 'edge-0.6491850668757828', source: '5905', target: '7554', data: {} }, + { + id: 'edge-0.16363979445777477', + source: '7555', + target: '7556', + data: {}, + }, + { id: 'edge-0.9911599691992963', source: '7326', target: '7558', data: {} }, + { id: 'edge-0.2860208290515507', source: '7326', target: '7559', data: {} }, + { + id: 'edge-0.25444173331070186', + source: '7326', + target: '7560', + data: {}, + }, + { + id: 'edge-0.31659321165348664', + source: '5438', + target: '7562', + data: {}, + }, + { id: 'edge-0.9158625576431565', source: '5438', target: '7563', data: {} }, + { id: 'edge-0.8207239403329543', source: '7564', target: '7565', data: {} }, + { + id: 'edge-0.21313846809632664', + source: '7564', + target: '7566', + data: {}, + }, + { + id: 'edge-0.17107222194653882', + source: '7362', + target: '7568', + data: {}, + }, + { + id: 'edge-0.13507154575085667', + source: '7569', + target: '7570', + data: {}, + }, + { id: 'edge-0.5523794313045747', source: '5893', target: '7571', data: {} }, + { id: 'edge-0.9842235241284527', source: '7571', target: '7573', data: {} }, + { + id: 'edge-0.16839222494550943', + source: '5446', + target: '7574', + data: {}, + }, + { + id: 'edge-0.21989404068020035', + source: '4964', + target: '7575', + data: {}, + }, + { id: 'edge-0.6083189886630567', source: '5660', target: '7577', data: {} }, + { + id: 'edge-0.39328036055376403', + source: '7578', + target: '7579', + data: {}, + }, + { + id: 'edge-0.015704152672007643', + source: '7580', + target: '7581', + data: {}, + }, + { + id: 'edge-0.24544601072300454', + source: '5327', + target: '7583', + data: {}, + }, + { + id: 'edge-0.45463637202137397', + source: '5327', + target: '5068', + data: {}, + }, + { id: 'edge-0.8547549920178614', source: '5327', target: '7584', data: {} }, + { + id: 'edge-0.42043110964594166', + source: '6633', + target: '7585', + data: {}, + }, + { id: 'edge-0.7561868954895268', source: '7586', target: '7587', data: {} }, + { + id: 'edge-0.04269738535057144', + source: '7589', + target: '7590', + data: {}, + }, + { id: 'edge-0.6828750845375198', source: '7353', target: '7592', data: {} }, + { + id: 'edge-0.24755437456993357', + source: '5451', + target: '7593', + data: {}, + }, + { id: 'edge-0.06001408343219361', source: '326', target: '7594', data: {} }, + { id: 'edge-0.10192753844120506', source: '321', target: '7595', data: {} }, + { id: 'edge-0.3191284262440295', source: '33', target: '7596', data: {} }, + { id: 'edge-0.3036217718027321', source: '7248', target: '5461', data: {} }, + { id: 'edge-0.6873962525013719', source: '6883', target: '7598', data: {} }, + { id: 'edge-0.6532345141623275', source: '352', target: '7599', data: {} }, + { id: 'edge-0.9507262686413207', source: '7600', target: '7601', data: {} }, + { id: 'edge-0.6414197610803607', source: '7601', target: '7602', data: {} }, + { + id: 'edge-0.07014623593556091', + source: '7603', + target: '7604', + data: {}, + }, + { + id: 'edge-0.22732824829923404', + source: '7605', + target: '7606', + data: {}, + }, + { id: 'edge-0.833353995610306', source: '7605', target: '6822', data: {} }, + { id: 'edge-0.5826081606814566', source: '7605', target: '5954', data: {} }, + { id: 'edge-0.5213324749007213', source: '7605', target: '7607', data: {} }, + { + id: 'edge-0.08345518164083199', + source: '7605', + target: '7608', + data: {}, + }, + { id: 'edge-0.4605340096648334', source: '7609', target: '7610', data: {} }, + { id: 'edge-0.0516518864349218', source: '7611', target: '7612', data: {} }, + { id: 'edge-0.7850889787790389', source: '7522', target: '7613', data: {} }, + { + id: 'edge-0.42913206298796225', + source: '7614', + target: '7615', + data: {}, + }, + { id: 'edge-0.7231259477531786', source: '6390', target: '7616', data: {} }, + { + id: 'edge-0.03911004903448112', + source: '7617', + target: '7618', + data: {}, + }, + { id: 'edge-0.3429279200928743', source: '7612', target: '7619', data: {} }, + { id: 'edge-0.9043805274638426', source: '7620', target: '7621', data: {} }, + { + id: 'edge-0.15359492186464885', + source: '6213', + target: '7622', + data: {}, + }, + { + id: 'edge-0.18961726891238473', + source: '7184', + target: '7623', + data: {}, + }, + { + id: 'edge-0.32452777252084974', + source: '6921', + target: '7624', + data: {}, + }, + { id: 'edge-0.3521960050406161', source: '7625', target: '7626', data: {} }, + { id: 'edge-0.5923832201436687', source: '5564', target: '7627', data: {} }, + { id: 'edge-0.5066938755212447', source: '5669', target: '7629', data: {} }, + { id: 'edge-0.7992507044899015', source: '5669', target: '7630', data: {} }, + { id: 'edge-0.554926605492341', source: '5669', target: '7631', data: {} }, + { id: 'edge-0.5830757430817992', source: '5669', target: '7632', data: {} }, + { id: 'edge-0.6373628044418698', source: '7633', target: '7634', data: {} }, + { id: 'edge-0.5302431219322346', source: '7635', target: '7636', data: {} }, + { + id: 'edge-0.0015299492231419798', + source: '5086', + target: '5832', + data: {}, + }, + { + id: 'edge-0.010322752173179461', + source: '7637', + target: '5086', + data: {}, + }, + { id: 'edge-0.6526981172355548', source: '7637', target: '5484', data: {} }, + { + id: 'edge-0.09074946610908663', + source: '5303', + target: '7638', + data: {}, + }, + { id: 'edge-0.9195033736917291', source: '7639', target: '7640', data: {} }, + { + id: 'edge-0.29661270589253275', + source: '5472', + target: '7641', + data: {}, + }, + { + id: 'edge-0.25659035199699276', + source: '5472', + target: '7642', + data: {}, + }, + { id: 'edge-0.440908727524014', source: '5472', target: '7643', data: {} }, + { id: 'edge-0.2669973918990214', source: '5470', target: '7644', data: {} }, + { id: 'edge-0.7012367877229', source: '5091', target: '7645', data: {} }, + { + id: 'edge-0.13793847922742608', + source: '5091', + target: '5475', + data: {}, + }, + { + id: 'edge-0.16147634089683804', + source: '5095', + target: '7646', + data: {}, + }, + { id: 'edge-0.3419579703257183', source: '7439', target: '7647', data: {} }, + { id: 'edge-0.8718727389045848', source: '7648', target: '5607', data: {} }, + { id: 'edge-0.641729018159124', source: '7650', target: '7651', data: {} }, + { id: 'edge-0.3434505670284893', source: '7212', target: '7652', data: {} }, + { + id: 'edge-0.47471863503490974', + source: '7212', + target: '7653', + data: {}, + }, + { id: 'edge-0.3546373195183359', source: '4172', target: '7654', data: {} }, + { id: 'edge-0.5954732574725001', source: '5364', target: '7655', data: {} }, + { id: 'edge-0.1635380887395086', source: '5502', target: '7656', data: {} }, + { + id: 'edge-0.12177690049033973', + source: '7657', + target: '7658', + data: {}, + }, + { + id: 'edge-0.029917024705096384', + source: '7659', + target: '7660', + data: {}, + }, + { + id: 'edge-0.21353425745885435', + source: '7661', + target: '7662', + data: {}, + }, + { id: 'edge-0.5908758222380042', source: '7661', target: '7663', data: {} }, + { + id: 'edge-0.15068692317202292', + source: '6898', + target: '7664', + data: {}, + }, + { id: 'edge-0.7316752721663042', source: '6898', target: '5530', data: {} }, + { + id: 'edge-0.05319733184729336', + source: '7666', + target: '7667', + data: {}, + }, + { id: 'edge-0.0275593632236395', source: '6359', target: '7668', data: {} }, + { id: 'edge-0.1363588759997565', source: '7669', target: '7670', data: {} }, + { id: 'edge-0.2987900272052648', source: '6197', target: '7671', data: {} }, + { id: 'edge-0.9085060982143234', source: '7672', target: '7673', data: {} }, + { + id: 'edge-0.47158108481289784', + source: '7672', + target: '7674', + data: {}, + }, + { id: 'edge-0.8520738231229086', source: '7672', target: '7675', data: {} }, + { + id: 'edge-0.39027640290713217', + source: '7676', + target: '7677', + data: {}, + }, + { id: 'edge-0.5196191355593922', source: '7679', target: '7680', data: {} }, + { + id: 'edge-0.22879431978586995', + source: '5459', + target: '7681', + data: {}, + }, + { + id: 'edge-0.25080835802356183', + source: '7682', + target: '7683', + data: {}, + }, + { id: 'edge-0.5564258046641506', source: '3847', target: '7684', data: {} }, + { id: 'edge-0.5387653446122413', source: '3847', target: '7685', data: {} }, + { id: 'edge-0.8387529631835176', source: '3847', target: '7686', data: {} }, + { id: 'edge-0.1883855384915194', source: '7687', target: '7688', data: {} }, + { id: 'edge-0.9267574603382096', source: '6003', target: '7689', data: {} }, + { id: 'edge-0.397966351775743', source: '7690', target: '7691', data: {} }, + { id: 'edge-0.4660420415751141', source: '7690', target: '7692', data: {} }, + { id: 'edge-0.0628192058981425', source: '28', target: '6269', data: {} }, + { id: 'edge-0.48465978473008664', source: '30', target: '6269', data: {} }, + { id: 'edge-0.5575104815642742', source: '7048', target: '7695', data: {} }, + { + id: 'edge-0.010185472755116276', + source: '7048', + target: '7696', + data: {}, + }, + { id: 'edge-0.778825675726428', source: '6000', target: '5361', data: {} }, + { id: 'edge-0.7018505885908248', source: '5750', target: '7697', data: {} }, + { + id: 'edge-0.20995345779167485', + source: '7698', + target: '7699', + data: {}, + }, + { id: 'edge-0.711655162385249', source: '6590', target: '7700', data: {} }, + { id: 'edge-0.7049792073254324', source: '5487', target: '7701', data: {} }, + { id: 'edge-0.8090860608332275', source: '5487', target: '7702', data: {} }, + { id: 'edge-0.7945810184761728', source: '4817', target: '5494', data: {} }, + { id: 'edge-0.7373158598954006', source: '7703', target: '7704', data: {} }, + { + id: 'edge-0.14412716929778413', + source: '6870', + target: '7705', + data: {}, + }, + { id: 'edge-0.8665932742814935', source: '5842', target: '7709', data: {} }, + { id: 'edge-0.8593620223761089', source: '5842', target: '7710', data: {} }, + { + id: 'edge-0.14874793598292269', + source: '5610', + target: '7711', + data: {}, + }, + { id: 'edge-0.5501493742878416', source: '1873', target: '7712', data: {} }, + { id: 'edge-0.8752949586229266', source: '1873', target: '7713', data: {} }, + { id: 'edge-0.1286361572196646', source: '1873', target: '7714', data: {} }, + { id: 'edge-0.7302718730904909', source: '1873', target: '7715', data: {} }, + { id: 'edge-0.129218188597237', source: '5324', target: '7717', data: {} }, + { id: 'edge-0.819579874239657', source: '7718', target: '7719', data: {} }, + { id: 'edge-0.963917973496121', source: '6752', target: '7720', data: {} }, + { + id: 'edge-0.16611290608644835', + source: '6752', + target: '7721', + data: {}, + }, + { id: 'edge-0.3784162684364194', source: '7722', target: '7723', data: {} }, + { id: 'edge-0.6930035330315976', source: '7359', target: '7724', data: {} }, + { id: 'edge-0.3205241578306859', source: '7725', target: '7726', data: {} }, + { id: 'edge-0.2093677329760124', source: '4817', target: '7727', data: {} }, + { id: 'edge-0.3565434500680813', source: '6244', target: '7728', data: {} }, + { id: 'edge-0.5518513785671602', source: '7729', target: '5668', data: {} }, + { + id: 'edge-0.004066329002577529', + source: '7730', + target: '7731', + data: {}, + }, + { id: 'edge-0.6906733794674138', source: '7732', target: '7733', data: {} }, + { + id: 'edge-0.006429635163857972', + source: '7734', + target: '7735', + data: {}, + }, + { + id: 'edge-0.17465777595612453', + source: '7734', + target: '7736', + data: {}, + }, + { id: 'edge-0.9946752580292431', source: '6426', target: '7737', data: {} }, + { id: 'edge-0.3347594177611528', source: '7738', target: '7739', data: {} }, + { id: 'edge-0.8601289350208379', source: '7740', target: '7741', data: {} }, + { id: 'edge-0.7971728171985688', source: '7742', target: '7743', data: {} }, + { id: 'edge-0.7281547385696077', source: '7744', target: '7745', data: {} }, + { + id: 'edge-0.34931185054192726', + source: '6705', + target: '7747', + data: {}, + }, + { id: 'edge-0.7485239937012418', source: '7748', target: '7749', data: {} }, + { + id: 'edge-0.04653131081942097', + source: '7750', + target: '7751', + data: {}, + }, + { id: 'edge-0.9826658144476976', source: '7752', target: '7753', data: {} }, + { + id: 'edge-0.25729402234895926', + source: '7449', + target: '7754', + data: {}, + }, + { id: 'edge-0.9906152821082677', source: '7666', target: '7756', data: {} }, + { + id: 'edge-0.027033177519175666', + source: '5842', + target: '7757', + data: {}, + }, + { id: 'edge-0.7144403818942837', source: '7758', target: '7759', data: {} }, + { id: 'edge-0.9179282611934627', source: '1888', target: '7760', data: {} }, + { + id: 'edge-0.06164173217103097', + source: '1888', + target: '7761', + data: {}, + }, + { id: 'edge-0.8356725204872142', source: '7012', target: '1888', data: {} }, + { id: 'edge-0.8591392048865876', source: '3906', target: '7762', data: {} }, + { id: 'edge-0.598287891231482', source: '5334', target: '7763', data: {} }, + { + id: 'edge-0.019934806863111776', + source: '5428', + target: '7764', + data: {}, + }, + { + id: 'edge-0.025570822284113115', + source: '5428', + target: '7765', + data: {}, + }, + { id: 'edge-0.5393479510731352', source: '6972', target: '6518', data: {} }, + { + id: 'edge-0.009130902034224508', + source: '7766', + target: '7767', + data: {}, + }, + { + id: 'edge-0.49128365027779175', + source: '7770', + target: '7771', + data: {}, + }, + { id: 'edge-0.5488055888201782', source: '7772', target: '7773', data: {} }, + { + id: 'edge-0.05365526491078065', + source: '7774', + target: '7775', + data: {}, + }, + { id: 'edge-0.222119417562322', source: '7776', target: '7777', data: {} }, + { id: 'edge-0.9497976034281075', source: '6244', target: '7778', data: {} }, + { + id: 'edge-0.42796095016730673', + source: '6244', + target: '7779', + data: {}, + }, + { id: 'edge-0.9964255549689887', source: '7780', target: '7781', data: {} }, + { + id: 'edge-0.15482541416995987', + source: '7782', + target: '7783', + data: {}, + }, + { id: 'edge-0.7468422110127617', source: '7784', target: '7785', data: {} }, + { + id: 'edge-0.07018392641830795', + source: '7786', + target: '7787', + data: {}, + }, + { + id: 'edge-0.35777425268656393', + source: '7788', + target: '7789', + data: {}, + }, + { + id: 'edge-0.37878253059037426', + source: '5001', + target: '7790', + data: {}, + }, + { + id: 'edge-0.04933240625884472', + source: '5705', + target: '7791', + data: {}, + }, + { id: 'edge-0.9860933498244093', source: '6154', target: '7793', data: {} }, + { + id: 'edge-0.05973231774161203', + source: '7794', + target: '7795', + data: {}, + }, + { id: 'edge-0.3294342343864687', source: '7796', target: '7797', data: {} }, + { + id: 'edge-0.024205132004138097', + source: '7798', + target: '7796', + data: {}, + }, + { id: 'edge-0.805085493480419', source: '7796', target: '7800', data: {} }, + { id: 'edge-0.850305088573176', source: '7801', target: '7802', data: {} }, + { + id: 'edge-0.10017109572679961', + source: '7803', + target: '7804', + data: {}, + }, + { id: 'edge-0.8246581643286681', source: '5191', target: '5276', data: {} }, + { id: 'edge-0.5302204252311624', source: '6693', target: '7805', data: {} }, + { + id: 'edge-0.05399088256348583', + source: '6693', + target: '7806', + data: {}, + }, + { id: 'edge-0.8058367092849861', source: '7807', target: '7808', data: {} }, + { id: 'edge-0.4262696126123202', source: '5966', target: '7809', data: {} }, + { id: 'edge-0.4505918995473468', source: '7810', target: '7811', data: {} }, + { id: 'edge-0.1729039187677992', source: '32', target: '3507', data: {} }, + { id: 'edge-0.8861256529409987', source: '7814', target: '7815', data: {} }, + { id: 'edge-0.8996519040479016', source: '3507', target: '7815', data: {} }, + { id: 'edge-0.3136970199862499', source: '3506', target: '7816', data: {} }, + { id: 'edge-0.0838195846673433', source: '3507', target: '3506', data: {} }, + { id: 'edge-0.569188336167264', source: '3507', target: '5638', data: {} }, + { id: 'edge-0.5660818909120486', source: '7814', target: '7819', data: {} }, + { id: 'edge-0.15839125673069065', source: '30', target: '7820', data: {} }, + { + id: 'edge-0.37564144670022825', + source: '7821', + target: '7822', + data: {}, + }, + { id: 'edge-0.3250744471414293', source: '7823', target: '7824', data: {} }, + { + id: 'edge-0.02710452204762559', + source: '7147', + target: '7826', + data: {}, + }, + { id: 'edge-0.9639465376046699', source: '5338', target: '7827', data: {} }, + { id: 'edge-0.8524925904529066', source: '5070', target: '7828', data: {} }, + { id: 'edge-0.5961520319774123', source: '7829', target: '7830', data: {} }, + { + id: 'edge-0.13399641258758188', + source: '6706', + target: '6705', + data: {}, + }, + { id: 'edge-0.8351775925231242', source: '6590', target: '7833', data: {} }, + { + id: 'edge-0.058469411662415594', + source: '7834', + target: '7835', + data: {}, + }, + { id: 'edge-0.4357455618237782', source: '7834', target: '7836', data: {} }, + { id: 'edge-0.4151157193117154', source: '3903', target: '7837', data: {} }, + { + id: 'edge-0.42313628345920984', + source: '7838', + target: '7839', + data: {}, + }, + { id: 'edge-0.4221886890066102', source: '7840', target: '7841', data: {} }, + { + id: 'edge-0.24877467747424653', + source: '5246', + target: '7842', + data: {}, + }, + { + id: 'edge-0.36974394932007737', + source: '7786', + target: '7844', + data: {}, + }, + { id: 'edge-0.8858041184940357', source: '7786', target: '7845', data: {} }, + { + id: 'edge-0.06632657935753827', + source: '7846', + target: '7847', + data: {}, + }, + { + id: 'edge-0.26085110799171307', + source: '5365', + target: '7848', + data: {}, + }, + { + id: 'edge-0.09900537663935172', + source: '3154', + target: '7466', + data: {}, + }, + { id: 'edge-0.9536296947598499', source: '7849', target: '7850', data: {} }, + { + id: 'edge-0.10699748532556885', + source: '4172', + target: '7851', + data: {}, + }, + { id: 'edge-0.623281292984927', source: '7852', target: '7853', data: {} }, + { id: 'edge-0.714542054584024', source: '7854', target: '7855', data: {} }, + { id: 'edge-0.8371953960470213', source: '7856', target: '7857', data: {} }, + { + id: 'edge-0.06402605066687572', + source: '6244', + target: '7859', + data: {}, + }, + { id: 'edge-0.5393975135593407', source: '7860', target: '7861', data: {} }, + { id: 'edge-0.8267517433700671', source: '7862', target: '7863', data: {} }, + { + id: 'edge-0.28937340697979685', + source: '5649', + target: '7865', + data: {}, + }, + { id: 'edge-0.8233678692378199', source: '5642', target: '7866', data: {} }, + { id: 'edge-0.3125613671001408', source: '5642', target: '7867', data: {} }, + { id: 'edge-0.5306224846764882', source: '5236', target: '5642', data: {} }, + { + id: 'edge-0.10506889839466127', + source: '5757', + target: '7869', + data: {}, + }, + { id: 'edge-0.5712701152327146', source: '5757', target: '7870', data: {} }, + { id: 'edge-0.5314905647329182', source: '5757', target: '7872', data: {} }, + { + id: 'edge-0.0035565024447739013', + source: '5757', + target: '6817', + data: {}, + }, + { + id: 'edge-0.41834555752238245', + source: '5252', + target: '7875', + data: {}, + }, + { id: 'edge-0.2497249041269407', source: '7876', target: '3184', data: {} }, + { id: 'edge-0.6193098772754733', source: '5389', target: '7878', data: {} }, + { + id: 'edge-0.0012756857870157567', + source: '7879', + target: '7880', + data: {}, + }, + { id: 'edge-0.7416427076693839', source: '5249', target: '7881', data: {} }, + { id: 'edge-0.5637341951358872', source: '5249', target: '7882', data: {} }, + { + id: 'edge-0.24576521823251674', + source: '4941', + target: '5249', + data: {}, + }, + { id: 'edge-0.3854887243754681', source: '5822', target: '5249', data: {} }, + { id: 'edge-0.8532076506797106', source: '4817', target: '5249', data: {} }, + { id: 'edge-0.7682446820822422', source: '5249', target: '7883', data: {} }, + { id: 'edge-0.2885213303906655', source: '5249', target: '6802', data: {} }, + { id: 'edge-0.5233110229034346', source: '7884', target: '7885', data: {} }, + { id: 'edge-0.9031659565493644', source: '7886', target: '7887', data: {} }, + { + id: 'edge-0.16356578986795633', + source: '7888', + target: '7889', + data: {}, + }, + { + id: 'edge-0.45094463117843553', + source: '5653', + target: '7890', + data: {}, + }, + { id: 'edge-0.7772591842007273', source: '7891', target: '7892', data: {} }, + { id: 'edge-0.9042975092511232', source: '6299', target: '7893', data: {} }, + { id: 'edge-0.7999062453105292', source: '5859', target: '7894', data: {} }, + { id: 'edge-0.6617565761232094', source: '7895', target: '5626', data: {} }, + { id: 'edge-0.7199584086797983', source: '5929', target: '7897', data: {} }, + { + id: 'edge-0.49598901712848575', + source: '5929', + target: '7898', + data: {}, + }, + { id: 'edge-0.2742940786089543', source: '5929', target: '7899', data: {} }, + { id: 'edge-0.8327233707173494', source: '7620', target: '7900', data: {} }, + { id: 'edge-0.5784429344383242', source: '5862', target: '7901', data: {} }, + { id: 'edge-0.5994156414142313', source: '5862', target: '7902', data: {} }, + { id: 'edge-0.9712139320452362', source: '7903', target: '7904', data: {} }, + { + id: 'edge-0.19231490088265102', + source: '7905', + target: '7906', + data: {}, + }, + { id: 'edge-0.8574284399419387', source: '5664', target: '7907', data: {} }, + { id: 'edge-0.904176122398908', source: '5087', target: '5665', data: {} }, + { + id: 'edge-0.025463369901686628', + source: '7908', + target: '6380', + data: {}, + }, + { + id: 'edge-0.010829792927547377', + source: '7909', + target: '7910', + data: {}, + }, + { id: 'edge-0.9285176889719526', source: '5338', target: '7911', data: {} }, + { id: 'edge-0.2732258637056386', source: '7912', target: '7913', data: {} }, + { id: 'edge-0.274427047934249', source: '4817', target: '5668', data: {} }, + { id: 'edge-0.8422540222219148', source: '5668', target: '7914', data: {} }, + { id: 'edge-0.7367212983165312', source: '5668', target: '7915', data: {} }, + { id: 'edge-0.9420322897731481', source: '5668', target: '7916', data: {} }, + { id: 'edge-0.4137652089637083', source: '5668', target: '7917', data: {} }, + { id: 'edge-0.5205190319201394', source: '5654', target: '7919', data: {} }, + { id: 'edge-0.7941366619793675', source: '5654', target: '7920', data: {} }, + { id: 'edge-0.9486984893773511', source: '5308', target: '7921', data: {} }, + { id: 'edge-0.8587922911551544', source: '4242', target: '7922', data: {} }, + { id: 'edge-0.9584245515860892', source: '7923', target: '7924', data: {} }, + { id: 'edge-0.5332862911889455', source: '7498', target: '7925', data: {} }, + { id: 'edge-0.5989869705103383', source: '7926', target: '7927', data: {} }, + { id: 'edge-0.9834314482584972', source: '7928', target: '7929', data: {} }, + { id: 'edge-0.3380261902308277', source: '5733', target: '7132', data: {} }, + { id: 'edge-0.8627840809458001', source: '7930', target: '7931', data: {} }, + { + id: 'edge-0.37866960962071694', + source: '4817', + target: '7932', + data: {}, + }, + { + id: 'edge-0.08076568344090451', + source: '7933', + target: '7934', + data: {}, + }, + { id: 'edge-0.230639733065773', source: '5355', target: '7935', data: {} }, + { + id: 'edge-0.04756094680277778', + source: '5256', + target: '7936', + data: {}, + }, + { id: 'edge-0.8047478167066566', source: '7937', target: '7938', data: {} }, + { id: 'edge-0.9347083779983534', source: '7939', target: '7940', data: {} }, + { id: 'edge-0.5137863917287748', source: '5263', target: '7942', data: {} }, + { id: 'edge-0.5845657556358408', source: '1980', target: '7943', data: {} }, + { id: 'edge-0.47563152755071303', source: '317', target: '1980', data: {} }, + { + id: 'edge-0.49731452167283496', + source: '7945', + target: '7946', + data: {}, + }, + { id: 'edge-0.1204667204366856', source: '7947', target: '7948', data: {} }, + { + id: 'edge-0.06635599652222757', + source: '5455', + target: '7949', + data: {}, + }, + { id: 'edge-0.1087230546383886', source: '7950', target: '7951', data: {} }, + { id: 'edge-0.7840877489944578', source: '36', target: '7952', data: {} }, + { id: 'edge-0.8374166512151513', source: '36', target: '7953', data: {} }, + { id: 'edge-0.5599711618911267', source: '7954', target: '7955', data: {} }, + { id: 'edge-0.8536654131954191', source: '7956', target: '7957', data: {} }, + { id: 'edge-0.9078894544960541', source: '5273', target: '5274', data: {} }, + { id: 'edge-0.8616236366540655', source: '5275', target: '5276', data: {} }, + { id: 'edge-0.6364989541870618', source: '4946', target: '5284', data: {} }, + { + id: 'edge-0.16926770576657457', + source: '4950', + target: '5087', + data: {}, + }, + { + id: 'edge-0.028085059756288944', + source: '4954', + target: '4955', + data: {}, + }, + { id: 'edge-0.3331230250809014', source: '5296', target: '5297', data: {} }, + { id: 'edge-0.9914049728459389', source: '4972', target: '5316', data: {} }, + { id: 'edge-0.5288107618312916', source: '4972', target: '5318', data: {} }, + { id: 'edge-0.9156872708241885', source: '4977', target: '4993', data: {} }, + { id: 'edge-0.4297070517407189', source: '5326', target: '5327', data: {} }, + { id: 'edge-0.9848088587007167', source: '3', target: '30', data: {} }, + { id: 'edge-0.4099186635230736', source: '4987', target: '5346', data: {} }, + { + id: 'edge-0.24747868427682973', + source: '5349', + target: '5350', + data: {}, + }, + { id: 'edge-0.862423604087428', source: '4999', target: '4364', data: {} }, + { id: 'edge-0.6324068617397189', source: '4', target: '4938', data: {} }, + { id: 'edge-0.5408424098681817', source: '4', target: '5015', data: {} }, + { id: 'edge-0.7982029802057957', source: '4', target: '4934', data: {} }, + { id: 'edge-0.002808007694565129', source: '4', target: '289', data: {} }, + { id: 'edge-0.9803991569571575', source: '3887', target: '4934', data: {} }, + { id: 'edge-0.6756216691401371', source: '3887', target: '4935', data: {} }, + { id: 'edge-0.677311775934158', source: '3897', target: '4194', data: {} }, + { id: 'edge-0.6519354169522198', source: '3872', target: '140', data: {} }, + { + id: 'edge-0.15042688558438777', + source: '5306', + target: '5307', + data: {}, + }, + { + id: 'edge-0.20490583222209757', + source: '4962', + target: '5295', + data: {}, + }, + { id: 'edge-0.2929214649088503', source: '4962', target: '4964', data: {} }, + { id: 'edge-0.8625336449029943', source: '4960', target: '4961', data: {} }, + { + id: 'edge-0.24850352559270683', + source: '4960', + target: '5070', + data: {}, + }, + { id: 'edge-0.8757076279671145', source: '5307', target: '5297', data: {} }, + { id: 'edge-0.06769178011720922', source: '6', target: '5313', data: {} }, + { id: 'edge-0.5958905713458758', source: '6', target: '475', data: {} }, + { id: 'edge-0.16349275410649078', source: '6', target: '476', data: {} }, + { + id: 'edge-0.49432883404901884', + source: '5319', + target: '5320', + data: {}, + }, + { id: 'edge-0.8776465319017888', source: '5323', target: '5324', data: {} }, + { + id: 'edge-0.17102393038171249', + source: '4993', + target: '5256', + data: {}, + }, + { + id: 'edge-0.31297977058122606', + source: '4984', + target: '5339', + data: {}, + }, + { id: 'edge-0.9620702926136511', source: '5335', target: '5336', data: {} }, + { id: 'edge-0.6616555523203056', source: '4173', target: '4987', data: {} }, + { id: 'edge-0.5363485619426673', source: '4173', target: '5340', data: {} }, + { + id: 'edge-0.09784283913958758', + source: '4173', + target: '4917', + data: {}, + }, + { id: 'edge-0.5266885862643123', source: '8', target: '5348', data: {} }, + { id: 'edge-0.035830091199931635', source: '8', target: '4937', data: {} }, + { id: 'edge-0.06871087776101881', source: '8', target: '170', data: {} }, + { id: 'edge-0.035429247499965344', source: '8', target: '1284', data: {} }, + { id: 'edge-0.9644502319294226', source: '8', target: '30', data: {} }, + { id: 'edge-0.9585872937792896', source: '5001', target: '5378', data: {} }, + { + id: 'edge-0.26662806037793074', + source: '5004', + target: '5390', + data: {}, + }, + { + id: 'edge-0.03867777844942144', + source: '4174', + target: '5304', + data: {}, + }, + { id: 'edge-0.3673231693386969', source: '4174', target: '29', data: {} }, + { id: 'edge-0.7093520026939006', source: '5397', target: '4926', data: {} }, + { + id: 'edge-0.48145885058401294', + source: '5397', + target: '5064', + data: {}, + }, + { id: 'edge-0.9035014107708843', source: '5017', target: '5405', data: {} }, + { + id: 'edge-0.44551395532881033', + source: '5408', + target: '5289', + data: {}, + }, + { id: 'edge-0.518245705369559', source: '5116', target: '5511', data: {} }, + { id: 'edge-0.7723496198272877', source: '5120', target: '4129', data: {} }, + { + id: 'edge-0.13255541072511945', + source: '5512', + target: '5516', + data: {}, + }, + { + id: 'edge-0.15677521212918388', + source: '5519', + target: '5521', + data: {}, + }, + { + id: 'edge-0.30208304738352765', + source: '5519', + target: '5506', + data: {}, + }, + { id: 'edge-0.5005054349714331', source: '2812', target: '5529', data: {} }, + { + id: 'edge-0.29145354400789936', + source: '5129', + target: '3880', + data: {}, + }, + { + id: 'edge-0.29678636848979445', + source: '5129', + target: '5515', + data: {}, + }, + { id: 'edge-0.9606522268364817', source: '5533', target: '5534', data: {} }, + { id: 'edge-0.7784201471689098', source: '5532', target: '5303', data: {} }, + { id: 'edge-0.3988870776786997', source: '5134', target: '5536', data: {} }, + { id: 'edge-0.7011218155513801', source: '5322', target: '5531', data: {} }, + { + id: 'edge-0.45658178697919505', + source: '3897', + target: '3504', + data: {}, + }, + { + id: 'edge-0.30833572588977365', + source: '5539', + target: '5540', + data: {}, + }, + { id: 'edge-0.588653741998348', source: '5537', target: '5538', data: {} }, + { + id: 'edge-0.005510504094736746', + source: '5143', + target: '5017', + data: {}, + }, + { id: 'edge-0.070411506045438', source: '5141', target: '5142', data: {} }, + { + id: 'edge-0.35401645759615086', + source: '5157', + target: '3479', + data: {}, + }, + { + id: 'edge-0.17797021808291236', + source: '5148', + target: '4823', + data: {}, + }, + { id: 'edge-0.6177784097547208', source: '5148', target: '5549', data: {} }, + { id: 'edge-0.7312070171355385', source: '5146', target: '5163', data: {} }, + { + id: 'edge-0.06545343522025626', + source: '1854', + target: '5561', + data: {}, + }, + { id: 'edge-0.7334113196436762', source: '5160', target: '5565', data: {} }, + { + id: 'edge-0.22635693240503052', + source: '5169', + target: '5566', + data: {}, + }, + { + id: 'edge-0.08203024734019393', + source: '1243', + target: '3220', + data: {}, + }, + { + id: 'edge-0.10247543045019025', + source: '5177', + target: '5564', + data: {}, + }, + { id: 'edge-0.3521359362087575', source: '16', target: '1985', data: {} }, + { id: 'edge-0.5740074901482861', source: '16', target: '1986', data: {} }, + { id: 'edge-0.5001170974291811', source: '16', target: '5076', data: {} }, + { id: 'edge-0.4344263662407184', source: '5571', target: '5573', data: {} }, + { id: 'edge-0.6175429155810053', source: '5571', target: '5572', data: {} }, + { id: 'edge-0.08008502686028418', source: '3904', target: '36', data: {} }, + { + id: 'edge-0.25277302141108704', + source: '5569', + target: '5068', + data: {}, + }, + { + id: 'edge-0.21809522988215635', + source: '5175', + target: '5176', + data: {}, + }, + { + id: 'edge-0.10810833275248077', + source: '5186', + target: '3791', + data: {}, + }, + { + id: 'edge-0.15858388174280091', + source: '5186', + target: '3678', + data: {}, + }, + { id: 'edge-0.8127363786250932', source: '5186', target: '3645', data: {} }, + { id: 'edge-0.6275912934182131', source: '5577', target: '5578', data: {} }, + { id: 'edge-0.700712533564815', source: '3506', target: '5638', data: {} }, + { id: 'edge-0.09359216887531074', source: '3506', target: '32', data: {} }, + { id: 'edge-0.9772643291978615', source: '3904', target: '5327', data: {} }, + { + id: 'edge-0.010493390013960768', + source: '5308', + target: '5585', + data: {}, + }, + { + id: 'edge-0.32684691770929275', + source: '5308', + target: '5586', + data: {}, + }, + { id: 'edge-0.8648030219485392', source: '5114', target: '5113', data: {} }, + { id: 'edge-0.7979412388706464', source: '5114', target: '5197', data: {} }, + { id: 'edge-0.4577502478083342', source: '5114', target: '5588', data: {} }, + { id: 'edge-0.7014019540032943', source: '5114', target: '5368', data: {} }, + { id: 'edge-0.953908467001737', source: '5592', target: '316', data: {} }, + { id: 'edge-0.9090714077547715', source: '5194', target: '5028', data: {} }, + { id: 'edge-0.831070277975789', source: '5594', target: '4748', data: {} }, + { id: 'edge-0.8763896059880201', source: '5469', target: '166', data: {} }, + { id: 'edge-0.4237119373327467', source: '5198', target: '5199', data: {} }, + { id: 'edge-0.5606684701720965', source: '170', target: '3848', data: {} }, + { id: 'edge-0.44436926499068563', source: '170', target: '5015', data: {} }, + { id: 'edge-0.08320449806578112', source: '170', target: '3635', data: {} }, + { id: 'edge-0.7961693626698427', source: '170', target: '5208', data: {} }, + { id: 'edge-0.7362440092969194', source: '170', target: '5087', data: {} }, + { id: 'edge-0.8181514324857713', source: '170', target: '5604', data: {} }, + { id: 'edge-0.05533938255881288', source: '170', target: '30', data: {} }, + { id: 'edge-0.68387048705093', source: '170', target: '289', data: {} }, + { + id: 'edge-0.45632062382656513', + source: '5611', + target: '5380', + data: {}, + }, + { + id: 'edge-0.35124486785217135', + source: '5225', + target: '5068', + data: {}, + }, + { + id: 'edge-0.07006564588941688', + source: '5613', + target: '5614', + data: {}, + }, + { id: 'edge-0.3458017187707536', source: '5617', target: '5618', data: {} }, + { id: 'edge-0.6108490028584108', source: '5615', target: '5616', data: {} }, + { id: 'edge-0.3654422282326302', source: '5620', target: '5621', data: {} }, + { id: 'edge-0.9458389523495476', source: '5503', target: '5504', data: {} }, + { id: 'edge-0.2648432163469705', source: '5318', target: '3889', data: {} }, + { id: 'edge-0.5348735121140404', source: '4817', target: '5499', data: {} }, + { id: 'edge-0.3934688193758209', source: '5401', target: '5403', data: {} }, + { id: 'edge-0.3369979532766252', source: '5401', target: '5402', data: {} }, + { id: 'edge-0.8154092888609092', source: '5087', target: '337', data: {} }, + { id: 'edge-0.7238884268651127', source: '5023', target: '5068', data: {} }, + { id: 'edge-0.04457621394071243', source: '5029', target: '390', data: {} }, + { id: 'edge-0.4405262186184169', source: '5037', target: '5419', data: {} }, + { id: 'edge-0.6806150477277635', source: '5040', target: '5371', data: {} }, + { id: 'edge-0.4883441496620706', source: '5040', target: '5428', data: {} }, + { id: 'edge-0.9057647235905293', source: '5028', target: '5372', data: {} }, + { id: 'edge-0.2586278048587649', source: '5047', target: '5431', data: {} }, + { + id: 'edge-0.38891675993198627', + source: '5338', + target: '5210', + data: {}, + }, + { id: 'edge-0.5326591329524846', source: '5435', target: '5436', data: {} }, + { id: 'edge-0.19591031685386429', source: '1812', target: '182', data: {} }, + { id: 'edge-0.7106188608162809', source: '5060', target: '5412', data: {} }, + { id: 'edge-0.9064055009625969', source: '5064', target: '5066', data: {} }, + { id: 'edge-0.6711838199766182', source: '5352', target: '5354', data: {} }, + { + id: 'edge-0.004996926814502256', + source: '5062', + target: '5355', + data: {}, + }, + { id: 'edge-0.6283350038848723', source: '5070', target: '5455', data: {} }, + { id: 'edge-0.3189068959297541', source: '5076', target: '1953', data: {} }, + { + id: 'edge-0.06471954374953692', + source: '5459', + target: '5460', + data: {}, + }, + { + id: 'edge-0.11076848088468694', + source: '5068', + target: '5299', + data: {}, + }, + { id: 'edge-0.5299047880943564', source: '5068', target: '5362', data: {} }, + { id: 'edge-0.65237036207229', source: '5462', target: '5463', data: {} }, + { id: 'edge-0.9598891535373661', source: '5465', target: '5466', data: {} }, + { id: 'edge-0.5750330395812937', source: '5086', target: '5464', data: {} }, + { id: 'edge-0.5119085188531081', source: '5082', target: '5468', data: {} }, + { id: 'edge-0.5256024108764119', source: '5470', target: '5186', data: {} }, + { + id: 'edge-0.10035897613974654', + source: '5472', + target: '5473', + data: {}, + }, + { id: 'edge-0.8025817062178942', source: '5091', target: '4927', data: {} }, + { id: 'edge-0.9279768733746374', source: '5091', target: '4930', data: {} }, + { id: 'edge-0.4095107653114951', source: '5476', target: '5477', data: {} }, + { id: 'edge-0.4056644302391672', source: '5093', target: '5163', data: {} }, + { + id: 'edge-0.03532934469594373', + source: '5364', + target: '5365', + data: {}, + }, + { + id: 'edge-0.32139649828237427', + source: '5369', + target: '5370', + data: {}, + }, + { id: 'edge-0.877623049497918', source: '27', target: '5478', data: {} }, + { id: 'edge-0.7615925595656465', source: '5485', target: '5484', data: {} }, + { id: 'edge-0.9250116118087353', source: '5479', target: '5480', data: {} }, + { + id: 'edge-0.27723364939977935', + source: '5479', + target: '5210', + data: {}, + }, + { id: 'edge-0.22540588095058478', source: '5092', target: '326', data: {} }, + { + id: 'edge-0.27536955159003296', + source: '5101', + target: '5246', + data: {}, + }, + { id: 'edge-0.3439227527737849', source: '5491', target: '5492', data: {} }, + { id: 'edge-0.9528384122985811', source: '5324', target: '5502', data: {} }, + { id: 'edge-0.5151322075280691', source: '5629', target: '5065', data: {} }, + { id: 'edge-0.8195887365767116', source: '5632', target: '5634', data: {} }, + { + id: 'edge-0.13958316375775404', + source: '5238', + target: '5171', + data: {}, + }, + { id: 'edge-0.5892924539231097', source: '5636', target: '5637', data: {} }, + { id: 'edge-0.7262965499224849', source: '4920', target: '4018', data: {} }, + { + id: 'edge-0.31495577077597825', + source: '4920', + target: '4150', + data: {}, + }, + { id: 'edge-0.9376807330514678', source: '4942', target: '4004', data: {} }, + { id: 'edge-0.0480775446152959', source: '32', target: '3920', data: {} }, + { id: 'edge-0.24004146513143199', source: '32', target: '303', data: {} }, + { id: 'edge-0.4417410195610272', source: '32', target: '3506', data: {} }, + { id: 'edge-0.4546159766745983', source: '5252', target: '5151', data: {} }, + { + id: 'edge-0.43337826967334436', + source: '5252', + target: '5152', + data: {}, + }, + { id: 'edge-0.568638151049746', source: '5249', target: '5646', data: {} }, + { id: 'edge-0.14805207891441707', source: '33', target: '5186', data: {} }, + { id: 'edge-0.6347031696046395', source: '33', target: '3533', data: {} }, + { id: 'edge-0.4539428891886217', source: '33', target: '4916', data: {} }, + { id: 'edge-0.5443468527306143', source: '5659', target: '5660', data: {} }, + { id: 'edge-0.4683157841431995', source: '5664', target: '5665', data: {} }, + { id: 'edge-0.1992164618686476', source: '5667', target: '5318', data: {} }, + { id: 'edge-0.9328351820917742', source: '5282', target: '5598', data: {} }, + { id: 'edge-0.6519246673369004', source: '4735', target: '3790', data: {} }, + { id: 'edge-0.4453180107133925', source: '4735', target: '5661', data: {} }, + { + id: 'edge-0.48243721546486773', + source: '4733', + target: '5262', + data: {}, + }, + { id: 'edge-0.3200608903695983', source: '5259', target: '5656', data: {} }, + { id: 'edge-0.7257681580475144', source: '5256', target: '5375', data: {} }, + { + id: 'edge-0.016974440070785857', + source: '5256', + target: '5358', + data: {}, + }, + { id: 'edge-0.4981164643965008', source: '5256', target: '5672', data: {} }, + { + id: 'edge-0.11815648055083283', + source: '5256', + target: '5267', + data: {}, + }, + { id: 'edge-0.4453196617455979', source: '5455', target: '5509', data: {} }, + { + id: 'edge-0.03613858180993734', + source: '4954', + target: '5431', + data: {}, + }, + { id: 'edge-0.8855678560006941', source: '5490', target: '5489', data: {} }, + { id: 'edge-0.27381557290026226', source: '3', target: '5118', data: {} }, + { id: 'edge-0.9407801048916025', source: '3', target: '5110', data: {} }, + { id: 'edge-0.7451981343531691', source: '163', target: '5213', data: {} }, + { id: 'edge-0.1722038248664357', source: '3889', target: '5093', data: {} }, + { id: 'edge-0.7011737978621961', source: '3889', target: '5013', data: {} }, + { id: 'edge-0.7350047993179851', source: '4173', target: '5461', data: {} }, + { + id: 'edge-0.19395401983565463', + source: '4823', + target: '5484', + data: {}, + }, + { id: 'edge-0.2445702194597712', source: '8', target: '5304', data: {} }, + { + id: 'edge-0.16036559930831196', + source: '5655', + target: '5654', + data: {}, + }, + { + id: 'edge-0.33641663266270716', + source: '5409', + target: '5023', + data: {}, + }, + { id: 'edge-0.6007659318150516', source: '5430', target: '5028', data: {} }, + { + id: 'edge-0.12363121679391842', + source: '5430', + target: '5487', + data: {}, + }, + { id: 'edge-0.7796167442451594', source: '15', target: '317', data: {} }, + { id: 'edge-0.2202564330371557', source: '5590', target: '5589', data: {} }, + { id: 'edge-0.4720358285729256', source: '5308', target: '5393', data: {} }, + { id: 'edge-0.5421911228782441', source: '5308', target: '5496', data: {} }, + { + id: 'edge-0.25315924865785755', + source: '5308', + target: '3487', + data: {}, + }, + { id: 'edge-0.3758214312687378', source: '5308', target: '5447', data: {} }, + { id: 'edge-0.9697494323985572', source: '5114', target: '5097', data: {} }, + { id: 'edge-0.5793067273799932', source: '5469', target: '5088', data: {} }, + { + id: 'edge-0.28021349557123076', + source: '5407', + target: '5406', + data: {}, + }, + { id: 'edge-0.47118564482405345', source: '170', target: '5213', data: {} }, + { id: 'edge-0.8202513376462499', source: '170', target: '5650', data: {} }, + { + id: 'edge-0.010150155047123688', + source: '5396', + target: '5311', + data: {}, + }, + { + id: 'edge-0.03385387164600595', + source: '5496', + target: '5106', + data: {}, + }, + { id: 'edge-0.2140502021510251', source: '5087', target: '5129', data: {} }, + { id: 'edge-0.2867150860973602', source: '5087', target: '5418', data: {} }, + { id: 'edge-0.9883304250812466', source: '5087', target: '5040', data: {} }, + { id: 'edge-0.1410394387755982', source: '5023', target: '5225', data: {} }, + { id: 'edge-0.25107593525717364', source: '5647', target: '33', data: {} }, + { + id: 'edge-0.47117413429673194', + source: '5345', + target: '4823', + data: {}, + }, + { id: 'edge-0.5148657239451213', source: '5236', target: '3906', data: {} }, + { id: 'edge-0.6266986556580352', source: '5386', target: '5385', data: {} }, + { id: 'edge-0.20881141295436167', source: '4924', target: '33', data: {} }, + { + id: 'edge-0.38454401093403545', + source: '5623', + target: '5622', + data: {}, + }, + { id: 'edge-0.21391098284066312', source: '25', target: '3487', data: {} }, + { id: 'edge-0.5866301965996354', source: '5444', target: '5443', data: {} }, + { id: 'edge-0.8445327844759154', source: '5501', target: '5324', data: {} }, + { id: 'edge-0.6039655006087932', source: '5013', target: '5093', data: {} }, + { id: 'edge-0.8054905592484203', source: '5279', target: '5496', data: {} }, + { id: 'edge-0.6722195114696428', source: '30', target: '5292', data: {} }, + { id: 'edge-0.9643851019281084', source: '30', target: '5242', data: {} }, + { id: 'edge-0.7078595085786805', source: '5439', target: '5438', data: {} }, + { id: 'edge-0.9190622160972337', source: '5256', target: '5113', data: {} }, + { id: 'edge-0.5591107389484489', source: '3897', target: '8279', data: {} }, + { id: 'edge-0.2757587595812838', source: '3897', target: '8278', data: {} }, + { id: 'edge-0.3501291946080587', source: '3897', target: '8277', data: {} }, + { id: 'edge-0.9830614200688439', source: '5129', target: '5130', data: {} }, + { + id: 'edge-0.01766987450112789', + source: '5129', + target: '8274', + data: {}, + }, + { id: 'edge-0.7665546215493562', source: '5129', target: '8273', data: {} }, + { id: 'edge-0.7466824648947441', source: '5126', target: '8272', data: {} }, + { id: 'edge-0.7263755513885901', source: '5520', target: '8271', data: {} }, + { id: 'edge-0.6361456681322113', source: '5120', target: '8270', data: {} }, + { + id: 'edge-0.40705412026262566', + source: '5120', + target: '5122', + data: {}, + }, + { id: 'edge-0.6042046920693904', source: '5120', target: '5121', data: {} }, + { id: 'edge-0.5318710183224897', source: '8264', target: '7257', data: {} }, + { id: 'edge-0.8700842616240483', source: '5397', target: '8268', data: {} }, + { id: 'edge-0.6181052665513924', source: '5397', target: '8267', data: {} }, + { id: 'edge-0.4383222091495329', source: '5397', target: '8265', data: {} }, + { id: 'edge-0.4010914008328965', source: '5397', target: '8264', data: {} }, + { id: 'edge-0.6220033809724526', source: '8227', target: '1266', data: {} }, + { id: 'edge-0.8772888300009984', source: '5349', target: '8228', data: {} }, + { id: 'edge-0.0943758969745403', source: '8229', target: '8230', data: {} }, + { + id: 'edge-0.12412046244051145', + source: '5646', + target: '8231', + data: {}, + }, + { id: 'edge-0.19559229119444654', source: '4', target: '5242', data: {} }, + { id: 'edge-0.9168197705939236', source: '3889', target: '5096', data: {} }, + { id: 'edge-0.6490553014718177', source: '4958', target: '4966', data: {} }, + { id: 'edge-0.8697105134955401', source: '4958', target: '8232', data: {} }, + { id: 'edge-0.6787012616155437', source: '4958', target: '8233', data: {} }, + { id: 'edge-0.2754960309772887', source: '4958', target: '5311', data: {} }, + { id: 'edge-0.4088687317314401', source: '6', target: '3796', data: {} }, + { id: 'edge-0.9798432388240725', source: '6', target: '8234', data: {} }, + { id: 'edge-0.8712827327848713', source: '6', target: '8235', data: {} }, + { id: 'edge-0.670972055813102', source: '6', target: '8236', data: {} }, + { id: 'edge-0.29978873974778053', source: '6', target: '8237', data: {} }, + { id: 'edge-0.23914955289128725', source: '6', target: '4', data: {} }, + { id: 'edge-0.9374004148400146', source: '6', target: '4950', data: {} }, + { id: 'edge-0.3991745360867378', source: '4987', target: '8226', data: {} }, + { + id: 'edge-0.28652545836083587', + source: '4977', + target: '4977', + data: {}, + }, + { id: 'edge-0.2071259144865214', source: '4972', target: '8225', data: {} }, + { + id: 'edge-0.19371489332295533', + source: '4972', + target: '4974', + data: {}, + }, + { id: 'edge-0.9418221663404083', source: '4972', target: '8223', data: {} }, + { + id: 'edge-0.014751525265954024', + source: '4972', + target: '8222', + data: {}, + }, + { id: 'edge-0.8613351799386872', source: '4972', target: '4973', data: {} }, + { id: 'edge-0.7200950864334921', source: '4972', target: '5777', data: {} }, + { id: 'edge-0.6091215606848064', source: '4972', target: '8221', data: {} }, + { + id: 'edge-0.05396582857043031', + source: '8220', + target: '5242', + data: {}, + }, + { id: 'edge-0.5626451998070414', source: '6', target: '491', data: {} }, + { id: 'edge-0.5120592260776577', source: '6', target: '8240', data: {} }, + { id: 'edge-0.06042136084599026', source: '6', target: '8241', data: {} }, + { id: 'edge-0.7281160606144137', source: '6', target: '8242', data: {} }, + { id: 'edge-0.346608272595611', source: '6', target: '8243', data: {} }, + { id: 'edge-0.8784172544274382', source: '8244', target: '3487', data: {} }, + { + id: 'edge-0.25317644733299094', + source: '5335', + target: '8229', + data: {}, + }, + { id: 'edge-0.7905562419590182', source: '5335', target: '8247', data: {} }, + { id: 'edge-0.5784738206554496', source: '5335', target: '8248', data: {} }, + { + id: 'edge-0.15567093793125508', + source: '4173', + target: '8227', + data: {}, + }, + { id: 'edge-0.3888405339230623', source: '8249', target: '3487', data: {} }, + { id: 'edge-0.6013873655568236', source: '5705', target: '7790', data: {} }, + { + id: 'edge-0.26739928035330585', + source: '5705', + target: '5003', + data: {}, + }, + { id: 'edge-0.19117676347441503', source: '8', target: '8250', data: {} }, + { id: 'edge-0.5851902818750372', source: '8', target: '8251', data: {} }, + { id: 'edge-0.6310576222374398', source: '8', target: '1294', data: {} }, + { id: 'edge-0.7240999402083534', source: '8', target: '1283', data: {} }, + { id: 'edge-0.8635831800086666', source: '8', target: '8252', data: {} }, + { id: 'edge-0.7143769053145741', source: '8', target: '8254', data: {} }, + { id: 'edge-0.3290051518910495', source: '8', target: '4951', data: {} }, + { + id: 'edge-0.46561915702916346', + source: '4977', + target: '8258', + data: {}, + }, + { id: 'edge-0.8378884743228037', source: '4977', target: '310', data: {} }, + { + id: 'edge-0.12605148602178895', + source: '4977', + target: '4997', + data: {}, + }, + { + id: 'edge-0.03959166822076554', + source: '5001', + target: '8261', + data: {}, + }, + { id: 'edge-0.7911549661938582', source: '5001', target: '8262', data: {} }, + { + id: 'edge-0.13797448760606978', + source: '5001', + target: '5003', + data: {}, + }, + { id: 'edge-0.5131335754552295', source: '5433', target: '8263', data: {} }, + { id: 'edge-0.8092723410279341', source: '5004', target: '5008', data: {} }, + { + id: 'edge-0.19168597338047966', + source: '5397', + target: '7257', + data: {}, + }, + { id: 'edge-0.3724859512393439', source: '3897', target: '8284', data: {} }, + { id: 'edge-0.8381466534221571', source: '3897', target: '4193', data: {} }, + { + id: 'edge-0.15999086259142548', + source: '3897', + target: '8286', + data: {}, + }, + { id: 'edge-0.6463733143703629', source: '3897', target: '8287', data: {} }, + { id: 'edge-0.9822383481044876', source: '3897', target: '8290', data: {} }, + { id: 'edge-0.3151520558869938', source: '3897', target: '4196', data: {} }, + { id: 'edge-0.9973959124385319', source: '3897', target: '8296', data: {} }, + { id: 'edge-0.9220493156238088', source: '3897', target: '4192', data: {} }, + { id: 'edge-0.4464363311846389', source: '5141', target: '8301', data: {} }, + { + id: 'edge-0.03562695875800381', + source: '5141', + target: '8302', + data: {}, + }, + { id: 'edge-0.945648257273684', source: '8303', target: '3906', data: {} }, + { id: 'edge-0.20825741363113148', source: '8304', target: '289', data: {} }, + { id: 'edge-0.7695747537305753', source: '337', target: '8305', data: {} }, + { id: 'edge-0.7399504544516267', source: '337', target: '5418', data: {} }, + { + id: 'edge-0.12608985237771653', + source: '5146', + target: '5144', + data: {}, + }, + { id: 'edge-0.728922981625068', source: '5146', target: '5147', data: {} }, + { + id: 'edge-0.0020248416569794703', + source: '7092', + target: '8306', + data: {}, + }, + { + id: 'edge-0.06678410387871114', + source: '4831', + target: '5191', + data: {}, + }, + { id: 'edge-0.7368653627332686', source: '4831', target: '8307', data: {} }, + { + id: 'edge-0.24240369522439553', + source: '4831', + target: '8308', + data: {}, + }, + { id: 'edge-0.1888478635610955', source: '4831', target: '8309', data: {} }, + { id: 'edge-0.5769106884946662', source: '4831', target: '8310', data: {} }, + { + id: 'edge-0.02853162803096687', + source: '4831', + target: '8311', + data: {}, + }, + { id: 'edge-0.9973586107064196', source: '4831', target: '8312', data: {} }, + { id: 'edge-0.6283739026446049', source: '4831', target: '4824', data: {} }, + { id: 'edge-0.5717367892257248', source: '4831', target: '150', data: {} }, + { id: 'edge-0.2233842665735064', source: '4831', target: '8313', data: {} }, + { id: 'edge-0.5591492822111124', source: '4831', target: '8314', data: {} }, + { id: 'edge-0.6406887853803152', source: '4831', target: '8315', data: {} }, + { + id: 'edge-0.030232688697705123', + source: '4831', + target: '5128', + data: {}, + }, + { + id: 'edge-0.33345830016456746', + source: '4831', + target: '8316', + data: {}, + }, + { id: 'edge-0.747075429944154', source: '4831', target: '8317', data: {} }, + { id: 'edge-0.4324975631417096', source: '4831', target: '8318', data: {} }, + { id: 'edge-0.3920553576420598', source: '4831', target: '8319', data: {} }, + { id: 'edge-0.7630692467738569', source: '5165', target: '8320', data: {} }, + { id: 'edge-0.6997692678732745', source: '5158', target: '8321', data: {} }, + { + id: 'edge-0.18188755164103343', + source: '5158', + target: '8322', + data: {}, + }, + { id: 'edge-0.9371047552311653', source: '5158', target: '8323', data: {} }, + { id: 'edge-0.7983787120699244', source: '5158', target: '8324', data: {} }, + { id: 'edge-0.6824856461969664', source: '8313', target: '4831', data: {} }, + { id: 'edge-0.0991038659322121', source: '8325', target: '5561', data: {} }, + { id: 'edge-0.9850100631601502', source: '8325', target: '8326', data: {} }, + { id: 'edge-0.8812065147248156', source: '1854', target: '8325', data: {} }, + { + id: 'edge-0.13670149410891952', + source: '1854', + target: '8327', + data: {}, + }, + { id: 'edge-0.7971292806193291', source: '5008', target: '5004', data: {} }, + { id: 'edge-0.7295687590577098', source: '5177', target: '8328', data: {} }, + { id: 'edge-0.6961266719168753', source: '5177', target: '5178', data: {} }, + { id: 'edge-0.3418944326517688', source: '3904', target: '8330', data: {} }, + { id: 'edge-0.9017838255531669', source: '5186', target: '5254', data: {} }, + { id: 'edge-0.7341144134763782', source: '5186', target: '8331', data: {} }, + { id: 'edge-0.8634627462568689', source: '5186', target: '5253', data: {} }, + { id: 'edge-0.7845214224423602', source: '5186', target: '8332', data: {} }, + { + id: 'edge-0.28348259502645745', + source: '5191', + target: '8333', + data: {}, + }, + { id: 'edge-0.1527604644056353', source: '5191', target: '5193', data: {} }, + { id: 'edge-0.9713849533100576', source: '5191', target: '8334', data: {} }, + { id: 'edge-0.5443882145528474', source: '5191', target: '5192', data: {} }, + { id: 'edge-0.6033998623206112', source: '5191', target: '8335', data: {} }, + { id: 'edge-0.9030367089581981', source: '5191', target: '6950', data: {} }, + { id: 'edge-0.9119767640412526', source: '5191', target: '8337', data: {} }, + { id: 'edge-0.6449892126331811', source: '5191', target: '5128', data: {} }, + { id: 'edge-0.6859952080777392', source: '3904', target: '5189', data: {} }, + { id: 'edge-0.1146638504469295', source: '5207', target: '5206', data: {} }, + { id: 'edge-0.5844061557945732', source: '5592', target: '8340', data: {} }, + { id: 'edge-0.8098599051946185', source: '5194', target: '5195', data: {} }, + { id: 'edge-0.8272180003368454', source: '5469', target: '3479', data: {} }, + { + id: 'edge-0.33309796910102873', + source: '5469', + target: '8341', + data: {}, + }, + { + id: 'edge-0.06497211295055627', + source: '5198', + target: '8342', + data: {}, + }, + { id: 'edge-0.5709829143236709', source: '5206', target: '8343', data: {} }, + { id: 'edge-0.4617677874626056', source: '5206', target: '8344', data: {} }, + { id: 'edge-0.5816773702194573', source: '5206', target: '8345', data: {} }, + { + id: 'edge-0.16595659062107737', + source: '5210', + target: '5212', + data: {}, + }, + { + id: 'edge-0.005256026890075427', + source: '5213', + target: '312', + data: {}, + }, + { + id: 'edge-0.10120215397207555', + source: '5208', + target: '8347', + data: {}, + }, + { id: 'edge-0.2245731511170206', source: '5208', target: '8348', data: {} }, + { id: 'edge-0.2976707725937666', source: '5208', target: '8349', data: {} }, + { + id: 'edge-0.44198203292762717', + source: '5208', + target: '8350', + data: {}, + }, + { id: 'edge-0.4203751891760912', source: '5208', target: '8351', data: {} }, + { id: 'edge-0.6529499347887127', source: '170', target: '8352', data: {} }, + { id: 'edge-0.5562076879901505', source: '170', target: '8353', data: {} }, + { id: 'edge-0.8527234732320887', source: '170', target: '5218', data: {} }, + { id: 'edge-0.8190860177855959', source: '170', target: '1297', data: {} }, + { id: 'edge-0.6506260248950357', source: '170', target: '8304', data: {} }, + { id: 'edge-0.28348138914399756', source: '170', target: '8355', data: {} }, + { id: 'edge-0.9007334748955469', source: '170', target: '1294', data: {} }, + { id: 'edge-0.8814336432291283', source: '170', target: '8263', data: {} }, + { id: 'edge-0.6969495664099004', source: '5606', target: '8358', data: {} }, + { id: 'edge-0.8620341491778669', source: '5606', target: '8359', data: {} }, + { + id: 'edge-0.14787558238839216', + source: '5606', + target: '8360', + data: {}, + }, + { id: 'edge-0.5239552852380864', source: '5606', target: '8361', data: {} }, + { + id: 'edge-0.14691824019062039', + source: '5606', + target: '8362', + data: {}, + }, + { + id: 'edge-0.25971721194403496', + source: '7582', + target: '5327', + data: {}, + }, + { id: 'edge-0.5683728411685163', source: '5362', target: '8363', data: {} }, + { + id: 'edge-0.018731575095076947', + source: '8284', + target: '8364', + data: {}, + }, + { + id: 'edge-0.06564075012086268', + source: '7240', + target: '8366', + data: {}, + }, + { id: 'edge-0.5003470871906155', source: '7240', target: '5071', data: {} }, + { id: 'edge-0.6942854083164474', source: '5497', target: '8367', data: {} }, + { + id: 'edge-0.36754613357623556', + source: '5106', + target: '8368', + data: {}, + }, + { + id: 'edge-0.06100688884432226', + source: '5106', + target: '8369', + data: {}, + }, + { + id: 'edge-0.054722472813916845', + source: '5106', + target: '8370', + data: {}, + }, + { id: 'edge-0.836546879137132', source: '4817', target: '3507', data: {} }, + { id: 'edge-0.897045044929593', source: '1879', target: '3398', data: {} }, + { id: 'edge-0.9909193283814068', source: '1879', target: '1880', data: {} }, + { + id: 'edge-0.19719161579899613', + source: '5561', + target: '8371', + data: {}, + }, + { id: 'edge-0.3735590653781389', source: '5026', target: '8372', data: {} }, + { + id: 'edge-0.18434646861684478', + source: '5037', + target: '5038', + data: {}, + }, + { + id: 'edge-0.09600119665894047', + source: '5037', + target: '8373', + data: {}, + }, + { + id: 'edge-0.21815431140238317', + source: '5037', + target: '8374', + data: {}, + }, + { id: 'edge-0.7477405742402279', source: '5037', target: '8375', data: {} }, + { id: 'edge-0.7679673787986145', source: '5037', target: '8377', data: {} }, + { id: 'edge-0.6336350263003805', source: '5037', target: '8378', data: {} }, + { id: 'edge-0.618073936825124', source: '5037', target: '8379', data: {} }, + { + id: 'edge-0.10488511940307998', + source: '5037', + target: '8380', + data: {}, + }, + { id: 'edge-0.8744688458948919', source: '8381', target: '5242', data: {} }, + { id: 'edge-0.5537250380812029', source: '23', target: '289', data: {} }, + { id: 'edge-0.503550627714991', source: '5040', target: '8383', data: {} }, + { id: 'edge-0.8819289118660858', source: '5040', target: '8384', data: {} }, + { id: 'edge-0.4363541671091211', source: '5040', target: '8385', data: {} }, + { id: 'edge-0.9858464533805744', source: '5028', target: '8386', data: {} }, + { + id: 'edge-0.001344749494691877', + source: '5028', + target: '5046', + data: {}, + }, + { id: 'edge-0.8868404772361762', source: '5028', target: '8387', data: {} }, + { + id: 'edge-0.23734019678881557', + source: '5028', + target: '8388', + data: {}, + }, + { + id: 'edge-0.15831601212746804', + source: '5028', + target: '5045', + data: {}, + }, + { + id: 'edge-0.06118894924139995', + source: '5028', + target: '8389', + data: {}, + }, + { + id: 'edge-0.14112424992682038', + source: '8387', + target: '8390', + data: {}, + }, + { id: 'edge-0.8961050281897824', source: '5513', target: '8391', data: {} }, + { id: 'edge-0.256250322269608', source: '5047', target: '5050', data: {} }, + { id: 'edge-0.4523181725343288', source: '5047', target: '8393', data: {} }, + { id: 'edge-0.8995061908291304', source: '5047', target: '8394', data: {} }, + { id: 'edge-0.920780359863997', source: '5623', target: '8395', data: {} }, + { id: 'edge-0.7507047419501449', source: '5432', target: '8396', data: {} }, + { + id: 'edge-0.017263792449957904', + source: '3487', + target: '8397', + data: {}, + }, + { id: 'edge-0.7987672128823102', source: '3487', target: '4523', data: {} }, + { id: 'edge-0.6645724038651983', source: '3487', target: '8398', data: {} }, + { id: 'edge-0.5275651073677214', source: '5338', target: '8399', data: {} }, + { id: 'edge-0.6535368610089778', source: '8335', target: '5191', data: {} }, + { id: 'edge-0.9739079294134243', source: '1812', target: '8400', data: {} }, + { id: 'edge-0.8643965140600938', source: '5438', target: '8401', data: {} }, + { + id: 'edge-0.14939367871130949', + source: '5438', + target: '8402', + data: {}, + }, + { + id: 'edge-0.12356756852727435', + source: '5438', + target: '8403', + data: {}, + }, + { + id: 'edge-0.20770431155816804', + source: '5438', + target: '8404', + data: {}, + }, + { id: 'edge-0.3401110558323035', source: '5438', target: '8405', data: {} }, + { + id: 'edge-0.19922750736066863', + source: '5438', + target: '8406', + data: {}, + }, + { id: 'edge-0.7985525915807237', source: '5327', target: '5189', data: {} }, + { id: 'edge-0.8383488850433054', source: '485', target: '8407', data: {} }, + { id: 'edge-0.9213814666369704', source: '5084', target: '8408', data: {} }, + { + id: 'edge-0.27763801548822076', + source: '5564', + target: '5179', + data: {}, + }, + { id: 'edge-0.52548040928624', source: '5086', target: '5087', data: {} }, + { id: 'edge-0.9165729485435754', source: '5082', target: '5083', data: {} }, + { id: 'edge-0.5910549142537167', source: '5082', target: '8409', data: {} }, + { id: 'edge-0.7833414922405815', source: '5091', target: '8411', data: {} }, + { id: 'edge-0.6746623457598464', source: '5091', target: '8412', data: {} }, + { id: 'edge-0.7787675426275766', source: '5091', target: '8015', data: {} }, + { + id: 'edge-0.015692524582375134', + source: '3602', + target: '8414', + data: {}, + }, + { id: 'edge-0.6299014548285053', source: '27', target: '8420', data: {} }, + { id: 'edge-0.8893739315299463', source: '27', target: '3296', data: {} }, + { id: 'edge-0.3100225989232903', source: '5536', target: '5134', data: {} }, + { id: 'edge-0.5000000209328208', source: '3303', target: '3305', data: {} }, + { id: 'edge-0.4875831248063822', source: '5479', target: '8427', data: {} }, + { id: 'edge-0.7043509820980052', source: '5487', target: '1294', data: {} }, + { + id: 'edge-0.45356818876286464', + source: '5501', + target: '7092', + data: {}, + }, + { + id: 'edge-0.46853205176834023', + source: '5324', + target: '8428', + data: {}, + }, + { + id: 'edge-0.09641219454856143', + source: '5411', + target: '8430', + data: {}, + }, + { id: 'edge-0.1662642088771411', source: '5411', target: '8431', data: {} }, + { id: 'edge-0.515098535403615', source: '5411', target: '8432', data: {} }, + { id: 'edge-0.4524910275851173', source: '5411', target: '8433', data: {} }, + { id: 'edge-0.325371699060238', source: '163', target: '1294', data: {} }, + { id: 'edge-0.10686674517355388', source: '163', target: '275', data: {} }, + { id: 'edge-0.3875351153068707', source: '163', target: '289', data: {} }, + { + id: 'edge-0.38550700008400596', + source: '8353', + target: '8435', + data: {}, + }, + { id: 'edge-0.67601653027394', source: '8353', target: '312', data: {} }, + { id: 'edge-0.8727469522632612', source: '8353', target: '8436', data: {} }, + { id: 'edge-0.7423039434446244', source: '5013', target: '8437', data: {} }, + { + id: 'edge-0.15535906268330035', + source: '8437', + target: '5096', + data: {}, + }, + { + id: 'edge-0.12519094059634406', + source: '8320', + target: '8438', + data: {}, + }, + { id: 'edge-0.87526606388647', source: '8320', target: '8439', data: {} }, + { id: 'edge-0.5543824797233445', source: '335', target: '222', data: {} }, + { id: 'edge-0.3373759070584581', source: '5334', target: '8442', data: {} }, + { id: 'edge-0.9993626048746009', source: '5238', target: '5239', data: {} }, + { id: 'edge-0.6639987232410416', source: '7770', target: '6972', data: {} }, + { id: 'edge-0.5482681814875061', source: '5604', target: '3906', data: {} }, + { id: 'edge-0.7049982034846947', source: '8443', target: '3305', data: {} }, + { + id: 'edge-0.36243634154597526', + source: '3506', + target: '8444', + data: {}, + }, + { id: 'edge-0.7430700466716262', source: '3506', target: '5237', data: {} }, + { id: 'edge-0.8664437826924234', source: '3506', target: '8446', data: {} }, + { + id: 'edge-0.001961635174977827', + source: '3506', + target: '8447', + data: {}, + }, + { id: 'edge-0.596295985352246', source: '3506', target: '8448', data: {} }, + { id: 'edge-0.6620110503273942', source: '3506', target: '8449', data: {} }, + { + id: 'edge-0.07813789223942802', + source: '3506', + target: '8450', + data: {}, + }, + { + id: 'edge-0.37416015690903714', + source: '3506', + target: '8451', + data: {}, + }, + { + id: 'edge-0.08288387907652428', + source: '3506', + target: '8452', + data: {}, + }, + { id: 'edge-0.7642684622408713', source: '3506', target: '5241', data: {} }, + { + id: 'edge-0.22557865790275167', + source: '3506', + target: '8453', + data: {}, + }, + { id: 'edge-0.5705354698411405', source: '3506', target: '8454', data: {} }, + { id: 'edge-0.3703466604897947', source: '3506', target: '8455', data: {} }, + { id: 'edge-0.2689624466498397', source: '3507', target: '7816', data: {} }, + { id: 'edge-0.9894465093273095', source: '3507', target: '8451', data: {} }, + { id: 'edge-0.0954105416211306', source: '30', target: '8456', data: {} }, + { id: 'edge-0.1083514683925264', source: '5242', target: '8458', data: {} }, + { id: 'edge-0.3291480949032317', source: '5208', target: '8459', data: {} }, + { id: 'edge-0.7817409671259674', source: '8273', target: '8460', data: {} }, + { id: 'edge-0.8667427606446063', source: '8461', target: '8462', data: {} }, + { + id: 'edge-0.047865402655740796', + source: '5640', + target: '5243', + data: {}, + }, + { + id: 'edge-0.00017926919444555267', + source: '5640', + target: '8464', + data: {}, + }, + { id: 'edge-0.7785908929561893', source: '289', target: '4967', data: {} }, + { id: 'edge-0.4045164554005629', source: '4942', target: '8467', data: {} }, + { id: 'edge-0.7794597859488861', source: '4942', target: '8464', data: {} }, + { id: 'edge-0.265288339894036', source: '4942', target: '8468', data: {} }, + { id: 'edge-0.5770789495881201', source: '4942', target: '8469', data: {} }, + { id: 'edge-0.3454838433014298', source: '4942', target: '5243', data: {} }, + { + id: 'edge-0.17363117994978694', + source: '4942', + target: '8470', + data: {}, + }, + { id: 'edge-0.2054432931279444', source: '4942', target: '8471', data: {} }, + { id: 'edge-0.888340471106309', source: '4942', target: '8472', data: {} }, + { id: 'edge-0.7193636222909021', source: '4942', target: '8473', data: {} }, + { id: 'edge-0.7654717679682332', source: '4942', target: '8474', data: {} }, + { id: 'edge-0.8315211157376965', source: '4942', target: '8475', data: {} }, + { id: 'edge-0.3910031855114593', source: '4942', target: '8476', data: {} }, + { id: 'edge-0.6908702850830775', source: '4942', target: '8477', data: {} }, + { id: 'edge-0.9905921413213787', source: '4942', target: '8478', data: {} }, + { id: 'edge-0.584666829976509', source: '4942', target: '8479', data: {} }, + { id: 'edge-0.6281454306842724', source: '4942', target: '8480', data: {} }, + { id: 'edge-0.8901898667717991', source: '4942', target: '335', data: {} }, + { id: 'edge-0.7890790147583608', source: '4942', target: '265', data: {} }, + { + id: 'edge-0.06321432897796364', + source: '4942', + target: '8482', + data: {}, + }, + { id: 'edge-0.8754411014729158', source: '4942', target: '329', data: {} }, + { id: 'edge-0.7324866409007789', source: '4942', target: '282', data: {} }, + { + id: 'edge-0.35591518903260777', + source: '4942', + target: '8483', + data: {}, + }, + { id: 'edge-0.9798746231246935', source: '4942', target: '5640', data: {} }, + { + id: 'edge-0.052749594799008204', + source: '3136', + target: '3305', + data: {}, + }, + { id: 'edge-0.7030464730402051', source: '32', target: '5240', data: {} }, + { id: 'edge-0.5423299319451804', source: '8484', target: '4967', data: {} }, + { id: 'edge-0.8720228551247231', source: '33', target: '4922', data: {} }, + { id: 'edge-0.7279311342633343', source: '33', target: '3895', data: {} }, + { id: 'edge-0.2622056186565427', source: '5431', target: '8485', data: {} }, + { id: 'edge-0.8473397650184848', source: '5065', target: '8486', data: {} }, + { id: 'edge-0.9479227556729986', source: '4845', target: '8318', data: {} }, + { id: 'edge-0.458913251399403', source: '4845', target: '8315', data: {} }, + { + id: 'edge-0.013285579492123833', + source: '4845', + target: '6693', + data: {}, + }, + { + id: 'edge-0.18596665259656242', + source: '4845', + target: '8487', + data: {}, + }, + { id: 'edge-0.3064128619374247', source: '4845', target: '4831', data: {} }, + { id: 'edge-0.6205186840105583', source: '8279', target: '4216', data: {} }, + { id: 'edge-0.574423344642794', source: '8279', target: '4220', data: {} }, + { id: 'edge-0.7541515588658438', source: '8332', target: '8492', data: {} }, + { id: 'edge-0.5571284128866807', source: '8332', target: '8493', data: {} }, + { id: 'edge-0.5808427162662073', source: '8307', target: '4831', data: {} }, + { id: 'edge-0.3692827544376889', source: '1880', target: '8495', data: {} }, + { id: 'edge-0.6071987530636886', source: '5455', target: '7240', data: {} }, + { + id: 'edge-0.013229224180914434', + source: '5108', + target: '5109', + data: {}, + }, + { id: 'edge-0.954878261489682', source: '5146', target: '8496', data: {} }, + { id: 'edge-0.6900880670764054', source: '5146', target: '8497', data: {} }, + ], +} as GraphData; diff --git a/packages/g6/tests/intergration/demo/demo.ts b/packages/g6/tests/intergration/demo/demo.ts new file mode 100644 index 0000000000..19694a6683 --- /dev/null +++ b/packages/g6/tests/intergration/demo/demo.ts @@ -0,0 +1,765 @@ +import { initThreads, supportsThreads, ForceLayout } from '@antv/layout-wasm'; +// import G6, { Graph, GraphData } from '../../../esm'; +import G6, { Graph, GraphData } from '../../../src'; +import { container, height, width } from '../../datasets/const'; +import data from './data'; +import data3d from './data3d'; +import { labelPropagation } from '@antv/algorithm'; +import { RendererName } from '../../../src/types/render'; +import { Point } from '../../../src/types/common'; +// import Stats from 'stats.js'; + +let graph: typeof Graph; +let degrees = {}; +let dataFor2D: GraphData = { nodes: [], edges: [] }; +let dataFor3D: GraphData = { nodes: [], edges: [] }; +let colorSelects = []; +const { nodes, edges } = data; +export { nodes, edges, degrees }; + +const getDefaultNodeAnimates = (delay?: number) => ({ + buildIn: [ + { + fields: ['opacity'], + duration: 1000, + delay: delay === undefined ? 1000 + Math.random() * 1000 : delay, + }, + ], + buildOut: [ + { + fields: ['opacity'], + duration: 200, + }, + ], + update: [ + { + fields: ['fill', 'r', 'lineWidth'], + shapeId: 'keyShape', + duration: 500, + }, + { + fields: ['fontSize'], + shapeId: 'iconShape', + }, + { + fields: ['opacity'], + shapeId: 'haloShape', + }, + ], + hide: [ + { + fields: ['size'], + duration: 200, + }, + { + fields: ['opacity'], + duration: 200, + shapeId: 'keyShape', + }, + { + fields: ['opacity'], + duration: 200, + shapeId: 'labelShape', + }, + ], + show: [ + { + fields: ['size'], + duration: 200, + }, + { + fields: ['opacity'], + duration: 200, + shapeId: 'keyShape', + order: 0, + }, + ], +}); + +const getDefaultEdgeAnimates = (delay?: number) => ({ + buildIn: [ + { + fields: ['opacity'], + duration: 300, + delay: delay === undefined ? 1000 + Math.random() * 1000 : delay, + }, + ], + buildOut: [ + { + fields: ['opacity'], + duration: 200, + }, + ], + update: [ + { + fields: ['lineWidth'], + shapeId: 'keyShape', + }, + { + fields: ['opacity'], + shapeId: 'haloShape', + }, + ], +}); + +const defaultTheme = { + // : ThemeOptionsOf + type: 'spec', + base: 'light', + specification: { + node: { + dataTypeField: 'cluster', + }, + }, +}; +let currentTheme = defaultTheme; + +const create2DGraph = ( + getNodeAnimates = getDefaultNodeAnimates, + getEdgeAnimates = getDefaultEdgeAnimates, + theme = defaultTheme, + rendererType: RendererName = 'canvas', +) => { + const graph = new Graph({ + container: container as HTMLElement, + width, + height: 1400, + type: 'graph', + renderer: rendererType, + data: dataFor2D, + modes: { + default: [ + { type: 'zoom-canvas', key: '123', triggerOnItems: true }, + 'drag-node', + 'drag-canvas', + 'hover-activate', + 'brush-select', + 'click-select', + ], + }, + theme: { ...defaultTheme, ...theme }, + edge: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + type: 'line-edge', + animates: getEdgeAnimates(), + }, + }; + }, + // 节点配置 + node: (innerModel) => { + const degree = degrees[innerModel.id] || 0; + let labelLod = 3; + if (degree > 40) labelLod = -2; + else if (degree > 20) labelLod = -1; + else if (degree > 10) labelLod = 0; + else if (degree > 5) labelLod = 1; + else if (degree > 2) labelLod = 2; + return { + ...innerModel, + data: { + animates: getNodeAnimates(), + ...innerModel.data, + lodStrategy: { + levels: [ + { zoomRange: [0, 0.16] }, // -2 + { zoomRange: [0.16, 0.2] }, // -1 + { zoomRange: [0.2, 0.3], primary: true }, // 0 + { zoomRange: [0.3, 0.5] }, // 1 + { zoomRange: [0.5, 0.8] }, // 2 + { zoomRange: [0.8, 1.5] }, // 3 + { zoomRange: [1.5, 1.8] }, // 4 + { zoomRange: [1.8, 2] }, // 5 + { zoomRange: [2, Infinity] }, // 6 + ], + animateCfg: { + duration: 500, + }, + }, + labelShape: + degree !== 0 + ? { + text: innerModel.data.label, + maxWidth: '400%', + offsetY: 8, + lod: labelLod, + } + : undefined, + + labelBackgroundShape: + degree !== 0 + ? { + lod: labelLod, + } + : undefined, + iconShape: + degree !== 0 + ? { + img: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg', + fontSize: 12 + degree / 4, + opacity: 0.8, + lod: labelLod + 2, + } + : undefined, + keyShape: { + r: 12 + degree / 4, + }, + }, + }; + }, + }); + + graph.zoom(0.15); + return graph; +}; + +const create3DGraph = async () => { + G6.stdLib.layouts['force-wasm'] = ForceLayout; + const supported = await supportsThreads(); + const threads = await initThreads(supported); + const newGraph = new Graph({ + container: container as HTMLDivElement, + width, + height: 1400, + type: 'graph', + renderer: 'webgl-3d', + data: dataFor3D, + // layout: { + // type: 'force-wasm', + // threads, + // dimensions: 2, + // maxIteration: 5000, + // minMovement: 0.1, + // distanceThresholdMode: 'mean', + // height, + // width, + // center: [width / 2, height / 2], + // factor: 1, + // gravity: 5, + // linkDistance: 200, + // edgeStrength: 200, + // nodeStrength: 1000, + // coulombDisScale: 0.005, + // damping: 0.9, + // maxSpeed: 2000, + // interval: 0.02, + // }, + // layout: { + // type: 'force-wasm', + // threads, + // dimensions: 3, + // iterations: 300, + // minMovement: 10, + // height, + // width, + // linkDistance: 200, + // edgeStrength: 100, + // nodeStrength: 2000, + // center: [width / 2, height / 2, 0], + // }, + modes: { + default: [ + { + type: 'orbit-canvas-3d', + trigger: 'drag', + }, + 'zoom-canvas-3d', + ], + }, + theme: { + type: 'spec', + base: 'dark', + specification: { + node: { + dataTypeField: 'cluster', + }, + }, + }, + edge: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + keyShape: { + lineWidth: 0.6, + opacity: 0.6, + stroke: '#fff', + }, + type: 'line-edge', + }, + }; + }, + node: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + type: 'sphere-node', + keyShape: { + r: 12 + degrees[innerModel.id] / 2, + }, + labelShape: + degrees[innerModel.id] > 20 + ? { + text: innerModel.data.label, + fontSize: 100, + lod: -1, + fill: 'rgba(255,255,255,0.85)', + wordWrap: false, // FIXME: mesh.getBounds() returns an empty AABB + isBillboard: true, + } + : undefined, + }, + }; + }, + }); + + const rotate = (camera, rx: number, ry: number, graph) => { + const { width, height } = graph.canvas.getConfig(); + const dx = 20.0 / height; + const dy = 20.0 / width; + let motionFactorX = 10; + let motionFactorY = 10; + if (rx * rx > 2 * ry * ry) { + motionFactorY *= 0.5; + } else if (ry * ry > 2 * rx * rx) { + motionFactorX *= 0.5; + } + + const rotX = rx * dx * motionFactorX; + const rotY = ry * dy * motionFactorY; + + camera.rotate(rotX, 0); + }; + + let timer; + setTimeout(() => { + const camera = newGraph.canvas.getCamera(); + const oripos = camera.getPosition(); + let k = 0; + let i = 0; + const tick = () => { + camera.setPosition([oripos[0], oripos[1], oripos[2] + k]); + const rdx = + i < 100 ? Math.min(i * 0.5, 20) : Math.min((200 - i) * 0.2, 20); + rotate(camera, rdx, rdx, newGraph); + timer = requestAnimationFrame(tick); + if (i > 200) cancelAnimationFrame(timer); + const param = i < 50 ? 3 : 0.5; + k += 50 * param; + i++; + }; + tick(); + }, 1000); + newGraph.once('canvas:pointerdown', (e) => { + if (timer) cancelAnimationFrame(timer); + }); + newGraph.once('wheel', (e) => { + if (timer) cancelAnimationFrame(timer); + }); + // }); + + return newGraph; +}; + +const generateColorSelect = (id, container) => { + const colorSelect = document.createElement('input'); + colorSelect.style.width = '25px'; + colorSelect.style.height = '25px'; + colorSelect.style.border = '0'; + colorSelect.style.background = 'rgba(0, 0, 0, 0)'; + colorSelect.type = 'color'; + colorSelect.id = `color-${id}`; + colorSelect.value = id === 'bg' ? '#ffffff' : '#cccccc'; + container.appendChild(colorSelect); + return colorSelect; +}; + +const addButtons = () => { + const btn = document.createElement('button'); + btn.innerHTML = '全屏'; + btn.style.position = 'absolute'; + btn.style.top = '56px'; + btn.style.left = '16px'; + btn.style.zIndex = '100'; + document.body.appendChild(btn); + btn.addEventListener('click', (e) => { + const canvasEl = graph.canvas.context.config.canvas; + const requestMethod = + canvasEl.requestFullScreen || + canvasEl.webkitRequestFullScreen || + canvasEl.mozRequestFullScreen || + canvasEl.msRequestFullScreen; + if (requestMethod) { + // Native full screen. + requestMethod.call(canvasEl); + } else if (typeof window.ActiveXObject !== 'undefined') { + // Older IE. + const wscript = new ActiveXObject('WScript.Shell'); + if (wscript !== null) { + wscript.SendKeys('{F11}'); + } + } + }); + const btnZoomIn = document.createElement('button'); + btnZoomIn.innerHTML = '放大'; + btnZoomIn.style.position = 'absolute'; + btnZoomIn.style.top = '56px'; + btnZoomIn.style.left = '62px'; + btnZoomIn.style.width = '48px'; + btnZoomIn.style.zIndex = '100'; + document.body.appendChild(btnZoomIn); + const btnZoomOut = document.createElement('button'); + btnZoomOut.innerHTML = '缩小'; + btnZoomOut.style.position = 'absolute'; + btnZoomOut.style.top = '56px'; + btnZoomOut.style.left = '112px'; + btnZoomOut.style.width = '48px'; + btnZoomOut.style.zIndex = '100'; + document.body.appendChild(btnZoomOut); + + const rendererSelect = document.createElement('select'); + rendererSelect.style.position = 'absolute'; + rendererSelect.style.top = '86px'; + rendererSelect.style.left = '16px'; + rendererSelect.style.width = '143px'; + rendererSelect.style.height = '25px'; + rendererSelect.style.zIndex = '100'; + const option1 = document.createElement('option'); + option1.innerHTML = 'Canvas'; + const option2 = document.createElement('option'); + option2.innerHTML = 'WebGL'; + const option3 = document.createElement('option'); + option3.innerHTML = 'WebGL-3D'; + const option4 = document.createElement('option'); + option4.innerHTML = 'SVG(coming soon)'; + option4.disabled = true; + rendererSelect.appendChild(option1); + rendererSelect.appendChild(option2); + rendererSelect.appendChild(option3); + rendererSelect.appendChild(option4); + document.body.appendChild(rendererSelect); + + const themeSelect = document.createElement('select'); + themeSelect.style.position = 'absolute'; + themeSelect.style.top = '116px'; + themeSelect.style.left = '16px'; + themeSelect.style.width = '143px'; + themeSelect.style.height = '25px'; + themeSelect.style.zIndex = '100'; + const themeOption0 = document.createElement('option'); + themeOption0.innerHTML = '亮色主题'; + const themeOption1 = document.createElement('option'); + themeOption1.innerHTML = '暗色主题'; + const themeOption2 = document.createElement('option'); + themeOption2.innerHTML = '蓝色主题'; + const themeOption3 = document.createElement('option'); + themeOption3.innerHTML = '橙色主题'; + const themeOption4 = document.createElement('option'); + themeOption4.innerHTML = '自定义'; + themeSelect.appendChild(themeOption0); + themeSelect.appendChild(themeOption1); + themeSelect.appendChild(themeOption2); + themeSelect.appendChild(themeOption3); + themeSelect.appendChild(themeOption4); + document.body.appendChild(themeSelect); + + // 自定义色板 + const customThemeSelect = document.createElement('div'); + const paletteContainer = document.createElement('div'); + paletteContainer.style.display = 'inline-flex'; + customThemeSelect.appendChild(paletteContainer); + + const addColorBtn = document.createElement('a'); + addColorBtn.innerHTML = '+'; + addColorBtn.style.margin = '4px'; + addColorBtn.style.cursor = 'pointer'; + addColorBtn.style.border = '1px dashed rgba(34, 126, 255, 0.5)'; + addColorBtn.style.padding = '2px 8px'; + addColorBtn.style.color = 'rgb(34, 126, 255)'; + paletteContainer.appendChild(addColorBtn); + addColorBtn.addEventListener('click', (e) => { + colorSelects.push( + generateColorSelect(`${colorSelects.length}`, colorsContainer), + ); + }); + + const colorsContainer = document.createElement('div'); + colorsContainer.style.display = 'inline-flex'; + colorsContainer.style.margin = '4px 0'; + paletteContainer.appendChild(colorsContainer); + colorSelects = [generateColorSelect('0', colorsContainer)]; + + const removeColorBtn = document.createElement('a'); + removeColorBtn.innerHTML = '-'; + removeColorBtn.style.margin = '4px'; + removeColorBtn.style.cursor = 'pointer'; + removeColorBtn.style.border = '1px dashed rgba(34, 126, 255, 0.5)'; + removeColorBtn.style.padding = '2px 10px'; + removeColorBtn.style.color = 'rgb(34, 126, 255)'; + paletteContainer.appendChild(removeColorBtn); + removeColorBtn.addEventListener('click', (e) => { + if (colorSelects.length <= 1) return; + const removingSelect = colorSelects.splice(colorSelects.length - 1, 1)[0]; + removingSelect.remove(); + }); + const backgroundColorContainer = document.createElement('div'); + backgroundColorContainer.style.margin = '8px 0'; + const backgroundLabel = document.createElement('div'); + backgroundLabel.innerHTML = '背景色:'; + backgroundLabel.style.display = 'inline-flex'; + backgroundLabel.style.fontSize = '14px'; + backgroundColorContainer.appendChild(backgroundLabel); + const bgColorSelect = generateColorSelect('bg', colorsContainer); + backgroundColorContainer.appendChild(bgColorSelect); + bgColorSelect.style.display = 'inline-flex'; + customThemeSelect.appendChild(backgroundColorContainer); + + const customConfirmBtn = document.createElement('button'); + customConfirmBtn.innerHTML = '应用'; + customConfirmBtn.style.cursor = 'pointer'; + customConfirmBtn.style.width = '109px'; + customConfirmBtn.style.border = '0'; + customConfirmBtn.style.backgroundColor = 'rgba(34, 126, 255, 0.5)'; + customThemeSelect.appendChild(customConfirmBtn); + customConfirmBtn.addEventListener('click', (e) => { + graph.updateTheme({ + type: 'spec', + specification: { + canvas: { + backgroundColor: bgColorSelect.value || '#fff', + }, + node: { + dataTypeField: 'cluster', + palette: colorSelects.map((dom) => dom.value), + }, + }, + }); + }); + + customThemeSelect.style.position = 'absolute'; + customThemeSelect.style.display = 'none'; + customThemeSelect.style.top = '146px'; + customThemeSelect.style.left = '16px'; + customThemeSelect.style.zIndex = '100'; + customThemeSelect.style.padding = '8px'; + customThemeSelect.style.backgroundColor = 'rgb(212, 230, 255)'; + document.body.appendChild(customThemeSelect); + + return { + rendererSelect, + themeSelect, + customThemeSelect, + zoomIn: btnZoomIn, + zoomOut: btnZoomOut, + }; +}; + +const handleSwitchRenderer = (rendererName, oldgraph) => { + switch (rendererName) { + case 'webgl-3d': + oldgraph.destroy(async () => { + graph = await create3DGraph(); + }); + break; + case 'canvas': + oldgraph.destroy(() => { + graph = create2DGraph(undefined, undefined, currentTheme); + }); + break; + case 'webgl': + oldgraph.destroy(() => { + const currentZoom = oldgraph.getZoom(); + const position = oldgraph.canvas.getCamera().getPosition(); + const zoomOpt = { + zoom: currentZoom, + center: { x: position[0], y: position[1] }, + }; + graph = create2DGraph(undefined, undefined, currentTheme, 'webgl'); + }); + // oldgraph.changeRenderer('webgl'); + break; + case 'svg': + // comming soon + default: + break; + } + return graph; +}; + +const handleSwitchTheme = (themeType, customThemeSelect) => { + customThemeSelect.style.display = 'none'; + switch (themeType) { + case '亮色主题': + currentTheme = defaultTheme; + graph.updateTheme(defaultTheme); + return; + case '暗色主题': + currentTheme = { + ...defaultTheme, + base: 'dark', + }; + graph.updateTheme(currentTheme); + return; + case '蓝色主题': + currentTheme = { + type: 'spec', + base: 'light', + specification: { + canvas: { + backgroundColor: '#f3faff', + }, + node: { + dataTypeField: 'cluster', + palette: [ + '#bae0ff', + '#91caff', + '#69b1ff', + '#4096ff', + '#1677ff', + '#0958d9', + '#003eb3', + '#002c8c', + '#001d66', + ], + }, + }, + }; + graph.updateTheme(currentTheme); + return; + case '橙色主题': + currentTheme = { + type: 'spec', + base: 'light', + specification: { + canvas: { + backgroundColor: '#fcf9f1', + }, + node: { + dataTypeField: 'cluster', + palette: [ + '#ffe7ba', + '#ffd591', + '#ffc069', + '#ffa940', + '#fa8c16', + '#d46b08', + '#ad4e00', + '#873800', + '#612500', + ], + }, + }, + }; + graph.updateTheme(currentTheme); + return; + case '自定义': + customThemeSelect.style.display = 'block'; + return; + } +}; + +const zoomLevels = [0.15, 0.16, 0.2, 0.3, 0.5, 0.8, 1.5, 2]; +const handleZoom = (graph, isIn = true) => { + let toZoom = 0.15; + const currentZoom = graph.getZoom(); + if (isIn) { + for (let i = 0; i < zoomLevels.length - 1; i++) { + if (currentZoom <= zoomLevels[i]) { + toZoom = zoomLevels[i + 1]; + break; + } + } + } else { + for (let i = zoomLevels.length - 1; i >= 1; i--) { + if (currentZoom >= zoomLevels[i]) { + toZoom = zoomLevels[i - 1]; + break; + } + } + } + graph.zoomTo(toZoom, { x: 2194, y: -1347 }, { duration: 500 }); +}; + +const getDataFor2D = (inputData) => { + const clusteredData = labelPropagation(inputData, false); + clusteredData.clusters.forEach((cluster, i) => { + cluster.nodes.forEach((node) => { + node.data.cluster = `c${i}`; + }); + }); + // for 性能测试 + // data.nodes.forEach((node) => { + // delete node.data.x; + // delete node.data.y; + // delete node.data.z; + // }); + const degrees = {}; + inputData.edges.forEach((edge) => { + const { source, target } = edge; + degrees[source] = degrees[source] || 0; + degrees[target] = degrees[target] || 0; + degrees[source]++; + degrees[target]++; + }); + inputData.nodes.forEach((node) => delete node.data.z); + return { degrees, data: inputData }; +}; + +const getDataFor3D = (inputData) => { + const clusteredData3D = labelPropagation(inputData, false); + clusteredData3D.clusters.forEach((cluster, i) => { + cluster.nodes.forEach((node) => { + node.data.cluster = `c${i}`; + }); + }); + // data3d.nodes.forEach((node) => { + // delete node.data.x; + // delete node.data.y; + // delete node.data.z; + // }); + + return inputData; +}; + +export default () => { + const result2d = getDataFor2D(data); + degrees = result2d.degrees; + dataFor2D = result2d.data; + dataFor3D = getDataFor3D(data3d); + + graph = create2DGraph(); + const { rendererSelect, themeSelect, customThemeSelect, zoomIn, zoomOut } = + addButtons(); + + rendererSelect.addEventListener('change', (e: any) => { + const type = e.target.value; + console.log('changerenderer', graph); + handleSwitchRenderer(type.toLowerCase(), graph); + // graph.changeRenderer(type.toLowerCase()); + }); + themeSelect.addEventListener('change', (e: any) => { + const type = e.target.value; + handleSwitchTheme(type, customThemeSelect); + }); + zoomIn.addEventListener('click', () => handleZoom(graph, true)); + zoomOut.addEventListener('click', () => handleZoom(graph, false)); + + // stats + // const stats = new Stats(); + // stats.showPanel(0); + // const $stats = stats.dom; + // $stats.style.position = 'absolute'; + // $stats.style.left = '0px'; + // $stats.style.top = '0px'; + // document.body.appendChild($stats); + // graph.canvas.addEventListener('afterrender', () => { + // if (stats) { + // stats.update(); + // } + // }); + + return graph; +}; diff --git a/packages/g6/tests/intergration/demo/demoFor4.ts b/packages/g6/tests/intergration/demo/demoFor4.ts new file mode 100644 index 0000000000..a95d5d58af --- /dev/null +++ b/packages/g6/tests/intergration/demo/demoFor4.ts @@ -0,0 +1,125 @@ +import G6 from '@antv/G6'; +import { container, width } from '../../datasets/const'; +import data from './data'; +import { labelPropagation } from '@antv/algorithm'; +import Stats from 'stats.js'; + +const nodeIds = []; + +const edges = data.edges.map((edge) => { + return { + id: `edge-${Math.random()}`, + source: edge.source, + target: edge.target, + data: {}, + }; +}); + +const degrees = {}; +edges.forEach((edge) => { + const { source, target } = edge; + degrees[source] = degrees[source] || 0; + degrees[target] = degrees[target] || 0; + degrees[source]++; + degrees[target]++; +}); + +const nodes = data.nodes + .map((node) => { + const id = node.id || `node-${Math.random()}`; + if (nodeIds.includes(id)) return; + nodeIds.push(id); + return { + id: id as string, + // label: node.olabel, + x: node.x * 10 - 3000, + y: node.y * 10 - 5000, + icon: { + show: true, + img: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg', + width: 12 + degrees[id] / 4, + height: 12 + degrees[id] / 4, + opacity: 0.8, + }, + }; + }) + .filter(Boolean); + +const clusteredData = labelPropagation({ nodes, edges }, false); + +const subjectColors = [ + '#5F95FF', // blue + '#61DDAA', + '#65789B', + '#F6BD16', + '#7262FD', + '#78D3F8', + '#9661BC', + '#F6903D', + '#008685', + '#F08BB4', +]; +const colorSets = G6.Util.getColorSetsBySubjectColors( + subjectColors, + '#fff', + 'default', + '#777', +); + +clusteredData.clusters.forEach((cluster, i) => { + const colorSet = colorSets[i % colorSets.length]; + cluster.nodes.forEach((node) => { + node.cluster = `c${i}`; + node.style = { + fill: colorSet.mainFill, + stroke: colorSet.mainStroke, + r: 12 + degrees[node.id] / 4, + }; + }); +}); + +const create2DGraph = () => { + const graph = new G6.Graph({ + container: container, + width, + height: 800, + fitView: true, + minZoom: 0.0001, + modes: { + default: [ + { type: 'zoom-canvas' }, + // @ts-ignore + { + type: 'drag-canvas', + enableOptimize: false, + }, + 'drag-node', + 'brush-select', + ], + }, + }); + graph.read({ nodes, edges }); + // graph.zoom(0.15); + return graph; +}; + +export default () => { + const graph = create2DGraph(); + // stats + const stats = new Stats(); + stats.showPanel(0); + const $stats = stats.dom; + $stats.style.position = 'absolute'; + $stats.style.left = '0px'; + $stats.style.top = '0px'; + document.body.appendChild($stats); + const update = () => { + if (stats) { + stats.update(); + } + requestAnimationFrame(update); + }; + update(); + + return graph; +}; diff --git a/packages/g6/tests/intergration/index.ts b/packages/g6/tests/intergration/index.ts index 70437433a3..4050a43ebb 100644 --- a/packages/g6/tests/intergration/index.ts +++ b/packages/g6/tests/intergration/index.ts @@ -10,6 +10,10 @@ import layouts_fruchterman_gpu from './layouts/fruchterman-gpu'; import layouts_force_3d from './layouts/force-3d'; import layouts_force_wasm_3d from './layouts/force-wasm-3d'; import performance from './performance/performance'; +import performance_layout from './performance/layout'; +import performance_layout_3d from './performance/layout-3d'; +import demo from './demo/demo'; +import demoFor4 from './demo/demoFor4'; export { behaviors_activateRelations, layouts_circular, @@ -23,4 +27,8 @@ export { behaviors_brush_select, behaviors_click_select, performance, + performance_layout, + performance_layout_3d, + demo, + demoFor4, }; diff --git a/packages/g6/tests/intergration/layouts/force-wasm-3d.ts b/packages/g6/tests/intergration/layouts/force-wasm-3d.ts index ed5f8a1401..ed4389fd72 100644 --- a/packages/g6/tests/intergration/layouts/force-wasm-3d.ts +++ b/packages/g6/tests/intergration/layouts/force-wasm-3d.ts @@ -57,18 +57,27 @@ export default async () => { strokeOpacity: 0.6, }, }, - node: { - type: 'sphere-node', - keyShape: { - r: 10, - opacity: 0.6, - }, - // labelShape: { - // text: 'node-label', - // }, - // iconShape: { - // img: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg', - // }, + node: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + type: 'sphere-node', + keyShape: { + r: 10, + opacity: 0.6, + }, + labelShape: { + text: innerModel.id, + fill: 'white', + maxWidth: '400%', + lod: -1, + offsetY: 20, + wordWrap: false, // FIXME: mesh.getBounds() returns an empty AABB + isBillboard: true, + }, + }, + }; }, nodeState: { selected: { diff --git a/packages/g6/tests/intergration/performance/layout-3d.ts b/packages/g6/tests/intergration/performance/layout-3d.ts new file mode 100644 index 0000000000..2069d9ea50 --- /dev/null +++ b/packages/g6/tests/intergration/performance/layout-3d.ts @@ -0,0 +1,207 @@ +import G6 from '../../../src/index'; +import { supportsThreads, initThreads, ForceLayout } from '@antv/layout-wasm'; +import { loadDataset } from '../../datasets/legacy-format'; + +export default async () => { + const $container = document.getElementById('container')!; + $container.style.display = 'none'; + + const WIDTH = 500; + const HEIGHT = 500; + + const $app = document.getElementById('app')!; + const $containers = document.createElement('div'); + $app.appendChild($containers); + $containers.style.display = 'flex'; + + const $container1 = document.createElement('div'); + const $container2 = document.createElement('div'); + $containers.appendChild($container1); + $containers.appendChild($container2); + $container1.style.flex = '1'; + $container1.style.position = 'relative'; + $container2.style.flex = '1'; + $container2.style.position = 'relative'; + + const $timer1 = document.createElement('div'); + $timer1.style.cssText = ` + font-size: 26px; + color: white; + position: absolute; + top: 0; + left: 0; + z-index: 1;`; + $container1.appendChild($timer1); + const $timer2 = document.createElement('div'); + $timer2.style.cssText = ` + font-size: 26px; + color: white; + position: absolute; + top: 0; + left: 0; + z-index: 1;`; + $container2.appendChild($timer2); + + const data = await loadDataset( + 'https://gw.alipayobjects.com/os/basement_prod/da5a1b47-37d6-44d7-8d10-f3e046dabf82.json', + ); + + const layoutOptions = { + dimensions: 3, + maxIteration: 500, + minMovement: 0.4, + distanceThresholdMode: 'mean', + height: HEIGHT, + width: WIDTH, + center: [WIDTH / 2, HEIGHT / 2, 0], + factor: 1, + gravity: 10, + linkDistance: 200, + edgeStrength: 200, + nodeStrength: 1000, + coulombDisScale: 0.005, + damping: 0.9, + maxSpeed: 1000, + interval: 0.02, + }; + + // Force layout WASM + (async () => { + const supported = await supportsThreads(); + const threads = await initThreads(supported); + + // Register custom layout + G6.stdLib.layouts['force-wasm'] = ForceLayout; + + const graph = new G6.Graph({ + container: $container1, + width: WIDTH, + height: HEIGHT, + type: 'graph', + renderer: 'webgl-3d', + modes: { + default: [ + { + type: 'orbit-canvas-3d', + trigger: 'drag', + }, + 'zoom-canvas-3d', + ], + }, + data: JSON.parse(JSON.stringify(data)), + edge: { + type: 'line-edge', + keyShape: { + lineWidth: 1, + stroke: 'grey', + strokeOpacity: 0.6, + }, + }, + node: { + type: 'sphere-node', + keyShape: { + r: 10, + opacity: 0.6, + }, + }, + layout: { + type: 'force-wasm', + threads, + ...layoutOptions, + }, + }); + + let timer; + graph.on('startlayout', () => { + const startTime = performance.now(); + timer = setInterval(() => { + $timer1.innerHTML = `@antv/layout-wasm: ${( + performance.now() - startTime + ).toFixed(2)}ms`; + }, 1); + }); + + graph.on('endlayout', () => { + clearInterval(timer); + + const camera = graph.canvas.getCamera(); + let counter = 0; + const tick = () => { + if (counter < 80) { + camera.dolly(3); + counter++; + } + camera.rotate(0.4, 0); + requestAnimationFrame(tick); + }; + tick(); + }); + })(); + + // Force layout + (() => { + const graph = new G6.Graph({ + container: $container2, + width: WIDTH, + height: HEIGHT, + type: 'graph', + renderer: 'webgl-3d', + modes: { + default: [ + { + type: 'orbit-canvas-3d', + trigger: 'drag', + }, + 'zoom-canvas-3d', + ], + }, + edge: { + type: 'line-edge', + keyShape: { + lineWidth: 1, + stroke: 'grey', + strokeOpacity: 0.6, + }, + }, + node: { + type: 'sphere-node', + keyShape: { + r: 10, + opacity: 0.6, + }, + }, + data: JSON.parse(JSON.stringify(data)), + layout: { + type: 'force', + workerEnabled: true, + ...layoutOptions, + }, + }); + + let timer; + graph.on('startlayout', () => { + const startTime = performance.now(); + timer = setInterval(() => { + $timer2.innerHTML = `@antv/layout: ${( + performance.now() - startTime + ).toFixed(2)}ms`; + }, 1); + }); + + graph.on('endlayout', () => { + clearInterval(timer); + + const camera = graph.canvas.getCamera(); + let counter = 0; + const tick = () => { + if (counter < 80) { + camera.dolly(3); + counter++; + } + camera.rotate(0.4, 0); + requestAnimationFrame(tick); + }; + tick(); + }); + })(); +}; diff --git a/packages/g6/tests/intergration/performance/layout.ts b/packages/g6/tests/intergration/performance/layout.ts new file mode 100644 index 0000000000..a4a020888f --- /dev/null +++ b/packages/g6/tests/intergration/performance/layout.ts @@ -0,0 +1,204 @@ +import G6 from '../../../src/index'; +import { supportsThreads, initThreads, ForceLayout } from '@antv/layout-wasm'; +import { loadDataset } from '../../datasets/legacy-format'; +import { labelPropagation } from '@antv/algorithm'; + +export default async () => { + const $container = document.getElementById('container')!; + $container.style.display = 'none'; + + const WIDTH = 500; + const HEIGHT = 500; + + const $app = document.getElementById('app')!; + const $containers = document.createElement('div'); + $app.appendChild($containers); + $containers.style.display = 'flex'; + + const $container1 = document.createElement('div'); + const $container2 = document.createElement('div'); + $containers.appendChild($container1); + $containers.appendChild($container2); + $container1.style.flex = '1'; + $container1.style.position = 'relative'; + $container1.id = 'wasm'; + $container2.style.flex = '1'; + $container2.style.position = 'relative'; + $container2.id = 'cpu'; + + const $timer1 = document.createElement('div'); + $timer1.style.cssText = ` + font-size: 26px; + color: white; + position: absolute; + top: 0; + left: 0; + z-index: 1;`; + $container1.appendChild($timer1); + const $timer2 = document.createElement('div'); + $timer2.style.cssText = ` + font-size: 26px; + color: white; + position: absolute; + top: 0; + left: 0; + z-index: 1;`; + $container2.appendChild($timer2); + + const data = await loadDataset( + 'https://gw.alipayobjects.com/os/basement_prod/da5a1b47-37d6-44d7-8d10-f3e046dabf82.json', + ); + + const clusteredData = labelPropagation(data, false); + clusteredData.clusters.forEach((cluster, i) => { + cluster.nodes.forEach((node) => { + node.data.cluster = `c${i}`; + }); + }); + const degrees = {}; + data.edges.forEach((edge) => { + const { source, target } = edge; + degrees[source] = degrees[source] || 0; + degrees[target] = degrees[target] || 0; + degrees[source]++; + degrees[target]++; + }); + + const configures = { + modes: { + default: ['zoom-canvas', 'drag-node'], + }, + theme: { + type: 'spec', + specification: { + node: { + dataTypeField: 'cluster', + }, + }, + }, + node: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + keyShape: { + ...innerModel.data.keyShape, + r: 12 + degrees[innerModel.id] / 4, + }, + }, + }; + }, + edge: (innerModel) => { + return { + ...innerModel, + data: { + ...innerModel.data, + type: 'line-edge', + keyShape: { + lineWidth: 1, + stroke: '#fff', + opacity: 1, + }, + }, + }; + }, + }; + + const layoutOptions = { + dimensions: 2, + maxIteration: 200, + minMovement: 0.4, + distanceThresholdMode: 'mean', + height: HEIGHT, + width: WIDTH, + center: [WIDTH / 2, HEIGHT / 2], + factor: 1, + gravity: 10, + linkDistance: 200, + edgeStrength: 200, + nodeStrength: 1000, + coulombDisScale: 0.005, + damping: 0.9, + maxSpeed: 1000, + interval: 0.02, + }; + + // Force layout WASM + (async () => { + const supported = await supportsThreads(); + const threads = await initThreads(supported); + + // Register custom layout + G6.stdLib.layouts['force-wasm'] = ForceLayout; + + const graph = new G6.Graph({ + container: $container1, + width: WIDTH, + height: HEIGHT, + type: 'graph', + data: JSON.parse(JSON.stringify(data)), + layout: { + type: 'force-wasm', + threads, + ...layoutOptions, + maxIteration: 400, + minMovement: 0.8, + }, + ...configures, + }); + + let timer; + graph.on('startlayout', () => { + const startTime = performance.now(); + timer = setInterval(() => { + $timer1.innerHTML = `Time: ${(performance.now() - startTime).toFixed( + 2, + )}ms`; + }, 1); + }); + + graph.on('endlayout', () => { + clearInterval(timer); + graph.zoom(0.1, undefined, { + duration: 1000, + }); + }); + })(); + + // Force layout + (() => { + const graph = new G6.Graph({ + container: $container2, + width: WIDTH, + height: HEIGHT, + type: 'graph', + data: JSON.parse(JSON.stringify(data)), + layout: { + type: 'force', + workerEnabled: true, + ...layoutOptions, + maxIteration: 8000, + minMovement: 0.2, + }, + ...configures, + }); + + let timer; + graph.on('startlayout', () => { + const startTime = performance.now(); + timer = setInterval(() => { + $timer2.innerHTML = `Time: ${(performance.now() - startTime).toFixed( + 2, + )}ms`; + }, 1); + }); + + graph.on('endlayout', () => { + clearInterval(timer); + + graph.zoom(0.1, undefined, { + duration: 1000, + }); + }); + })(); +}; diff --git a/packages/g6/tests/intergration/performance/performance.ts b/packages/g6/tests/intergration/performance/performance.ts index 3615952e57..218280b798 100644 --- a/packages/g6/tests/intergration/performance/performance.ts +++ b/packages/g6/tests/intergration/performance/performance.ts @@ -1,10 +1,12 @@ -import G6 from '../../../src/index'; import { - BadgePosition, - IBadgePosition, - ShapeStyle, -} from '../../../src/types/item'; -import { container, height, width } from '../../datasets/const'; + ForceLayout, + FruchtermanLayout, + initThreads, + supportsThreads, +} from '@antv/layout-wasm'; +import G6 from '../../../src/index'; +import { IBadgePosition } from '../../../src/types/item'; +import { container, width } from '../../datasets/const'; const data = { nodes: [ { id: 'Myriel', data: { x: 122.619579008568, y: -121.31805520154471 } }, @@ -1744,9 +1746,7 @@ const clusters = [ 'Brujon', ], ]; -let nodes = data.nodes.map((node) => { - node.data.x += 400; - node.data.y += 250; +const nodes = data.nodes.map((node) => { let nocluster = true; clusters.forEach((cluster, i) => { if (cluster.includes(node.id)) { @@ -1759,196 +1759,221 @@ let nodes = data.nodes.map((node) => { // @ts-ignore node.data.cluster = 0; } + node.data.layout = { + id: node.id, + x: node.data.x, + y: node.data.y, + }; return node; }); -nodes = nodes - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-2`, - data: { - ...node.data, - x: node.data.x + 500, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-3`, - data: { - ...node.data, - x: node.data.x + 1000, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-4`, - data: { - ...node.data, - x: node.data.x + 1500, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-5`, - data: { - ...node.data, - y: node.data.y + 1000, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-6`, - data: { - ...node.data, - x: node.data.x + 500, - y: node.data.y + 1000, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-7`, - data: { - ...node.data, - x: node.data.x + 1000, - y: node.data.y + 1000, - }, - }; - }), - ) - .concat( - nodes.map((node) => { - return { - ...node, - id: `${node.id}-8`, - data: { - ...node.data, - x: node.data.x + 1500, - y: node.data.y + 1000, - }, - }; - }), - ); -const edges = data.edges - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-2`, - source: `${edge.source}-2`, - target: `${edge.target}-2`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-3`, - source: `${edge.source}-3`, - target: `${edge.target}-3`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-4`, - source: `${edge.source}-4`, - target: `${edge.target}-4`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-5`, - source: `${edge.source}-5`, - target: `${edge.target}-5`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-6`, - source: `${edge.source}-6`, - target: `${edge.target}-6`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-7`, - source: `${edge.source}-7`, - target: `${edge.target}-7`, - }; - }), - ) - .concat( - data.edges.map((edge) => { - return { - ...edge, - id: `${edge.id}-8`, - source: `${edge.source}-8`, - target: `${edge.target}-8`, - }; - }), - ); -export default () => { - console.log( - 'graphsize: #NODE:', - nodes.length, - ', #EDGE:', - edges.length, - '#SHAPES', - nodes.length * 10 + edges.length * 4, - ); - return new G6.Graph({ +// nodes = nodes.concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-2`, +// data: { +// ...node.data, +// x: node.data.x + 500, +// }, +// }; +// }), +// ); +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-3`, +// data: { +// ...node.data, +// x: node.data.x + 1000, +// }, +// }; +// }), +// ); +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-4`, +// data: { +// ...node.data, +// x: node.data.x + 1500, +// }, +// }; +// }), +// ) +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-5`, +// data: { +// ...node.data, +// y: node.data.y + 1000, +// }, +// }; +// }), +// ) +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-6`, +// data: { +// ...node.data, +// x: node.data.x + 500, +// y: node.data.y + 1000, +// }, +// }; +// }), +// ) +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-7`, +// data: { +// ...node.data, +// x: node.data.x + 1000, +// y: node.data.y + 1000, +// }, +// }; +// }), +// ) +// .concat( +// nodes.map((node) => { +// return { +// ...node, +// id: `${node.id}-8`, +// data: { +// ...node.data, +// x: node.data.x + 1500, +// y: node.data.y + 1000, +// }, +// }; +// }), +// ); +const edges = data.edges; +// const edges = data.edges.concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-2`, +// source: `${edge.source}-2`, +// target: `${edge.target}-2`, +// }; +// }), +// ); +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-3`, +// source: `${edge.source}-3`, +// target: `${edge.target}-3`, +// }; +// }), +// ) +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-4`, +// source: `${edge.source}-4`, +// target: `${edge.target}-4`, +// }; +// }), +// ) +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-5`, +// source: `${edge.source}-5`, +// target: `${edge.target}-5`, +// }; +// }), +// ) +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-6`, +// source: `${edge.source}-6`, +// target: `${edge.target}-6`, +// }; +// }), +// ) +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-7`, +// source: `${edge.source}-7`, +// target: `${edge.target}-7`, +// }; +// }), +// ) +// .concat( +// data.edges.map((edge) => { +// return { +// ...edge, +// id: `${edge.id}-8`, +// source: `${edge.source}-8`, +// target: `${edge.target}-8`, +// }; +// }), +// ); + +const degrees = {}; +edges.forEach((edge) => { + const { source, target } = edge; + degrees[source] = degrees[source] || 0; + degrees[target] = degrees[target] || 0; + degrees[source]++; + degrees[target]++; +}); + +const createGraph = async () => { + const supported = await supportsThreads(); + const threads = await initThreads(supported); + G6.stdLib.layouts['force-wasm'] = ForceLayout; + G6.stdLib.layouts['fruchterman-wasm'] = FruchtermanLayout; + const graph = new G6.Graph({ container: container as HTMLElement, width, height: 1200, type: 'graph', - renderer: 'webgl', + // renderer: 'webgl', data: { nodes, edges }, + layout: { + type: 'force-wasm', + threads, + dimensions: 2, + maxIteration: 800, + minMovement: 0.4, + distanceThresholdMode: 'mean', + factor: 1, + gravity: 10, + linkDistance: 80, + edgeStrength: 200, + nodeStrength: 1000, + coulombDisScale: 0.005, + damping: 0.9, + maxSpeed: 1000, + interval: 0.02, + }, modes: { default: [ 'zoom-canvas', - // @ts-ignore - { - type: 'drag-canvas', - scalableRange: 0.9, - }, + 'drag-canvas', 'drag-node', + 'brush-select', + 'click-select', + 'hover-activate', ], }, - // @ts-ignore theme: { type: 'spec', specification: { @@ -1962,54 +1987,96 @@ export default () => { ...innerModel, data: { ...innerModel.data, - labelShape: { - position: 'end', - text: 'edge-label', - }, - labelBackgroundShape: { - fill: '#fff', - }, - iconShape: { - text: 'A', + keyShape: { + lineWidth: 0.5, }, + haloShape: {}, animates: { buildIn: [ { fields: ['opacity'], - duration: 300, + shapeId: 'keyShape', + duration: 500, delay: 1000, }, ], + buildOut: [ + { + fields: ['opacity'], + duration: 200, + }, + ], + update: [ + { + fields: ['lineWidth'], + shapeId: 'keyShape', + }, + { + fields: ['opacity'], // 'r' error, 'lineWidth' has no effect + shapeId: 'haloShape', + }, + ], }, }, }; }, node: (innerModel) => { - const badgeShapes: (ShapeStyle & { - position?: IBadgePosition; - color?: string; - textColor?: string; - })[] = [ - { + const degree = degrees[innerModel.id] || 0; + let labelLod = 4; + if (degree > 20) labelLod = -1; + else if (degree > 15) labelLod = 0; + else if (degree > 10) labelLod = 1; + else if (degree > 6) labelLod = 2; + else if (degree > 3) labelLod = 3; + + const badgeShapes = {}; + + if (degree > 20) { + badgeShapes[0] = { text: '核心人员', - position: 'right', + position: 'right' as IBadgePosition, color: '#389e0d', - }, - { + lod: labelLod - 2, + }; + } + if (degree > 15) { + badgeShapes[1] = { text: 'A', - position: 'rightTop', + position: 'rightTop' as IBadgePosition, color: '#d4380d', - }, - { + lod: labelLod - 1, + }; + } + if (degree > 10) { + badgeShapes[2] = { text: 'B', - position: 'rightBottom', - color: '#ccc', - }, - ]; + position: 'rightBottom' as IBadgePosition, + color: '#aaa', + lod: labelLod - 1, + }; + } + return { ...innerModel, data: { ...innerModel.data, + lodStrategy: { + levels: [ + { zoomRange: [0, 0.8] }, // -2 + { zoomRange: [0.8, 0.9] }, // -1 + { zoomRange: [0.9, 1], primary: true }, // 0 + { zoomRange: [1, 1.1] }, // 1 + { zoomRange: [1.1, 0.2] }, // 2 + { zoomRange: [1.2, 1.3] }, // 3 + { zoomRange: [1.3, 1.4] }, // 4 + { zoomRange: [1.4, 1.5] }, // 5 + { zoomRange: [1.5, Infinity] }, // 6 + ], + animateCfg: { + duration: 500, + }, + }, + animates: { buildIn: [ { @@ -2018,6 +2085,12 @@ export default () => { delay: 500 + Math.random() * 500, }, ], + buildOut: [ + { + fields: ['opacity'], + duration: 200, + }, + ], hide: [ { fields: ['size'], @@ -2046,40 +2119,117 @@ export default () => { order: 0, }, ], + update: [ + { + fields: ['fill', 'r'], + shapeId: 'keyShape', + }, + { + fields: ['lineWidth'], + shapeId: 'keyShape', + duration: 100, + }, + { + fields: ['fontSize'], + shapeId: 'iconShape', + }, + { + fields: ['opacity'], // 'r' error, 'lineWidth' has no effect + shapeId: 'haloShape', + }, + ], }, + haloShape: {}, // animate in shapes, unrelated to each other, excuted parallely keyShape: { - r: 15, + r: innerModel.data.size ? innerModel.data.size / 2 : 15, }, iconShape: { img: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg', fill: '#fff', + lod: labelLod - 1, + fontSize: innerModel.data.size ? innerModel.data.size / 3 + 5 : 13, }, labelShape: { text: innerModel.id, opacity: 0.8, maxWidth: '150%', + lod: labelLod, }, - labelBackgroundShape: {}, - badgeShapes: { - 0: { - text: '核心人员', - position: 'right' as IBadgePosition, - color: '#389e0d', - }, - 1: { - text: 'A', - position: 'rightTop' as IBadgePosition, - color: '#d4380d', - }, - 2: { - text: 'B', - position: 'rightBottom' as IBadgePosition, - color: '#aaa', - }, + labelBackgroundShape: { + lod: labelLod, }, + badgeShapes, }, }; }, }); + graph.zoomTo(0.7); + return graph; +}; + +export default async () => { + console.log( + 'graphsize: #NODE:', + nodes.length, + ', #EDGE:', + edges.length, + '#SHAPES', + nodes.length * 10 + edges.length * 4, + ); + let graph = await createGraph(); + + const btnImportance = document.createElement('button'); + btnImportance.innerHTML = '节点重要性分析'; + btnImportance.style.position = 'absolute'; + btnImportance.style.top = '164px'; + btnImportance.style.left = '373px'; + btnImportance.style.zIndex = '100'; + document.body.appendChild(btnImportance); + btnImportance.addEventListener('click', (e) => { + graph.updateData( + 'node', + nodes.map((node) => ({ + id: node.id, + data: { + size: degrees[node.id] + 24, + }, + })), + ); + }); + + const btnColor = document.createElement('button'); + btnColor.innerHTML = '更换颜色顺序'; + btnColor.style.position = 'absolute'; + btnColor.style.top = '164px'; + btnColor.style.left = '573px'; + btnColor.style.zIndex = '100'; + document.body.appendChild(btnColor); + btnColor.addEventListener('click', (e) => { + graph.updateData( + 'node', + nodes.map((node) => ({ + id: node.id, + data: { + cluster: node.data.cluster + 1, + }, + })), + ); + }); + + const btnDestroy = document.createElement('button'); + btnDestroy.innerHTML = '销毁图'; + btnDestroy.style.position = 'absolute'; + btnDestroy.style.top = '164px'; + btnDestroy.style.left = '773px'; + btnDestroy.style.zIndex = '100'; + document.body.appendChild(btnDestroy); + btnDestroy.addEventListener('click', async (e) => { + if (graph.destroyed) { + graph = await createGraph(); + } else { + graph.destroy(); + } + }); + return graph; }; diff --git a/packages/g6/tests/main.ts b/packages/g6/tests/main.ts index 121c85fc80..aff63e503e 100644 --- a/packages/g6/tests/main.ts +++ b/packages/g6/tests/main.ts @@ -1,5 +1,6 @@ import * as graphs from './intergration/index'; +performance.mark('create select'); const SelectGraph = document.getElementById('select') as HTMLSelectElement; const Options = Object.keys(graphs).map((key) => { const option = document.createElement('option'); @@ -7,6 +8,7 @@ const Options = Object.keys(graphs).map((key) => { option.textContent = key; return option; }); +performance.mark('create select'); SelectGraph.replaceChildren(...Options); @@ -19,8 +21,16 @@ SelectGraph.onchange = (e) => { graphs[value](); }; +performance.mark('init'); // 初始化 const params = new URL(location.href).searchParams; const initialExampleName = params.get('name'); SelectGraph.value = initialExampleName || Options[0].value; graphs[SelectGraph.value](); +performance.mark('init'); + +console.log( + 'create select', + performance.measure('create select'), + performance.measure('init'), +); diff --git a/packages/g6/tests/unit/plugins/minimap-spec.ts b/packages/g6/tests/unit/plugins/minimap-spec.ts index f8e9573121..d3b1ef24fd 100644 --- a/packages/g6/tests/unit/plugins/minimap-spec.ts +++ b/packages/g6/tests/unit/plugins/minimap-spec.ts @@ -50,7 +50,7 @@ describe('plugin', () => { expect(pxCompare(viewport.style.height, 120)).toBe(true); graph.zoom(3); - graph.translate(50, 250); + graph.translate({ dx: 50, dy: 250 }); // setTimeout for: 1. zoom an translate are async function; 2. minimap viewport debounce update setTimeout(() => { expect(pxCompare(viewport.style.left, 100)).toBe(true); diff --git a/packages/g6/tests/unit/show-animate-spec.ts b/packages/g6/tests/unit/show-animate-spec.ts index 9b9c4aa6ce..a543022204 100644 --- a/packages/g6/tests/unit/show-animate-spec.ts +++ b/packages/g6/tests/unit/show-animate-spec.ts @@ -1925,13 +1925,13 @@ describe('graph show up animations', () => { ...innerModel, data: { ...innerModel.data, - // zoomStrategy: { + // lodStrategy: { // levels: [ - // { range: [0, 0.65] }, - // { range: [0.65, 0.8] }, - // { range: [0.8, 1.6], primary: true }, - // { range: [1.6, 2] }, - // { range: [2, Infinity] }, + // { zoomRange: [0, 0.65] }, + // { zoomRange: [0.65, 0.8] }, + // { zoomRange: [0.8, 1.6], primary: true }, + // { zoomRange: [1.6, 2] }, + // { zoomRange: [2, Infinity] }, // ], // animateCfg: { // duration: 200, @@ -1986,13 +1986,13 @@ describe('graph show up animations', () => { x, y, // TODO: different for nodes, and config in theme - // zoomStrategy: { + // lodStrategy: { // levels: [ - // { range: [0, 0.65] }, - // { range: [0.65, 0.8] }, - // { range: [0.8, 1.6], primary: true }, - // { range: [1.6, 2] }, - // { range: [2, Infinity] }, + // { zoomRange: [0, 0.65] }, + // { zoomRange: [0.65, 0.8] }, + // { zoomRange: [0.8, 1.6], primary: true }, + // { zoomRange: [1.6, 2] }, + // { zoomRange: [2, Infinity] }, // ], // animateCfg: { // duration: 200, @@ -2071,13 +2071,13 @@ describe('graph show up animations', () => { // default: ['zoom-canvas'], // }, // node: d => { - // zoomStrategy: { + // lodStrategy: { // levels: [ - // { range: [0, 0.65] }, - // { range: [0.65, 0.8] }, - // { range: [0.8, 1.6], primary: true }, - // { range: [1.6, 2] }, - // { range: [2, Infinity] }, + // { zoomRange: [0, 0.65] }, + // { zoomRange: [0.65, 0.8] }, + // { zoomRange: [0.8, 1.6], primary: true }, + // { zoomRange: [1.6, 2] }, + // { zoomRange: [2, Infinity] }, // ], // animateCfg: { // duration: 200, diff --git a/packages/g6/tests/unit/view-spec.ts b/packages/g6/tests/unit/view-spec.ts index 4ca0469dcb..6a394a9480 100644 --- a/packages/g6/tests/unit/view-spec.ts +++ b/packages/g6/tests/unit/view-spec.ts @@ -22,12 +22,12 @@ describe('viewport', () => { }); graph.once('afterlayout', () => { - graph.translate(250, 250); + graph.translate({ dx: 250, dy: 250 }); let [px, py] = graph.canvas.getCamera().getPosition(); expect(px).toBeCloseTo(0, 1); expect(py).toBeCloseTo(0, 1); - graph.translate(-250, -250); + graph.translate({ dx: -250, dy: -250 }); [px, py] = graph.canvas.getCamera().getPosition(); expect(px).toBeCloseTo(250, 1); expect(py).toBeCloseTo(250, 1); @@ -52,9 +52,12 @@ describe('viewport', () => { }); graph.once('afterlayout', async () => { - await graph.translate(249, 249, { - duration: 1000, - }); + await graph.translate( + { dx: 249, dy: 249 }, + { + duration: 1000, + }, + ); graph.once('viewportchange', ({ translate }) => { expect(translate.dx).toBeCloseTo(-250, 1); @@ -429,9 +432,12 @@ describe('viewport', () => { }); graph.once('afterlayout', async () => { - await graph.translate(249, 249, { - duration: 1000, - }); + await graph.translate( + { dx: 249, dy: 249 }, + { + duration: 1000, + }, + ); graph.once('viewportchange', ({ translate }) => { expect(translate.dx).toBeCloseTo(-249, 1); @@ -447,7 +453,7 @@ describe('viewport', () => { }); await graph.zoom(0.5); - await graph.translate(249, 249); + await graph.translate({ dx: 249, dy: 249 }); graph.once('viewportchange', ({ translate }) => { expect(translate.dx).toBeCloseTo(-249, 1); expect(translate.dy).toBeCloseTo(-249, 1); @@ -577,10 +583,13 @@ describe('viewport', () => { easing: 'ease-in', }, ); - await graph.translate(100, 100, { - duration: 1000, - easing: 'ease-in', - }); + await graph.translate( + { dx: 100, dy: 100 }, + { + duration: 1000, + easing: 'ease-in', + }, + ); await graph.fitView( { padding: [150, 100], diff --git a/packages/g6/vite.config.js b/packages/g6/vite.config.js index 61848b5135..e60a755240 100644 --- a/packages/g6/vite.config.js +++ b/packages/g6/vite.config.js @@ -10,7 +10,16 @@ export default defineConfig({ // @see https://github.com/vitejs/vite/issues/10839#issuecomment-1345193175 // @see https://vitejs.dev/guide/dep-pre-bundling.html#customizing-the-behavior // @see https://vitejs.dev/config/dep-optimization-options.html#optimizedeps-exclude - exclude: ['@antv/layout-wasm'], + exclude: [ + '@antv/layout-wasm', + // '@antv/gui', + // '@antv/layout', + // '@antv/algorithm', + // '@antv/layout-gpu', + // '@antv/g', + // '@antv/g-canvas', + // '@antv/g-webgl', + ], }, plugins: [ {