ruby-graphviz 0.9.12 → 0.9.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,8 +10,20 @@ Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Gregoire Lejeune
10
10
 
11
11
  Interface to the GraphViz graphing tool
12
12
 
13
+ == TODO
14
+
15
+ * GraphViz::Parser support block
16
+ * New FamilyTree
17
+
13
18
  == CHANGELOG
14
19
 
20
+ === 0.9.13 :
21
+ * Add dot2ruby.g
22
+ * Bug correction with HTML label
23
+ * The html attribut is deprecated. You can use the label attribut, as dot do it : <tt>:label => '<<html/>>'</tt>
24
+ * Issue #15 : Thin server
25
+ * <b>WARNING</b> : FamilyTree is (still) broken in this version !
26
+
15
27
  === 0.9.12 :
16
28
  * GraphViz::Node#name is deprecated, you must use GraphViz::Node#id (issue #14)
17
29
  * Add :nothugly option to GraphViz#output (see sample41.rb and http://www.hokstad.com/making-graphviz-output-pretty-with-xsl.html)
@@ -20,14 +32,12 @@ Interface to the GraphViz graphing tool
20
32
  * Issue #12 : UTF8 support (see sample38.rb)
21
33
  * Move and rename examples + remove maketest.[sh|bat]
22
34
  * <b>WARNING</b> : FamilyTree is broken in this version !
23
- * TODO: GraphViz::Parser support block
24
35
 
25
36
  === 0.9.11 :
26
37
  * Issue #11 : Cygwin PATH
27
38
  * Major bugs correction in output
28
39
  * Bug correction in find_executable
29
40
  * Add tests (by Chip Malice : http://github.com/hipe)
30
- * TODO: Issue #12
31
41
 
32
42
  === 0.9.10 :
33
43
  * Move ChangeLog in README
@@ -225,7 +235,9 @@ You also need to install GraphViz[http://www.graphviz.org] and Treetop[http://tr
225
235
 
226
236
  On *Windows* you also need to install win32-open3. This is not an absolute requirement.
227
237
 
228
- == LICENCE
238
+ == LICENCES
239
+
240
+ === Ruby/GraphViz
229
241
 
230
242
  Ruby/GraphViz is freely distributable according to the terms of the
231
243
  GNU General Public License (see the file 'COPYING').
@@ -233,7 +245,31 @@ GNU General Public License (see the file 'COPYING').
233
245
  This program is distributed without any warranty. See the file
234
246
  'COPYING' for details.
235
247
 
248
+ GNU General Public Licence: http://en.wikipedia.org/wiki/Gpl
249
+
236
250
  === nothugly.xsl
237
251
 
238
252
  By Vidar Hokstad and Ryan Shea; Contributions by Jonas Tingborn,
239
253
  Earl Cummings, Michael Kennedy (Graphviz 2.20.2 compatibility, bug fixes, testing, lots of gradients)
254
+
255
+ Copyright (c) 2009 Vidar Hokstad
256
+
257
+ Permission is hereby granted, free of charge, to any person obtaining a copy
258
+ of this software and associated documentation files (the "Software"), to deal
259
+ in the Software without restriction, including without limitation the rights
260
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
261
+ copies of the Software, and to permit persons to whom the Software is
262
+ furnished to do so, subject to the following conditions:
263
+
264
+ The above copyright notice and this permission notice shall be included in
265
+ all copies or substantial portions of the Software.
266
+
267
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
268
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
269
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
270
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
271
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
272
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
273
+ THE SOFTWARE.
274
+
275
+ MIT license: http://en.wikipedia.org/wiki/MIT_License
@@ -0,0 +1,36 @@
1
+ graph G
2
+ {
3
+ n1 [label="+"];
4
+ n2 [label="/"];
5
+ n1 -- n2;
6
+ n1b1 [label="", width=.1, style=invis]
7
+ n1 -- n1b1 [style=invis]
8
+ n1b2 [label="", width=.1, style=invis]
9
+ n1 -- n1b2 [style=invis]
10
+ n1b3 [label="", width=.1, style=invis]
11
+ n1 -- n1b3 [style=invis]
12
+ n7 [label="**"];
13
+ n1 -- n7;
14
+ { rank=same n2 -- n1b1 -- n1b2 -- n1b3 -- n7 [style=invis] }
15
+
16
+ n3 [label="*"];
17
+ n2 -- n3;
18
+ n2b1 [label="", width=.1, style=invis]
19
+ n2 -- n2b1 [style=invis]
20
+ n6 [label="3"];
21
+ n2 -- n6;
22
+ { rank=same n3 -- n2b1 -- n6 [style=invis] }
23
+
24
+ n8 [label="4"];
25
+ n7 -- n8;
26
+ n7b1 [label="", width=.1, style=invis]
27
+ n7 -- n7b1 [style=invis]
28
+ n9 [label="5"];
29
+ n7 -- n9;
30
+ { rank=same n8 -- n7b1 -- n9 [style=invis] }
31
+
32
+ n3 -- n4;
33
+ n4 [label="1"];
34
+ n3 -- n5;
35
+ n5 [label="2"];
36
+ }
@@ -7,17 +7,16 @@ g.node["shape"] = "plaintext"
7
7
 
8
8
  g.add_node( "HTML" )
9
9
 
10
- g.add_node( "struct1", "html" => '
11
- <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
10
+ g.add_node( "struct1", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
12
11
  <TR>
13
12
  <TD>left</TD>
14
13
  <TD PORT="f1">mid dle</TD>
15
14
  <TD PORT="f2">right</TD>
16
15
  </TR>
17
- </TABLE>' )
16
+ </TABLE>>' )
18
17
 
19
- g.add_node( "struct2", "html" => '<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"> <TR><TD PORT="f0">one</TD><TD>two</TD></TR> </TABLE>' )
20
- g.add_node( "struct3", "html" => '<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"> <TR> <TD ROWSPAN="3">hello<BR/>world</TD> <TD COLSPAN="3">b</TD> <TD ROWSPAN="3">g</TD> <TD ROWSPAN="3">h</TD> </TR> <TR> <TD>c</TD><TD PORT="here">d</TD><TD>e</TD> </TR> <TR> <TD COLSPAN="3">f</TD> </TR> </TABLE>' )
18
+ g.add_node( "struct2", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"> <TR><TD PORT="f0">one</TD><TD>two</TD></TR> </TABLE>>' )
19
+ g.add_node( "struct3", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"> <TR> <TD ROWSPAN="3">hello<BR/>world</TD> <TD COLSPAN="3">b</TD> <TD ROWSPAN="3">g</TD> <TD ROWSPAN="3">h</TD> </TR> <TR> <TD>c</TD><TD PORT="here">d</TD><TD>e</TD> </TR> <TR> <TD COLSPAN="3">f</TD> </TR> </TABLE>>' )
21
20
 
22
21
  g.add_edge( {"struct1" => :f1}, {"struct2" => :f0} )
23
22
  g.add_edge( {"struct1" => :f2}, {"struct3" => :here} )
@@ -0,0 +1,9 @@
1
+ $:.unshift( "../lib" )
2
+ require 'graphviz'
3
+
4
+ puts GraphViz.graph( :G ) { |g|
5
+ g[:label] = "<<b>This</b> is <i>a</i> <b>test</b>>"
6
+ n1 = g.add_node( "N1", :label => '<<b>node 1</b>>')
7
+ n2 = g.add_node( "N2", :label => '<<b>node 2</b>>')
8
+ g.add_edge( n1, n2, :label => '<<u>edge</u>>')
9
+ }.output( :png => "#{$0}.png", :none => String )
@@ -0,0 +1,146 @@
1
+ // Copyright (c) 2010 Gregoire Lejeune <gregoire.lejeune@free.fr>
2
+ //
3
+ // This program is free software; you can redistribute it and/or modify
4
+ // it under the terms of the GNU General Public License as published by
5
+ // the Free Software Foundation; either version 2 of the License, or
6
+ // (at your option) any later version.
7
+ //
8
+ // This program is distributed in the hope that it will be useful,
9
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ // GNU General Public License for more details.
12
+ //
13
+ // You should have received a copy of the GNU General Public License
14
+ // along with this program; if not, write to the Free Software
15
+ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
+
17
+ BEGIN {
18
+ int g_strict; int g_direct;
19
+ graph_t cluster;
20
+ node_t cnode;
21
+ edge_t cedge;
22
+ string attr; string attrv;
23
+ graph_t subgraph; graph_t pgraph;
24
+ graph_t ofgraph;
25
+
26
+ printf( "# This code was generated by dot2ruby.g\n\n" );
27
+
28
+ string rubyfy( string s ) {
29
+ string out;
30
+ out = tolower( s );
31
+ out = gsub( out, " ", "__" );
32
+ out = gsub( out, "'", "" );
33
+ out = gsub( out, "-", "_" );
34
+ out = gsub( out, ".", "" );
35
+ return( out );
36
+ }
37
+ }
38
+
39
+ BEG_G {
40
+ printf( "require 'rubygems'\nrequire 'graphviz'\n");
41
+ // Directed
42
+ g_direct = isDirect($);
43
+ if( g_direct == 0 ) {
44
+ printf( "graph_%s = GraphViz.graph( \"%s\"", rubyfy($.name), $.name );
45
+ } else {
46
+ printf( "graph_%s = GraphViz.digraph( \"%s\"", rubyfy($.name), $.name );
47
+ }
48
+ // Strict
49
+ g_strict = isStrict($);
50
+ if( g_strict != 0 ) {
51
+ printf( ", :strict => true" );
52
+ }
53
+ printf( " ) { |graph_%s|\n", rubyfy($.name) );
54
+
55
+ // Attributs of G
56
+ attr = fstAttr($, "G");
57
+ while( attr != "" ) {
58
+ attrv = aget( $, attr );
59
+ if( attrv != "" ) {
60
+ printf( " graph_%s[:%s] = '%s'\n", rubyfy($.name), attr, attrv );
61
+ }
62
+ attr = nxtAttr( $, "G", attr );
63
+ }
64
+
65
+ // Subgraph
66
+ subgraph = fstsubg( $ );
67
+ while( subgraph != NULL ) {
68
+ pgraph = subgraph.parent;
69
+ printf ( " graph_%s = graph_%s.add_graph( \"%s\" )\n", rubyfy(subgraph.name), pgraph.name, subgraph.name );
70
+
71
+ // ATTRS
72
+ attr = fstAttr(subgraph, "G");
73
+ while( attr != "" ) {
74
+ attrv = aget( subgraph, attr );
75
+ if( attrv != "" ) {
76
+ printf( " graph_%s[:%s] = '%s'\n", rubyfy(subgraph.name), attr, attrv );
77
+ }
78
+ attr = nxtAttr( subgraph, "G", attr );
79
+ }
80
+
81
+ subgraph = nxtsubg( subgraph );
82
+ }
83
+ }
84
+
85
+ N {
86
+ pgraph = $.root;
87
+ ofgraph = pgraph;
88
+
89
+ subgraph = fstsubg( pgraph );
90
+ while( subgraph != NULL ) {
91
+ if( isSubnode( subgraph, $ ) != 0 ) {
92
+ ofgraph = subgraph;
93
+ }
94
+ subgraph = nxtsubg( subgraph );
95
+ }
96
+
97
+ printf( " node_%s = graph_%s.add_node( \"%s\"", rubyfy($.name), rubyfy(ofgraph.name), $.name );
98
+
99
+ // Attributs of N
100
+ attr = fstAttr($G, "N");
101
+ while( attr != "" ) {
102
+ attrv = aget( $, attr );
103
+ if( attrv != "" ) {
104
+ printf( ", :%s => '%s'", attr, attrv );
105
+ } else {
106
+ printf( ", :%s => ''", attr );
107
+ }
108
+ attr = nxtAttr( $G, "N", attr );
109
+ }
110
+
111
+ printf( " )\n");
112
+ }
113
+
114
+ E {
115
+ pgraph = $.root;
116
+ ofgraph = pgraph;
117
+
118
+ subgraph = fstsubg( pgraph );
119
+ while( subgraph != NULL ) {
120
+ if( isSubedge( subgraph, $ ) != 0 ) {
121
+ ofgraph = subgraph;
122
+ }
123
+ subgraph = nxtsubg( subgraph );
124
+ }
125
+
126
+ printf( " graph_%s.add_edge( \"%s\", \"%s\"", rubyfy(ofgraph.name), $.tail.name, $.head.name );
127
+
128
+ // Attributs of E
129
+ attr = fstAttr($G, "E");
130
+ while( attr != "" ) {
131
+ attrv = aget( $, attr );
132
+ if( attrv != "" ) {
133
+ printf( ", :%s => '%s'", attr, attrv );
134
+ } else {
135
+ printf( ", :%s => ''", attr );
136
+ }
137
+ attr = nxtAttr( $G, "E", attr );
138
+ }
139
+
140
+ printf( " )\n" );
141
+ }
142
+
143
+ END_G {
144
+ printf( "}\n" );
145
+ printf( "puts graph_%s.output( :canon => String )\n", rubyfy($.name));
146
+ }
@@ -0,0 +1,560 @@
1
+ digraph sdsu {
2
+ graph [bb="0,0,5730.3,1558", fontname=Arial, fontsize=36, label="\nKappa Kappa Psi/Tau Beta Sigma\nSan Diego State University\nEta Mu and Zeta Xi Family Tree\n\nto date: November 30th, 2008\n", lp="2865.1,131", style=bold];
3
+ node [label="\N"];
4
+ "Lori Brede" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=10", color=lightpink, fontname=Verdana, height="0.51389", pos="2268.3,1021", width="1.8056", style=filled];
5
+ "Christine Mount" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=76", color=lightpink, fontname=Verdana, height="0.51389", pos="3155.3,725", width="2.5556", style=filled];
6
+ "Kathleen Moran" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=349", color=lightpink, fontname=Verdana, height="0.51389", pos="2717.3,947", width="2.5278", style=filled];
7
+ "Christina Kelly" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=36", color=lightpink, fontname=Verdana, height="0.51389", pos="3381.3,947", width="2.3333", style=filled];
8
+ "Josh Atwood" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=6", color=lightblue, fontname=Verdana, height="0.51389", pos="2101.3,873", width="2.0833", style=filled];
9
+ "Samuel Behar" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=82", color=lightblue, fontname=Verdana, height="0.51389", pos="1818.3,725", width="2.2778", style=filled];
10
+ "Michael Griffith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=24", color=lightblue, fontname=Verdana, height="0.51389", pos="2083.3,1095", width="2.4444", style=filled];
11
+ "Amie Holston" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=30", color=lightpink, fontname=Verdana, height="0.51389", pos="2268.3,1095", width="2.1944", style=filled];
12
+ "Matthew FitzGerald" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=19", color=lightblue, fontname=Verdana, height="0.51389", pos="2836.3,1021", width="3.0278", style=filled];
13
+ "Casey Carter" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=11", color=lightpink, fontname=Verdana, height="0.51389", pos="2659.3,1095", width="2.1667", style=filled];
14
+ "Laura De'Armond" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=14", color=lightpink, fontname=Verdana, height="0.51389", pos="2685.3,1169", width="2.7778", style=filled];
15
+ "Deanna Johnson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=31", color=lightpink, fontname=Verdana, height="0.51389", pos="2850.3,1095", width="2.6389", style=filled];
16
+ "Japheth Cleaver" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=12", color=lightpink, fontname=Verdana, height="0.51389", pos="1411.3,1095", width="2.5556", style=filled];
17
+ "Jillian Clifton" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=13", color=lightpink, fontname=Verdana, height="0.51389", pos="1159.3,873", width="2.0833", style=filled];
18
+ "Laura Simonette" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=351", color=lightpink, fontname=Verdana, height="0.51389", pos="5582.3,1021", width="2.6667", style=filled];
19
+ "Jennifer Brandon" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=9", color=lightpink, fontname=Verdana, height="0.51389", pos="1154.3,1021", width="2.7222", style=filled];
20
+ "Jeremy Browne" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=68", color=lightblue, fontname=Verdana, height="0.51389", pos="2322.3,947", width="2.5", style=filled];
21
+ "Sandra Chase" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=689", color=lightblue, fontname=Verdana, height="0.51389", pos="1420.3,873", width="2.2778", style=filled];
22
+ "Chuk Gawlik" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=22", color=lightblue, fontname=Verdana, height="0.51389", pos="2076.3,1169", width="2.0278", style=filled];
23
+ "Alfredo Cardenas" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=335", color=lightblue, fontname=Verdana, height="0.51389", pos="2464.3,1095", width="2.75", style=filled];
24
+ "Jamie Fratacci" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=44", color=lightpink, fontname=Verdana, height="0.51389", pos="2055.3,947", width="2.3056", style=filled];
25
+ "Stacy Snyder" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=309", color=lightpink, fontname=Verdana, height="0.51389", pos="310.29,1391", width="2.2222", style=filled];
26
+ "Kristen Elgo" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=7", color=lightpink, fontname=Verdana, height="0.51389", pos="797.29,1317", width="2.0278", style=filled];
27
+ "Steven Gross" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=318", color=lightblue, fontname=Verdana, height="0.51389", pos="104.29,1243", width="2.2222", style=filled];
28
+ "Dusty Jolliff" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=33", color=lightpink, fontname=Verdana, height="0.51389", pos="519.29,1243", width="1.9722", style=filled];
29
+ "David Guthrie" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=25", color=lightblue, fontname=Verdana, height="0.51389", pos="1641.3,947", width="2.2778", style=filled];
30
+ "Kristen Anderson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=350", color=lightpink, fontname=Verdana, height="0.51389", pos="1619.3,725", width="2.75", style=filled];
31
+ "Nathan Williams" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=352", color=lightblue, fontname=Verdana, height="0.51389", pos="1878.3,873", width="2.5556", style=filled];
32
+ "Tony Sacco" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=55", color=lightblue, fontname=Verdana, height="0.51389", pos="3187.3,1243", width="1.9167", style=filled];
33
+ "Karen Saye" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=56", color=lightpink, fontname=Verdana, height="0.51389", pos="1728.3,1169", width="1.9167", style=filled];
34
+ "Amy Price" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=57", color=lightpink, fontname=Verdana, height="0.51389", pos="3451.3,1095", width="1.7222", style=filled];
35
+ "Regan Ashker" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=5", color=lightpink, fontname=Verdana, height="0.51389", pos="3213.3,1169", width="2.2778", style=filled];
36
+ "Tiffany Kalland" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=35", color=lightpink, fontname=Verdana, height="0.51389", pos="2385.3,873", width="2.3889", style=filled];
37
+ "David Bronson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=84", color=lightblue, fontname=Verdana, height="0.51389", pos="3221.3,1021", width="2.3889", style=filled];
38
+ "Heather Smith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=59", color=lightpink, fontname=Verdana, height="0.51389", pos="1717.3,1243", width="2.3611", style=filled];
39
+ "Kathleen Hansen" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=27", color=lightpink, fontname=Verdana, height="0.51389", pos="2470.3,1169", width="2.6944", style=filled];
40
+ "Kristin Tang" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=61", color=lightpink, fontname=Verdana, height="0.51389", pos="1091.3,1169", width=2, style=filled];
41
+ "Kevin Decker" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=15", color=lightblue, fontname=Verdana, height="0.51389", pos="1675.3,1095", width="2.1667", style=filled];
42
+ "Chuck Foster" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=20", color=lightblue, fontname=Verdana, height="0.51389", pos="1637.3,1021", width="2.1667", style=filled];
43
+ "Karen Helbling" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=29", color=lightpink, fontname=Verdana, height="0.51389", pos="1869.3,947", width="2.3611", style=filled];
44
+ "Alex Hansen" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=26", color=lightblue, fontname=Verdana, height="0.51389", pos="2876.3,1169", width="2.0278", style=filled];
45
+ "Patrick Doerr" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=16", color=lightblue, fontname=Verdana, height="0.51389", pos="3199.3,947", width="2.2222", style=filled];
46
+ "Wanda Livelsberger" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=53", color=lightpink, fontname=Verdana, height="0.51389", pos="2177.3,1243", width="3.0833", style=filled];
47
+ "Lynn Reeves" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=48", color=lightpink, fontname=Verdana, height="0.51389", pos="2280.3,1169", width="2.0833", style=filled];
48
+ "Joseph Butler" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=69", color=lightblue, fontname=Verdana, height="0.51389", pos="3638.3,873", width="2.2222", style=filled];
49
+ "Sarah Maltese" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=83", color=lightpink, fontname=Verdana, height="0.51389", pos="3396.3,873", width="2.3056", style=filled];
50
+ "Katie Browne" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=60", color=lightpink, fontname=Verdana, height="0.51389", pos="2916.3,873", width="2.1944", style=filled];
51
+ "Erika Tapia" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=71", color=lightpink, fontname=Verdana, height="0.51389", pos="4411.3,799", width="1.8611", style=filled];
52
+ "Crystal Bozak" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=8", color=lightpink, fontname=Verdana, height="0.51389", pos="2719.3,799", width="2.25", style=filled];
53
+ "Deanna Jagow" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=23", color=lightpink, fontname=Verdana, height="0.51389", pos="3624.3,1021", width="2.3333", style=filled];
54
+ "Samuel Wallace" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=354", color=lightblue, fontname=Verdana, height="0.51389", pos="3792.3,799", width="2.5", style=filled];
55
+ "Jennifer Stout" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=50", color=lightpink, fontname=Verdana, height="0.51389", pos="2947.3,947", width="2.3056", style=filled];
56
+ "Lori Asaro" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=178", color=lightpink, fontname=Verdana, height="0.51389", pos="2907.3,1317", width="1.7778", style=filled];
57
+ "Mark Pearson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=169", color=lightblue, fontname=Verdana, height="0.51389", pos="4053.3,1391", width="2.2222", style=filled];
58
+ "Tani Miller" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=195", color=lightpink, fontname=Verdana, height="0.51389", pos="4053.3,1317", width="1.75", style=filled];
59
+ "Marc Martin-ez" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=208", color=lightblue, fontname=Verdana, height="0.51389", pos="4115.3,1243", width="2.4167", style=filled];
60
+ "Lori Ball" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=167", color=lightpink, fontname=Verdana, height="0.51389", pos="3683.3,1391", width="1.4722", style=filled];
61
+ "Ryan Farris" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=18", color=lightblue, fontname=Verdana, height="0.51389", pos="3951.3,947", width="1.9167", style=filled];
62
+ "Ilana Melcher" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=73", color=lightpink, fontname=Verdana, height="0.51389", pos="4017.3,799", width="2.1944", style=filled];
63
+ "Jeremy Frazier" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=79", color=lightblue, fontname=Verdana, height="0.51389", pos="3751.3,725", width="2.3889", style=filled];
64
+ "Veronica Villanueva" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=64", color=lightpink, fontname=Verdana, height="0.51389", pos="4126.3,873", width="3.0278", style=filled];
65
+ "Greg Moody" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=70", color=lightblue, fontname=Verdana, height="0.51389", pos="3162.3,873", width="2.0278", style=filled];
66
+ "Rob Reiner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=51", color=lightblue, fontname=Verdana, height="0.51389", pos="421.29,1317", width="1.8611", style=filled];
67
+ "Kelly Greenhill" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=333", color=lightpink, fontname=Verdana, height="0.51389", pos="692.29,1243", width="2.3333", style=filled];
68
+ "Jeremy Kirchner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=37", color=lightblue, fontname=Verdana, height="0.51389", pos="297.29,1243", width="2.6389", style=filled];
69
+ "Dan Kuhlman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=39", color=lightblue, fontname=Verdana, height="0.51389", pos="470.29,1169", width="2.2222", style=filled];
70
+ "Cindy Teel" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=62", color=lightpink, fontname=Verdana, height="0.51389", pos="3996.3,1021", width="1.75", style=filled];
71
+ "Sedona Reynolds" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=32", color=lightpink, fontname=Verdana, height="0.51389", pos="4175.3,947", width="2.75", style=filled];
72
+ "Bradley Stouse" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=346", color=lightblue, fontname=Verdana, height="0.51389", pos="2590.3,725", width="2.4444", style=filled];
73
+ "Janay Rabe" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=77", color=lightpink, fontname=Verdana, height="0.51389", pos="4220.3,799", width="1.8889", style=filled];
74
+ "Ginger Palmer" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=180", color=lightpink, fontname=Verdana, height="0.51389", pos="4481.3,1317", width="2.3056", style=filled];
75
+ "Vienna McMurtry" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=196", color=lightpink, fontname=Verdana, height="0.51389", pos="3771.3,1243", width="2.6944", style=filled];
76
+ "Gary Frampton" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=201", color=lightblue, fontname=Verdana, height="0.51389", pos="5174.3,1243", width="2.4444", style=filled];
77
+ "J\. Angeles" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=3", color=lightblue, fontname=Verdana, height="0.51389", pos="3948.3,1243", width="1.7222", style=filled];
78
+ "Mark Newton-John" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=46", color=lightblue, fontname=Verdana, height="0.51389", pos="4504.3,1391", width="2.9444", style=filled];
79
+ "Gara Thornton" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=360", color=lightpink, fontname=Verdana, height="0.51389", pos="5644.3,947", width="2.3889", style=filled];
80
+ "Jarrod Monroe" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=43", color=lightblue, fontname=Verdana, height="0.51389", pos="1682.3,873", width="2.3889", style=filled];
81
+ "Mike Tulumello" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=63", color=lightblue, fontname=Verdana, height="0.51389", pos="2534.3,799", width="2.3889", style=filled];
82
+ "Kameka Smith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=80", color=lightpink, fontname=Verdana, height="0.51389", pos="4017.3,725", width="2.3611", style=filled];
83
+ "Mervin Maniago" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=41", color=lightblue, fontname=Verdana, height="0.51389", pos="4042.3,1095", width="2.5278", style=filled];
84
+ "Tiffany Worthington" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=66", color=lightpink, fontname=Verdana, height="0.51389", pos="1884.3,1021", width="3.1389", style=filled];
85
+ "Melissa Roy" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=54", color=lightpink, fontname=Verdana, height="0.51389", pos="4400.3,873", width="1.9444", style=filled];
86
+ "Robert Walwick" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=153", color=lightblue, fontname=Verdana, height="0.51389", pos="3242.3,1317", width="2.4722", style=filled];
87
+ "Ian McIntosh" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=215", color=lightblue, fontname=Verdana, height="0.51389", pos="2658.3,1243", width="2.1667", style=filled];
88
+ "Pat Norris" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=207", color=lightblue, fontname=Verdana, height="0.51389", pos="4671.3,1465", width="1.75", style=filled];
89
+ "Sean Tipps" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=204", color=lightblue, fontname=Verdana, height="0.51389", pos="4592.3,1539", width="1.8611", style=filled];
90
+ "Teresa Long" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=194", color=lightpink, fontname=Verdana, height="0.51389", pos="4750.3,1539", width="2.0278", style=filled];
91
+ "Denmark Vea" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=269", color=lightblue, fontname=Verdana, height="0.51389", pos="5350.3,1169", width="2.2222", style=filled];
92
+ "Kristen Villone" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=209", color=lightpink, fontname=Verdana, height="0.51389", pos="4997.3,1465", width="2.3611", style=filled];
93
+ "Kelly Erickson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=199", color=lightblue, fontname=Verdana, height="0.51389", pos="4923.3,1539", width="2.2778", style=filled];
94
+ "Anna Pedroza" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=197", color=lightpink, fontname=Verdana, height="0.51389", pos="5104.3,1539", width="2.25", style=filled];
95
+ "Geoff Frank" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=21", color=lightblue, fontname=Verdana, height="0.51389", pos="3451.3,1021", width="1.9722", style=filled];
96
+ "Chris Livelsberger" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=40", color=lightblue, fontname=Verdana, height="0.51389", pos="3634.3,1095", width="2.8611", style=filled];
97
+ "Tracy Murray" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=210", color=lightpink, fontname=Verdana, height="0.51389", pos="3379.3,1391", width="2.1944", style=filled];
98
+ "John FitzGibbon" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=92", color=lightblue, fontname=Verdana, height="0.51389", pos="3546.3,1465", width="2.5556", style=filled];
99
+ "Steven Smith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=233", color=lightblue, fontname=Verdana, height="0.51389", pos="4277.3,1391", width="2.2222", style=filled];
100
+ "Jerry Maya" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=250", color=lightblue, fontname=Verdana, height="0.51389", pos="3545.3,1391", width="1.8611", style=filled];
101
+ "Judy Dulcich" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=177", color=lightpink, fontname=Verdana, height="0.51389", pos="3361.3,1465", width="2.0833", style=filled];
102
+ "Kelly McKinney" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=222", color=lightpink, fontname=Verdana, height="0.51389", pos="3191.3,1391", width="2.4167", style=filled];
103
+ "Barbara Tollison" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=172", color=lightpink, fontname=Verdana, height="0.51389", pos="2524.3,1317", width="2.5833", style=filled];
104
+ "Jayson Smith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=58", color=lightblue, fontname=Verdana, height="0.51389", pos="1535.3,1243", width="2.1944", style=filled];
105
+ "Bryan Ransom" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=49", color=thistle, fontname=Verdana, height="0.51389", pos="1480.3,1169", width="2.3611", style=filled];
106
+ "Mark Nadeau" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=183", color=lightblue, fontname=Verdana, height="0.51389", pos="3190.3,1465", width="2.1667", style=filled];
107
+ "Renee Thompson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=231", color=lightpink, fontname=Verdana, height="0.51389", pos="5153.3,1169", width="2.75", style=filled];
108
+ "Delphy Shaulis" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=255", color=lightpink, fontname=Verdana, height="0.51389", pos="5153.3,1095", width="2.3889", style=filled];
109
+ "Kathy Jones" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=28", color=lightpink, fontname=Verdana, height="0.51389", pos="3945.3,1169", width="2.0278", style=filled];
110
+ "Lucinda Farless" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=334", color=lightpink, fontname=Verdana, height="0.51389", pos="3534.3,1169", width="2.4722", style=filled];
111
+ "Terrance Hirsch" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=96", color=lightblue, fontname=Verdana, height="0.51389", pos="3737.3,1169", width="2.5278", style=filled];
112
+ "Kelley Smith" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=223", color=lightpink, fontname=Verdana, height="0.51389", pos="5355.3,1243", width="2.0833", style=filled];
113
+ "Russell Grant" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=242", color=lightblue, fontname=Verdana, height="0.51389", pos="4289.3,1317", width="2.1944", style=filled];
114
+ "Charlene Andrews" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=234", color=lightpink, fontname=Verdana, height="0.51389", pos="5278.3,1465", width="2.8611", style=filled];
115
+ "Diane Reoch" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=227", color=lightpink, fontname=Verdana, height="0.51389", pos="5278.3,1539", width="2.0833", style=filled];
116
+ "Tonya Alexander" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=238", color=lightpink, fontname=Verdana, height="0.51389", pos="2730.3,1317", width="2.6389", style=filled];
117
+ "Martin Naiman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=45", color=lightblue, fontname=Verdana, height="0.51389", pos="3014.3,1243", width="2.3889", style=filled];
118
+ "Gail Vasquez" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=225", color=lightpink, fontname=Verdana, height="0.51389", pos="2730.3,1391", width="2.0833", style=filled];
119
+ "Spencer Caldwell" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=239", color=lightblue, fontname=Verdana, height="0.51389", pos="1870.3,1391", width="2.6944", style=filled];
120
+ "Michael Elgo" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=268", color=lightblue, fontname=Verdana, height="0.51389", pos="1964.3,1317", width="2.0556", style=filled];
121
+ "Becky Bernal" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=218", color=lightpink, fontname=Verdana, height="0.51389", pos="1870.3,1465", width="2.1667", style=filled];
122
+ "Melissa Schwartz" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=252", color=lightpink, fontname=Verdana, height="0.51389", pos="4318.3,1243", width="2.7222", style=filled];
123
+ "Johnny Richardson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=310", color=lightblue, fontname=Verdana, height="0.51389", pos="4541.3,1243", width="2.9722", style=filled];
124
+ "Penny Lewis" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=315", color=lightpink, fontname=Verdana, height="0.51389", pos="3040.3,1169", width="2.0278", style=filled];
125
+ "Lindsay Arehart" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=4", color=lightblue, fontname=Verdana, height="0.51389", pos="1300.3,947", width="2.5556", style=filled];
126
+ "Janean Angeles" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=86", color=lightpink, fontname=Verdana, height="0.51389", pos="2263.3,1317", width="2.4722", style=filled];
127
+ "Kristianna Reynante" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=308", color=lightpink, fontname=Verdana, height="0.51389", pos="1934.3,1243", width="3.1667", style=filled];
128
+ "Shari VerBerkmoes" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=321", color=lightpink, fontname=Verdana, height="0.51389", pos="2415.3,1243", width="3.0278", style=filled];
129
+ "Leslie Harlow" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=265", color=lightpink, fontname=Verdana, height="0.51389", pos="2832.3,1243", width="2.1667", style=filled];
130
+ "Dennis McColl" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=251", color=lightblue, fontname=Verdana, height="0.51389", pos="3431.3,1317", width="2.2778", style=filled];
131
+ "Denise Luna" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=236", color=lightpink, fontname=Verdana, height="0.51389", pos="3062.3,1317", width="2.0278", style=filled];
132
+ "Jonathan Yudman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=267", color=lightblue, fontname=Verdana, height="0.51389", pos="3555.3,1243", width="2.8056", style=filled];
133
+ "April Ortiz-cloninger" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=258", color=lightpink, fontname=Verdana, height="0.51389", pos="3645.3,1317", width="3.1667", style=filled];
134
+ "Laura Stegner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=274", color=lightpink, fontname=Verdana, height="0.51389", pos="4946.3,1243", width="2.3333", style=filled];
135
+ "Susan Colwell" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=302", color=lightpink, fontname=Verdana, height="0.51389", pos="3355.3,1243", width="2.25", style=filled];
136
+ "Carol Kropp" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=254", color=lightpink, fontname=Verdana, height="0.51389", pos="2058.3,1391", width="2.0278", style=filled];
137
+ "Eric Gates" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=282", color=lightblue, fontname=Verdana, height="0.51389", pos="4841.3,1169", width="1.75", style=filled];
138
+ "Jennifer Stoewe" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=288", color=lightpink, fontname=Verdana, height="0.51389", pos="4705.3,1095", width="2.5556", style=filled];
139
+ "Scott Wood" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=295", color=lightblue, fontname=Verdana, height="0.51389", pos="4885.3,1095", width="1.9444", style=filled];
140
+ "Erick Sugimura" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=280", color=lightblue, fontname=Verdana, height="0.51389", pos="4755.3,1243", width="2.4722", style=filled];
141
+ "Susannah Clayton" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=357", color=lightpink, fontname=Verdana, height="0.51389", pos="2071.3,799", width="2.8611", style=filled];
142
+ "Sarah Titilah" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=693", color=lightpink, fontname=Verdana, height="0.51389", pos="1796.3,503", width="2.0833", style=filled];
143
+ "Veronica Nickel" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=47", color=lightpink, fontname=Verdana, height="0.51389", pos="3844.3,1095", width="2.4722", style=filled];
144
+ "Greg Flood" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=200", color=lightblue, fontname=Verdana, height="0.51389", pos="3905.3,1317", width="1.8611", style=filled];
145
+ "Christopher Jouan" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=306", color=lightblue, fontname=Verdana, height="0.51389", pos="5503.3,1465", width="2.8889", style=filled];
146
+ "Kevin Owens" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=245", color=lightblue, fontname=Verdana, height="0.51389", pos="5503.3,1539", width="2.1111", style=filled];
147
+ "Nathan Fellhauer" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=313", color=lightblue, fontname=Verdana, height="0.51389", pos="1279.3,1169", width="2.7222", style=filled];
148
+ "Amy Berner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=300", color=lightpink, fontname=Verdana, height="0.51389", pos="310.29,1465", width=2, style=filled];
149
+ "Klair Mayerchak" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=320", color=lightpink, fontname=Verdana, height="0.51389", pos="1004.3,1095", width="2.5556", style=filled];
150
+ "James Rowland" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=52", color=thistle, fontname=Verdana, height="0.51389", pos="1217.3,1317", width="2.4444", style=filled];
151
+ "Anson Summers" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=326", color=lightblue, fontname=Verdana, height="0.51389", pos="1135.3,1243", width="2.6389", style=filled];
152
+ "Jennifer Garman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=331", color=lightpink, fontname=Verdana, height="0.51389", pos="1343.3,1243", width="2.6389", style=filled];
153
+ "Scott Wright" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=67", color=lightblue, fontname=Verdana, height="0.51389", pos="815.29,1095", width="2.1111", style=filled];
154
+ "Brian Raneses" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=314", color=lightblue, fontname=Verdana, height="0.51389", pos="1553.3,1317", width="2.3056", style=filled];
155
+ "Sean McHenry" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=42", color=lightblue, fontname=Verdana, height="0.51389", pos="1470.3,1391", width="2.3333", style=filled];
156
+ "Kristin Alongi-Hutchins" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=87", color=lightpink, fontname=Verdana, height="0.51389", pos="3167.3,1095", width="3.5556", style=filled];
157
+ "Becky Graham" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=316", color=lightpink, fontname=Verdana, height="0.51389", pos="878.29,1169", width="2.3611", style=filled];
158
+ "Jennifer Jouan" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=34", color=lightpink, fontname=Verdana, height="0.51389", pos="1855.3,1095", width="2.3333", style=filled];
159
+ "Andrea Owens" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=276", color=lightpink, fontname=Verdana, height="0.51389", pos="1900.3,1169", width="2.3611", style=filled];
160
+ "Tamara Scrivner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=345", color=lightpink, fontname=Verdana, height="0.51389", pos="3551.3,799", width="2.6389", style=filled];
161
+ "Jamie Jackson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=359", color=lightpink, fontname=Verdana, height="0.51389", pos="3556.3,725", width="2.2778", style=filled];
162
+ "Rachel Perkins" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=692", color=lightpink, fontname=Verdana, height="0.51389", pos="3822.3,577", width="2.3611", style=filled];
163
+ "Cameron Brown" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=75", color=lightblue, fontname=Verdana, height="0.51389", pos="3345.3,799", width="2.5833", style=filled];
164
+ "Kyra Sacco" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=81", color=lightpink, fontname=Verdana, height="0.51389", pos="1986.3,725", width="1.8889", style=filled];
165
+ "Teresa Simms" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=91", color=lightpink, fontname=Verdana, height="0.51389", pos="4204.3,725", width="2.2778", style=filled];
166
+ "Melissa Bebak" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=88", color=lightpink, fontname=Verdana, height="0.51389", pos="3152.3,799", width="2.2778", style=filled];
167
+ "Alberto Ayon" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=356", color=lightblue, fontname=Verdana, height="0.51389", pos="2266.3,651", width="2.1667", style=filled];
168
+ "Ryan Underwood" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=74", color=lightblue, fontname=Verdana, height="0.51389", pos="2916.3,799", width="2.7222", style=filled];
169
+ "Rebecca Hippert" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=353", color=lightpink, fontname=Verdana, height="0.51389", pos="2389.3,725", width="2.6389", style=filled];
170
+ "Casondra Brimmage" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=347", color=lightpink, fontname=Verdana, height="0.51389", pos="3599.3,577", width="3.1667", style=filled];
171
+ "Lisa Gochnauer" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=358", color=lightpink, fontname=Verdana, height="0.51389", pos="3406.3,503", width="2.5", style=filled];
172
+ "Laura Fisher" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=690", color=lightpink, fontname=Verdana, height="0.51389", pos="2098.3,503", width="2.0833", style=filled];
173
+ "Kristopher Lininger" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=85", color=lightblue, fontname=Verdana, height="0.51389", pos="4012.3,651", width="3.0278", style=filled];
174
+ "Cassiopeia Guthrie" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=348", color=lightpink, fontname=Verdana, height="0.51389", pos="3741.3,651", width="2.9444", style=filled];
175
+ "Scott Gardner" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=355", color=lightblue, fontname=Verdana, height="0.51389", pos="3207.3,651", width="2.3333", style=filled];
176
+ "Jennie Bogart" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=78", color=lightpink, fontname=Verdana, height="0.51389", pos="2273.3,799", width="2.25", style=filled];
177
+ "Robbyn Rozelle" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=72", color=lightpink, fontname=Verdana, height="0.51389", pos="1823.3,799", width="2.4722", style=filled];
178
+ "Jon Weisel" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=89", color=lightblue, fontname=Verdana, height="0.51389", pos="5582.3,1095", width="1.75", style=filled];
179
+ "Robert Winebarger" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=361", color=lightblue, fontname=Verdana, height="0.51389", pos="1930.3,577", width=3, style=filled];
180
+ "James Fogelman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=688", color=lightblue, fontname=Verdana, height="0.51389", pos="2236.3,577", width="2.6389", style=filled];
181
+ "Robin Ellison" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=90", color=lightpink, fontname=Verdana, height="0.51389", pos="1818.3,651", width="2.1111", style=filled];
182
+ "Katie Kozma" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=691", color=lightpink, fontname=Verdana, height="0.51389", pos="1326.3,577", width="2.0833", style=filled];
183
+ "Leila Wilhelm" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=699", color=lightpink, fontname=Verdana, height="0.51389", pos="1726.3,577", width="2.1667", style=filled];
184
+ "Sandy Konar" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=38", color=lightpink, fontname=Verdana, height="0.51389", pos="1113.3,947", width="2.1389", style=filled];
185
+ "Edward Givens" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=106", color=lightblue, fontname=Verdana, height="0.51389", pos="4504.3,1465", width="2.3889", style=bold];
186
+ "Ashley Rehart" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=694", color=lightpink, fontname=Verdana, height="0.51389", pos="1999.3,429", width="2.2778", style=filled];
187
+ "Jennifer Cooley" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=702", color=lightpink, fontname=Verdana, height="0.51389", pos="2208.3,429", width="2.4722", style=filled];
188
+ "Cara Yancey" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=695", color=lightpink, fontname=Verdana, height="0.51389", pos="1479.3,503", width="2.0278", style=filled];
189
+ "Cate Threlkeld" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=707", color=lightpink, fontname=Verdana, height="0.51389", pos="1295.3,503", width="2.3611", style=filled];
190
+ "Lisa Fleck" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=700", color=lightpink, fontname=Verdana, height="0.51389", pos="3872.3,503", width="1.6944", style=filled];
191
+ "Christine Coyne" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=701", color=lightpink, fontname=Verdana, height="0.51389", pos="3680.3,503", width="2.5556", style=filled];
192
+ "Elizabeth Larios" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=703", color=lightpink, fontname=Verdana, height="0.51389", pos="1790.3,355", width="2.5556", style=filled];
193
+ "Kathleen Halberg" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=929", color=lightpink, fontname=Verdana, height="0.51389", pos="1999.3,355", width="2.75", style=filled];
194
+ "Ashley Presley" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=698", color=lightpink, fontname=Verdana, height="0.51389", pos="1483.3,429", width="2.3333", style=filled];
195
+ "Monique Arellano" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=972", color=lightpink, fontname=Verdana, height="0.51389", pos="1483.3,355", width="2.75", style=filled];
196
+ "Mallory Williams" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=975", color=lightpink, fontname=Verdana, height="0.51389", pos="3883.3,429", width="2.5556", style=filled];
197
+ "Rakan Abu-Rahma" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=852", color=lightpink, fontname=Verdana, height="0.51389", pos="3669.3,429", width="2.8889", style=filled];
198
+ "Anthony Henderson" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=973", color=lightpink, fontname=Verdana, height="0.51389", pos="2228.3,355", width="3.1111", style=filled];
199
+ "Brittany DePew" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=928", color=lightpink, fontname=Verdana, height="0.51389", pos="1790.3,281", width="2.5", style=filled];
200
+ "Amethyst Tagle" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=974", color=lightpink, fontname=Verdana, height="0.51389", pos="1291.3,429", width="2.5", style=filled];
201
+ "Jennifer Berry" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=270", color=lightpink, fontname=Verdana, height="0.51389", pos="2263.3,1391", width="2.3056", style=filled];
202
+ "Robert Schmidtke" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=188", color=lightblue, fontname=Verdana, height="0.51389", pos="3445.3,1539", width="2.8611", style=filled];
203
+ "Jean Newman" [size="30,30", URL="http://sdsu.kkytbs.net/members/profile.html?who=166", color=lightpink, fontname=Verdana, height="0.51389", pos="3647.3,1539", width="2.25", style=filled];
204
+ "Lori Brede" -> "Christine Mount" [pos="e,3115.7,741.8 2311.3,1007 2376.7,986.38 2505.3,947.99 2617.3,928 2702.3,912.83 2932.8,940.51 3004.3,892 3050.5,860.63 3023,820.64\
205
+ 3061.3,780 3074,766.55 3090.7,755.34 3106.5,746.64"];
206
+ "Lori Brede" -> "Kathleen Moran" [pos="e,2649.8,959.42 2325.6,1012.2 2393.9,1001.6 2511.5,983.17 2612.3,966 2621.2,964.48 2630.5,962.85 2639.8,961.2"];
207
+ "Lori Brede" -> "Christina Kelly" [pos="e,3322.5,960.38 2332.6,1018.1 2541.6,1008.5 3194,978.11 3288.3,966 3296.2,964.99 3304.4,963.68 3312.6,962.22"];
208
+ "Lori Brede" -> "Josh Atwood" [pos="e,2116.8,891.14 2241.3,1003.9 2225.9,993.59 2206.4,979.84 2190.3,966 2165.9,944.98 2140.7,918.15 2123.4,898.71"];
209
+ "Lori Brede" -> "Samuel Behar" [pos="e,1772.5,740.54 2250.7,1002.9 2241.5,992.7 2230.7,979.38 2223.3,966 2197.8,920.03 2226.8,886.27 2185.3,854 2104.3,791.06 1794.9,\
210
+ 893.28 1725.3,818 1713.8,805.6 1716.9,794.67 1725.3,780 1733.9,764.88 1748.5,753.5 1763.6,745.13"];
211
+ "Michael Griffith" -> "Lori Brede" [pos="e,2230.5,1036.1 2124.4,1078.6 2153,1067.1 2191.2,1051.8 2221.1,1039.9"];
212
+ "Amie Holston" -> "Lori Brede" [pos="e,2268.3,1039.7 2268.3,1076.3 2268.3,1068.3 2268.3,1058.6 2268.3,1049.7"];
213
+ "Amie Holston" -> "Matthew FitzGerald" [pos="e,2738.9,1029.3 2324.9,1081.9 2335.3,1079.8 2346.1,1077.7 2356.3,1076 2483.6,1055 2631.2,1039.4 2728.7,1030.3"];
214
+ "Laura De'Armond" -> "Casey Carter" [pos="e,2665.9,1113.7 2678.7,1150.3 2675.8,1142.1 2672.4,1132.2 2669.2,1123.1"];
215
+ "Laura De'Armond" -> "Deanna Johnson" [pos="e,2812.2,1112.1 2723.6,1151.8 2747.2,1141.2 2777.7,1127.6 2802.9,1116.3"];
216
+ "Japheth Cleaver" -> "Jillian Clifton" [pos="e,1096.7,883.36 1320.1,1092.4 1225.6,1087.7 1086.5,1075 1047.3,1040 1009.6,1006.3 999.25,970.07 1027.3,928 1041,907.49 1063.9,894.61\
217
+ 1086.8,886.53"];
218
+ "Japheth Cleaver" -> "Laura Simonette" [pos="e,5486.2,1022.2 1489.1,1085.1 1520,1081.5 1555.7,1078 1588.3,1076 1688.1,1070 4851.5,1030.1 5475.9,1022.3"];
219
+ "Japheth Cleaver" -> "Jennifer Brandon" [pos="e,1208,1036.5 1358.4,1079.8 1317.6,1068 1261.1,1051.8 1217.9,1039.3"];
220
+ "Japheth Cleaver" -> "Jeremy Browne" [pos="e,2244,956.31 1431.1,1076.7 1456.5,1054.4 1503,1017.9 1550.3,1002 1676.2,959.57 2014.9,977.18 2147.3,966 2175.5,963.62 2206.2,960.47\
221
+ 2233.9,957.43"];
222
+ "Japheth Cleaver" -> "Sandra Chase" [pos="e,1419.5,891.65 1412,1076.5 1413.6,1037.8 1417.2,948.22 1419.1,901.91"];
223
+ "Chuk Gawlik" -> "Michael Griffith" [pos="e,2081.5,1113.7 2078.1,1150.3 2078.8,1142.3 2079.7,1132.6 2080.6,1123.7"];
224
+ "Chuk Gawlik" -> "Amie Holston" [pos="e,2227.1,1110.9 2116.5,1153.5 2145.9,1142.2 2186,1126.7 2217.6,1114.5"];
225
+ "Chuk Gawlik" -> "Japheth Cleaver" [pos="e,1491.9,1104 2024.5,1155.8 2014.5,1153.6 2004.1,1151.6 1994.3,1150 1815.4,1121.5 1768.6,1131.7 1588.3,1114 1560.2,1111.2 1529.7\
226
+ ,1108 1502,1105.1"];
227
+ "Chuk Gawlik" -> "Alfredo Cardenas" [pos="e,2394.8,1108.3 2134.8,1157.8 2201.3,1145.2 2310.3,1124.4 2384.6,1110.2"];
228
+ "Chuk Gawlik" -> "Jamie Fratacci" [pos="e,2045.7,965.59 2033.4,1153.8 2015.5,1145.1 1996.5,1132.2 1986.3,1114 1978,1099.3 1982.1,1092.3 1986.3,1076 1990.9,1058.3 1997.6\
229
+ ,1056.1 2006.3,1040 2018.1,1018.1 2031.2,993.2 2040.9,974.66"];
230
+ "Stacy Snyder" -> "Japheth Cleaver" [pos="e,1323.6,1100.7 244.93,1380.2 138.2,1359.8 -54.948,1309.9 15.294,1224 119.18,1097 877.66,1126.7 1105.3,1114 1174.9,1110.1 1253.3\
231
+ ,1105.2 1313.4,1101.4"];
232
+ "Stacy Snyder" -> "Kristen Elgo" [pos="e,734.56,1326.5 377.24,1380.8 468.3,1367 630.6,1342.3 724.57,1328.1"];
233
+ "Stacy Snyder" -> "Steven Gross" [pos="e,128.91,1260.7 285.45,1373.1 248.38,1346.5 178.56,1296.4 137.27,1266.7"];
234
+ "Stacy Snyder" -> "Dusty Jolliff" [pos="e,520.08,1261.6 373.34,1379.5 420.66,1369.6 480.13,1354.1 497.29,1336 513.52,1318.9 518.51,1292.1 519.74,1271.6"];
235
+ "David Guthrie" -> "Jillian Clifton" [pos="e,1223.1,882.8 1573.3,936.55 1483.5,922.77 1326,898.59 1233.3,884.36"];
236
+ "David Guthrie" -> "Kristen Anderson" [pos="e,1609.1,743.47 1616.6,929.27 1605.4,919.66 1593.3,906.74 1587.3,892 1568.2,845.37 1588.8,786.7 1604.6,752.76"];
237
+ "David Guthrie" -> "Nathan Williams" [pos="e,1828.1,888.68 1689.5,931.94 1726.8,920.3 1778.6,904.14 1818.5,891.68"];
238
+ "David Guthrie" -> "Josh Atwood" [pos="e,2038.4,883.12 1708.2,936.24 1793.5,922.52 1940.4,898.88 2028.5,884.71"];
239
+ "David Guthrie" -> "Sandra Chase" [pos="e,1466.3,888.4 1595.2,931.58 1560.5,919.95 1512.7,903.96 1475.9,891.62"];
240
+ "Tony Sacco" -> "Laura De'Armond" [pos="e,2756.4,1182 3138,1230 3128.5,1227.8 3118.6,1225.7 3109.3,1224 2970.6,1199.3 2933.8,1208.1 2794.3,1188 2785.3,1186.7 2775.9,1185.2\
241
+ 2766.5,1183.7"];
242
+ "Tony Sacco" -> "Karen Saye" [pos="e,1776.3,1182.4 3139.3,1229.6 3129.5,1227.4 3119.1,1225.3 3109.3,1224 2535.1,1147 2380.5,1265 1806.3,1188 1799.7,1187.1 1792.9,1185.9\
243
+ 1786.1,1184.5"];
244
+ "Tony Sacco" -> "Amy Price" [pos="e,3440.9,1113.6 3237.2,1230 3288.9,1216.4 3363.6,1195.7 3375.3,1188 3400.7,1171.1 3421.9,1143.2 3435.4,1122.3"];
245
+ "Tony Sacco" -> "Regan Ashker" [pos="e,3206.7,1187.7 3193.9,1224.3 3196.7,1216.1 3200.2,1206.2 3203.4,1197.1"];
246
+ "Tony Sacco" -> "Tiffany Kalland" [pos="e,2411.4,890.79 3241.5,1231.4 3265,1223.3 3290.3,1210 3304.3,1188 3331,1146 3338.4,1112.3 3304.3,1076 3259.6,1028.5 2781.3,1057 \
247
+ 2718.3,1040 2601.9,1008.6 2478.4,934.39 2419.9,896.35"];
248
+ "Tony Sacco" -> "David Bronson" [pos="e,3280.2,1034.6 3239.4,1230.7 3277.9,1220.4 3325.6,1204.7 3337.3,1188 3365.8,1147.2 3363.9,1118.1 3337.3,1076 3326.3,1058.7 3308.3\
249
+ ,1046.7 3289.6,1038.5"];
250
+ "Heather Smith" -> "Laura De'Armond" [pos="e,2616,1182.4 1776.2,1229.7 1787.8,1227.4 1799.9,1225.4 1811.3,1224 2149.1,1182.2 2238,1225.3 2576.3,1188 2586,1186.9 2596.1,1185.5\
251
+ 2606.1,1184"];
252
+ "Heather Smith" -> "Chuk Gawlik" [pos="e,2022.5,1181.7 1779.5,1230.4 1790.1,1228.2 1801,1226.1 1811.3,1224 1892.6,1207.8 1913.2,1205.4 1994.3,1188 2000.3,1186.7 2006.5\
253
+ ,1185.3 2012.8,1183.9"];
254
+ "Heather Smith" -> "Kathleen Hansen" [pos="e,2402.6,1182.3 1776.8,1229.7 1788.2,1227.5 1800.1,1225.5 1811.3,1224 2055.4,1191.5 2119.8,1217.8 2364.3,1188 2373.5,1186.9 2383.2\
255
+ ,1185.5 2392.7,1183.9"];
256
+ "Heather Smith" -> "Kristin Tang" [pos="e,1142.1,1182.1 1657.6,1229.8 1646.2,1227.6 1634.4,1225.6 1623.3,1224 1424.2,1196 1371,1219 1172.3,1188 1165.7,1187 1158.8,1185.7\
257
+ 1152,1184.3"];
258
+ "Kevin Decker" -> "Chuck Foster" [pos="e,1646.7,1039.4 1665.7,1076.3 1661.4,1067.8 1656.1,1057.7 1651.3,1048.3"];
259
+ "Kevin Decker" -> "Karen Helbling" [pos="e,1829.5,963.46 1691.6,1076.9 1714.6,1051.5 1754.4,1008 1762.3,1002 1780,988.64 1801.4,976.91 1820.4,967.74"];
260
+ "Alex Hansen" -> "Kevin Decker" [pos="e,1729.3,1108.4 2825.4,1155.6 2815.2,1153.4 2804.4,1151.3 2794.3,1150 2339.3,1089.9 2217.7,1171.2 1762.3,1114 1754.8,1113.1 1747.1\
261
+ ,1111.8 1739.4,1110.4"];
262
+ "Alex Hansen" -> "Patrick Doerr" [pos="e,3173.6,964.65 2901.6,1151.6 2959.3,1112 3100.2,1015.1 3165.3,970.35"];
263
+ "Alex Hansen" -> "Deanna Johnson" [pos="e,2856.9,1113.7 2869.7,1150.3 2866.8,1142.1 2863.4,1132.2 2860.2,1123.1"];
264
+ "Wanda Livelsberger" -> "Michael Griffith" [pos="e,2117,1112.2 2177.3,1224.4 2176.6,1204.5 2172.9,1172.8 2158.3,1150 2150.1,1137.2 2137.8,1126.4 2125.4,1117.8"];
265
+ "Wanda Livelsberger" -> "Kevin Decker" [pos="e,1661.5,1113.4 2099,1229.8 2085.1,1227.7 2070.8,1225.7 2057.3,1224 2012.2,1218.4 1680.9,1221.5 1650.3,1188 1633.9,1170.1 1644.2\
266
+ ,1142.5 1656.2,1122"];
267
+ "Wanda Livelsberger" -> "Lynn Reeves" [pos="e,2255.7,1186.7 2202.5,1224.9 2216,1215.2 2232.9,1203.1 2247.4,1192.6"];
268
+ "Patrick Doerr" -> "Joseph Butler" [pos="e,3569.7,882.65 3257.1,934.18 3267.5,932.02 3278.2,929.87 3288.3,928 3381.1,910.81 3488.4,894.47 3559.5,884.13"];
269
+ "Patrick Doerr" -> "Sarah Maltese" [pos="e,3353.8,888.98 3241.6,931.13 3271.6,919.85 3312.1,904.63 3344.1,892.6"];
270
+ "Patrick Doerr" -> "Katie Browne" [pos="e,2969.3,886.86 3146.1,933.08 3098.6,920.68 3029.2,902.51 2979,889.41"];
271
+ "Patrick Doerr" -> "Erika Tapia" [pos="e,4361.8,811.6 3255.6,933.84 3266.4,931.64 3277.7,929.56 3288.3,928 3482,899.51 3532.7,913.12 3727.3,892 3852.6,878.4 3883.2,869.45\
272
+ 4008.3,854 4151.2,836.35 4188.4,842.49 4330.3,818 4337.3,816.78 4344.7,815.33 4352,813.77"];
273
+ "Patrick Doerr" -> "Crystal Bozak" [pos="e,2778.3,811.68 3162.7,930.44 3139.1,919.67 3107.8,905.22 3080.3,892 3046.3,875.63 3040.1,865.99 3004.3,854 2920.7,826.02 2895.7\
274
+ ,835.1 2809.3,818 2802.6,816.67 2795.5,815.25 2788.5,813.8"];
275
+ "Deanna Jagow" -> "Patrick Doerr" [pos="e,3257.1,959.9 3563.4,1008.1 3552.7,1005.9 3541.7,1003.8 3531.3,1002 3423.8,983.07 3395.7,985.41 3288.3,966 3281.5,964.77 3274.4\
276
+ ,963.41 3267.4,962"];
277
+ "Deanna Jagow" -> "Joseph Butler" [pos="e,3636.5,891.59 3626.1,1002.3 3628.5,976.9 3632.8,931.44 3635.6,901.75"];
278
+ "Deanna Jagow" -> "Sarah Maltese" [pos="e,3423.3,890.54 3597.2,1003.4 3556,976.68 3477.4,925.68 3431.7,896"];
279
+ "Deanna Jagow" -> "Samuel Wallace" [pos="e,3779.9,817.42 3639.7,1002.5 3660.2,977.7 3697.3,932.17 3727.3,892 3743.7,870.07 3761.4,844.54 3774.2,825.78"];
280
+ "Deanna Jagow" -> "Jennifer Stout" [pos="e,3007.1,959.88 3565,1007.7 3553.8,1005.5 3542.2,1003.5 3531.3,1002 3316.3,972.22 3259.4,994.91 3044.3,966 3035.4,964.81 3026.1,\
281
+ 963.31 3017,961.69"];
282
+ "Mark Pearson" -> "Lori Asaro" [pos="e,2952.2,1330.2 3976.1,1385.9 3913.8,1381.9 3823.9,1376.3 3745.3,1372 3405.4,1353.5 3316.8,1387.1 2980.3,1336 2974.4,1335.1 2968.3\
283
+ ,1333.9 2962.3,1332.6"];
284
+ "Mark Pearson" -> "Tani Miller" [pos="e,4053.3,1335.7 4053.3,1372.3 4053.3,1364.3 4053.3,1354.6 4053.3,1345.7"];
285
+ "Mark Pearson" -> "Marc Martin-ez" [pos="e,4122.9,1261.5 4087.5,1374.1 4101.9,1365 4117.3,1352.2 4125.3,1336 4135.2,1315.9 4131.5,1290.4 4126,1271.2"];
286
+ "Lori Ball" -> "Lori Asaro" [pos="e,2952.6,1330.3 3645.6,1377.9 3637.7,1375.6 3629.3,1373.4 3621.3,1372 3340.4,1321.8 3262.2,1380.2 2980.3,1336 2974.5,1335.1 2968.5\
287
+ ,1333.9 2962.5,1332.6"];
288
+ "Ryan Farris" -> "Ilana Melcher" [pos="e,4009,817.68 3959.5,928.55 3970.9,903.07 3991.5,856.89 4004.8,827.1"];
289
+ "Ryan Farris" -> "Jeremy Frazier" [pos="e,3814.7,737.6 3949.6,928.33 3945.5,894.4 3932.3,822.22 3891.3,780 3873.3,761.48 3848.3,749.06 3824.4,740.79"];
290
+ "Ryan Farris" -> "Veronica Villanueva" [pos="e,4085.6,890.22 3988.4,931.31 4014,920.48 4048.3,905.96 4076.3,894.12"];
291
+ "Ryan Farris" -> "Greg Moody" [pos="e,3225.8,882.17 3884.1,942.36 3766.5,934 3515.5,915.1 3304.3,892 3282,889.56 3257.8,886.48 3235.8,883.52"];
292
+ "Rob Reiner" -> "Ryan Farris" [pos="e,4009.6,957.03 485.76,1311.8 545.29,1307.2 636.2,1300.9 715.29,1298 775.31,1295.8 4997,1304.6 5039.3,1262 5066.5,1234.6 5029.3,\
293
+ 1121.6 4964.3,1076 4799.9,960.64 4266.1,994.46 4067.3,966 4051.9,963.79 4035.4,961.22 4019.7,958.68"];
294
+ "Rob Reiner" -> "Steven Gross" [pos="e,160.86,1256.2 370.01,1305 315.84,1292.4 230.23,1272.4 170.88,1258.5"];
295
+ "Rob Reiner" -> "Dusty Jolliff" [pos="e,495.9,1260.7 444.52,1299.5 457.48,1289.7 473.81,1277.3 487.9,1266.7"];
296
+ "Rob Reiner" -> "Kelly Greenhill" [pos="e,639.39,1257.4 469.12,1303.9 513.76,1291.8 580.64,1273.5 629.55,1260.1"];
297
+ "Rob Reiner" -> "Jeremy Kirchner" [pos="e,327.05,1260.8 393.16,1300.2 376.21,1290.1 354.39,1277.1 335.85,1266"];
298
+ "Rob Reiner" -> "Dan Kuhlman" [pos="e,457.81,1187.6 423.12,1298.4 425.4,1279.2 430.16,1248.9 439.29,1224 442.74,1214.6 447.65,1205 452.56,1196.4"];
299
+ "Cindy Teel" -> "Ryan Farris" [pos="e,3962.4,965.34 3985.2,1002.7 3979.9,994.08 3973.6,983.61 3967.8,974.09"];
300
+ "Cindy Teel" -> "Sedona Reynolds" [pos="e,4134.3,963.94 4032.9,1005.8 4059.4,994.91 4095.5,979.99 4124.7,967.92"];
301
+ "Cindy Teel" -> "Bradley Stouse" [pos="e,2531.9,738.9 3934.8,1016.7 3878.3,1012.7 3792.2,1006.8 3717.3,1002 3582.4,993.41 3240.3,1002.7 3110.3,966 3075.9,956.27 3073.2\
302
+ ,939.6 3039.3,928 2949.3,897.15 2921.9,908.89 2828.3,892 2741.7,876.38 2495.4,885.79 2439.3,818 2428.5,804.99 2429.6,793.84 2439.3\
303
+ ,780 2449.5,765.43 2487,751.73 2522.1,741.64"];
304
+ "Cindy Teel" -> "Janay Rabe" [pos="e,4237.7,817.01 4058.7,1018 4134.4,1013 4255.4,999.78 4283.3,966 4318.2,923.77 4274.8,860.2 4244.7,824.92"];
305
+ "Ginger Palmer" -> "Vienna McMurtry" [pos="e,3839.3,1256.3 4419.6,1304.6 4405.7,1302.1 4391,1299.7 4377.3,1298 4156.3,1269.9 4098.4,1289.7 3877.3,1262 3868.2,1260.9 3858.8\
306
+ ,1259.5 3849.4,1258"];
307
+ "Ginger Palmer" -> "Gary Frampton" [pos="e,5110.5,1255.8 4561.4,1311.9 4675.3,1304.1 4890.4,1287.4 5072.3,1262 5081.5,1260.7 5091.1,1259.2 5100.7,1257.5"];
308
+ "Ginger Palmer" -> "J\. Angeles" [pos="e,3992.7,1256.1 4418.7,1304.7 4405.1,1302.3 4390.7,1299.9 4377.3,1298 4219,1275.6 4176.6,1290.8 4019.3,1262 4013.9,1261 4008.3,1259.8\
309
+ 4002.7,1258.5"];
310
+ "Mark Newton-John" -> "Ginger Palmer" [pos="e,4487.1,1335.7 4498.5,1372.3 4496,1364.2 4492.9,1354.4 4490.1,1345.4"];
311
+ "Mark Newton-John" -> "Sedona Reynolds" [pos="e,4274.4,948.06 4606.4,1385.7 4852.5,1371.7 5458.3,1328.5 5458.3,1243 5458.3,1243 5458.3,1243 5458.3,1095 5458.3,977.29 4595,953.11\
312
+ 4284.7,948.22"];
313
+ "Mark Newton-John" -> "Gara Thornton" [pos="e,5662.2,965.4 4609.9,1389 4903.2,1382.1 5706.3,1353 5706.3,1243 5706.3,1243 5706.3,1243 5706.3,1095 5706.3,1052.8 5705,1040.3 5687.3\
314
+ ,1002 5682.6,991.83 5675.7,981.83 5668.8,973.2"];
315
+ "Mark Newton-John" -> "Jarrod Monroe" [pos="e,1619.4,885.69 4426,1378.5 4406.6,1375.9 4385.7,1373.4 4366.3,1372 4186.4,1358.7 1292.6,1389.2 1120.3,1336 1063.6,1318.5 1037.3\
316
+ ,1314.3 1009.3,1262 1000.7,1246 995.18,1166 1010.3,1150 1087,1068.7 1428.2,1187.8 1512.3,1114 1575.7,1058.3 1496.7,993.14 1550.3\
317
+ ,928 1565.4,909.63 1587.7,897.31 1609.7,889.08"];
318
+ "Matthew FitzGerald" -> "Kathleen Moran" [pos="e,2745.8,964.75 2807.5,1003.1 2791.6,993.18 2771.6,980.76 2754.5,970.12"];
319
+ "Matthew FitzGerald" -> "Christina Kelly" [pos="e,3321.4,959.98 2931,1011.7 3022.6,1002.2 3165.4,986 3288.3,966 3295.8,964.77 3303.7,963.36 3311.5,961.88"];
320
+ "Matthew FitzGerald" -> "Jennifer Stout" [pos="e,2920.8,964.66 2863.4,1002.9 2878.2,993.08 2896.5,980.83 2912.3,970.3"];
321
+ "Matthew FitzGerald" -> "Mike Tulumello" [pos="e,2599.9,811.01 2837.2,1002.2 2837.2,981.76 2834.2,949.27 2817.3,928 2765.8,863.31 2674.6,829.85 2609.7,813.41"];
322
+ "Matthew FitzGerald" -> "Jeremy Browne" [pos="e,2396.2,957.63 2753.1,1009 2657.6,995.28 2501.9,972.85 2406.1,959.06"];
323
+ "Matthew FitzGerald" -> "Kameka Smith" [pos="e,4078.1,737.98 2936.9,1013.8 2992.7,1009.9 3063.3,1005.3 3126.3,1002 3226.6,996.72 3937.3,1006.3 4029.3,966 4051.2,956.42 4045.6\
324
+ ,938.09 4067.3,928 4150.6,889.16 4413.6,956.32 4479.3,892 4514.9,857.08 4520.8,816.94 4487.3,780 4459.2,749.1 4154.6,750.06 4113.3\
325
+ ,744 4105.1,742.79 4096.5,741.36 4088,739.82"];
326
+ "Mervin Maniago" -> "Cindy Teel" [pos="e,4007.7,1039.4 4030.7,1076.3 4025.4,1067.8 4018.9,1057.4 4013.1,1048"];
327
+ "Mervin Maniago" -> "Matthew FitzGerald" [pos="e,2936.9,1028.1 3979.3,1081.6 3967.1,1079.4 3954.3,1077.4 3942.3,1076 3581.7,1034 3488.8,1059.9 3126.3,1040 3067.1,1036.8 3001.2\
328
+ ,1032.5 2947.2,1028.8"];
329
+ "Mervin Maniago" -> "Tiffany Worthington" [pos="e,1987.9,1028.4 3979.9,1081.5 3967.5,1079.3 3954.5,1077.3 3942.3,1076 3555.9,1035.6 2582.5,1055.9 2194.3,1040 2129.2,1037.3 2056.6\
330
+ ,1033 1998,1029.1"];
331
+ "Mervin Maniago" -> "Melissa Roy" [pos="e,4384.5,891.16 4085.2,1078.6 4138.8,1057 4232.1,1015.9 4303.3,966 4331.3,946.37 4359,918.74 4377.6,898.7"];
332
+ "Tani Miller" -> "Marc Martin-ez" [pos="e,4099.9,1261.3 4068.6,1298.7 4076.1,1289.8 4085.2,1279 4093.3,1269.2"];
333
+ "Robert Walwick" -> "Vienna McMurtry" [pos="e,3702.4,1256 3305.7,1303.9 3317.2,1301.8 3329.1,1299.7 3340.3,1298 3484,1276.2 3521.5,1282.8 3665.3,1262 3674.1,1260.7 3683.4,1259.3\
334
+ 3692.5,1257.7"];
335
+ "Robert Walwick" -> "Ian McIntosh" [pos="e,2713.8,1256.2 3179.5,1303.8 3167.8,1301.7 3155.7,1299.6 3144.3,1298 2968,1273 2921.3,1289 2745.3,1262 2738.3,1260.9 2730.9,1259.6\
336
+ 2723.7,1258.2"];
337
+ "Chuck Foster" -> "David Guthrie" [pos="e,1640.3,965.67 1638.3,1002.3 1638.7,994.26 1639.3,984.65 1639.7,975.71"];
338
+ "Karen Saye" -> "Chuck Foster" [pos="e,1616,1039.2 1678.9,1156 1643.1,1145.4 1599,1129.8 1588.3,1114 1573.5,1092.3 1590.8,1065.6 1608.8,1046.4"];
339
+ "Sean Tipps" -> "Pat Norris" [pos="e,4652.3,1482.7 4611.4,1521.1 4621.5,1511.6 4634,1499.9 4645,1489.6"];
340
+ "Teresa Long" -> "Pat Norris" [pos="e,4690.2,1482.7 4731.2,1521.1 4721.1,1511.6 4708.5,1499.9 4697.6,1489.6"];
341
+ "Marc Martin-ez" -> "Denmark Vea" [pos="e,5295,1182.4 4175.5,1229.5 4187.3,1227.3 4199.6,1225.3 4211.3,1224 4675.2,1170.5 4797.8,1245 5261.3,1188 5269,1187.1 5277.1,1185.8\
342
+ 5285,1184.3"];
343
+ "Kelly Erickson" -> "Kristen Villone" [pos="e,4979.2,1483.1 4941.6,1520.7 4950.7,1511.6 4961.9,1500.4 4971.9,1490.4"];
344
+ "Anna Pedroza" -> "Kristen Villone" [pos="e,5023.1,1482.8 5078.7,1521.3 5064.5,1511.5 5046.7,1499.1 5031.3,1488.5"];
345
+ "Chris Livelsberger" -> "Deanna Jagow" [pos="e,3626.8,1039.7 3631.8,1076.3 3630.7,1068.3 3629.4,1058.6 3628.2,1049.7"];
346
+ "Chris Livelsberger" -> "Geoff Frank" [pos="e,3490,1036.6 3592.3,1078 3564.6,1066.8 3528.3,1052.1 3499.4,1040.5"];
347
+ "Amy Price" -> "Deanna Jagow" [pos="e,3585.8,1037.5 3487.1,1079.7 3513,1068.6 3548.2,1053.5 3576.5,1041.4"];
348
+ "Amy Price" -> "Geoff Frank" [pos="e,3451.3,1039.7 3451.3,1076.3 3451.3,1068.3 3451.3,1058.6 3451.3,1049.7"];
349
+ "John FitzGibbon" -> "Tracy Murray" [pos="e,3416.3,1407.4 3508,1448 3483.5,1437.2 3451.5,1423 3425.5,1411.5"];
350
+ "John FitzGibbon" -> "Steven Smith" [pos="e,4210.1,1401.1 3632.3,1458.4 3748.3,1449.1 3961.2,1431.1 4142.3,1410 4161,1407.8 4181.2,1405.2 4200,1402.5"];
351
+ "John FitzGibbon" -> "Jerry Maya" [pos="e,3545.5,1409.7 3546,1446.3 3545.9,1438.3 3545.8,1428.6 3545.7,1419.7"];
352
+ "Judy Dulcich" -> "Tracy Murray" [pos="e,3374.8,1409.7 3365.8,1446.3 3367.8,1438.2 3370.2,1428.4 3372.4,1419.4"];
353
+ "Judy Dulcich" -> "Kelly McKinney" [pos="e,3229.7,1407.7 3324,1448.8 3299,1437.9 3265.8,1423.4 3238.9,1411.7"];
354
+ "Barbara Tollison" -> "Ian McIntosh" [pos="e,2627.2,1260.2 2556.1,1299.5 2574.7,1289.2 2598.5,1276 2618.4,1265"];
355
+ "Jayson Smith" -> "Chuk Gawlik" [pos="e,2024.4,1182.1 1591.4,1229.9 1602,1227.7 1612.9,1225.6 1623.3,1224 1787,1198.5 1830.8,1214.8 1994.3,1188 2000.9,1186.9 2007.7,1185.6\
356
+ 2014.5,1184.2"];
357
+ "Jayson Smith" -> "Bryan Ransom" [pos="e,1493.9,1187.3 1521.7,1224.7 1515.2,1215.9 1507.2,1205.2 1500,1195.5"];
358
+ "Mark Nadeau" -> "Kelly McKinney" [pos="e,3191,1409.7 3190.5,1446.3 3190.7,1438.3 3190.8,1428.6 3190.9,1419.7"];
359
+ "Renee Thompson" -> "Delphy Shaulis" [pos="e,5153.3,1113.7 5153.3,1150.3 5153.3,1142.3 5153.3,1132.6 5153.3,1123.7"];
360
+ "J\. Angeles" -> "Mervin Maniago" [pos="e,4043.4,1113.6 3982.5,1227.3 3998.6,1218.1 4016.6,1205 4027.3,1188 4039.3,1168.8 4042.7,1143.2 4043.3,1123.7"];
361
+ "J\. Angeles" -> "Renee Thompson" [pos="e,5063.6,1176.9 3991.9,1229.7 4000.9,1227.4 4010.3,1225.4 4019.3,1224 4412.4,1164.2 4516.3,1211.7 4913.3,1188 4959.4,1185.3 5010.3\
362
+ ,1181.3 5053.4,1177.8"];
363
+ "J\. Angeles" -> "Kathy Jones" [pos="e,3946.1,1187.7 3947.5,1224.3 3947.2,1216.3 3946.8,1206.6 3946.5,1197.7"];
364
+ "J\. Angeles" -> "Lucinda Farless" [pos="e,3600.2,1181.5 3903.4,1230.2 3894.8,1227.9 3885.8,1225.8 3877.3,1224 3771.7,1202 3743.7,1205.8 3637.3,1188 3628.5,1186.5 3619.2\
365
+ ,1184.9 3610.1,1183.3"];
366
+ "J\. Angeles" -> "Terrance Hirsch" [pos="e,3783.2,1185.1 3908.1,1228.9 3875.4,1217.4 3828.9,1201.1 3792.6,1188.4"];
367
+ "Kelley Smith" -> "Renee Thompson" [pos="e,5198.4,1185.5 5312.9,1227.5 5282.4,1216.3 5240.9,1201.1 5207.9,1189"];
368
+ "Kelley Smith" -> "Denmark Vea" [pos="e,5351.6,1187.7 5354,1224.3 5353.5,1216.3 5352.8,1206.6 5352.2,1197.7"];
369
+ "Steven Smith" -> "Russell Grant" [pos="e,4286.3,1335.7 4280.3,1372.3 4281.6,1364.3 4283.2,1354.6 4284.6,1345.7"];
370
+ "Diane Reoch" -> "Charlene Andrews" [pos="e,5278.3,1483.7 5278.3,1520.3 5278.3,1512.3 5278.3,1502.6 5278.3,1493.7"];
371
+ "Tonya Alexander" -> "Martin Naiman" [pos="e,2959.2,1257.4 2787.4,1302.1 2834.2,1289.9 2900.5,1272.6 2949.4,1259.9"];
372
+ "Gail Vasquez" -> "Tonya Alexander" [pos="e,2730.3,1335.7 2730.3,1372.3 2730.3,1364.3 2730.3,1354.6 2730.3,1345.7"];
373
+ "Spencer Caldwell" -> "Michael Elgo" [pos="e,1941.6,1334.8 1893.5,1372.7 1905.6,1363.2 1920.4,1351.5 1933.4,1341.3"];
374
+ "Becky Bernal" -> "Spencer Caldwell" [pos="e,1870.3,1409.7 1870.3,1446.3 1870.3,1438.3 1870.3,1428.6 1870.3,1419.7"];
375
+ "Russell Grant" -> "Melissa Schwartz" [pos="e,4311,1261.7 4296.6,1298.3 4299.8,1290.1 4303.7,1280.2 4307.3,1271.1"];
376
+ "Russell Grant" -> "Martin Naiman" [pos="e,3073.6,1256.4 4220.4,1307.8 4191.1,1304.2 4156.6,1300.4 4125.3,1298 3674.7,1264 3558.1,1314.5 3109.3,1262 3100.9,1261 3092.2,1259.7\
377
+ 3083.6,1258.2"];
378
+ "Russell Grant" -> "Johnny Richardson" [pos="e,4486.7,1259 4338.8,1302.5 4378.3,1290.9 4433.9,1274.5 4476.9,1261.9"];
379
+ "Tiffany Worthington" -> "David Guthrie" [pos="e,1690.2,961.91 1830.7,1004.7 1791.9,992.87 1739.6,976.95 1699.8,964.82"];
380
+ "Tiffany Worthington" -> "Jamie Fratacci" [pos="e,2017.2,963.48 1924.4,1003.7 1949.4,992.85 1981.6,978.89 2007.8,967.53"];
381
+ "Martin Naiman" -> "Alex Hansen" [pos="e,2907.5,1185.7 2981.9,1225.7 2962.4,1215.2 2937.3,1201.7 2916.4,1190.5"];
382
+ "Martin Naiman" -> "Kathleen Hansen" [pos="e,2539.2,1182.1 2953.1,1229.9 2941.9,1227.7 2930.3,1225.7 2919.3,1224 2767.8,1200.9 2728.1,1209.5 2576.3,1188 2567.5,1186.7 2558.2\
383
+ ,1185.3 2549.1,1183.8"];
384
+ "Martin Naiman" -> "Penny Lewis" [pos="e,3033.7,1187.7 3020.9,1224.3 3023.7,1216.1 3027.2,1206.2 3030.4,1197.1"];
385
+ "Martin Naiman" -> "Lindsay Arehart" [pos="e,1294.7,965.69 2955,1229.5 2943.2,1227.3 2930.9,1225.3 2919.3,1224 2639,1192.2 1923.9,1256.7 1650.3,1188 1613.7,1178.8 1610.4,1161.1\
386
+ 1574.3,1150 1517.7,1132.5 1350.5,1157.4 1310.3,1114 1275.9,1076.9 1283.7,1012.9 1292.2,975.83"];
387
+ "Janean Angeles" -> "Alex Hansen" [pos="e,2823.5,1181.8 2337.7,1306.8 2405.6,1296.5 2500.1,1279.8 2533.3,1262 2554.3,1250.7 2550,1234.9 2571.3,1224 2660.7,1178.3 2695.8\
388
+ ,1207.3 2794.3,1188 2800.5,1186.8 2807,1185.4 2813.4,1184"];
389
+ "Janean Angeles" -> "Wanda Livelsberger" [pos="e,2198.6,1261.3 2242,1298.7 2231.3,1289.5 2218.1,1278.1 2206.4,1268"];
390
+ "Janean Angeles" -> "Kristianna Reynante" [pos="e,2001.2,1258 2202.6,1303.3 2148.6,1291.2 2069.4,1273.4 2011.1,1260.3"];
391
+ "Janean Angeles" -> "Shari VerBerkmoes" [pos="e,2379.2,1260.6 2298.5,1299.8 2319.8,1289.5 2347.1,1276.2 2370,1265"];
392
+ "Dennis McColl" -> "Tony Sacco" [pos="e,3233,1256.9 3382.2,1302.1 3341.9,1289.9 3284.8,1272.6 3242.8,1259.8"];
393
+ "Dennis McColl" -> "Leslie Harlow" [pos="e,2887.3,1256.1 3373.2,1303.8 3362.3,1301.6 3351,1299.6 3340.3,1298 3154.5,1270.8 3105,1290.1 2919.3,1262 2912.1,1260.9 2904.7,1259.6\
394
+ 2897.3,1258.2"];
395
+ "Denise Luna" -> "Leslie Harlow" [pos="e,2878.8,1258 3016.9,1302.4 2980,1290.5 2928,1273.8 2888.6,1261.1"];
396
+ "April Ortiz-cloninger" -> "Tony Sacco" [pos="e,3237.1,1255.9 3562.9,1304.1 3549.4,1302 3535.4,1299.9 3522.3,1298 3408.2,1281.2 3378.6,1283.7 3265.3,1262 3259.4,1260.9 3253.3\
397
+ ,1259.6 3247.2,1258.2"];
398
+ "April Ortiz-cloninger" -> "Jonathan Yudman" [pos="e,3577.3,1261.1 3623,1298.7 3611.6,1289.3 3597.5,1277.7 3585.1,1267.5"];
399
+ "April Ortiz-cloninger" -> "Laura Stegner" [pos="e,4888,1256.5 3738.3,1306.2 3767.4,1303.1 3799.7,1300 3829.3,1298 4283.6,1266.6 4401.1,1315.8 4853.3,1262 4861.3,1261 4869.7,1259.8\
400
+ 4878,1258.3"];
401
+ "Michael Elgo" -> "Susan Colwell" [pos="e,3299.4,1256.4 2032.1,1309.5 2071.1,1305.5 2120.9,1300.8 2165.3,1298 2653.5,1267 2779.7,1320.7 3265.3,1262 3273.2,1261 3281.4,1259.7\
402
+ 3289.5,1258.3"];
403
+ "Michael Elgo" -> "Kristianna Reynante" [pos="e,1941.9,1261.7 1956.7,1298.3 1953.4,1290.1 1949.4,1280.2 1945.7,1271.1"];
404
+ "Carol Kropp" -> "Michael Elgo" [pos="e,1986.8,1334.7 2035.5,1373.1 2023.3,1363.5 2008,1351.4 1994.8,1341"];
405
+ "Kathleen Hansen" -> "Amy Price" [pos="e,3395.6,1103.3 2537.4,1155.6 2550.3,1153.5 2563.7,1151.4 2576.3,1150 2898.2,1113.3 2981.6,1142.8 3304.3,1114 3330.9,1111.6 3360\
406
+ ,1108.1 3385.3,1104.7"];
407
+ "Kathleen Hansen" -> "Alfredo Cardenas" [pos="e,2465.8,1113.7 2468.8,1150.3 2468.1,1142.3 2467.3,1132.6 2466.6,1123.7"];
408
+ "Laura Stegner" -> "Eric Gates" [pos="e,4865.9,1186.3 4921.1,1225.3 4907.1,1215.4 4889.5,1203 4874.4,1192.4"];
409
+ "Kathy Jones" -> "Mervin Maniago" [pos="e,4018.7,1113 3968.8,1151.1 3981.3,1141.5 3996.9,1129.6 4010.5,1119.2"];
410
+ "Eric Gates" -> "Jennifer Stoewe" [pos="e,4737.3,1112.4 4811.1,1152.6 4792,1142.2 4767.1,1128.6 4746.2,1117.3"];
411
+ "Eric Gates" -> "Scott Wood" [pos="e,4874.4,1113.3 4852.2,1150.7 4857.3,1142.1 4863.5,1131.6 4869.2,1122.1"];
412
+ "Erick Sugimura" -> "Eric Gates" [pos="e,4820.9,1186.6 4776.6,1224.7 4787.5,1215.2 4801.1,1203.6 4813,1193.4"];
413
+ "Karen Helbling" -> "Tiffany Kalland" [pos="e,2308.4,881.38 1930.1,934.06 1941.1,931.9 1952.5,929.79 1963.3,928 2078.7,908.84 2212.7,892.35 2298.3,882.55"];
414
+ "Karen Helbling" -> "Nathan Williams" [pos="e,1876,891.67 1871.6,928.33 1872.5,920.26 1873.7,910.65 1874.8,901.71"];
415
+ "Karen Helbling" -> "Susannah Clayton" [pos="e,2053.2,817.44 1909.8,930.61 1931.4,920.93 1957.9,907.54 1979.3,892 1981.2,890.61 2019.5,851.76 2046.1,824.71"];
416
+ "Karen Helbling" -> "Sarah Titilah" [pos="e,1745.1,516.61 1799.3,936.47 1721.5,924.27 1604.4,904.28 1587.3,892 1518,842.17 1492.3,810.39 1492.3,725 1492.3,725 1492.3,725 \
417
+ 1492.3,651 1492.3,597.46 1646.6,545.08 1735.4,519.39"];
418
+ "Regan Ashker" -> "Karen Helbling" [pos="e,1912.7,962.92 3158.4,1155.2 3121.6,1145.2 3072.4,1130.7 3030.3,1114 2995.2,1100.1 2990.8,1085.5 2954.3,1076 2627.1,990.54 2528\
419
+ ,1094.9 2194.3,1040 2096.4,1023.9 1986.2,988.55 1922.5,966.36"];
420
+ "Regan Ashker" -> "Veronica Nickel" [pos="e,3781.2,1108.1 3289.3,1162 3414.9,1150.3 3660.1,1126.8 3746.3,1114 3754.4,1112.8 3762.9,1111.4 3771.3,1109.9"];
421
+ "Greg Flood" -> "J\. Angeles" [pos="e,3937.6,1261.3 3915.9,1298.7 3920.9,1290.1 3927,1279.6 3932.6,1270.1"];
422
+ "Lynn Reeves" -> "Amie Holston" [pos="e,2271.3,1113.7 2277.3,1150.3 2276,1142.3 2274.4,1132.6 2273,1123.7"];
423
+ "Susan Colwell" -> "Lucinda Farless" [pos="e,3494.2,1185.6 3394.6,1226.8 3421.1,1215.8 3456.4,1201.2 3484.8,1189.5"];
424
+ "Susan Colwell" -> "Terrance Hirsch" [pos="e,3669.4,1181.4 3414.8,1230.2 3425,1228.1 3435.4,1226 3445.3,1224 3517.7,1209.5 3600.5,1194 3659.4,1183.2"];
425
+ "Kevin Owens" -> "Christopher Jouan" [pos="e,5503.3,1483.7 5503.3,1520.3 5503.3,1512.3 5503.3,1502.6 5503.3,1493.7"];
426
+ "Kristianna Reynante" -> "Nathan Fellhauer" [pos="e,1348.2,1182.2 1854,1229.8 1839.8,1227.7 1825.1,1225.7 1811.3,1224 1623.1,1201.5 1574.3,1212.6 1386.3,1188 1377.2,1186.8 1367.8\
427
+ ,1185.4 1358.4,1183.9"];
428
+ "Amy Berner" -> "Stacy Snyder" [pos="e,310.29,1409.7 310.29,1446.3 310.29,1438.3 310.29,1428.6 310.29,1419.7"];
429
+ "Nathan Fellhauer" -> "Klair Mayerchak" [pos="e,1059.6,1109.9 1223,1153.8 1178.4,1141.8 1116,1125.1 1069.3,1112.5"];
430
+ "James Rowland" -> "Wanda Livelsberger" [pos="e,2100,1256.4 1299.4,1310.2 1346.8,1306.4 1407.4,1301.7 1461.3,1298 1726,1279.7 1793.5,1290.8 2057.3,1262 2067.9,1260.8 2079,1259.4\
431
+ 2090,1257.8"];
432
+ "James Rowland" -> "Jayson Smith" [pos="e,1479.2,1256.1 1276.4,1303.3 1331.1,1290.5 1412.4,1271.6 1469.2,1258.4"];
433
+ "James Rowland" -> "Nathan Fellhauer" [pos="e,1210,1182.2 1143.8,1306.7 1077.3,1294.3 995.03,1269.2 1031.3,1224 1036.7,1217.2 1129.4,1198 1199.8,1184.2"];
434
+ "James Rowland" -> "Anson Summers" [pos="e,1155.6,1261.3 1197,1298.7 1186.8,1289.5 1174.2,1278.1 1163,1268"];
435
+ "James Rowland" -> "Jennifer Garman" [pos="e,1313.2,1260.7 1247.2,1299.5 1264.3,1289.4 1286,1276.6 1304.4,1265.8"];
436
+ "James Rowland" -> "Kristin Tang" [pos="e,1057.9,1185.4 1145.2,1306.3 1095.1,1297.2 1034.8,1282.4 1019.3,1262 1009.1,1248.6 1011.8,1239.1 1019.3,1224 1025.9,1210.7 1037.3\
437
+ ,1199.8 1049.2,1191.2"];
438
+ "James Rowland" -> "Scott Wright" [pos="e,800.09,1113.3 1145.2,1306.2 1033.5,1287.9 826.78,1246.7 784.29,1188 769.95,1168.2 781.49,1141.3 794.36,1121.5"];
439
+ "Brian Raneses" -> "Heather Smith" [pos="e,1680.3,1259.7 1590.1,1300.4 1614.1,1289.6 1645.5,1275.4 1671.2,1263.8"];
440
+ "Sean McHenry" -> "James Rowland" [pos="e,1268.7,1332 1419.7,1376.2 1379,1364.3 1321.8,1347.6 1278.5,1334.9"];
441
+ "Sean McHenry" -> "Brian Raneses" [pos="e,1533,1335.1 1490.8,1372.7 1501.3,1363.4 1514.1,1351.9 1525.5,1341.8"];
442
+ "Sean McHenry" -> "Kristen Elgo" [pos="e,850.47,1329.7 1388.4,1386.5 1274.7,1379.4 1063,1363.8 884.29,1336 876.56,1334.8 868.48,1333.3 860.5,1331.7"];
443
+ "Sean McHenry" -> "Shari VerBerkmoes" [pos="e,2338.6,1256.2 1523.4,1376.5 1601.3,1355.9 1751.4,1318.2 1881.3,1298 2064.7,1269.5 2113.1,1284.8 2297.3,1262 2307.4,1260.7 2318\
444
+ ,1259.3 2328.6,1257.7"];
445
+ "Penny Lewis" -> "Kristin Alongi-Hutchins" [pos="e,3136.1,1113.2 3069.4,1152 3086.6,1142 3108.6,1129.2 3127.4,1118.2"];
446
+ "Becky Graham" -> "Klair Mayerchak" [pos="e,974.06,1112.8 907.84,1151.7 924.96,1141.6 946.74,1128.8 965.26,1117.9"];
447
+ "Kristen Elgo" -> "Heather Smith" [pos="e,1657.8,1256.3 868.73,1312.8 1055.6,1301.7 1549.6,1271.9 1623.3,1262 1631.3,1260.9 1639.6,1259.6 1647.8,1258.1"];
448
+ "Kristen Elgo" -> "Becky Graham" [pos="e,868.07,1187.7 807.39,1298.6 821.4,1273 846.83,1226.5 863.13,1196.7"];
449
+ "Kristen Elgo" -> "Kelly Greenhill" [pos="e,717.36,1260.7 772.41,1299.5 758.52,1289.7 741.02,1277.3 725.93,1266.7"];
450
+ "Kristen Elgo" -> "Scott Wright" [pos="e,785.51,1112.3 798.2,1298.2 798.39,1278.7 796.59,1247.8 785.29,1224 775.87,1204.1 759.43,1208.5 751.29,1188 745.05,1172.3 744.25\
451
+ ,1165.3 751.29,1150 756.99,1137.6 767.03,1126.9 777.49,1118.4"];
452
+ "Sedona Reynolds" -> "Veronica Villanueva" [pos="e,4138.5,891.41 4162.9,928.33 4157.2,919.67 4150.3,909.23 4144,899.76"];
453
+ "Dusty Jolliff" -> "Regan Ashker" [pos="e,3156.8,1182.6 568.49,1229.5 578.6,1227.3 589.24,1225.3 599.29,1224 1155.7,1154.8 2565,1249.6 3122.3,1188 3130.3,1187.1 3138.6,\
454
+ 1185.9 3146.8,1184.4"];
455
+ "Dusty Jolliff" -> "Dan Kuhlman" [pos="e,482.44,1187.3 507.18,1224.7 501.41,1216 494.39,1205.4 488.04,1195.8"];
456
+ "Jennifer Jouan" -> "Tiffany Worthington" [pos="e,1877,1039.7 1862.6,1076.3 1865.8,1068.1 1869.7,1058.2 1873.3,1049.1"];
457
+ "Andrea Owens" -> "Jennifer Jouan" [pos="e,1866.5,1113.4 1888.9,1150.3 1883.7,1141.8 1877.5,1131.4 1871.7,1122"];
458
+ "Tamara Scrivner" -> "Jamie Jackson" [pos="e,3555,743.67 3552.6,780.33 3553.1,772.26 3553.8,762.65 3554.4,753.71"];
459
+ "Joseph Butler" -> "Tamara Scrivner" [pos="e,3572.8,817.26 3617.2,855.09 3606.2,845.68 3592.5,834.01 3580.4,823.76"];
460
+ "Joseph Butler" -> "Samuel Wallace" [pos="e,3756.7,816.11 3673.2,856.21 3695.3,845.63 3723.9,831.87 3747.6,820.5"];
461
+ "Joseph Butler" -> "Rachel Perkins" [pos="e,3897.7,585.7 3692.9,859.46 3703,857.35 3713.4,855.41 3723.3,854 3786.6,845 4253.5,864.58 4297.3,818 4307.7,806.93 4312.4,731.69\
462
+ 4295.3,706 4252.4,641.68 4032.2,603.69 3908,587.05"];
463
+ "Joseph Butler" -> "Cameron Brown" [pos="e,3403.1,813.59 3584.2,859.34 3535.9,847.14 3464.9,829.21 3412.9,816.07"];
464
+ "Joseph Butler" -> "Kyra Sacco" [pos="e,2052.2,729.89 3649.8,854.59 3661.2,833.63 3674.5,799.75 3655.3,780 3628.7,752.73 2323.3,745.71 2285.3,744 2209.4,740.59 2122.8\
465
+ ,734.89 2062.4,730.62"];
466
+ "Joseph Butler" -> "Teresa Simms" [pos="e,4183.7,743.07 3717.5,869.92 3832.3,864.41 4038.7,850.27 4105.3,818 4126.8,807.58 4126,796.45 4143.3,780 4153.8,769.98 4165.7,759.22\
467
+ 4176.1,749.89"];
468
+ "Sarah Maltese" -> "Tamara Scrivner" [pos="e,3515.2,816.24 3431.5,856.21 3453.5,845.67 3482.2,831.97 3506,820.62"];
469
+ "Sarah Maltese" -> "Melissa Bebak" [pos="e,3201.6,813.95 3346.9,858.02 3307.7,846.14 3252.8,829.49 3211.3,816.9"];
470
+ "Bradley Stouse" -> "Alberto Ayon" [pos="e,2322.5,663.84 2530.5,711.34 2474.3,698.51 2390.4,679.35 2332.3,666.08"];
471
+ "Ryan Underwood" -> "Bradley Stouse" [pos="e,2650.2,738.6 2853.4,784.73 2798.1,772.17 2717.6,753.91 2660.3,740.89"];
472
+ "Ryan Underwood" -> "Christine Mount" [pos="e,3104.9,740.59 2967.6,783.13 3005,771.54 3055.8,755.79 3095.2,743.61"];
473
+ "Ryan Underwood" -> "Rebecca Hippert" [pos="e,2456.9,738.03 2846.5,785.95 2834.1,783.83 2821.3,781.75 2809.3,780 2669.4,759.63 2633.1,764.71 2493.3,744 2484.7,742.73 2475.8\
474
+ ,741.28 2466.9,739.76"];
475
+ "Ryan Underwood" -> "Samuel Behar" [pos="e,1875.3,738.42 2848.6,785.54 2835.6,783.37 2822,781.38 2809.3,780 2411.3,736.91 2306.6,793.08 1909.3,744 1901.5,743.04 1893.4,741.76\
476
+ 1885.4,740.32"];
477
+ "Casondra Brimmage" -> "Lisa Gochnauer" [pos="e,3448.8,519.31 3554.5,559.84 3525.8,548.82 3488.4,534.47 3458.3,522.94"];
478
+ "Casondra Brimmage" -> "Laura Fisher" [pos="e,2172.1,506.64 3490.1,571.62 3204.2,557.52 2437.8,519.74 2182.4,507.15"];
479
+ "Kristopher Lininger" -> "Casondra Brimmage" [pos="e,3676.1,590.77 3937,637.51 3866.4,624.85 3760.7,605.92 3686.4,592.61"];
480
+ "Ilana Melcher" -> "Casondra Brimmage" [pos="e,3677.7,590.52 3980,782.68 3961.4,773.27 3939.5,760.1 3923.3,744 3882.1,703.18 3903.5,665.76 3856.3,632 3842.4,622.03 3756.4,604.84\
481
+ 3687.7,592.33"];
482
+ "Ilana Melcher" -> "Jeremy Frazier" [pos="e,3803.9,739.64 3966.3,784.82 3922.8,772.71 3860.1,755.26 3813.6,742.33"];
483
+ "Ilana Melcher" -> "Kameka Smith" [pos="e,4017.3,743.67 4017.3,780.33 4017.3,772.26 4017.3,762.65 4017.3,753.71"];
484
+ "Cassiopeia Guthrie" -> "Rachel Perkins" [pos="e,3802.5,595.08 3761.3,632.71 3771.4,623.48 3783.8,612.14 3794.8,602.11"];
485
+ "Jeremy Frazier" -> "Cassiopeia Guthrie" [pos="e,3743.8,669.67 3748.8,706.33 3747.7,698.26 3746.4,688.65 3745.2,679.71"];
486
+ "Jeremy Frazier" -> "Scott Gardner" [pos="e,3283,659.15 3687,712.68 3673.9,710.32 3660.2,707.98 3647.3,706 3524.6,687.14 3381.8,670.21 3293,660.27"];
487
+ "Christine Mount" -> "Cassiopeia Guthrie" [pos="e,3655.1,661.88 3233.4,715.14 3339.7,701.71 3529.9,677.69 3644.9,663.17"];
488
+ "Christine Mount" -> "Scott Gardner" [pos="e,3194.4,669.41 3168.4,706.33 3174.5,697.67 3181.8,687.23 3188.5,677.76"];
489
+ "Tiffany Kalland" -> "Jennie Bogart" [pos="e,2299.9,816.58 2358.5,855.28 2343.5,845.39 2324.7,832.96 2308.6,822.29"];
490
+ "Tiffany Kalland" -> "Rebecca Hippert" [pos="e,2388.8,743.59 2385.8,854.26 2386.5,828.9 2387.7,783.44 2388.5,753.75"];
491
+ "Tiffany Kalland" -> "Robbyn Rozelle" [pos="e,1897,809.44 2311,863.65 2226,852.88 2082.5,834.56 1959.3,818 1942.4,815.73 1924.3,813.25 1907.1,810.85"];
492
+ "Tiffany Kalland" -> "Cameron Brown" [pos="e,3280.5,812.29 2469.2,868.91 2654.8,859.65 3095.2,836.47 3243.3,818 3252.2,816.89 3261.4,815.51 3270.6,813.98"];
493
+ "Jennie Bogart" -> "Kristen Anderson" [pos="e,1688.9,738.24 2216.4,785.82 2205.4,783.62 2194,781.55 2183.3,780 1982.1,750.94 1929,769.64 1727.3,744 1718,742.82 1708.4,741.4\
494
+ 1698.8,739.87"];
495
+ "Jennie Bogart" -> "Alberto Ayon" [pos="e,2267.2,669.59 2272.4,780.26 2271.2,754.9 2269.1,709.44 2267.7,679.75"];
496
+ "Laura Simonette" -> "Gara Thornton" [pos="e,5628.9,965.34 5597.6,1002.7 5605.1,993.81 5614.2,982.96 5622.3,973.21"];
497
+ "Jon Weisel" -> "Laura Simonette" [pos="e,5582.3,1039.7 5582.3,1076.3 5582.3,1068.3 5582.3,1058.6 5582.3,1049.7"];
498
+ "Nathan Williams" -> "Susannah Clayton" [pos="e,2027.6,815.76 1921.1,856.58 1949.7,845.63 1987.4,831.15 2017.9,819.45"];
499
+ "Nathan Williams" -> "Laura Fisher" [pos="e,2101.5,521.53 1892.5,854.52 1911.2,830.55 1943.7,790.54 1959.3,780 1999.8,752.63 2032.1,781.7 2063.3,744 2114.1,682.53 2109,580.78\
500
+ 2102.9,531.5"];
501
+ "Samuel Wallace" -> "Jamie Jackson" [pos="e,3604.5,740.11 3742.8,783.49 3705.3,771.73 3653.7,755.54 3614.2,743.17"];
502
+ "Scott Gardner" -> "Lisa Gochnauer" [pos="e,3382.2,520.92 3231.3,633.15 3267,606.59 3334.2,556.63 3374.1,526.93"];
503
+ "Scott Gardner" -> "Robert Winebarger" [pos="e,2023,586.56 3124.3,647.96 2943.7,641.08 2501.8,622.82 2132.3,596 2100,593.66 2064.9,590.55 2033.2,587.53"];
504
+ "Alberto Ayon" -> "James Fogelman" [pos="e,2243.9,595.67 2258.7,632.33 2255.4,624.09 2251.4,614.23 2247.7,605.13"];
505
+ "Susannah Clayton" -> "James Fogelman" [pos="e,2215.1,595.29 2081.4,780.52 2099.1,748.69 2138,682.12 2179.3,632 2187.8,621.61 2198.2,611.13 2207.7,602.14"];
506
+ "Christina Kelly" -> "Melissa Roy" [pos="e,4337.8,881.45 3463.8,943.32 3617.6,936.12 3958.2,918.52 4244.3,892 4271.5,889.48 4301.3,886.02 4327.5,882.74"];
507
+ "Robert Winebarger" -> "Sarah Titilah" [pos="e,1827.2,520.07 1898.2,559.28 1879.5,548.97 1855.9,535.89 1836,524.94"];
508
+ "Robin Ellison" -> "Robert Winebarger" [pos="e,1903.2,594.93 1844.8,633.46 1859.7,623.65 1878.4,611.29 1894.5,600.64"];
509
+ "Robin Ellison" -> "Katie Kozma" [pos="e,1390.5,586.65 1753.5,641.25 1662.2,627.53 1496.4,602.59 1400.4,588.15"];
510
+ "Robin Ellison" -> "Leila Wilhelm" [pos="e,1748.4,594.75 1796,633.09 1784.2,623.54 1769.4,611.67 1756.5,601.3"];
511
+ "Jennifer Brandon" -> "Sandy Konar" [pos="e,1123.5,965.41 1143.9,1002.3 1139.3,993.85 1133.6,983.65 1128.4,974.34"];
512
+ "Jennifer Brandon" -> "Lindsay Arehart" [pos="e,1266.3,964.24 1188.5,1003.7 1209,993.26 1235.3,979.95 1257.2,968.85"];
513
+ "Jarrod Monroe" -> "Robbyn Rozelle" [pos="e,1790.3,816.33 1715,855.84 1734.7,845.5 1760,832.22 1781.2,821.1"];
514
+ "Jamie Fratacci" -> "Jarrod Monroe" [pos="e,1745.4,885.68 1994.4,934.32 1984.1,932.19 1973.4,930.02 1963.3,928 1880.7,911.48 1859.9,908.26 1777.3,892 1770.2,890.6 1762.8,\
515
+ 889.14 1755.4,887.68"];
516
+ "Jamie Fratacci" -> "Katie Browne" [pos="e,2840.3,878.19 2128.4,938.19 2157.9,934.78 2192.2,930.99 2223.3,928 2441.7,906.99 2699.3,888.09 2830.4,878.89"];
517
+ "Edward Givens" -> "Mark Newton-John" [pos="e,4504.3,1409.7 4504.3,1446.3 4504.3,1438.3 4504.3,1428.6 4504.3,1419.7"];
518
+ "Veronica Nickel" -> "Cindy Teel" [pos="e,3963.6,1036.9 3879.5,1077.8 3901.9,1066.9 3931,1052.8 3954.5,1041.3"];
519
+ "Jennifer Stout" -> "Greg Moody" [pos="e,3118.9,887.95 2992.6,931.4 3026.6,919.69 3073.3,903.63 3109.1,891.32"];
520
+ "Melissa Roy" -> "Erika Tapia" [pos="e,4408.5,817.67 4403.1,854.33 4404.3,846.26 4405.7,836.65 4407,827.71"];
521
+ "Katie Browne" -> "Ryan Underwood" [pos="e,2916.3,817.67 2916.3,854.33 2916.3,846.26 2916.3,836.65 2916.3,827.71"];
522
+ "Katie Browne" -> "Mike Tulumello" [pos="e,2597.1,811.69 2856.8,860.68 2845.7,858.42 2834.1,856.11 2823.3,854 2737.2,837.22 2715.4,834.6 2629.3,818 2622.1,816.61 2614.5,\
523
+ 815.13 2607,813.65"];
524
+ "Katie Browne" -> "Crystal Bozak" [pos="e,2761.5,814.85 2874,857.13 2843.9,845.81 2803.2,830.53 2771.1,818.48"];
525
+ "Veronica Villanueva" -> "Ilana Melcher" [pos="e,4043.3,816.66 4099.6,854.9 4085.2,845.08 4067.1,832.83 4051.6,822.3"];
526
+ "Scott Wright" -> "Jennifer Brandon" [pos="e,1090.1,1035 872.04,1082.6 929.2,1070.1 1017.7,1050.8 1080.3,1037.1"];
527
+ "Scott Wright" -> "Katie Kozma" [pos="e,1262.1,586.8 839.35,1077.4 870.62,1052.3 921.29,1002.9 921.29,947 921.29,947 921.29,947 921.29,725 921.29,655.35 1135.3,608.76\
528
+ 1252.2,588.5"];
529
+ "Jeremy Browne" -> "Jennie Bogart" [pos="e,2274.8,817.68 2309.3,928.46 2302.7,918.16 2295,904.85 2290.3,892 2282.6,871.18 2278.3,846.41 2275.9,827.67"];
530
+ "Laura Fisher" -> "Ashley Rehart" [pos="e,2023.2,446.84 2074.6,485.28 2061.6,475.55 2045.3,463.37 2031.2,452.82"];
531
+ "Laura Fisher" -> "Jennifer Cooley" [pos="e,2181.6,446.93 2124.4,485.46 2138.9,475.65 2157.3,463.29 2173.2,452.64"];
532
+ "Katie Kozma" -> "Cara Yancey" [pos="e,1445.3,519.42 1360.6,560.39 1383,549.6 1412.2,535.43 1436.1,523.87"];
533
+ "Katie Kozma" -> "Cate Threlkeld" [pos="e,1303.1,521.67 1318.5,558.33 1315,550.09 1310.9,540.23 1307.1,531.13"];
534
+ "Rachel Perkins" -> "Lisa Fleck" [pos="e,3860,521.16 3834.9,558.33 3840.8,549.61 3847.9,539.07 3854.4,529.54"];
535
+ "Rachel Perkins" -> "Christine Coyne" [pos="e,3713.5,520.33 3789.4,559.84 3769.4,549.45 3743.8,536.1 3722.4,524.96"];
536
+ "Ashley Rehart" -> "Elizabeth Larios" [pos="e,1835.7,371.09 1955.2,413.4 1923.3,402.09 1879.9,386.72 1845.6,374.58"];
537
+ "Ashley Rehart" -> "Kathleen Halberg" [pos="e,1999.3,373.67 1999.3,410.33 1999.3,402.26 1999.3,392.65 1999.3,383.71"];
538
+ "Cara Yancey" -> "Ashley Presley" [pos="e,1482.3,447.67 1480.3,484.33 1480.7,476.26 1481.3,466.65 1481.7,457.71"];
539
+ "Ashley Presley" -> "Monique Arellano" [pos="e,1483.3,373.67 1483.3,410.33 1483.3,402.26 1483.3,392.65 1483.3,383.71"];
540
+ "Greg Moody" -> "Ryan Underwood" [pos="e,2968.8,814.8 3115.2,858.82 3076.3,847.14 3020.9,830.48 2978.5,817.71"];
541
+ "Greg Moody" -> "Janay Rabe" [pos="e,4164.3,809.62 3225.1,863.39 3249.7,859.93 3278.3,856.32 3304.3,854 3659.2,822.34 3750.9,855.11 4105.3,818 4121.1,816.34 4138.1\
542
+ ,813.9 4154,811.33"];
543
+ "Greg Moody" -> "Melissa Bebak" [pos="e,3154.8,817.67 3159.8,854.33 3158.7,846.26 3157.4,836.65 3156.2,827.71"];
544
+ "Lisa Fleck" -> "Mallory Williams" [pos="e,3880.5,447.67 3875.1,484.33 3876.3,476.26 3877.7,466.65 3879,457.71"];
545
+ "Christine Coyne" -> "Rakan Abu-Rahma" [pos="e,3672.1,447.67 3677.5,484.33 3676.3,476.26 3674.9,466.65 3673.6,457.71"];
546
+ "Jennifer Cooley" -> "Anthony Henderson" [pos="e,2223.2,373.67 2213.3,410.33 2215.5,402.18 2218.2,392.44 2220.6,383.42"];
547
+ "Elizabeth Larios" -> "Brittany DePew" [pos="e,1790.3,299.67 1790.3,336.33 1790.3,328.26 1790.3,318.65 1790.3,309.71"];
548
+ "Cate Threlkeld" -> "Amethyst Tagle" [pos="e,1292.3,447.67 1294.3,484.33 1293.8,476.26 1293.3,466.65 1292.8,457.71"];
549
+ "Robbyn Rozelle" -> "Kyra Sacco" [pos="e,1951.3,740.89 1860.7,782.02 1884.9,771.05 1916.4,756.72 1941.9,745.16"];
550
+ "Cameron Brown" -> "Kristopher Lininger" [pos="e,3924.9,662.1 3362.3,780.52 3383.9,758.47 3423.4,722.53 3465.3,706 3627.6,641.99 3682.8,688.55 3856.3,670 3875.2,667.97 3895.5,\
551
+ 665.64 3914.8,663.32"];
552
+ "Janay Rabe" -> "Teresa Simms" [pos="e,4208.3,743.67 4216.3,780.33 4214.5,772.26 4212.4,762.65 4210.5,753.71"];
553
+ "Kameka Smith" -> "Kristopher Lininger" [pos="e,4013.6,669.67 4016,706.33 4015.5,698.26 4014.8,688.65 4014.2,679.71"];
554
+ "Kyra Sacco" -> "Robin Ellison" [pos="e,1855.1,667.23 1950.3,709.13 1925.2,698.07 1891.5,683.23 1864.4,671.31"];
555
+ "Samuel Behar" -> "Robin Ellison" [pos="e,1818.3,669.67 1818.3,706.33 1818.3,698.26 1818.3,688.65 1818.3,679.71"];
556
+ "Kristin Alongi-Hutchins" -> "David Bronson" [pos="e,3207.9,1039.4 3180.9,1076.3 3187.2,1067.7 3194.9,1057.2 3201.8,1047.8"];
557
+ "Jennifer Berry" -> "Janean Angeles" [pos="e,2263.3,1335.7 2263.3,1372.3 2263.3,1364.3 2263.3,1354.6 2263.3,1345.7"];
558
+ "Robert Schmidtke" -> "John FitzGibbon" [pos="e,3521.8,1482.9 3470,1520.9 3483.2,1511.2 3499.6,1499.2 3513.8,1488.8"];
559
+ "Jean Newman" -> "John FitzGibbon" [pos="e,3571,1483.1 3623.1,1521.3 3609.9,1511.6 3593.4,1499.5 3579.1,1489.1"];
560
+ }