├── osx.pdf
├── osx.png
├── thumbs
├── mini.png
└── detail.png
├── README.md
├── osx_frameworks.py
└── osx.dot
/osx.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nst/osx_frameworks/master/osx.pdf
--------------------------------------------------------------------------------
/osx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nst/osx_frameworks/master/osx.png
--------------------------------------------------------------------------------
/thumbs/mini.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nst/osx_frameworks/master/thumbs/mini.png
--------------------------------------------------------------------------------
/thumbs/detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nst/osx_frameworks/master/thumbs/detail.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # OS X Frameworks
2 | Generate a .dot file of OS X frameworks dependencies
3 |
4 | python osx_frameworks.py Tests
5 | python osx_frameworks.py > osx.dot
6 | dot -Tpdf osx.dot -o osx.pdf && open osx.pdf
7 | dot -Tpng osx.dot -o osx.png && open osx.png
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/osx_frameworks.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # python osx_frameworks.py Tests
4 | # python osx_frameworks.py > osx.dot
5 | # dot -Tpdf osx.dot -o osx.pdf && open osx.pdf
6 |
7 | import os
8 | import popen2
9 | import sys
10 | import unittest
11 | import pickle
12 |
13 | def is_dylib(s):
14 | return s.endswith(".dylib")
15 |
16 | def is_framework(s):
17 | return s.endswith(".framework")
18 |
19 | def is_public_framework(s):
20 | return is_framework(s) and s.startswith("/System/Library/Frameworks")
21 |
22 | def is_private(s):
23 | return s.startswith("/System/Library/PrivateFrameworks")
24 |
25 | def all_frameworks():
26 | l = []
27 | for path in ["/System/Library/Frameworks", "/System/Library/PrivateFrameworks"]:
28 | l += [ os.path.join(path, x) for x in os.listdir(path) if x.endswith('.framework')]
29 | return l
30 |
31 | def short_name_for_bundle(path):
32 | basename = os.path.basename(path)
33 | basename_no_ext = os.path.splitext(basename)[0]
34 | return basename_no_ext
35 |
36 | def bundle_path_for_bin (bin_path):
37 | if bin_path.endswith('.dylib') or bin_path.endswith('.framework'):
38 | return bin_path
39 |
40 | for ext in [".framework", ".dylib"]:
41 | i = bin_path.rfind(ext)
42 | if i != -1:
43 | return bin_path[:i] + ext
44 | return bin_path
45 |
46 | def dependencies_for_framework(path):
47 |
48 | if not path.endswith('.dylib'):
49 | bin = os.path.join(path, short_name_for_bundle(path))
50 | if not os.path.exists(bin):
51 | bin = os.path.sep.join([path, "Versions", "A", short_name_for_bundle(path)])
52 | if not os.path.exists(bin):
53 | bin = os.path.sep.join([path, "Versions", "B", short_name_for_bundle(path)])
54 | if not os.path.exists(bin):
55 | return set([])
56 | else:
57 | bin = path
58 |
59 | command = "/usr/bin/otool -L %s" % bin
60 | (stdout, stdin, stderr) = popen2.popen3(command)
61 | lines = stdout.readlines()
62 | deps = set([ bundle_path_for_bin(x.split(' ')[0][1:]) for x in lines if x.startswith('\t') ])
63 | if path in deps:
64 | deps.remove(path)
65 | return deps
66 |
67 | def digraph(d):
68 |
69 | l = []
70 | l.append("digraph G {")
71 | l.append("\tnode [shape=box];")
72 | l.append("\tsplines=ortho;")
73 | l.append("\tranksep=4;")
74 | #l.append("\tcompound=true;")
75 | #l.append("\tfontname=Monaco;")
76 | #l.append("\tfontsize=10;")
77 | #l.append("\tratio=fill;")
78 | #l.append('\tsize="11.7,6";')
79 | #l.append('\tmargin=0.2;')
80 |
81 | l.append("""
82 | {Legend [shape=none, margin=0, label=<
83 |
84 |
85 | | OS X 10.10.2 |
86 |
87 |
88 | | Framework Dependencies |
89 |
90 |
91 | | 2015-02-25 @nst021 |
92 |
93 |
94 | | .framework |
95 | |
96 |
97 |
98 | | .dylib |
99 | |
100 |
101 |
102 | >];
103 | }\n""")
104 |
105 | all_nodes = set()
106 | all_nodes.update(d.keys())
107 | all_nodes.update(reduce(lambda s1,s2:s1.copy().update(s2) if s1 else set([]), d.values()))
108 |
109 | cluster_for_node = {}
110 |
111 | int_nodes = set([])
112 | for i in all_nodes:
113 | parents = filter(lambda n : n != i and i.startswith(n), all_nodes)
114 | if len(parents) > 0:
115 | int_nodes.add(i)
116 |
117 | ext_nodes = all_nodes.difference(int_nodes)
118 |
119 | for i in ext_nodes:
120 | if is_private(i):
121 | continue
122 |
123 | color = "lightblue" if is_dylib(i) else "gold"
124 |
125 | l.append('\tsubgraph "cluster_%s" {' % i)
126 | l.append("\t\tstyle = filled;")
127 | l.append("\t\tcolor = %s;" % color)
128 |
129 | int_nodes = filter(lambda n : n != i and n.startswith(i), all_nodes)
130 |
131 | i_ = short_name_for_bundle(i)
132 | l.append('\t\t"%s" [label = "%s", style=filled, fillcolor="white"];' % (i, i_))
133 | for i_n in int_nodes:
134 | i_n_ = short_name_for_bundle(i_n)
135 | l.append('\t\t"%s" [label = "%s", style=filled, fillcolor="gold"];' % (i_n, i_n_))
136 |
137 | l.append("\t}")
138 | l.append("")
139 |
140 | #
141 |
142 | for n in all_nodes:
143 | if is_private(n):
144 | continue
145 | deps = d[n] if n in d else []
146 | for dep in deps:
147 | if is_private(dep):
148 | continue
149 |
150 | if dep.startswith(n):
151 | continue
152 |
153 | tails = []
154 |
155 | if n in ext_nodes:
156 | tails.append('ltail="cluster_%s"' % n)
157 |
158 | if dep in ext_nodes:
159 | tails.append('lhead="cluster_%s"' % dep)
160 |
161 | tails_string = ','.join(tails)
162 | tails_string_brackets = '[%s]' % tails_string if len(tails) > 0 else ""
163 |
164 | l.append('\t\"%s\" -> \"%s\" %s;' % (n, dep, tails_string_brackets))
165 |
166 | l.append("}")
167 |
168 | return '\n'.join(l)
169 |
170 | def build_graph(frameworks_set):
171 | d = {}
172 | for f in frameworks_set:
173 | deps = dependencies_for_framework(f)
174 | d[f] = set(deps)
175 |
176 | return d
177 |
178 | def discover_new_dependencies(d):
179 |
180 | d2 = d.copy()
181 |
182 | for deps in d.values():
183 | for f in deps:
184 | if f not in d2:
185 | d2[f] = dependencies_for_framework(f)
186 |
187 | return d2
188 |
189 | def remove_direct_deps(d):
190 |
191 | d2 = d.copy()
192 |
193 | for k, deps in d.iteritems():
194 | dep_1_set = set(deps)
195 | for dep_1 in dep_1_set:
196 | if k == dep_1:
197 | if k in d2 and dep_1 in d2[k]:
198 | d2[k].remove(dep_1)
199 | continue
200 | if dep_1 not in d2:
201 | continue
202 | dep_2_set = d2[dep_1]
203 |
204 | u = dep_1_set.intersection(dep_2_set)
205 | if dep_1 in u:
206 | u.remove(dep_1)
207 |
208 | for f in u:
209 | if f not in d2[k]:
210 | continue
211 | d2[k].remove(f)
212 |
213 |
214 | return d2
215 |
216 | import unittest
217 |
218 | class Tests(unittest.TestCase):
219 |
220 | def test_short_name_for_bundle(self):
221 |
222 | s = short_name_for_bundle('/System/Library/Frameworks/Accelerate.framework')
223 | self.assertEqual(s, 'Accelerate')
224 |
225 | s = short_name_for_bundle('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework')
226 | self.assertEqual(s, 'vImage')
227 |
228 | s = short_name_for_bundle('/usr/lib/libSystem.B.dylib')
229 | self.assertEqual(s, 'libSystem.B')
230 |
231 | def test_dependencies_for_framework(self):
232 |
233 | deps = dependencies_for_framework('/System/Library/Frameworks/Accelerate.framework')
234 |
235 | self.assertTrue('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework' in deps)
236 | self.assertTrue('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework' in deps)
237 | self.assertTrue('/usr/lib/libSystem.B.dylib' in deps)
238 |
239 | def test_dependencies_for_framework_2(self):
240 |
241 | deps = dependencies_for_framework('/System/Library/Frameworks/Foundation.framework')
242 | self.assertTrue('/System/Library/Frameworks/CoreFoundation.framework' in deps)
243 |
244 | deps = dependencies_for_framework('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework')
245 | self.assertTrue('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib' in deps)
246 |
247 | deps = dependencies_for_framework('/System/Library/Frameworks/vecLib.framework')
248 | self.assertTrue('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib' in deps)
249 |
250 | deps = dependencies_for_framework('/usr/lib/system/libquarantine.dylib')
251 | self.assertTrue('/usr/lib/system/libsystem_kernel.dylib' in deps)
252 | self.assertTrue('/usr/lib/system/libquarantine.dylib' not in deps)
253 |
254 | def test_bundle_path_for_bin(self):
255 |
256 | path = bundle_path_for_bin('/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa')
257 | self.assertEqual(path, '/System/Library/Frameworks/Cocoa.framework')
258 |
259 | path = bundle_path_for_bin('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage')
260 | self.assertEqual(path, '/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework')
261 |
262 | path = bundle_path_for_bin('/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib')
263 | self.assertEqual(path, '/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib')
264 |
265 | def test_remove_direct_dep(self):
266 |
267 | d = {}
268 | d['a'] = set(['b', 'c'])
269 | d['b'] = set(['c'])
270 |
271 | d2 = {}
272 | d2['a'] = set(['b'])
273 | d2['b'] = set(['c'])
274 |
275 | self.assertEqual(d2, remove_direct_deps(d))
276 |
277 | if __name__ == '__main__':
278 |
279 | if len(sys.argv) > 1:
280 | unittest.main()
281 | sys.exit(0)
282 |
283 | sample_data = False
284 | if not sample_data:
285 | filename = 'data.pickle'
286 | d_no_dd = None
287 |
288 | if os.path.exists(filename):
289 | d_no_dd = pickle.load(open(filename,"rb"))
290 | else:
291 | data = all_frameworks()
292 | d = build_graph(data)
293 | d2 = {}
294 | while d2 != d:
295 | d2 = discover_new_dependencies(d)
296 | d = d2
297 |
298 | d_no_dd = {}
299 | while d_no_dd != d:
300 | d_no_dd = remove_direct_deps(d)
301 | d = d_no_dd
302 |
303 | pickle.dump(d_no_dd, open(filename,"wb"))
304 |
305 | print digraph(d_no_dd)
306 | else:
307 | d = {}
308 | d['a'] = set(['ab', 'c'])
309 | d['b'] = set(['a', 'c'])
310 | d['c'] = set(['a', 'ca'])
311 | d['ca'] = set(['b'])
312 | print digraph(d)
313 |
--------------------------------------------------------------------------------
/osx.dot:
--------------------------------------------------------------------------------
1 | digraph G {
2 | node [shape=box];
3 | splines=ortho;
4 | ranksep=4;
5 |
6 | {Legend [shape=none, margin=0, label=<
7 |
8 |
9 | | OS X 10.10.2 |
10 |
11 |
12 | | Frameworks dependancies |
13 |
14 |
15 | | 2015-02-25 @nst021 |
16 |
17 |
18 | | .framework |
19 | |
20 |
21 |
22 | | .dylib |
23 | |
24 |
25 |
26 | >];
27 | }
28 |
29 | subgraph "cluster_/System/Library/Frameworks/Tk.framework" {
30 | style = filled;
31 | color = gold;
32 | "/System/Library/Frameworks/Tk.framework" [label = "Tk", style=filled, fillcolor="white"];
33 | }
34 | subgraph "cluster_/usr/lib/system/libsystem_stats.dylib" {
35 | style = filled;
36 | color = lightblue;
37 | "/usr/lib/system/libsystem_stats.dylib" [label = "libsystem_stats", style=filled, fillcolor="white"];
38 | }
39 | subgraph "cluster_@rpath/ACDEClient.framework" {
40 | style = filled;
41 | color = gold;
42 | "@rpath/ACDEClient.framework" [label = "ACDEClient", style=filled, fillcolor="white"];
43 | }
44 | subgraph "cluster_/System/Library/Frameworks/CoreGraphics.framework" {
45 | style = filled;
46 | color = gold;
47 | "/System/Library/Frameworks/CoreGraphics.framework" [label = "CoreGraphics", style=filled, fillcolor="white"];
48 | }
49 | subgraph "cluster_/usr/lib/libbsm.0.dylib" {
50 | style = filled;
51 | color = lightblue;
52 | "/usr/lib/libbsm.0.dylib" [label = "libbsm.0", style=filled, fillcolor="white"];
53 | }
54 | subgraph "cluster_/System/Library/Frameworks/IOSurface.framework" {
55 | style = filled;
56 | color = gold;
57 | "/System/Library/Frameworks/IOSurface.framework" [label = "IOSurface", style=filled, fillcolor="white"];
58 | }
59 | subgraph "cluster_/System/Library/Frameworks/OpenDirectory.framework" {
60 | style = filled;
61 | color = gold;
62 | "/System/Library/Frameworks/OpenDirectory.framework" [label = "OpenDirectory", style=filled, fillcolor="white"];
63 | "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework" [label = "CFOpenDirectory", style=filled, fillcolor="gold"];
64 | }
65 | subgraph "cluster_/usr/lib/libsqlite3.dylib" {
66 | style = filled;
67 | color = lightblue;
68 | "/usr/lib/libsqlite3.dylib" [label = "libsqlite3", style=filled, fillcolor="white"];
69 | }
70 | subgraph "cluster_/System/Library/Frameworks/CoreText.framework" {
71 | style = filled;
72 | color = gold;
73 | "/System/Library/Frameworks/CoreText.framework" [label = "CoreText", style=filled, fillcolor="white"];
74 | }
75 | subgraph "cluster_/usr/lib/system/libunc.dylib" {
76 | style = filled;
77 | color = lightblue;
78 | "/usr/lib/system/libunc.dylib" [label = "libunc", style=filled, fillcolor="white"];
79 | }
80 | subgraph "cluster_/System/Library/Frameworks/QuickLook.framework" {
81 | style = filled;
82 | color = gold;
83 | "/System/Library/Frameworks/QuickLook.framework" [label = "QuickLook", style=filled, fillcolor="white"];
84 | }
85 | subgraph "cluster_/usr/lib/system/libdyld.dylib" {
86 | style = filled;
87 | color = lightblue;
88 | "/usr/lib/system/libdyld.dylib" [label = "libdyld", style=filled, fillcolor="white"];
89 | }
90 | subgraph "cluster_/System/Library/Frameworks/AppKitScripting.framework" {
91 | style = filled;
92 | color = gold;
93 | "/System/Library/Frameworks/AppKitScripting.framework" [label = "AppKitScripting", style=filled, fillcolor="white"];
94 | }
95 | subgraph "cluster_/System/Library/Frameworks/InputMethodKit.framework" {
96 | style = filled;
97 | color = gold;
98 | "/System/Library/Frameworks/InputMethodKit.framework" [label = "InputMethodKit", style=filled, fillcolor="white"];
99 | }
100 | subgraph "cluster_/usr/lib/system/libsystem_platform.dylib" {
101 | style = filled;
102 | color = lightblue;
103 | "/usr/lib/system/libsystem_platform.dylib" [label = "libsystem_platform", style=filled, fillcolor="white"];
104 | }
105 | subgraph "cluster_/System/Library/Frameworks/System.framework" {
106 | style = filled;
107 | color = gold;
108 | "/System/Library/Frameworks/System.framework" [label = "System", style=filled, fillcolor="white"];
109 | }
110 | subgraph "cluster_/usr/lib/system/libmacho.dylib" {
111 | style = filled;
112 | color = lightblue;
113 | "/usr/lib/system/libmacho.dylib" [label = "libmacho", style=filled, fillcolor="white"];
114 | }
115 | subgraph "cluster_/System/Library/Frameworks/OpenCL.framework" {
116 | style = filled;
117 | color = gold;
118 | "/System/Library/Frameworks/OpenCL.framework" [label = "OpenCL", style=filled, fillcolor="white"];
119 | }
120 | subgraph "cluster_/System/Library/Frameworks/Security.framework" {
121 | style = filled;
122 | color = gold;
123 | "/System/Library/Frameworks/Security.framework" [label = "Security", style=filled, fillcolor="white"];
124 | }
125 | subgraph "cluster_/System/Library/Frameworks/VideoToolbox.framework" {
126 | style = filled;
127 | color = gold;
128 | "/System/Library/Frameworks/VideoToolbox.framework" [label = "VideoToolbox", style=filled, fillcolor="white"];
129 | }
130 | subgraph "cluster_/usr/lib/system/libsystem_c.dylib" {
131 | style = filled;
132 | color = lightblue;
133 | "/usr/lib/system/libsystem_c.dylib" [label = "libsystem_c", style=filled, fillcolor="white"];
134 | }
135 | subgraph "cluster_/System/Library/Frameworks/QuartzCore.framework" {
136 | style = filled;
137 | color = gold;
138 | "/System/Library/Frameworks/QuartzCore.framework" [label = "QuartzCore", style=filled, fillcolor="white"];
139 | "/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework" [label = "CoreImage", style=filled, fillcolor="gold"];
140 | }
141 | subgraph "cluster_/System/Library/Frameworks/CoreMediaIO.framework" {
142 | style = filled;
143 | color = gold;
144 | "/System/Library/Frameworks/CoreMediaIO.framework" [label = "CoreMediaIO", style=filled, fillcolor="white"];
145 | }
146 | subgraph "cluster_/System/Library/Frameworks/Python.framework" {
147 | style = filled;
148 | color = gold;
149 | "/System/Library/Frameworks/Python.framework" [label = "Python", style=filled, fillcolor="white"];
150 | }
151 | subgraph "cluster_/usr/lib/system/libsystem_malloc.dylib" {
152 | style = filled;
153 | color = lightblue;
154 | "/usr/lib/system/libsystem_malloc.dylib" [label = "libsystem_malloc", style=filled, fillcolor="white"];
155 | }
156 | subgraph "cluster_/usr/lib/libOpenScriptingUtil.dylib" {
157 | style = filled;
158 | color = lightblue;
159 | "/usr/lib/libOpenScriptingUtil.dylib" [label = "libOpenScriptingUtil", style=filled, fillcolor="white"];
160 | }
161 | subgraph "cluster_/usr/lib/system/libsystem_info.dylib" {
162 | style = filled;
163 | color = lightblue;
164 | "/usr/lib/system/libsystem_info.dylib" [label = "libsystem_info", style=filled, fillcolor="white"];
165 | }
166 | subgraph "cluster_/usr/lib/system/libxpc.dylib" {
167 | style = filled;
168 | color = lightblue;
169 | "/usr/lib/system/libxpc.dylib" [label = "libxpc", style=filled, fillcolor="white"];
170 | }
171 | subgraph "cluster_/System/Library/Frameworks/FinderSync.framework" {
172 | style = filled;
173 | color = gold;
174 | "/System/Library/Frameworks/FinderSync.framework" [label = "FinderSync", style=filled, fillcolor="white"];
175 | }
176 | subgraph "cluster_/System/Library/Frameworks/QTKit.framework" {
177 | style = filled;
178 | color = gold;
179 | "/System/Library/Frameworks/QTKit.framework" [label = "QTKit", style=filled, fillcolor="white"];
180 | }
181 | subgraph "cluster_/usr/lib/system/libunwind.dylib" {
182 | style = filled;
183 | color = lightblue;
184 | "/usr/lib/system/libunwind.dylib" [label = "libunwind", style=filled, fillcolor="white"];
185 | }
186 | subgraph "cluster_/System/Library/Frameworks/ICADevices.framework" {
187 | style = filled;
188 | color = gold;
189 | "/System/Library/Frameworks/ICADevices.framework" [label = "ICADevices", style=filled, fillcolor="white"];
190 | }
191 | subgraph "cluster_/System/Library/Frameworks/AppleScriptObjC.framework" {
192 | style = filled;
193 | color = gold;
194 | "/System/Library/Frameworks/AppleScriptObjC.framework" [label = "AppleScriptObjC", style=filled, fillcolor="white"];
195 | }
196 | subgraph "cluster_/usr/lib/libiconv.2.dylib" {
197 | style = filled;
198 | color = lightblue;
199 | "/usr/lib/libiconv.2.dylib" [label = "libiconv.2", style=filled, fillcolor="white"];
200 | }
201 | subgraph "cluster_/System/Library/Frameworks/MediaLibrary.framework" {
202 | style = filled;
203 | color = gold;
204 | "/System/Library/Frameworks/MediaLibrary.framework" [label = "MediaLibrary", style=filled, fillcolor="white"];
205 | }
206 | subgraph "cluster_/System/Library/Frameworks/JavaFrameEmbedding.framework" {
207 | style = filled;
208 | color = gold;
209 | "/System/Library/Frameworks/JavaFrameEmbedding.framework" [label = "JavaFrameEmbedding", style=filled, fillcolor="white"];
210 | }
211 | subgraph "cluster_/System/Library/Frameworks/LatentSemanticMapping.framework" {
212 | style = filled;
213 | color = gold;
214 | "/System/Library/Frameworks/LatentSemanticMapping.framework" [label = "LatentSemanticMapping", style=filled, fillcolor="white"];
215 | }
216 | subgraph "cluster_/System/Library/Frameworks/SecurityInterface.framework" {
217 | style = filled;
218 | color = gold;
219 | "/System/Library/Frameworks/SecurityInterface.framework" [label = "SecurityInterface", style=filled, fillcolor="white"];
220 | }
221 | subgraph "cluster_/System/Library/Frameworks/GLKit.framework" {
222 | style = filled;
223 | color = gold;
224 | "/System/Library/Frameworks/GLKit.framework" [label = "GLKit", style=filled, fillcolor="white"];
225 | }
226 | subgraph "cluster_/usr/lib/system/libsystem_asl.dylib" {
227 | style = filled;
228 | color = lightblue;
229 | "/usr/lib/system/libsystem_asl.dylib" [label = "libsystem_asl", style=filled, fillcolor="white"];
230 | }
231 | subgraph "cluster_/usr/lib/libcmph.dylib" {
232 | style = filled;
233 | color = lightblue;
234 | "/usr/lib/libcmph.dylib" [label = "libcmph", style=filled, fillcolor="white"];
235 | }
236 | subgraph "cluster_@rpath/FinderSync.framework" {
237 | style = filled;
238 | color = gold;
239 | "@rpath/FinderSync.framework" [label = "FinderSync", style=filled, fillcolor="white"];
240 | }
241 | subgraph "cluster_/usr/lib/libxml2.2.dylib" {
242 | style = filled;
243 | color = lightblue;
244 | "/usr/lib/libxml2.2.dylib" [label = "libxml2.2", style=filled, fillcolor="white"];
245 | }
246 | subgraph "cluster_/usr/lib/libheimdal-asn1.dylib" {
247 | style = filled;
248 | color = lightblue;
249 | "/usr/lib/libheimdal-asn1.dylib" [label = "libheimdal-asn1", style=filled, fillcolor="white"];
250 | }
251 | subgraph "cluster_/System/Library/Frameworks/MapKit.framework" {
252 | style = filled;
253 | color = gold;
254 | "/System/Library/Frameworks/MapKit.framework" [label = "MapKit", style=filled, fillcolor="white"];
255 | }
256 | subgraph "cluster_/usr/lib/libpam.2.dylib" {
257 | style = filled;
258 | color = lightblue;
259 | "/usr/lib/libpam.2.dylib" [label = "libpam.2", style=filled, fillcolor="white"];
260 | }
261 | subgraph "cluster_/usr/lib/libicucore.A.dylib" {
262 | style = filled;
263 | color = lightblue;
264 | "/usr/lib/libicucore.A.dylib" [label = "libicucore.A", style=filled, fillcolor="white"];
265 | }
266 | subgraph "cluster_/System/Library/Frameworks/DiskArbitration.framework" {
267 | style = filled;
268 | color = gold;
269 | "/System/Library/Frameworks/DiskArbitration.framework" [label = "DiskArbitration", style=filled, fillcolor="white"];
270 | }
271 | subgraph "cluster_/System/Library/Frameworks/CoreVideo.framework" {
272 | style = filled;
273 | color = gold;
274 | "/System/Library/Frameworks/CoreVideo.framework" [label = "CoreVideo", style=filled, fillcolor="white"];
275 | }
276 | subgraph "cluster_/usr/lib/libIASAuthReboot.dylib" {
277 | style = filled;
278 | color = lightblue;
279 | "/usr/lib/libIASAuthReboot.dylib" [label = "libIASAuthReboot", style=filled, fillcolor="white"];
280 | }
281 | subgraph "cluster_/System/Library/Frameworks/CoreFoundation.framework" {
282 | style = filled;
283 | color = gold;
284 | "/System/Library/Frameworks/CoreFoundation.framework" [label = "CoreFoundation", style=filled, fillcolor="white"];
285 | }
286 | subgraph "cluster_/usr/lib/system/libsystem_secinit.dylib" {
287 | style = filled;
288 | color = lightblue;
289 | "/usr/lib/system/libsystem_secinit.dylib" [label = "libsystem_secinit", style=filled, fillcolor="white"];
290 | }
291 | subgraph "cluster_/usr/lib/libexpat.1.dylib" {
292 | style = filled;
293 | color = lightblue;
294 | "/usr/lib/libexpat.1.dylib" [label = "libexpat.1", style=filled, fillcolor="white"];
295 | }
296 | subgraph "cluster_/usr/lib/libstdc++.6.dylib" {
297 | style = filled;
298 | color = lightblue;
299 | "/usr/lib/libstdc++.6.dylib" [label = "libstdc++.6", style=filled, fillcolor="white"];
300 | }
301 | subgraph "cluster_/System/Library/Frameworks/Scripting.framework" {
302 | style = filled;
303 | color = gold;
304 | "/System/Library/Frameworks/Scripting.framework" [label = "Scripting", style=filled, fillcolor="white"];
305 | }
306 | subgraph "cluster_/usr/lib/libScreenReader.dylib" {
307 | style = filled;
308 | color = lightblue;
309 | "/usr/lib/libScreenReader.dylib" [label = "libScreenReader", style=filled, fillcolor="white"];
310 | }
311 | subgraph "cluster_/usr/lib/system/libsystem_pthread.dylib" {
312 | style = filled;
313 | color = lightblue;
314 | "/usr/lib/system/libsystem_pthread.dylib" [label = "libsystem_pthread", style=filled, fillcolor="white"];
315 | }
316 | subgraph "cluster_/usr/lib/system/libcache.dylib" {
317 | style = filled;
318 | color = lightblue;
319 | "/usr/lib/system/libcache.dylib" [label = "libcache", style=filled, fillcolor="white"];
320 | }
321 | subgraph "cluster_/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" {
322 | style = filled;
323 | color = gold;
324 | "/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" [label = "ZoomWindowSupport", style=filled, fillcolor="white"];
325 | }
326 | subgraph "cluster_/System/Library/Frameworks/CoreWLAN.framework" {
327 | style = filled;
328 | color = gold;
329 | "/System/Library/Frameworks/CoreWLAN.framework" [label = "CoreWLAN", style=filled, fillcolor="white"];
330 | }
331 | subgraph "cluster_/System/Library/Frameworks/SyncServices.framework" {
332 | style = filled;
333 | color = gold;
334 | "/System/Library/Frameworks/SyncServices.framework" [label = "SyncServices", style=filled, fillcolor="white"];
335 | }
336 | subgraph "cluster_/usr/lib/libDiagnosticMessagesClient.dylib" {
337 | style = filled;
338 | color = lightblue;
339 | "/usr/lib/libDiagnosticMessagesClient.dylib" [label = "libDiagnosticMessagesClient", style=filled, fillcolor="white"];
340 | }
341 | subgraph "cluster_/usr/lib/libodfde.dylib" {
342 | style = filled;
343 | color = lightblue;
344 | "/usr/lib/libodfde.dylib" [label = "libodfde", style=filled, fillcolor="white"];
345 | }
346 | subgraph "cluster_/System/Library/Frameworks/OSAKit.framework" {
347 | style = filled;
348 | color = gold;
349 | "/System/Library/Frameworks/OSAKit.framework" [label = "OSAKit", style=filled, fillcolor="white"];
350 | }
351 | subgraph "cluster_/usr/lib/libcups.2.dylib" {
352 | style = filled;
353 | color = lightblue;
354 | "/usr/lib/libcups.2.dylib" [label = "libcups.2", style=filled, fillcolor="white"];
355 | }
356 | subgraph "cluster_/System/Library/Frameworks/AudioUnit.framework" {
357 | style = filled;
358 | color = gold;
359 | "/System/Library/Frameworks/AudioUnit.framework" [label = "AudioUnit", style=filled, fillcolor="white"];
360 | }
361 | subgraph "cluster_/usr/lib/libktrace.dylib" {
362 | style = filled;
363 | color = lightblue;
364 | "/usr/lib/libktrace.dylib" [label = "libktrace", style=filled, fillcolor="white"];
365 | }
366 | subgraph "cluster_/System/Library/Frameworks/AppleScriptKit.framework" {
367 | style = filled;
368 | color = gold;
369 | "/System/Library/Frameworks/AppleScriptKit.framework" [label = "AppleScriptKit", style=filled, fillcolor="white"];
370 | }
371 | subgraph "cluster_/System/Library/Frameworks/SecurityFoundation.framework" {
372 | style = filled;
373 | color = gold;
374 | "/System/Library/Frameworks/SecurityFoundation.framework" [label = "SecurityFoundation", style=filled, fillcolor="white"];
375 | }
376 | subgraph "cluster_/System/Library/Frameworks/FWAUserLib.framework" {
377 | style = filled;
378 | color = gold;
379 | "/System/Library/Frameworks/FWAUserLib.framework" [label = "FWAUserLib", style=filled, fillcolor="white"];
380 | }
381 | subgraph "cluster_/usr/lib/libCRFSuite.dylib" {
382 | style = filled;
383 | color = lightblue;
384 | "/usr/lib/libCRFSuite.dylib" [label = "libCRFSuite", style=filled, fillcolor="white"];
385 | }
386 | subgraph "cluster_/usr/lib/system/libsystem_blocks.dylib" {
387 | style = filled;
388 | color = lightblue;
389 | "/usr/lib/system/libsystem_blocks.dylib" [label = "libsystem_blocks", style=filled, fillcolor="white"];
390 | }
391 | subgraph "cluster_/usr/lib/system/libsystem_configuration.dylib" {
392 | style = filled;
393 | color = lightblue;
394 | "/usr/lib/system/libsystem_configuration.dylib" [label = "libsystem_configuration", style=filled, fillcolor="white"];
395 | }
396 | subgraph "cluster_/usr/lib/libc++.1.dylib" {
397 | style = filled;
398 | color = lightblue;
399 | "/usr/lib/libc++.1.dylib" [label = "libc++.1", style=filled, fillcolor="white"];
400 | }
401 | subgraph "cluster_/System/Library/Frameworks/CalendarStore.framework" {
402 | style = filled;
403 | color = gold;
404 | "/System/Library/Frameworks/CalendarStore.framework" [label = "CalendarStore", style=filled, fillcolor="white"];
405 | }
406 | subgraph "cluster_/System/Library/Frameworks/IOBluetoothUI.framework" {
407 | style = filled;
408 | color = gold;
409 | "/System/Library/Frameworks/IOBluetoothUI.framework" [label = "IOBluetoothUI", style=filled, fillcolor="white"];
410 | }
411 | subgraph "cluster_@rpath/LLDB.framework" {
412 | style = filled;
413 | color = gold;
414 | "@rpath/LLDB.framework" [label = "LLDB", style=filled, fillcolor="white"];
415 | }
416 | subgraph "cluster_/System/Library/Frameworks/Message.framework" {
417 | style = filled;
418 | color = gold;
419 | "/System/Library/Frameworks/Message.framework" [label = "Message", style=filled, fillcolor="white"];
420 | }
421 | subgraph "cluster_/usr/lib/libtidy.A.dylib" {
422 | style = filled;
423 | color = lightblue;
424 | "/usr/lib/libtidy.A.dylib" [label = "libtidy.A", style=filled, fillcolor="white"];
425 | }
426 | subgraph "cluster_/System/Library/Frameworks/IOKit.framework" {
427 | style = filled;
428 | color = gold;
429 | "/System/Library/Frameworks/IOKit.framework" [label = "IOKit", style=filled, fillcolor="white"];
430 | }
431 | subgraph "cluster_/usr/lib/libcsfde.dylib" {
432 | style = filled;
433 | color = lightblue;
434 | "/usr/lib/libcsfde.dylib" [label = "libcsfde", style=filled, fillcolor="white"];
435 | }
436 | subgraph "cluster_/usr/lib/system/libsystem_coretls.dylib" {
437 | style = filled;
438 | color = lightblue;
439 | "/usr/lib/system/libsystem_coretls.dylib" [label = "libsystem_coretls", style=filled, fillcolor="white"];
440 | }
441 | subgraph "cluster_/usr/lib/libarchive.2.dylib" {
442 | style = filled;
443 | color = lightblue;
444 | "/usr/lib/libarchive.2.dylib" [label = "libarchive.2", style=filled, fillcolor="white"];
445 | }
446 | subgraph "cluster_/usr/lib/libcrypto.0.9.8.dylib" {
447 | style = filled;
448 | color = lightblue;
449 | "/usr/lib/libcrypto.0.9.8.dylib" [label = "libcrypto.0.9.8", style=filled, fillcolor="white"];
450 | }
451 | subgraph "cluster_@rpath/OpusKit.framework" {
452 | style = filled;
453 | color = gold;
454 | "@rpath/OpusKit.framework" [label = "OpusKit", style=filled, fillcolor="white"];
455 | }
456 | subgraph "cluster_/System/Library/Frameworks/Quartz.framework" {
457 | style = filled;
458 | color = gold;
459 | "/System/Library/Frameworks/Quartz.framework" [label = "Quartz", style=filled, fillcolor="white"];
460 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework" [label = "QuickLookUI", style=filled, fillcolor="gold"];
461 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" [label = "ImageKit", style=filled, fillcolor="gold"];
462 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" [label = "QuartzComposer", style=filled, fillcolor="gold"];
463 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework" [label = "QuartzFilters", style=filled, fillcolor="gold"];
464 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework" [label = "PDFKit", style=filled, fillcolor="gold"];
465 | }
466 | subgraph "cluster_/System/Library/Frameworks/StoreKit.framework" {
467 | style = filled;
468 | color = gold;
469 | "/System/Library/Frameworks/StoreKit.framework" [label = "StoreKit", style=filled, fillcolor="white"];
470 | }
471 | subgraph "cluster_/usr/lib/system/libsystem_coreservices.dylib" {
472 | style = filled;
473 | color = lightblue;
474 | "/usr/lib/system/libsystem_coreservices.dylib" [label = "libsystem_coreservices", style=filled, fillcolor="white"];
475 | }
476 | subgraph "cluster_/System/Library/Frameworks/CoreBluetooth.framework" {
477 | style = filled;
478 | color = gold;
479 | "/System/Library/Frameworks/CoreBluetooth.framework" [label = "CoreBluetooth", style=filled, fillcolor="white"];
480 | }
481 | subgraph "cluster_/System/Library/Frameworks/GLUT.framework" {
482 | style = filled;
483 | color = gold;
484 | "/System/Library/Frameworks/GLUT.framework" [label = "GLUT", style=filled, fillcolor="white"];
485 | }
486 | subgraph "cluster_/usr/lib/libpcap.A.dylib" {
487 | style = filled;
488 | color = lightblue;
489 | "/usr/lib/libpcap.A.dylib" [label = "libpcap.A", style=filled, fillcolor="white"];
490 | }
491 | subgraph "cluster_/usr/lib/system/libsystem_kernel.dylib" {
492 | style = filled;
493 | color = lightblue;
494 | "/usr/lib/system/libsystem_kernel.dylib" [label = "libsystem_kernel", style=filled, fillcolor="white"];
495 | }
496 | subgraph "cluster_/usr/lib/libobjc.A.dylib" {
497 | style = filled;
498 | color = lightblue;
499 | "/usr/lib/libobjc.A.dylib" [label = "libobjc.A", style=filled, fillcolor="white"];
500 | }
501 | subgraph "cluster_/System/Library/Frameworks/CFNetwork.framework" {
502 | style = filled;
503 | color = gold;
504 | "/System/Library/Frameworks/CFNetwork.framework" [label = "CFNetwork", style=filled, fillcolor="white"];
505 | }
506 | subgraph "cluster_/usr/lib/libextension.dylib" {
507 | style = filled;
508 | color = lightblue;
509 | "/usr/lib/libextension.dylib" [label = "libextension", style=filled, fillcolor="white"];
510 | }
511 | subgraph "cluster_/System/Library/Frameworks/CoreMIDI.framework" {
512 | style = filled;
513 | color = gold;
514 | "/System/Library/Frameworks/CoreMIDI.framework" [label = "CoreMIDI", style=filled, fillcolor="white"];
515 | }
516 | subgraph "cluster_/System/Library/Frameworks/AVKit.framework" {
517 | style = filled;
518 | color = gold;
519 | "/System/Library/Frameworks/AVKit.framework" [label = "AVKit", style=filled, fillcolor="white"];
520 | }
521 | subgraph "cluster_/System/Library/Frameworks/TWAIN.framework" {
522 | style = filled;
523 | color = gold;
524 | "/System/Library/Frameworks/TWAIN.framework" [label = "TWAIN", style=filled, fillcolor="white"];
525 | }
526 | subgraph "cluster_/System/Library/Frameworks/OpenAL.framework" {
527 | style = filled;
528 | color = gold;
529 | "/System/Library/Frameworks/OpenAL.framework" [label = "OpenAL", style=filled, fillcolor="white"];
530 | }
531 | subgraph "cluster_/System/Library/Frameworks/DirectoryService.framework" {
532 | style = filled;
533 | color = gold;
534 | "/System/Library/Frameworks/DirectoryService.framework" [label = "DirectoryService", style=filled, fillcolor="white"];
535 | }
536 | subgraph "cluster_/System/Library/Frameworks/CryptoTokenKit.framework" {
537 | style = filled;
538 | color = gold;
539 | "/System/Library/Frameworks/CryptoTokenKit.framework" [label = "CryptoTokenKit", style=filled, fillcolor="white"];
540 | }
541 | subgraph "cluster_/System/Library/Frameworks/JavaVM.framework" {
542 | style = filled;
543 | color = gold;
544 | "/System/Library/Frameworks/JavaVM.framework" [label = "JavaVM", style=filled, fillcolor="white"];
545 | "/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework" [label = "JavaNativeFoundation", style=filled, fillcolor="gold"];
546 | }
547 | subgraph "cluster_/System/Library/Frameworks/SystemConfiguration.framework" {
548 | style = filled;
549 | color = gold;
550 | "/System/Library/Frameworks/SystemConfiguration.framework" [label = "SystemConfiguration", style=filled, fillcolor="white"];
551 | }
552 | subgraph "cluster_/System/Library/Frameworks/NotificationCenter.framework" {
553 | style = filled;
554 | color = gold;
555 | "/System/Library/Frameworks/NotificationCenter.framework" [label = "NotificationCenter", style=filled, fillcolor="white"];
556 | }
557 | subgraph "cluster_/System/Library/Frameworks/IMServicePlugIn.framework" {
558 | style = filled;
559 | color = gold;
560 | "/System/Library/Frameworks/IMServicePlugIn.framework" [label = "IMServicePlugIn", style=filled, fillcolor="white"];
561 | "/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMServicePlugInSupport.framework" [label = "IMServicePlugInSupport", style=filled, fillcolor="gold"];
562 | }
563 | subgraph "cluster_/usr/lib/libCoreStorage.dylib" {
564 | style = filled;
565 | color = lightblue;
566 | "/usr/lib/libCoreStorage.dylib" [label = "libCoreStorage", style=filled, fillcolor="white"];
567 | }
568 | subgraph "cluster_/usr/lib/liblzma.5.dylib" {
569 | style = filled;
570 | color = lightblue;
571 | "/usr/lib/liblzma.5.dylib" [label = "liblzma.5", style=filled, fillcolor="white"];
572 | }
573 | subgraph "cluster_/usr/lib/system/libsystem_sandbox.dylib" {
574 | style = filled;
575 | color = lightblue;
576 | "/usr/lib/system/libsystem_sandbox.dylib" [label = "libsystem_sandbox", style=filled, fillcolor="white"];
577 | }
578 | subgraph "cluster_/System/Library/Frameworks/ScriptingBridge.framework" {
579 | style = filled;
580 | color = gold;
581 | "/System/Library/Frameworks/ScriptingBridge.framework" [label = "ScriptingBridge", style=filled, fillcolor="white"];
582 | }
583 | subgraph "cluster_/System/Library/Frameworks/CoreMIDIServer.framework" {
584 | style = filled;
585 | color = gold;
586 | "/System/Library/Frameworks/CoreMIDIServer.framework" [label = "CoreMIDIServer", style=filled, fillcolor="white"];
587 | }
588 | subgraph "cluster_/System/Library/Frameworks/DVComponentGlue.framework" {
589 | style = filled;
590 | color = gold;
591 | "/System/Library/Frameworks/DVComponentGlue.framework" [label = "DVComponentGlue", style=filled, fillcolor="white"];
592 | }
593 | subgraph "cluster_/System/Library/Frameworks/CoreAudio.framework" {
594 | style = filled;
595 | color = gold;
596 | "/System/Library/Frameworks/CoreAudio.framework" [label = "CoreAudio", style=filled, fillcolor="white"];
597 | }
598 | subgraph "cluster_/System/Library/Frameworks/PCSC.framework" {
599 | style = filled;
600 | color = gold;
601 | "/System/Library/Frameworks/PCSC.framework" [label = "PCSC", style=filled, fillcolor="white"];
602 | }
603 | subgraph "cluster_/System/Library/Frameworks/MediaAccessibility.framework" {
604 | style = filled;
605 | color = gold;
606 | "/System/Library/Frameworks/MediaAccessibility.framework" [label = "MediaAccessibility", style=filled, fillcolor="white"];
607 | }
608 | subgraph "cluster_/System/Library/Frameworks/ExceptionHandling.framework" {
609 | style = filled;
610 | color = gold;
611 | "/System/Library/Frameworks/ExceptionHandling.framework" [label = "ExceptionHandling", style=filled, fillcolor="white"];
612 | }
613 | subgraph "cluster_@rpath/OpusFoundation.framework" {
614 | style = filled;
615 | color = gold;
616 | "@rpath/OpusFoundation.framework" [label = "OpusFoundation", style=filled, fillcolor="white"];
617 | }
618 | subgraph "cluster_/System/Library/Frameworks/CoreAudioKit.framework" {
619 | style = filled;
620 | color = gold;
621 | "/System/Library/Frameworks/CoreAudioKit.framework" [label = "CoreAudioKit", style=filled, fillcolor="white"];
622 | }
623 | subgraph "cluster_/System/Library/Frameworks/ServiceManagement.framework" {
624 | style = filled;
625 | color = gold;
626 | "/System/Library/Frameworks/ServiceManagement.framework" [label = "ServiceManagement", style=filled, fillcolor="white"];
627 | }
628 | subgraph "cluster_/System/Library/Frameworks/CoreAuthentication.framework" {
629 | style = filled;
630 | color = gold;
631 | "/System/Library/Frameworks/CoreAuthentication.framework" [label = "CoreAuthentication", style=filled, fillcolor="white"];
632 | }
633 | subgraph "cluster_/usr/lib/system/libcompiler_rt.dylib" {
634 | style = filled;
635 | color = lightblue;
636 | "/usr/lib/system/libcompiler_rt.dylib" [label = "libcompiler_rt", style=filled, fillcolor="white"];
637 | }
638 | subgraph "cluster_/System/Library/Frameworks/CloudKit.framework" {
639 | style = filled;
640 | color = gold;
641 | "/System/Library/Frameworks/CloudKit.framework" [label = "CloudKit", style=filled, fillcolor="white"];
642 | }
643 | subgraph "cluster_/System/Library/Frameworks/DiscRecordingUI.framework" {
644 | style = filled;
645 | color = gold;
646 | "/System/Library/Frameworks/DiscRecordingUI.framework" [label = "DiscRecordingUI", style=filled, fillcolor="white"];
647 | }
648 | subgraph "cluster_/System/Library/Frameworks/MediaToolbox.framework" {
649 | style = filled;
650 | color = gold;
651 | "/System/Library/Frameworks/MediaToolbox.framework" [label = "MediaToolbox", style=filled, fillcolor="white"];
652 | }
653 | subgraph "cluster_/usr/lib/libsandbox.1.dylib" {
654 | style = filled;
655 | color = lightblue;
656 | "/usr/lib/libsandbox.1.dylib" [label = "libsandbox.1", style=filled, fillcolor="white"];
657 | }
658 | subgraph "cluster_/usr/lib/libresolv.9.dylib" {
659 | style = filled;
660 | color = lightblue;
661 | "/usr/lib/libresolv.9.dylib" [label = "libresolv.9", style=filled, fillcolor="white"];
662 | }
663 | subgraph "cluster_/System/Library/Frameworks/NetworkExtension.framework" {
664 | style = filled;
665 | color = gold;
666 | "/System/Library/Frameworks/NetworkExtension.framework" [label = "NetworkExtension", style=filled, fillcolor="white"];
667 | }
668 | subgraph "cluster_/usr/lib/libssl.0.9.8.dylib" {
669 | style = filled;
670 | color = lightblue;
671 | "/usr/lib/libssl.0.9.8.dylib" [label = "libssl.0.9.8", style=filled, fillcolor="white"];
672 | }
673 | subgraph "cluster_/System/Library/Frameworks/Hypervisor.framework" {
674 | style = filled;
675 | color = gold;
676 | "/System/Library/Frameworks/Hypervisor.framework" [label = "Hypervisor", style=filled, fillcolor="white"];
677 | }
678 | subgraph "cluster_/System/Library/Frameworks/Accelerate.framework" {
679 | style = filled;
680 | color = gold;
681 | "/System/Library/Frameworks/Accelerate.framework" [label = "Accelerate", style=filled, fillcolor="white"];
682 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib" [label = "libBLAS", style=filled, fillcolor="gold"];
683 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib" [label = "libLinearAlgebra", style=filled, fillcolor="gold"];
684 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib" [label = "libLAPACK", style=filled, fillcolor="gold"];
685 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib" [label = "libvDSP", style=filled, fillcolor="gold"];
686 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework" [label = "vImage", style=filled, fillcolor="gold"];
687 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib" [label = "libvMisc", style=filled, fillcolor="gold"];
688 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework" [label = "vecLib", style=filled, fillcolor="gold"];
689 | }
690 | subgraph "cluster_/System/Library/Frameworks/LDAP.framework" {
691 | style = filled;
692 | color = gold;
693 | "/System/Library/Frameworks/LDAP.framework" [label = "LDAP", style=filled, fillcolor="white"];
694 | }
695 | subgraph "cluster_/usr/lib/system/libcommonCrypto.dylib" {
696 | style = filled;
697 | color = lightblue;
698 | "/usr/lib/system/libcommonCrypto.dylib" [label = "libcommonCrypto", style=filled, fillcolor="white"];
699 | }
700 | subgraph "cluster_/usr/lib/libTelephonyUtilDynamic.dylib" {
701 | style = filled;
702 | color = lightblue;
703 | "/usr/lib/libTelephonyUtilDynamic.dylib" [label = "libTelephonyUtilDynamic", style=filled, fillcolor="white"];
704 | }
705 | subgraph "cluster_/usr/lib/libxslt.1.dylib" {
706 | style = filled;
707 | color = lightblue;
708 | "/usr/lib/libxslt.1.dylib" [label = "libxslt.1", style=filled, fillcolor="white"];
709 | }
710 | subgraph "cluster_/usr/lib/libcurl.4.dylib" {
711 | style = filled;
712 | color = lightblue;
713 | "/usr/lib/libcurl.4.dylib" [label = "libcurl.4", style=filled, fillcolor="white"];
714 | }
715 | subgraph "cluster_/System/Library/Frameworks/Collaboration.framework" {
716 | style = filled;
717 | color = gold;
718 | "/System/Library/Frameworks/Collaboration.framework" [label = "Collaboration", style=filled, fillcolor="white"];
719 | }
720 | subgraph "cluster_/System/Library/Frameworks/AudioToolbox.framework" {
721 | style = filled;
722 | color = gold;
723 | "/System/Library/Frameworks/AudioToolbox.framework" [label = "AudioToolbox", style=filled, fillcolor="white"];
724 | }
725 | subgraph "cluster_/System/Library/Frameworks/vecLib.framework" {
726 | style = filled;
727 | color = gold;
728 | "/System/Library/Frameworks/vecLib.framework" [label = "vecLib", style=filled, fillcolor="white"];
729 | }
730 | subgraph "cluster_/System/Library/Frameworks/GameKit.framework" {
731 | style = filled;
732 | color = gold;
733 | "/System/Library/Frameworks/GameKit.framework" [label = "GameKit", style=filled, fillcolor="white"];
734 | }
735 | subgraph "cluster_/System/Library/Frameworks/IMCore.framework" {
736 | style = filled;
737 | color = gold;
738 | "/System/Library/Frameworks/IMCore.framework" [label = "IMCore", style=filled, fillcolor="white"];
739 | }
740 | subgraph "cluster_/usr/lib/libz.1.dylib" {
741 | style = filled;
742 | color = lightblue;
743 | "/usr/lib/libz.1.dylib" [label = "libz.1", style=filled, fillcolor="white"];
744 | }
745 | subgraph "cluster_/System/Library/Frameworks/GameController.framework" {
746 | style = filled;
747 | color = gold;
748 | "/System/Library/Frameworks/GameController.framework" [label = "GameController", style=filled, fillcolor="white"];
749 | }
750 | subgraph "cluster_/usr/lib/libsasl2.2.dylib" {
751 | style = filled;
752 | color = lightblue;
753 | "/usr/lib/libsasl2.2.dylib" [label = "libsasl2.2", style=filled, fillcolor="white"];
754 | }
755 | subgraph "cluster_/System/Library/Frameworks/Kerberos.framework" {
756 | style = filled;
757 | color = gold;
758 | "/System/Library/Frameworks/Kerberos.framework" [label = "Kerberos", style=filled, fillcolor="white"];
759 | }
760 | subgraph "cluster_/System/Library/Frameworks/SceneKit.framework" {
761 | style = filled;
762 | color = gold;
763 | "/System/Library/Frameworks/SceneKit.framework" [label = "SceneKit", style=filled, fillcolor="white"];
764 | }
765 | subgraph "cluster_/usr/lib/system/libcopyfile.dylib" {
766 | style = filled;
767 | color = lightblue;
768 | "/usr/lib/system/libcopyfile.dylib" [label = "libcopyfile", style=filled, fillcolor="white"];
769 | }
770 | subgraph "cluster_/System/Library/Frameworks/PubSub.framework" {
771 | style = filled;
772 | color = gold;
773 | "/System/Library/Frameworks/PubSub.framework" [label = "PubSub", style=filled, fillcolor="white"];
774 | }
775 | subgraph "cluster_/System/Library/Frameworks/Accounts.framework" {
776 | style = filled;
777 | color = gold;
778 | "/System/Library/Frameworks/Accounts.framework" [label = "Accounts", style=filled, fillcolor="white"];
779 | }
780 | subgraph "cluster_/System/Library/Frameworks/ForceFeedback.framework" {
781 | style = filled;
782 | color = gold;
783 | "/System/Library/Frameworks/ForceFeedback.framework" [label = "ForceFeedback", style=filled, fillcolor="white"];
784 | }
785 | subgraph "cluster_/System/Library/Frameworks/MultipeerConnectivity.framework" {
786 | style = filled;
787 | color = gold;
788 | "/System/Library/Frameworks/MultipeerConnectivity.framework" [label = "MultipeerConnectivity", style=filled, fillcolor="white"];
789 | }
790 | subgraph "cluster_/System/Library/Frameworks/EventKit.framework" {
791 | style = filled;
792 | color = gold;
793 | "/System/Library/Frameworks/EventKit.framework" [label = "EventKit", style=filled, fillcolor="white"];
794 | }
795 | subgraph "cluster_/usr/lib/system/libsystem_network.dylib" {
796 | style = filled;
797 | color = lightblue;
798 | "/usr/lib/system/libsystem_network.dylib" [label = "libsystem_network", style=filled, fillcolor="white"];
799 | }
800 | subgraph "cluster_/System/Library/Frameworks/VideoDecodeAcceleration.framework" {
801 | style = filled;
802 | color = gold;
803 | "/System/Library/Frameworks/VideoDecodeAcceleration.framework" [label = "VideoDecodeAcceleration", style=filled, fillcolor="white"];
804 | }
805 | subgraph "cluster_/System/Library/Frameworks/PreferencePanes.framework" {
806 | style = filled;
807 | color = gold;
808 | "/System/Library/Frameworks/PreferencePanes.framework" [label = "PreferencePanes", style=filled, fillcolor="white"];
809 | }
810 | subgraph "cluster_/System/Library/Frameworks/InstallerPlugins.framework" {
811 | style = filled;
812 | color = gold;
813 | "/System/Library/Frameworks/InstallerPlugins.framework" [label = "InstallerPlugins", style=filled, fillcolor="white"];
814 | }
815 | subgraph "cluster_/usr/lib/libexslt.0.dylib" {
816 | style = filled;
817 | color = lightblue;
818 | "/usr/lib/libexslt.0.dylib" [label = "libexslt.0", style=filled, fillcolor="white"];
819 | }
820 | subgraph "cluster_/usr/lib/libUniversalAccess.dylib" {
821 | style = filled;
822 | color = lightblue;
823 | "/usr/lib/libUniversalAccess.dylib" [label = "libUniversalAccess", style=filled, fillcolor="white"];
824 | }
825 | subgraph "cluster_/usr/lib/libffi.dylib" {
826 | style = filled;
827 | color = lightblue;
828 | "/usr/lib/libffi.dylib" [label = "libffi", style=filled, fillcolor="white"];
829 | }
830 | subgraph "cluster_/usr/lib/libquit.dylib" {
831 | style = filled;
832 | color = lightblue;
833 | "/usr/lib/libquit.dylib" [label = "libquit", style=filled, fillcolor="white"];
834 | }
835 | subgraph "cluster_/usr/lib/system/liblaunch.dylib" {
836 | style = filled;
837 | color = lightblue;
838 | "/usr/lib/system/liblaunch.dylib" [label = "liblaunch", style=filled, fillcolor="white"];
839 | }
840 | subgraph "cluster_/System/Library/Frameworks/AppKit.framework" {
841 | style = filled;
842 | color = gold;
843 | "/System/Library/Frameworks/AppKit.framework" [label = "AppKit", style=filled, fillcolor="white"];
844 | }
845 | subgraph "cluster_/System/Library/Frameworks/Automator.framework" {
846 | style = filled;
847 | color = gold;
848 | "/System/Library/Frameworks/Automator.framework" [label = "Automator", style=filled, fillcolor="white"];
849 | }
850 | subgraph "cluster_/System/Library/Frameworks/Ruby.framework" {
851 | style = filled;
852 | color = gold;
853 | "/System/Library/Frameworks/Ruby.framework" [label = "Ruby", style=filled, fillcolor="white"];
854 | "/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/libruby.2.0.0.dylib" [label = "libruby.2.0.0", style=filled, fillcolor="gold"];
855 | }
856 | subgraph "cluster_/System/Library/Frameworks/AGL.framework" {
857 | style = filled;
858 | color = gold;
859 | "/System/Library/Frameworks/AGL.framework" [label = "AGL", style=filled, fillcolor="white"];
860 | }
861 | subgraph "cluster_/System/Library/Frameworks/CoreServices.framework" {
862 | style = filled;
863 | color = gold;
864 | "/System/Library/Frameworks/CoreServices.framework" [label = "CoreServices", style=filled, fillcolor="white"];
865 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework" [label = "AE", style=filled, fillcolor="gold"];
866 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework" [label = "OSServices", style=filled, fillcolor="gold"];
867 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework" [label = "SearchKit", style=filled, fillcolor="gold"];
868 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework" [label = "FSEvents", style=filled, fillcolor="gold"];
869 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework" [label = "DictionaryServices", style=filled, fillcolor="gold"];
870 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework" [label = "CarbonCore", style=filled, fillcolor="gold"];
871 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" [label = "LaunchServices", style=filled, fillcolor="gold"];
872 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework" [label = "Metadata", style=filled, fillcolor="gold"];
873 | }
874 | subgraph "cluster_/usr/lib/system/libremovefile.dylib" {
875 | style = filled;
876 | color = lightblue;
877 | "/usr/lib/system/libremovefile.dylib" [label = "libremovefile", style=filled, fillcolor="white"];
878 | }
879 | subgraph "cluster_/System/Library/Frameworks/NetFS.framework" {
880 | style = filled;
881 | color = gold;
882 | "/System/Library/Frameworks/NetFS.framework" [label = "NetFS", style=filled, fillcolor="white"];
883 | }
884 | subgraph "cluster_/usr/lib/liblangid.dylib" {
885 | style = filled;
886 | color = lightblue;
887 | "/usr/lib/liblangid.dylib" [label = "liblangid", style=filled, fillcolor="white"];
888 | }
889 | subgraph "cluster_/System/Library/Frameworks/Carbon.framework" {
890 | style = filled;
891 | color = gold;
892 | "/System/Library/Frameworks/Carbon.framework" [label = "Carbon", style=filled, fillcolor="white"];
893 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework" [label = "Print", style=filled, fillcolor="gold"];
894 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework" [label = "SpeechRecognition", style=filled, fillcolor="gold"];
895 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework" [label = "Help", style=filled, fillcolor="gold"];
896 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework" [label = "NavigationServices", style=filled, fillcolor="gold"];
897 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" [label = "OpenScripting", style=filled, fillcolor="gold"];
898 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework" [label = "Ink", style=filled, fillcolor="gold"];
899 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework" [label = "CommonPanels", style=filled, fillcolor="gold"];
900 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework" [label = "ImageCapture", style=filled, fillcolor="gold"];
901 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" [label = "CarbonSound", style=filled, fillcolor="gold"];
902 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework" [label = "SecurityHI", style=filled, fillcolor="gold"];
903 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" [label = "HIToolbox", style=filled, fillcolor="gold"];
904 | }
905 | subgraph "cluster_/System/Library/Frameworks/ImageIO.framework" {
906 | style = filled;
907 | color = gold;
908 | "/System/Library/Frameworks/ImageIO.framework" [label = "ImageIO", style=filled, fillcolor="white"];
909 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib" [label = "libGIF", style=filled, fillcolor="gold"];
910 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib" [label = "libPng", style=filled, fillcolor="gold"];
911 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib" [label = "libJPEG", style=filled, fillcolor="gold"];
912 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib" [label = "libTIFF", style=filled, fillcolor="gold"];
913 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib" [label = "libJP2", style=filled, fillcolor="gold"];
914 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib" [label = "libRadiance", style=filled, fillcolor="gold"];
915 | }
916 | subgraph "cluster_/System/Library/Frameworks/AVFoundation.framework" {
917 | style = filled;
918 | color = gold;
919 | "/System/Library/Frameworks/AVFoundation.framework" [label = "AVFoundation", style=filled, fillcolor="white"];
920 | "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib" [label = "libAVFAudio", style=filled, fillcolor="gold"];
921 | }
922 | subgraph "cluster_/System/Library/Frameworks/AddressBook.framework" {
923 | style = filled;
924 | color = gold;
925 | "/System/Library/Frameworks/AddressBook.framework" [label = "AddressBook", style=filled, fillcolor="white"];
926 | }
927 | subgraph "cluster_/usr/lib/system/libsystem_m.dylib" {
928 | style = filled;
929 | color = lightblue;
930 | "/usr/lib/system/libsystem_m.dylib" [label = "libsystem_m", style=filled, fillcolor="white"];
931 | }
932 | subgraph "cluster_/System/Library/Frameworks/ImageCaptureCore.framework" {
933 | style = filled;
934 | color = gold;
935 | "/System/Library/Frameworks/ImageCaptureCore.framework" [label = "ImageCaptureCore", style=filled, fillcolor="white"];
936 | }
937 | subgraph "cluster_/usr/lib/libSystem.B.dylib" {
938 | style = filled;
939 | color = lightblue;
940 | "/usr/lib/libSystem.B.dylib" [label = "libSystem.B", style=filled, fillcolor="white"];
941 | }
942 | subgraph "cluster_/usr/lib/system/libdispatch.dylib" {
943 | style = filled;
944 | color = lightblue;
945 | "/usr/lib/system/libdispatch.dylib" [label = "libdispatch", style=filled, fillcolor="white"];
946 | }
947 | subgraph "cluster_/usr/lib/libbz2.1.0.dylib" {
948 | style = filled;
949 | color = lightblue;
950 | "/usr/lib/libbz2.1.0.dylib" [label = "libbz2.1.0", style=filled, fillcolor="white"];
951 | }
952 | subgraph "cluster_/usr/lib/system/libsystem_notify.dylib" {
953 | style = filled;
954 | color = lightblue;
955 | "/usr/lib/system/libsystem_notify.dylib" [label = "libsystem_notify", style=filled, fillcolor="white"];
956 | }
957 | subgraph "cluster_/usr/lib/system/libcorecrypto.dylib" {
958 | style = filled;
959 | color = lightblue;
960 | "/usr/lib/system/libcorecrypto.dylib" [label = "libcorecrypto", style=filled, fillcolor="white"];
961 | }
962 | subgraph "cluster_/usr/lib/libgcc_s.1.dylib" {
963 | style = filled;
964 | color = lightblue;
965 | "/usr/lib/libgcc_s.1.dylib" [label = "libgcc_s.1", style=filled, fillcolor="white"];
966 | }
967 | subgraph "cluster_/System/Library/Frameworks/DVDPlayback.framework" {
968 | style = filled;
969 | color = gold;
970 | "/System/Library/Frameworks/DVDPlayback.framework" [label = "DVDPlayback", style=filled, fillcolor="white"];
971 | }
972 | subgraph "cluster_/System/Library/Frameworks/Kernel.framework" {
973 | style = filled;
974 | color = gold;
975 | "/System/Library/Frameworks/Kernel.framework" [label = "Kernel", style=filled, fillcolor="white"];
976 | }
977 | subgraph "cluster_/System/Library/Frameworks/DrawSprocket.framework" {
978 | style = filled;
979 | color = gold;
980 | "/System/Library/Frameworks/DrawSprocket.framework" [label = "DrawSprocket", style=filled, fillcolor="white"];
981 | }
982 | subgraph "cluster_/usr/lib/system/libkeymgr.dylib" {
983 | style = filled;
984 | color = lightblue;
985 | "/usr/lib/system/libkeymgr.dylib" [label = "libkeymgr", style=filled, fillcolor="white"];
986 | }
987 | subgraph "cluster_/System/Library/Frameworks/vmnet.framework" {
988 | style = filled;
989 | color = gold;
990 | "/System/Library/Frameworks/vmnet.framework" [label = "vmnet", style=filled, fillcolor="white"];
991 | }
992 | subgraph "cluster_/usr/lib/system/libquarantine.dylib" {
993 | style = filled;
994 | color = lightblue;
995 | "/usr/lib/system/libquarantine.dylib" [label = "libquarantine", style=filled, fillcolor="white"];
996 | }
997 | subgraph "cluster_/System/Library/Frameworks/QuickTime.framework" {
998 | style = filled;
999 | color = gold;
1000 | "/System/Library/Frameworks/QuickTime.framework" [label = "QuickTime", style=filled, fillcolor="white"];
1001 | }
1002 | subgraph "cluster_/System/Library/Frameworks/DiscRecording.framework" {
1003 | style = filled;
1004 | color = gold;
1005 | "/System/Library/Frameworks/DiscRecording.framework" [label = "DiscRecording", style=filled, fillcolor="white"];
1006 | }
1007 | subgraph "cluster_/System/Library/Frameworks/LocalAuthentication.framework" {
1008 | style = filled;
1009 | color = gold;
1010 | "/System/Library/Frameworks/LocalAuthentication.framework" [label = "LocalAuthentication", style=filled, fillcolor="white"];
1011 | "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedInternals.framework" [label = "SharedInternals", style=filled, fillcolor="gold"];
1012 | }
1013 | subgraph "cluster_/System/Library/Frameworks/InstantMessage.framework" {
1014 | style = filled;
1015 | color = gold;
1016 | "/System/Library/Frameworks/InstantMessage.framework" [label = "InstantMessage", style=filled, fillcolor="white"];
1017 | }
1018 | subgraph "cluster_/System/Library/Frameworks/CoreData.framework" {
1019 | style = filled;
1020 | color = gold;
1021 | "/System/Library/Frameworks/CoreData.framework" [label = "CoreData", style=filled, fillcolor="white"];
1022 | }
1023 | subgraph "cluster_/System/Library/Frameworks/IOBluetooth.framework" {
1024 | style = filled;
1025 | color = gold;
1026 | "/System/Library/Frameworks/IOBluetooth.framework" [label = "IOBluetooth", style=filled, fillcolor="white"];
1027 | }
1028 | subgraph "cluster_/System/Library/Frameworks/ScreenSaver.framework" {
1029 | style = filled;
1030 | color = gold;
1031 | "/System/Library/Frameworks/ScreenSaver.framework" [label = "ScreenSaver", style=filled, fillcolor="white"];
1032 | }
1033 | subgraph "cluster_/usr/lib/libmecabra.dylib" {
1034 | style = filled;
1035 | color = lightblue;
1036 | "/usr/lib/libmecabra.dylib" [label = "libmecabra", style=filled, fillcolor="white"];
1037 | }
1038 | subgraph "cluster_/usr/lib/libxar.1.dylib" {
1039 | style = filled;
1040 | color = lightblue;
1041 | "/usr/lib/libxar.1.dylib" [label = "libxar.1", style=filled, fillcolor="white"];
1042 | }
1043 | subgraph "cluster_/System/Library/Frameworks/OpenGL.framework" {
1044 | style = filled;
1045 | color = gold;
1046 | "/System/Library/Frameworks/OpenGL.framework" [label = "OpenGL", style=filled, fillcolor="white"];
1047 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" [label = "libGFXShared", style=filled, fillcolor="gold"];
1048 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib" [label = "libGLU", style=filled, fillcolor="gold"];
1049 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib" [label = "libGL", style=filled, fillcolor="gold"];
1050 | }
1051 | subgraph "cluster_/System/Library/Frameworks/Social.framework" {
1052 | style = filled;
1053 | color = gold;
1054 | "/System/Library/Frameworks/Social.framework" [label = "Social", style=filled, fillcolor="white"];
1055 | }
1056 | subgraph "cluster_/usr/lib/system/libsystem_dnssd.dylib" {
1057 | style = filled;
1058 | color = lightblue;
1059 | "/usr/lib/system/libsystem_dnssd.dylib" [label = "libsystem_dnssd", style=filled, fillcolor="white"];
1060 | }
1061 | subgraph "cluster_/System/Library/Frameworks/AudioVideoBridging.framework" {
1062 | style = filled;
1063 | color = gold;
1064 | "/System/Library/Frameworks/AudioVideoBridging.framework" [label = "AudioVideoBridging", style=filled, fillcolor="white"];
1065 | }
1066 | subgraph "cluster_/System/Library/Frameworks/CoreTelephony.framework" {
1067 | style = filled;
1068 | color = gold;
1069 | "/System/Library/Frameworks/CoreTelephony.framework" [label = "CoreTelephony", style=filled, fillcolor="white"];
1070 | }
1071 | subgraph "cluster_/usr/lib/libauto.dylib" {
1072 | style = filled;
1073 | color = lightblue;
1074 | "/usr/lib/libauto.dylib" [label = "libauto", style=filled, fillcolor="white"];
1075 | }
1076 | subgraph "cluster_/System/Library/Frameworks/Foundation.framework" {
1077 | style = filled;
1078 | color = gold;
1079 | "/System/Library/Frameworks/Foundation.framework" [label = "Foundation", style=filled, fillcolor="white"];
1080 | }
1081 | subgraph "cluster_/usr/lib/system/libkxld.dylib" {
1082 | style = filled;
1083 | color = lightblue;
1084 | "/usr/lib/system/libkxld.dylib" [label = "libkxld", style=filled, fillcolor="white"];
1085 | }
1086 | subgraph "cluster_/System/Library/Frameworks/CoreLocation.framework" {
1087 | style = filled;
1088 | color = gold;
1089 | "/System/Library/Frameworks/CoreLocation.framework" [label = "CoreLocation", style=filled, fillcolor="white"];
1090 | }
1091 | subgraph "cluster_/usr/lib/system/libsystem_networkextension.dylib" {
1092 | style = filled;
1093 | color = lightblue;
1094 | "/usr/lib/system/libsystem_networkextension.dylib" [label = "libsystem_networkextension", style=filled, fillcolor="white"];
1095 | }
1096 | subgraph "cluster_/System/Library/Frameworks/CoreMedia.framework" {
1097 | style = filled;
1098 | color = gold;
1099 | "/System/Library/Frameworks/CoreMedia.framework" [label = "CoreMedia", style=filled, fillcolor="white"];
1100 | }
1101 | subgraph "cluster_/System/Library/Frameworks/ApplicationServices.framework" {
1102 | style = filled;
1103 | color = gold;
1104 | "/System/Library/Frameworks/ApplicationServices.framework" [label = "ApplicationServices", style=filled, fillcolor="white"];
1105 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" [label = "HIServices", style=filled, fillcolor="gold"];
1106 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework" [label = "PrintCore", style=filled, fillcolor="gold"];
1107 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" [label = "libFontRegistry", style=filled, fillcolor="gold"];
1108 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib" [label = "libFontParser", style=filled, fillcolor="gold"];
1109 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" [label = "ColorSync", style=filled, fillcolor="gold"];
1110 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework" [label = "LangAnalysis", style=filled, fillcolor="gold"];
1111 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework" [label = "QD", style=filled, fillcolor="gold"];
1112 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" [label = "SpeechSynthesis", style=filled, fillcolor="gold"];
1113 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework" [label = "ATS", style=filled, fillcolor="gold"];
1114 | }
1115 | subgraph "cluster_/System/Library/Frameworks/SpriteKit.framework" {
1116 | style = filled;
1117 | color = gold;
1118 | "/System/Library/Frameworks/SpriteKit.framework" [label = "SpriteKit", style=filled, fillcolor="white"];
1119 | }
1120 | subgraph "cluster_/System/Library/Frameworks/Tcl.framework" {
1121 | style = filled;
1122 | color = gold;
1123 | "/System/Library/Frameworks/Tcl.framework" [label = "Tcl", style=filled, fillcolor="white"];
1124 | }
1125 | subgraph "cluster_/System/Library/Frameworks/WebKit.framework" {
1126 | style = filled;
1127 | color = gold;
1128 | "/System/Library/Frameworks/WebKit.framework" [label = "WebKit", style=filled, fillcolor="white"];
1129 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" [label = "WebCore", style=filled, fillcolor="gold"];
1130 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework" [label = "WebKitLegacy", style=filled, fillcolor="gold"];
1131 | }
1132 | subgraph "cluster_/System/Library/Frameworks/Cocoa.framework" {
1133 | style = filled;
1134 | color = gold;
1135 | "/System/Library/Frameworks/Cocoa.framework" [label = "Cocoa", style=filled, fillcolor="white"];
1136 | }
1137 | subgraph "cluster_/usr/lib/system/libsystem_trace.dylib" {
1138 | style = filled;
1139 | color = lightblue;
1140 | "/usr/lib/system/libsystem_trace.dylib" [label = "libsystem_trace", style=filled, fillcolor="white"];
1141 | }
1142 | subgraph "cluster_/System/Library/Frameworks/JavaScriptCore.framework" {
1143 | style = filled;
1144 | color = gold;
1145 | "/System/Library/Frameworks/JavaScriptCore.framework" [label = "JavaScriptCore", style=filled, fillcolor="white"];
1146 | }
1147 | subgraph "cluster_/System/Library/Frameworks/GSS.framework" {
1148 | style = filled;
1149 | color = gold;
1150 | "/System/Library/Frameworks/GSS.framework" [label = "GSS", style=filled, fillcolor="white"];
1151 | }
1152 |
1153 | "/System/Library/Frameworks/Tk.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/Tk.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1154 | "/System/Library/Frameworks/Tk.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/Tk.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1155 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1156 | "/usr/lib/system/libsystem_stats.dylib" -> "/usr/lib/system/libxpc.dylib" [ltail="cluster_/usr/lib/system/libsystem_stats.dylib",lhead="cluster_/usr/lib/system/libxpc.dylib"];
1157 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework" -> "/usr/lib/libcups.2.dylib" [lhead="cluster_/usr/lib/libcups.2.dylib"];
1158 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1159 | "/System/Library/Frameworks/CoreGraphics.framework" -> "/System/Library/Frameworks/Accelerate.framework" [ltail="cluster_/System/Library/Frameworks/CoreGraphics.framework",lhead="cluster_/System/Library/Frameworks/Accelerate.framework"];
1160 | "/System/Library/Frameworks/CoreGraphics.framework" -> "/System/Library/Frameworks/IOSurface.framework" [ltail="cluster_/System/Library/Frameworks/CoreGraphics.framework",lhead="cluster_/System/Library/Frameworks/IOSurface.framework"];
1161 | "/System/Library/Frameworks/CoreGraphics.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/CoreGraphics.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1162 | "/System/Library/Frameworks/CoreGraphics.framework" -> "/System/Library/Frameworks/CoreServices.framework" [ltail="cluster_/System/Library/Frameworks/CoreGraphics.framework",lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1163 | "/System/Library/Frameworks/CoreGraphics.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/CoreGraphics.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1164 | "/usr/lib/libbsm.0.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libbsm.0.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1165 | "/System/Library/Frameworks/IOSurface.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/IOSurface.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1166 | "/System/Library/Frameworks/OpenDirectory.framework" -> "/System/Library/Frameworks/SecurityFoundation.framework" [ltail="cluster_/System/Library/Frameworks/OpenDirectory.framework",lhead="cluster_/System/Library/Frameworks/SecurityFoundation.framework"];
1167 | "/usr/lib/libsqlite3.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libsqlite3.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1168 | "/usr/lib/system/libsystem_m.dylib" -> "/usr/lib/system/libcompiler_rt.dylib" [ltail="cluster_/usr/lib/system/libsystem_m.dylib",lhead="cluster_/usr/lib/system/libcompiler_rt.dylib"];
1169 | "/System/Library/Frameworks/CoreText.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" [ltail="cluster_/System/Library/Frameworks/CoreText.framework"];
1170 | "/System/Library/Frameworks/CoreText.framework" -> "/System/Library/Frameworks/ImageIO.framework" [ltail="cluster_/System/Library/Frameworks/CoreText.framework",lhead="cluster_/System/Library/Frameworks/ImageIO.framework"];
1171 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" -> "/System/Library/Frameworks/ImageIO.framework" [lhead="cluster_/System/Library/Frameworks/ImageIO.framework"];
1172 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework" ;
1173 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1174 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" ;
1175 | "/System/Library/Frameworks/AppKitScripting.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/AppKitScripting.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1176 | "/System/Library/Frameworks/InputMethodKit.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/InputMethodKit.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1177 | "/usr/lib/system/libsystem_platform.dylib" -> "/usr/lib/system/libcompiler_rt.dylib" [ltail="cluster_/usr/lib/system/libsystem_platform.dylib",lhead="cluster_/usr/lib/system/libcompiler_rt.dylib"];
1178 | "/System/Library/Frameworks/System.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/System.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1179 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework" -> "/System/Library/Frameworks/QTKit.framework" [lhead="cluster_/System/Library/Frameworks/QTKit.framework"];
1180 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework" -> "/usr/lib/libspindump.dylib" ;
1181 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework" -> "/System/Library/Frameworks/QuickLook.framework" [lhead="cluster_/System/Library/Frameworks/QuickLook.framework"];
1182 | "/usr/lib/system/libmacho.dylib" -> "/usr/lib/system/libsystem_malloc.dylib" [ltail="cluster_/usr/lib/system/libmacho.dylib",lhead="cluster_/usr/lib/system/libsystem_malloc.dylib"];
1183 | "/usr/lib/system/libmacho.dylib" -> "/usr/lib/system/libcompiler_rt.dylib" [ltail="cluster_/usr/lib/system/libmacho.dylib",lhead="cluster_/usr/lib/system/libcompiler_rt.dylib"];
1184 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1185 | "/System/Library/Frameworks/OpenCL.framework" -> "/System/Library/Frameworks/OpenGL.framework" [ltail="cluster_/System/Library/Frameworks/OpenCL.framework",lhead="cluster_/System/Library/Frameworks/OpenGL.framework"];
1186 | "/System/Library/Frameworks/OpenCL.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/OpenCL.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1187 | "/System/Library/Frameworks/Security.framework" -> "/usr/lib/libxar.1.dylib" [ltail="cluster_/System/Library/Frameworks/Security.framework",lhead="cluster_/usr/lib/libxar.1.dylib"];
1188 | "/System/Library/Frameworks/Security.framework" -> "/usr/lib/libsqlite3.dylib" [ltail="cluster_/System/Library/Frameworks/Security.framework",lhead="cluster_/usr/lib/libsqlite3.dylib"];
1189 | "/System/Library/Frameworks/Security.framework" -> "/usr/lib/libpam.2.dylib" [ltail="cluster_/System/Library/Frameworks/Security.framework",lhead="cluster_/usr/lib/libpam.2.dylib"];
1190 | "/System/Library/Frameworks/Security.framework" -> "/usr/lib/libOpenScriptingUtil.dylib" [ltail="cluster_/System/Library/Frameworks/Security.framework",lhead="cluster_/usr/lib/libOpenScriptingUtil.dylib"];
1191 | "/System/Library/Frameworks/Security.framework" -> "/usr/lib/libbsm.0.dylib" [ltail="cluster_/System/Library/Frameworks/Security.framework",lhead="cluster_/usr/lib/libbsm.0.dylib"];
1192 | "/System/Library/Frameworks/VideoToolbox.framework" -> "/System/Library/Frameworks/CoreMedia.framework" [ltail="cluster_/System/Library/Frameworks/VideoToolbox.framework",lhead="cluster_/System/Library/Frameworks/CoreMedia.framework"];
1193 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework" -> "/usr/lib/libDiagnosticMessagesClient.dylib" [lhead="cluster_/usr/lib/libDiagnosticMessagesClient.dylib"];
1194 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework" -> "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework" ;
1195 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework" ;
1196 | "/System/Library/Frameworks/CoreMediaIO.framework" -> "/System/Library/Frameworks/MediaToolbox.framework" [ltail="cluster_/System/Library/Frameworks/CoreMediaIO.framework",lhead="cluster_/System/Library/Frameworks/MediaToolbox.framework"];
1197 | "/System/Library/Frameworks/CoreMediaIO.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/CoreMediaIO.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1198 | "/usr/lib/system/libsystem_network.dylib" -> "/usr/lib/system/libsystem_networkextension.dylib" [ltail="cluster_/usr/lib/system/libsystem_network.dylib",lhead="cluster_/usr/lib/system/libsystem_networkextension.dylib"];
1199 | "/usr/lib/system/libsystem_network.dylib" -> "/usr/lib/system/libsystem_coretls.dylib" [ltail="cluster_/usr/lib/system/libsystem_network.dylib",lhead="cluster_/usr/lib/system/libsystem_coretls.dylib"];
1200 | "/System/Library/Frameworks/Python.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/Python.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1201 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" -> "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib" ;
1202 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1203 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" -> "/System/Library/Frameworks/IOKit.framework" [lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1204 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1205 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib" -> "/System/Library/Frameworks/ApplicationServices.framework" [lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1206 | "/usr/lib/libOpenScriptingUtil.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libOpenScriptingUtil.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1207 | "/usr/lib/libOpenScriptingUtil.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/usr/lib/libOpenScriptingUtil.dylib",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1208 | "/usr/lib/system/libsystem_info.dylib" -> "/usr/lib/system/libsystem_notify.dylib" [ltail="cluster_/usr/lib/system/libsystem_info.dylib",lhead="cluster_/usr/lib/system/libsystem_notify.dylib"];
1209 | "/usr/lib/system/libsystem_info.dylib" -> "/usr/lib/system/libsystem_dnssd.dylib" [ltail="cluster_/usr/lib/system/libsystem_info.dylib",lhead="cluster_/usr/lib/system/libsystem_dnssd.dylib"];
1210 | "/usr/lib/system/libsystem_info.dylib" -> "/usr/lib/system/libsystem_network.dylib" [ltail="cluster_/usr/lib/system/libsystem_info.dylib",lhead="cluster_/usr/lib/system/libsystem_network.dylib"];
1211 | "/usr/lib/system/libxpc.dylib" -> "/usr/lib/system/libsystem_asl.dylib" [ltail="cluster_/usr/lib/system/libxpc.dylib",lhead="cluster_/usr/lib/system/libsystem_asl.dylib"];
1212 | "/usr/lib/system/libxpc.dylib" -> "/usr/lib/system/libsystem_sandbox.dylib" [ltail="cluster_/usr/lib/system/libxpc.dylib",lhead="cluster_/usr/lib/system/libsystem_sandbox.dylib"];
1213 | "/usr/lib/system/libxpc.dylib" -> "/usr/lib/system/libmacho.dylib" [ltail="cluster_/usr/lib/system/libxpc.dylib",lhead="cluster_/usr/lib/system/libmacho.dylib"];
1214 | "/System/Library/Frameworks/FinderSync.framework" -> "@rpath/FinderSync.framework" [ltail="cluster_/System/Library/Frameworks/FinderSync.framework",lhead="cluster_@rpath/FinderSync.framework"];
1215 | "/System/Library/Frameworks/FinderSync.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/FinderSync.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1216 | "/System/Library/Frameworks/QTKit.framework" -> "/System/Library/Frameworks/AVFoundation.framework" [ltail="cluster_/System/Library/Frameworks/QTKit.framework",lhead="cluster_/System/Library/Frameworks/AVFoundation.framework"];
1217 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" ;
1218 | "/usr/lib/system/libunwind.dylib" -> "/usr/lib/system/libkeymgr.dylib" [ltail="cluster_/usr/lib/system/libunwind.dylib",lhead="cluster_/usr/lib/system/libkeymgr.dylib"];
1219 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework" -> "/usr/lib/libcups.2.dylib" [lhead="cluster_/usr/lib/libcups.2.dylib"];
1220 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" ;
1221 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" ;
1222 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" -> "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework" ;
1223 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" -> "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" ;
1224 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" -> "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework" ;
1225 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" -> "/System/Library/Frameworks/ImageCaptureCore.framework" [lhead="cluster_/System/Library/Frameworks/ImageCaptureCore.framework"];
1226 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework" -> "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework" ;
1227 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" -> "/System/Library/Frameworks/Carbon.framework" [lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1228 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" -> "/System/Library/Frameworks/JavaScriptCore.framework" [lhead="cluster_/System/Library/Frameworks/JavaScriptCore.framework"];
1229 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" -> "/System/Library/Frameworks/Cocoa.framework" [lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1230 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" -> "/System/Library/Frameworks/CoreVideo.framework" [lhead="cluster_/System/Library/Frameworks/CoreVideo.framework"];
1231 | "/System/Library/Frameworks/MultipeerConnectivity.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/MultipeerConnectivity.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1232 | "/System/Library/Frameworks/ICADevices.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/ICADevices.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1233 | "/System/Library/Frameworks/ICADevices.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/ICADevices.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1234 | "/System/Library/Frameworks/ICADevices.framework" -> "/System/Library/Frameworks/QuickLook.framework" [ltail="cluster_/System/Library/Frameworks/ICADevices.framework",lhead="cluster_/System/Library/Frameworks/QuickLook.framework"];
1235 | "/System/Library/Frameworks/ICADevices.framework" -> "/System/Library/Frameworks/AVFoundation.framework" [ltail="cluster_/System/Library/Frameworks/ICADevices.framework",lhead="cluster_/System/Library/Frameworks/AVFoundation.framework"];
1236 | "/System/Library/Frameworks/ICADevices.framework" -> "/System/Library/Frameworks/IOBluetooth.framework" [ltail="cluster_/System/Library/Frameworks/ICADevices.framework",lhead="cluster_/System/Library/Frameworks/IOBluetooth.framework"];
1237 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1238 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1239 | "/System/Library/Frameworks/AppleScriptObjC.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/AppleScriptObjC.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1240 | "/System/Library/Frameworks/AppleScriptObjC.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/AppleScriptObjC.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1241 | "/System/Library/Frameworks/AppleScriptObjC.framework" -> "/usr/lib/libffi.dylib" [ltail="cluster_/System/Library/Frameworks/AppleScriptObjC.framework",lhead="cluster_/usr/lib/libffi.dylib"];
1242 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib" -> "/usr/lib/libz.1.dylib" [lhead="cluster_/usr/lib/libz.1.dylib"];
1243 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib" ;
1244 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/OpenCL.framework" [lhead="cluster_/System/Library/Frameworks/OpenCL.framework"];
1245 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/AppKit.framework" [lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1246 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/QTKit.framework" [lhead="cluster_/System/Library/Frameworks/QTKit.framework"];
1247 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/JavaScriptCore.framework" [lhead="cluster_/System/Library/Frameworks/JavaScriptCore.framework"];
1248 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" -> "/System/Library/Frameworks/CoreVideo.framework" [lhead="cluster_/System/Library/Frameworks/CoreVideo.framework"];
1249 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1250 | "/System/Library/Frameworks/JavaFrameEmbedding.framework" -> "/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework" [ltail="cluster_/System/Library/Frameworks/JavaFrameEmbedding.framework"];
1251 | "/System/Library/Frameworks/LatentSemanticMapping.framework" -> "/System/Library/Frameworks/Accelerate.framework" [ltail="cluster_/System/Library/Frameworks/LatentSemanticMapping.framework",lhead="cluster_/System/Library/Frameworks/Accelerate.framework"];
1252 | "/System/Library/Frameworks/LatentSemanticMapping.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework" [ltail="cluster_/System/Library/Frameworks/LatentSemanticMapping.framework"];
1253 | "/System/Library/Frameworks/SecurityInterface.framework" -> "/System/Library/Frameworks/SecurityFoundation.framework" [ltail="cluster_/System/Library/Frameworks/SecurityInterface.framework",lhead="cluster_/System/Library/Frameworks/SecurityFoundation.framework"];
1254 | "/System/Library/Frameworks/SecurityInterface.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/SecurityInterface.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1255 | "/System/Library/Frameworks/GLKit.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/GLKit.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1256 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib" -> "/usr/lib/libobjc.A.dylib" [lhead="cluster_/usr/lib/libobjc.A.dylib"];
1257 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib" ;
1258 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1259 | "/usr/lib/system/libsystem_asl.dylib" -> "/usr/lib/system/libsystem_info.dylib" [ltail="cluster_/usr/lib/system/libsystem_asl.dylib",lhead="cluster_/usr/lib/system/libsystem_info.dylib"];
1260 | "/usr/lib/system/libsystem_asl.dylib" -> "/usr/lib/system/libsystem_trace.dylib" [ltail="cluster_/usr/lib/system/libsystem_asl.dylib",lhead="cluster_/usr/lib/system/libsystem_trace.dylib"];
1261 | "/usr/lib/libcmph.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libcmph.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1262 | "/usr/lib/libxml2.2.dylib" -> "/usr/lib/libz.1.dylib" [ltail="cluster_/usr/lib/libxml2.2.dylib",lhead="cluster_/usr/lib/libz.1.dylib"];
1263 | "/usr/lib/libxml2.2.dylib" -> "/usr/lib/libicucore.A.dylib" [ltail="cluster_/usr/lib/libxml2.2.dylib",lhead="cluster_/usr/lib/libicucore.A.dylib"];
1264 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib" ;
1265 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" -> "/System/Library/Frameworks/CoreText.framework" [lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1266 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1267 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1268 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib" -> "/System/Library/Frameworks/ApplicationServices.framework" [lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1269 | "/System/Library/Frameworks/MapKit.framework" -> "/System/Library/Frameworks/CoreWLAN.framework" [ltail="cluster_/System/Library/Frameworks/MapKit.framework",lhead="cluster_/System/Library/Frameworks/CoreWLAN.framework"];
1270 | "/System/Library/Frameworks/MapKit.framework" -> "/System/Library/Frameworks/AddressBook.framework" [ltail="cluster_/System/Library/Frameworks/MapKit.framework",lhead="cluster_/System/Library/Frameworks/AddressBook.framework"];
1271 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1272 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1273 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1274 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework" -> "/System/Library/Frameworks/CoreServices.framework" [lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1275 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib" -> "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib" ;
1276 | "/System/Library/Frameworks/DVDPlayback.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/DVDPlayback.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1277 | "/System/Library/Frameworks/DVDPlayback.framework" -> "/System/Library/Frameworks/MediaAccessibility.framework" [ltail="cluster_/System/Library/Frameworks/DVDPlayback.framework",lhead="cluster_/System/Library/Frameworks/MediaAccessibility.framework"];
1278 | "/System/Library/Frameworks/DVDPlayback.framework" -> "/System/Library/Frameworks/CoreText.framework" [ltail="cluster_/System/Library/Frameworks/DVDPlayback.framework",lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1279 | "/System/Library/Frameworks/DVDPlayback.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/DVDPlayback.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1280 | "/System/Library/Frameworks/DVDPlayback.framework" -> "/usr/lib/libDiagnosticMessagesClient.dylib" [ltail="cluster_/System/Library/Frameworks/DVDPlayback.framework",lhead="cluster_/usr/lib/libDiagnosticMessagesClient.dylib"];
1281 | "/usr/lib/libicucore.A.dylib" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/usr/lib/libicucore.A.dylib",lhead="cluster_/usr/lib/libc++.1.dylib"];
1282 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" ;
1283 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1284 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework" -> "/usr/lib/libxslt.1.dylib" [lhead="cluster_/usr/lib/libxslt.1.dylib"];
1285 | "/System/Library/Frameworks/DiskArbitration.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/DiskArbitration.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1286 | "/System/Library/Frameworks/DiskArbitration.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/DiskArbitration.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1287 | "/System/Library/Frameworks/CoreFoundation.framework" -> "/usr/lib/libz.1.dylib" [ltail="cluster_/System/Library/Frameworks/CoreFoundation.framework",lhead="cluster_/usr/lib/libz.1.dylib"];
1288 | "/System/Library/Frameworks/CoreFoundation.framework" -> "/usr/lib/libobjc.A.dylib" [ltail="cluster_/System/Library/Frameworks/CoreFoundation.framework",lhead="cluster_/usr/lib/libobjc.A.dylib"];
1289 | "/System/Library/Frameworks/CoreFoundation.framework" -> "/usr/lib/libicucore.A.dylib" [ltail="cluster_/System/Library/Frameworks/CoreFoundation.framework",lhead="cluster_/usr/lib/libicucore.A.dylib"];
1290 | "/usr/lib/system/libsystem_secinit.dylib" -> "/usr/lib/system/libsystem_pthread.dylib" [ltail="cluster_/usr/lib/system/libsystem_secinit.dylib",lhead="cluster_/usr/lib/system/libsystem_pthread.dylib"];
1291 | "/usr/lib/system/libsystem_secinit.dylib" -> "/usr/lib/system/liblaunch.dylib" [ltail="cluster_/usr/lib/system/libsystem_secinit.dylib",lhead="cluster_/usr/lib/system/liblaunch.dylib"];
1292 | "/usr/lib/system/libsystem_secinit.dylib" -> "/usr/lib/system/libdispatch.dylib" [ltail="cluster_/usr/lib/system/libsystem_secinit.dylib",lhead="cluster_/usr/lib/system/libdispatch.dylib"];
1293 | "/usr/lib/libexpat.1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libexpat.1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1294 | "/usr/lib/libstdc++.6.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libstdc++.6.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1295 | "/usr/lib/libstdc++.6.dylib" -> "/usr/lib/libc++abi.dylib" [ltail="cluster_/usr/lib/libstdc++.6.dylib"];
1296 | "/System/Library/Frameworks/Scripting.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/Scripting.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1297 | "/System/Library/Frameworks/MediaLibrary.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/MediaLibrary.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1298 | "/usr/lib/libScreenReader.dylib" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/usr/lib/libScreenReader.dylib",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1299 | "/usr/lib/libScreenReader.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libScreenReader.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1300 | "/usr/lib/libScreenReader.dylib" -> "/System/Library/Frameworks/AudioToolbox.framework" [ltail="cluster_/usr/lib/libScreenReader.dylib",lhead="cluster_/System/Library/Frameworks/AudioToolbox.framework"];
1301 | "/usr/lib/libScreenReader.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/usr/lib/libScreenReader.dylib",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1302 | "/usr/lib/libffi.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libffi.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1303 | "/System/Library/Frameworks/VideoDecodeAcceleration.framework" -> "/System/Library/Frameworks/VideoToolbox.framework" [ltail="cluster_/System/Library/Frameworks/VideoDecodeAcceleration.framework",lhead="cluster_/System/Library/Frameworks/VideoToolbox.framework"];
1304 | "/usr/lib/system/libcache.dylib" -> "/usr/lib/system/libsystem_pthread.dylib" [ltail="cluster_/usr/lib/system/libcache.dylib",lhead="cluster_/usr/lib/system/libsystem_pthread.dylib"];
1305 | "/usr/lib/system/libcache.dylib" -> "/usr/lib/system/libdispatch.dylib" [ltail="cluster_/usr/lib/system/libcache.dylib",lhead="cluster_/usr/lib/system/libdispatch.dylib"];
1306 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib" ;
1307 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework" ;
1308 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib" ;
1309 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib" ;
1310 | "/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1311 | "/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" -> "/System/Library/Frameworks/PreferencePanes.framework" [ltail="cluster_/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework",lhead="cluster_/System/Library/Frameworks/PreferencePanes.framework"];
1312 | "/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1313 | "/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSupport.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1314 | "/System/Library/Frameworks/CoreWLAN.framework" -> "/System/Library/Frameworks/SecurityFoundation.framework" [ltail="cluster_/System/Library/Frameworks/CoreWLAN.framework",lhead="cluster_/System/Library/Frameworks/SecurityFoundation.framework"];
1315 | "/System/Library/Frameworks/SyncServices.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/SyncServices.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1316 | "/System/Library/Frameworks/SyncServices.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/SyncServices.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1317 | "/System/Library/Frameworks/SyncServices.framework" -> "/usr/lib/libbz2.1.0.dylib" [ltail="cluster_/System/Library/Frameworks/SyncServices.framework",lhead="cluster_/usr/lib/libbz2.1.0.dylib"];
1318 | "/usr/lib/libDiagnosticMessagesClient.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libDiagnosticMessagesClient.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1319 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib" -> "/usr/lib/libz.1.dylib" [lhead="cluster_/usr/lib/libz.1.dylib"];
1320 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib" -> "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib" ;
1321 | "/usr/lib/libodfde.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/usr/lib/libodfde.dylib",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1322 | "/usr/lib/libodfde.dylib" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/usr/lib/libodfde.dylib",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1323 | "/usr/lib/libodfde.dylib" -> "/usr/lib/libCoreStorage.dylib" [ltail="cluster_/usr/lib/libodfde.dylib",lhead="cluster_/usr/lib/libCoreStorage.dylib"];
1324 | "/usr/lib/libodfde.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libodfde.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1325 | "/System/Library/Frameworks/OSAKit.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/OSAKit.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1326 | "/System/Library/Frameworks/OSAKit.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/OSAKit.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1327 | "/System/Library/Frameworks/OSAKit.framework" -> "/usr/lib/libexslt.0.dylib" [ltail="cluster_/System/Library/Frameworks/OSAKit.framework",lhead="cluster_/usr/lib/libexslt.0.dylib"];
1328 | "/System/Library/Frameworks/OSAKit.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/OSAKit.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1329 | "/System/Library/Frameworks/OSAKit.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/OSAKit.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1330 | "/usr/lib/libcups.2.dylib" -> "/System/Library/Frameworks/GSS.framework" [ltail="cluster_/usr/lib/libcups.2.dylib",lhead="cluster_/System/Library/Frameworks/GSS.framework"];
1331 | "/usr/lib/libcups.2.dylib" -> "/System/Library/Frameworks/Kerberos.framework" [ltail="cluster_/usr/lib/libcups.2.dylib",lhead="cluster_/System/Library/Frameworks/Kerberos.framework"];
1332 | "/usr/lib/libcups.2.dylib" -> "/usr/lib/libiconv.2.dylib" [ltail="cluster_/usr/lib/libcups.2.dylib",lhead="cluster_/usr/lib/libiconv.2.dylib"];
1333 | "/usr/lib/libcups.2.dylib" -> "/usr/lib/libresolv.9.dylib" [ltail="cluster_/usr/lib/libcups.2.dylib",lhead="cluster_/usr/lib/libresolv.9.dylib"];
1334 | "/System/Library/Frameworks/AudioUnit.framework" -> "/System/Library/Frameworks/AudioToolbox.framework" [ltail="cluster_/System/Library/Frameworks/AudioUnit.framework",lhead="cluster_/System/Library/Frameworks/AudioToolbox.framework"];
1335 | "/usr/lib/libktrace.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libktrace.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1336 | "/usr/lib/libktrace.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/usr/lib/libktrace.dylib",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1337 | "/System/Library/Frameworks/CoreMIDIServer.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/CoreMIDIServer.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1338 | "/System/Library/Frameworks/CoreMIDIServer.framework" -> "/System/Library/Frameworks/CoreMIDI.framework" [ltail="cluster_/System/Library/Frameworks/CoreMIDIServer.framework",lhead="cluster_/System/Library/Frameworks/CoreMIDI.framework"];
1339 | "/System/Library/Frameworks/SecurityFoundation.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/SecurityFoundation.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1340 | "/System/Library/Frameworks/FWAUserLib.framework" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/System/Library/Frameworks/FWAUserLib.framework",lhead="cluster_/usr/lib/libc++.1.dylib"];
1341 | "/System/Library/Frameworks/FWAUserLib.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/FWAUserLib.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1342 | "/usr/lib/libCRFSuite.dylib" -> "/usr/lib/libz.1.dylib" [ltail="cluster_/usr/lib/libCRFSuite.dylib",lhead="cluster_/usr/lib/libz.1.dylib"];
1343 | "/usr/lib/libCRFSuite.dylib" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/usr/lib/libCRFSuite.dylib",lhead="cluster_/usr/lib/libc++.1.dylib"];
1344 | "/System/Library/Frameworks/vmnet.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/vmnet.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1345 | "/System/Library/Frameworks/vmnet.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/vmnet.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1346 | "/usr/lib/system/libsystem_blocks.dylib" -> "/usr/lib/system/libdyld.dylib" [ltail="cluster_/usr/lib/system/libsystem_blocks.dylib",lhead="cluster_/usr/lib/system/libdyld.dylib"];
1347 | "/usr/lib/system/libsystem_blocks.dylib" -> "/usr/lib/system/libsystem_c.dylib" [ltail="cluster_/usr/lib/system/libsystem_blocks.dylib",lhead="cluster_/usr/lib/system/libsystem_c.dylib"];
1348 | "/usr/lib/system/libsystem_blocks.dylib" -> "/usr/lib/system/libsystem_malloc.dylib" [ltail="cluster_/usr/lib/system/libsystem_blocks.dylib",lhead="cluster_/usr/lib/system/libsystem_malloc.dylib"];
1349 | "/usr/lib/system/libsystem_configuration.dylib" -> "/usr/lib/system/libsystem_notify.dylib" [ltail="cluster_/usr/lib/system/libsystem_configuration.dylib",lhead="cluster_/usr/lib/system/libsystem_notify.dylib"];
1350 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework" -> "/System/Library/Frameworks/NetFS.framework" [lhead="cluster_/System/Library/Frameworks/NetFS.framework"];
1351 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework" -> "/System/Library/Frameworks/CFNetwork.framework" [lhead="cluster_/System/Library/Frameworks/CFNetwork.framework"];
1352 | "/usr/lib/libc++.1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libc++.1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1353 | "/usr/lib/libc++.1.dylib" -> "/usr/lib/libc++abi.dylib" [ltail="cluster_/usr/lib/libc++.1.dylib"];
1354 | "/System/Library/Frameworks/CalendarStore.framework" -> "/usr/lib/libsqlite3.dylib" [ltail="cluster_/System/Library/Frameworks/CalendarStore.framework",lhead="cluster_/usr/lib/libsqlite3.dylib"];
1355 | "/System/Library/Frameworks/CalendarStore.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/CalendarStore.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1356 | "/System/Library/Frameworks/IOBluetoothUI.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetoothUI.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1357 | "/System/Library/Frameworks/IOBluetoothUI.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetoothUI.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1358 | "/System/Library/Frameworks/IOBluetoothUI.framework" -> "/System/Library/Frameworks/IOBluetooth.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetoothUI.framework",lhead="cluster_/System/Library/Frameworks/IOBluetooth.framework"];
1359 | "/System/Library/Frameworks/IOBluetoothUI.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetoothUI.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1360 | "/System/Library/Frameworks/Message.framework" -> "/usr/lib/libobjc.A.dylib" [ltail="cluster_/System/Library/Frameworks/Message.framework",lhead="cluster_/usr/lib/libobjc.A.dylib"];
1361 | "/System/Library/Frameworks/Message.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/Message.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1362 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1363 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" ;
1364 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework" ;
1365 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework" ;
1366 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" -> "/System/Library/Frameworks/ServiceManagement.framework" [lhead="cluster_/System/Library/Frameworks/ServiceManagement.framework"];
1367 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework" ;
1368 | "/usr/lib/libheimdal-asn1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libheimdal-asn1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1369 | "/usr/lib/libtidy.A.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libtidy.A.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1370 | "/System/Library/Frameworks/IOKit.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/IOKit.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1371 | "/System/Library/Frameworks/IOKit.framework" -> "/usr/lib/system/libkxld.dylib" [ltail="cluster_/System/Library/Frameworks/IOKit.framework",lhead="cluster_/usr/lib/system/libkxld.dylib"];
1372 | "/System/Library/Frameworks/IOKit.framework" -> "/usr/lib/libbsm.0.dylib" [ltail="cluster_/System/Library/Frameworks/IOKit.framework",lhead="cluster_/usr/lib/libbsm.0.dylib"];
1373 | "/usr/lib/libcsfde.dylib" -> "/usr/lib/libCoreStorage.dylib" [ltail="cluster_/usr/lib/libcsfde.dylib",lhead="cluster_/usr/lib/libCoreStorage.dylib"];
1374 | "/usr/lib/libcsfde.dylib" -> "/System/Library/Frameworks/CFNetwork.framework" [ltail="cluster_/usr/lib/libcsfde.dylib",lhead="cluster_/System/Library/Frameworks/CFNetwork.framework"];
1375 | "/usr/lib/libarchive.2.dylib" -> "/usr/lib/libxml2.2.dylib" [ltail="cluster_/usr/lib/libarchive.2.dylib",lhead="cluster_/usr/lib/libxml2.2.dylib"];
1376 | "/usr/lib/libarchive.2.dylib" -> "/usr/lib/liblzma.5.dylib" [ltail="cluster_/usr/lib/libarchive.2.dylib",lhead="cluster_/usr/lib/liblzma.5.dylib"];
1377 | "/usr/lib/libarchive.2.dylib" -> "/usr/lib/libbz2.1.0.dylib" [ltail="cluster_/usr/lib/libarchive.2.dylib",lhead="cluster_/usr/lib/libbz2.1.0.dylib"];
1378 | "/usr/lib/libcrypto.0.9.8.dylib" -> "/usr/lib/libz.1.dylib" [ltail="cluster_/usr/lib/libcrypto.0.9.8.dylib",lhead="cluster_/usr/lib/libz.1.dylib"];
1379 | "/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/libruby.2.0.0.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1380 | "/System/Library/Frameworks/Quartz.framework" -> "/System/Library/Frameworks/QuartzCore.framework" [ltail="cluster_/System/Library/Frameworks/Quartz.framework",lhead="cluster_/System/Library/Frameworks/QuartzCore.framework"];
1381 | "/System/Library/Frameworks/Quartz.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/Quartz.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1382 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1383 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1384 | "/System/Library/Frameworks/StoreKit.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/StoreKit.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1385 | "/System/Library/Frameworks/StoreKit.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/StoreKit.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1386 | "/System/Library/Frameworks/StoreKit.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/StoreKit.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1387 | "/System/Library/Frameworks/StoreKit.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/StoreKit.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1388 | "/usr/lib/system/libsystem_coreservices.dylib" -> "/usr/lib/system/libsystem_info.dylib" [ltail="cluster_/usr/lib/system/libsystem_coreservices.dylib",lhead="cluster_/usr/lib/system/libsystem_info.dylib"];
1389 | "/System/Library/Frameworks/CoreBluetooth.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/CoreBluetooth.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1390 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1391 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" -> "/System/Library/Frameworks/IOKit.framework" [lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1392 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1393 | "/System/Library/Frameworks/GLUT.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1394 | "/System/Library/Frameworks/GLUT.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1395 | "/System/Library/Frameworks/GLUT.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1396 | "/System/Library/Frameworks/GLUT.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1397 | "/System/Library/Frameworks/GLUT.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1398 | "/System/Library/Frameworks/GLUT.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/GLUT.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1399 | "/usr/lib/libpcap.A.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libpcap.A.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1400 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1401 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1402 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1403 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1404 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/usr/lib/libxml2.2.dylib" [lhead="cluster_/usr/lib/libxml2.2.dylib"];
1405 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/System/Library/Frameworks/Security.framework" [lhead="cluster_/System/Library/Frameworks/Security.framework"];
1406 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1407 | "/usr/lib/libpam.2.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libpam.2.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1408 | "/usr/lib/libobjc.A.dylib" -> "/usr/lib/libauto.dylib" [ltail="cluster_/usr/lib/libobjc.A.dylib",lhead="cluster_/usr/lib/libauto.dylib"];
1409 | "/System/Library/Frameworks/CFNetwork.framework" -> "/usr/lib/libxml2.2.dylib" [ltail="cluster_/System/Library/Frameworks/CFNetwork.framework",lhead="cluster_/usr/lib/libxml2.2.dylib"];
1410 | "/System/Library/Frameworks/CFNetwork.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/CFNetwork.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1411 | "/System/Library/Frameworks/CFNetwork.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/CFNetwork.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1412 | "/System/Library/Frameworks/CFNetwork.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/CFNetwork.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1413 | "/usr/lib/libextension.dylib" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/usr/lib/libextension.dylib",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1414 | "/System/Library/Frameworks/CoreMIDI.framework" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/System/Library/Frameworks/CoreMIDI.framework",lhead="cluster_/usr/lib/libc++.1.dylib"];
1415 | "/System/Library/Frameworks/CoreMIDI.framework" -> "/usr/lib/libexpat.1.dylib" [ltail="cluster_/System/Library/Frameworks/CoreMIDI.framework",lhead="cluster_/usr/lib/libexpat.1.dylib"];
1416 | "/System/Library/Frameworks/CoreMIDI.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/CoreMIDI.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1417 | "/System/Library/Frameworks/AVKit.framework" -> "/System/Library/Frameworks/MediaAccessibility.framework" [ltail="cluster_/System/Library/Frameworks/AVKit.framework",lhead="cluster_/System/Library/Frameworks/MediaAccessibility.framework"];
1418 | "/System/Library/Frameworks/AVKit.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/AVKit.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1419 | "/System/Library/Frameworks/AVKit.framework" -> "/System/Library/Frameworks/AVFoundation.framework" [ltail="cluster_/System/Library/Frameworks/AVKit.framework",lhead="cluster_/System/Library/Frameworks/AVFoundation.framework"];
1420 | "/System/Library/Frameworks/TWAIN.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/TWAIN.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1421 | "/System/Library/Frameworks/TWAIN.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/TWAIN.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1422 | "/System/Library/Frameworks/OpenAL.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/OpenAL.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1423 | "/System/Library/Frameworks/DirectoryService.framework" -> "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework" [ltail="cluster_/System/Library/Frameworks/DirectoryService.framework"];
1424 | "/usr/lib/libmecabra.dylib" -> "/System/Library/Frameworks/CoreData.framework" [ltail="cluster_/usr/lib/libmecabra.dylib",lhead="cluster_/System/Library/Frameworks/CoreData.framework"];
1425 | "/usr/lib/libmecabra.dylib" -> "/usr/lib/libiconv.2.dylib" [ltail="cluster_/usr/lib/libmecabra.dylib",lhead="cluster_/usr/lib/libiconv.2.dylib"];
1426 | "/System/Library/Frameworks/CryptoTokenKit.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/CryptoTokenKit.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1427 | "/System/Library/Frameworks/SystemConfiguration.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/SystemConfiguration.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1428 | "/System/Library/Frameworks/SystemConfiguration.framework" -> "/usr/lib/libbsm.0.dylib" [ltail="cluster_/System/Library/Frameworks/SystemConfiguration.framework",lhead="cluster_/usr/lib/libbsm.0.dylib"];
1429 | "/System/Library/Frameworks/NotificationCenter.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/NotificationCenter.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1430 | "/usr/lib/libCoreStorage.dylib" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/usr/lib/libCoreStorage.dylib",lhead="cluster_/usr/lib/libc++.1.dylib"];
1431 | "/usr/lib/libCoreStorage.dylib" -> "/usr/lib/libutil.dylib" [ltail="cluster_/usr/lib/libCoreStorage.dylib"];
1432 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework" -> "/System/Library/Frameworks/CoreText.framework" [lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1433 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" ;
1434 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1435 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1436 | "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1437 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1438 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework" -> "/System/Library/Frameworks/Cocoa.framework" [lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1439 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1440 | "/System/Library/Frameworks/CoreVideo.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/CoreVideo.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1441 | "/System/Library/Frameworks/CoreVideo.framework" -> "/System/Library/Frameworks/OpenGL.framework" [ltail="cluster_/System/Library/Frameworks/CoreVideo.framework",lhead="cluster_/System/Library/Frameworks/OpenGL.framework"];
1442 | "/System/Library/Frameworks/CoreVideo.framework" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/System/Library/Frameworks/CoreVideo.framework",lhead="cluster_/usr/lib/libc++.1.dylib"];
1443 | "/System/Library/Frameworks/CoreVideo.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/CoreVideo.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1444 | "/System/Library/Frameworks/DiscRecordingUI.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecordingUI.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1445 | "/System/Library/Frameworks/DiscRecordingUI.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecordingUI.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1446 | "/System/Library/Frameworks/DiscRecordingUI.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecordingUI.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1447 | "/System/Library/Frameworks/DiscRecordingUI.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecordingUI.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1448 | "/System/Library/Frameworks/DiscRecordingUI.framework" -> "/System/Library/Frameworks/DiscRecording.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecordingUI.framework",lhead="cluster_/System/Library/Frameworks/DiscRecording.framework"];
1449 | "/System/Library/Frameworks/ScriptingBridge.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/ScriptingBridge.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1450 | "/System/Library/Frameworks/ScriptingBridge.framework" -> "/usr/lib/libffi.dylib" [ltail="cluster_/System/Library/Frameworks/ScriptingBridge.framework",lhead="cluster_/usr/lib/libffi.dylib"];
1451 | "/System/Library/Frameworks/ScriptingBridge.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/ScriptingBridge.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1452 | "/System/Library/Frameworks/AppleScriptKit.framework" -> "/System/Library/Frameworks/OSAKit.framework" [ltail="cluster_/System/Library/Frameworks/AppleScriptKit.framework",lhead="cluster_/System/Library/Frameworks/OSAKit.framework"];
1453 | "/System/Library/Frameworks/DVComponentGlue.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/DVComponentGlue.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1454 | "/System/Library/Frameworks/DVComponentGlue.framework" -> "/System/Library/Frameworks/CoreServices.framework" [ltail="cluster_/System/Library/Frameworks/DVComponentGlue.framework",lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1455 | "/System/Library/Frameworks/CoreAudio.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/CoreAudio.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1456 | "/System/Library/Frameworks/CoreAudio.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/CoreAudio.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1457 | "/System/Library/Frameworks/PCSC.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/PCSC.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1458 | "/System/Library/Frameworks/MediaAccessibility.framework" -> "/System/Library/Frameworks/QuartzCore.framework" [ltail="cluster_/System/Library/Frameworks/MediaAccessibility.framework",lhead="cluster_/System/Library/Frameworks/QuartzCore.framework"];
1459 | "/System/Library/Frameworks/MediaToolbox.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/MediaToolbox.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1460 | "/System/Library/Frameworks/MediaToolbox.framework" -> "/System/Library/Frameworks/MediaAccessibility.framework" [ltail="cluster_/System/Library/Frameworks/MediaToolbox.framework",lhead="cluster_/System/Library/Frameworks/MediaAccessibility.framework"];
1461 | "/System/Library/Frameworks/MediaToolbox.framework" -> "/System/Library/Frameworks/CoreText.framework" [ltail="cluster_/System/Library/Frameworks/MediaToolbox.framework",lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1462 | "/System/Library/Frameworks/MediaToolbox.framework" -> "/System/Library/Frameworks/VideoToolbox.framework" [ltail="cluster_/System/Library/Frameworks/MediaToolbox.framework",lhead="cluster_/System/Library/Frameworks/VideoToolbox.framework"];
1463 | "/System/Library/Frameworks/CoreAudioKit.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/CoreAudioKit.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1464 | "/System/Library/Frameworks/ServiceManagement.framework" -> "/System/Library/Frameworks/CoreServices.framework" [ltail="cluster_/System/Library/Frameworks/ServiceManagement.framework",lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1465 | "/System/Library/Frameworks/ServiceManagement.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/ServiceManagement.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1466 | "/System/Library/Frameworks/ServiceManagement.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/ServiceManagement.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1467 | "/System/Library/Frameworks/CoreAuthentication.framework" -> "/System/Library/Frameworks/LocalAuthentication.framework" [ltail="cluster_/System/Library/Frameworks/CoreAuthentication.framework",lhead="cluster_/System/Library/Frameworks/LocalAuthentication.framework"];
1468 | "/usr/lib/liblzma.5.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/liblzma.5.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1469 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libdyld.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libdyld.dylib"];
1470 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libunwind.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libunwind.dylib"];
1471 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libsystem_c.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libsystem_c.dylib"];
1472 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libsystem_platform.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libsystem_platform.dylib"];
1473 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libsystem_m.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libsystem_m.dylib"];
1474 | "/usr/lib/system/libcompiler_rt.dylib" -> "/usr/lib/system/libsystem_kernel.dylib" [ltail="cluster_/usr/lib/system/libcompiler_rt.dylib",lhead="cluster_/usr/lib/system/libsystem_kernel.dylib"];
1475 | "/System/Library/Frameworks/CloudKit.framework" -> "/System/Library/Frameworks/CoreLocation.framework" [ltail="cluster_/System/Library/Frameworks/CloudKit.framework",lhead="cluster_/System/Library/Frameworks/CoreLocation.framework"];
1476 | "/System/Library/Frameworks/CloudKit.framework" -> "/System/Library/Frameworks/Accounts.framework" [ltail="cluster_/System/Library/Frameworks/CloudKit.framework",lhead="cluster_/System/Library/Frameworks/Accounts.framework"];
1477 | "/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMServicePlugInSupport.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1478 | "/System/Library/Frameworks/ExceptionHandling.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/ExceptionHandling.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1479 | "/usr/lib/libsandbox.1.dylib" -> "/usr/lib/libMatch.1.dylib" [ltail="cluster_/usr/lib/libsandbox.1.dylib"];
1480 | "/usr/lib/libsandbox.1.dylib" -> "/usr/lib/libsqlite3.dylib" [ltail="cluster_/usr/lib/libsandbox.1.dylib",lhead="cluster_/usr/lib/libsqlite3.dylib"];
1481 | "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework" -> "/System/Library/Frameworks/Quartz.framework" [lhead="cluster_/System/Library/Frameworks/Quartz.framework"];
1482 | "/System/Library/Frameworks/NetworkExtension.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/NetworkExtension.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1483 | "/usr/lib/libresolv.9.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libresolv.9.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1484 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework" ;
1485 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework" ;
1486 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework" -> "/System/Library/Frameworks/CoreText.framework" [lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1487 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1488 | "/System/Library/Frameworks/AudioVideoBridging.framework" -> "/System/Library/Frameworks/CoreMedia.framework" [ltail="cluster_/System/Library/Frameworks/AudioVideoBridging.framework",lhead="cluster_/System/Library/Frameworks/CoreMedia.framework"];
1489 | "/System/Library/Frameworks/AudioVideoBridging.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/AudioVideoBridging.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1490 | "/System/Library/Frameworks/AudioVideoBridging.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/AudioVideoBridging.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1491 | "/System/Library/Frameworks/AudioVideoBridging.framework" -> "/System/Library/Frameworks/AVFoundation.framework" [ltail="cluster_/System/Library/Frameworks/AudioVideoBridging.framework",lhead="cluster_/System/Library/Frameworks/AVFoundation.framework"];
1492 | "/System/Library/Frameworks/Hypervisor.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/Hypervisor.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1493 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1494 | "/System/Library/Frameworks/LDAP.framework" -> "/usr/lib/libsasl2.2.dylib" [ltail="cluster_/System/Library/Frameworks/LDAP.framework",lhead="cluster_/usr/lib/libsasl2.2.dylib"];
1495 | "/System/Library/Frameworks/LDAP.framework" -> "/usr/lib/libresolv.9.dylib" [ltail="cluster_/System/Library/Frameworks/LDAP.framework",lhead="cluster_/usr/lib/libresolv.9.dylib"];
1496 | "/usr/lib/system/libcommonCrypto.dylib" -> "/usr/lib/system/libsystem_asl.dylib" [ltail="cluster_/usr/lib/system/libcommonCrypto.dylib",lhead="cluster_/usr/lib/system/libsystem_asl.dylib"];
1497 | "/usr/lib/system/libcommonCrypto.dylib" -> "/usr/lib/system/libcorecrypto.dylib" [ltail="cluster_/usr/lib/system/libcommonCrypto.dylib",lhead="cluster_/usr/lib/system/libcorecrypto.dylib"];
1498 | "/usr/lib/libTelephonyUtilDynamic.dylib" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/usr/lib/libTelephonyUtilDynamic.dylib",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1499 | "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedInternals.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1500 | "/usr/lib/libxslt.1.dylib" -> "/usr/lib/libxml2.2.dylib" [ltail="cluster_/usr/lib/libxslt.1.dylib",lhead="cluster_/usr/lib/libxml2.2.dylib"];
1501 | "/usr/lib/libxslt.1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libxslt.1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1502 | "/usr/lib/libcurl.4.dylib" -> "/System/Library/Frameworks/LDAP.framework" [ltail="cluster_/usr/lib/libcurl.4.dylib",lhead="cluster_/System/Library/Frameworks/LDAP.framework"];
1503 | "/usr/lib/libcurl.4.dylib" -> "/System/Library/Frameworks/Kerberos.framework" [ltail="cluster_/usr/lib/libcurl.4.dylib",lhead="cluster_/System/Library/Frameworks/Kerberos.framework"];
1504 | "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib" -> "/System/Library/Frameworks/AudioUnit.framework" [lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1505 | "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1506 | "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1507 | "/System/Library/Frameworks/Collaboration.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/Collaboration.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1508 | "/System/Library/Frameworks/Collaboration.framework" -> "/System/Library/Frameworks/AddressBook.framework" [ltail="cluster_/System/Library/Frameworks/Collaboration.framework",lhead="cluster_/System/Library/Frameworks/AddressBook.framework"];
1509 | "/System/Library/Frameworks/AudioToolbox.framework" -> "/System/Library/Frameworks/CoreAudio.framework" [ltail="cluster_/System/Library/Frameworks/AudioToolbox.framework",lhead="cluster_/System/Library/Frameworks/CoreAudio.framework"];
1510 | "/System/Library/Frameworks/AudioToolbox.framework" -> "/System/Library/Frameworks/Accelerate.framework" [ltail="cluster_/System/Library/Frameworks/AudioToolbox.framework",lhead="cluster_/System/Library/Frameworks/Accelerate.framework"];
1511 | "/System/Library/Frameworks/AudioToolbox.framework" -> "/System/Library/Frameworks/CoreServices.framework" [ltail="cluster_/System/Library/Frameworks/AudioToolbox.framework",lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1512 | "/usr/lib/system/libkxld.dylib" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/usr/lib/system/libkxld.dylib",lhead="cluster_/usr/lib/libc++.1.dylib"];
1513 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1514 | "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework" -> "/System/Library/Frameworks/Security.framework" [lhead="cluster_/System/Library/Frameworks/Security.framework"];
1515 | "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1516 | "/usr/lib/libz.1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libz.1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1517 | "/System/Library/Frameworks/GameController.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/GameController.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1518 | "/System/Library/Frameworks/GameController.framework" -> "/System/Library/Frameworks/IOBluetooth.framework" [ltail="cluster_/System/Library/Frameworks/GameController.framework",lhead="cluster_/System/Library/Frameworks/IOBluetooth.framework"];
1519 | "/System/Library/Frameworks/ImageCaptureCore.framework" -> "/System/Library/Frameworks/ImageIO.framework" [ltail="cluster_/System/Library/Frameworks/ImageCaptureCore.framework",lhead="cluster_/System/Library/Frameworks/ImageIO.framework"];
1520 | "/System/Library/Frameworks/ImageCaptureCore.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/ImageCaptureCore.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1521 | "/System/Library/Frameworks/ImageCaptureCore.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/ImageCaptureCore.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1522 | "/usr/lib/libsasl2.2.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libsasl2.2.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1523 | "/System/Library/Frameworks/SceneKit.framework" -> "/System/Library/Frameworks/QTKit.framework" [ltail="cluster_/System/Library/Frameworks/SceneKit.framework",lhead="cluster_/System/Library/Frameworks/QTKit.framework"];
1524 | "/System/Library/Frameworks/SceneKit.framework" -> "/System/Library/Frameworks/JavaScriptCore.framework" [ltail="cluster_/System/Library/Frameworks/SceneKit.framework",lhead="cluster_/System/Library/Frameworks/JavaScriptCore.framework"];
1525 | "/System/Library/Frameworks/SceneKit.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/SceneKit.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1526 | "/System/Library/Frameworks/SceneKit.framework" -> "/System/Library/Frameworks/OpenCL.framework" [ltail="cluster_/System/Library/Frameworks/SceneKit.framework",lhead="cluster_/System/Library/Frameworks/OpenCL.framework"];
1527 | "/usr/lib/system/libcopyfile.dylib" -> "/usr/lib/system/libquarantine.dylib" [ltail="cluster_/usr/lib/system/libcopyfile.dylib",lhead="cluster_/usr/lib/system/libquarantine.dylib"];
1528 | "/System/Library/Frameworks/PubSub.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/PubSub.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1529 | "/System/Library/Frameworks/PubSub.framework" -> "/System/Library/Frameworks/JavaScriptCore.framework" [ltail="cluster_/System/Library/Frameworks/PubSub.framework",lhead="cluster_/System/Library/Frameworks/JavaScriptCore.framework"];
1530 | "/System/Library/Frameworks/PubSub.framework" -> "/usr/lib/libtidy.A.dylib" [ltail="cluster_/System/Library/Frameworks/PubSub.framework",lhead="cluster_/usr/lib/libtidy.A.dylib"];
1531 | "/System/Library/Frameworks/Accounts.framework" -> "/System/Library/Frameworks/CoreData.framework" [ltail="cluster_/System/Library/Frameworks/Accounts.framework",lhead="cluster_/System/Library/Frameworks/CoreData.framework"];
1532 | "/System/Library/Frameworks/Accounts.framework" -> "/System/Library/Frameworks/GSS.framework" [ltail="cluster_/System/Library/Frameworks/Accounts.framework",lhead="cluster_/System/Library/Frameworks/GSS.framework"];
1533 | "/System/Library/Frameworks/ForceFeedback.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/ForceFeedback.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1534 | "/usr/lib/libiconv.2.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libiconv.2.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1535 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1536 | "/System/Library/Frameworks/EventKit.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/EventKit.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1537 | "/System/Library/Frameworks/PreferencePanes.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/PreferencePanes.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1538 | "/System/Library/Frameworks/PreferencePanes.framework" -> "/System/Library/Frameworks/SecurityInterface.framework" [ltail="cluster_/System/Library/Frameworks/PreferencePanes.framework",lhead="cluster_/System/Library/Frameworks/SecurityInterface.framework"];
1539 | "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib" -> "/usr/lib/libSystem.B.dylib" [lhead="cluster_/usr/lib/libSystem.B.dylib"];
1540 | "/usr/lib/system/libsystem_coretls.dylib" -> "/usr/lib/system/libsystem_pthread.dylib" [ltail="cluster_/usr/lib/system/libsystem_coretls.dylib",lhead="cluster_/usr/lib/system/libsystem_pthread.dylib"];
1541 | "/usr/lib/system/libsystem_coretls.dylib" -> "/usr/lib/system/libxpc.dylib" [ltail="cluster_/usr/lib/system/libsystem_coretls.dylib",lhead="cluster_/usr/lib/system/libxpc.dylib"];
1542 | "/usr/lib/system/libsystem_coretls.dylib" -> "/usr/lib/system/libcommonCrypto.dylib" [ltail="cluster_/usr/lib/system/libsystem_coretls.dylib",lhead="cluster_/usr/lib/system/libcommonCrypto.dylib"];
1543 | "/usr/lib/system/libsystem_coretls.dylib" -> "/usr/lib/system/libsystem_malloc.dylib" [ltail="cluster_/usr/lib/system/libsystem_coretls.dylib",lhead="cluster_/usr/lib/system/libsystem_malloc.dylib"];
1544 | "/usr/lib/libquit.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libquit.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1545 | "/usr/lib/libquit.dylib" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/usr/lib/libquit.dylib",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1546 | "/usr/lib/libquit.dylib" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/usr/lib/libquit.dylib",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1547 | "/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework" -> "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib" ;
1548 | "/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework" -> "/System/Library/Frameworks/ImageIO.framework" [lhead="cluster_/System/Library/Frameworks/ImageIO.framework"];
1549 | "/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework" -> "/System/Library/Frameworks/CoreVideo.framework" [lhead="cluster_/System/Library/Frameworks/CoreVideo.framework"];
1550 | "/usr/lib/system/liblaunch.dylib" -> "/usr/lib/system/libxpc.dylib" [ltail="cluster_/usr/lib/system/liblaunch.dylib",lhead="cluster_/usr/lib/system/libxpc.dylib"];
1551 | "/System/Library/Frameworks/AppKit.framework" -> "/System/Library/Frameworks/CoreData.framework" [ltail="cluster_/System/Library/Frameworks/AppKit.framework",lhead="cluster_/System/Library/Frameworks/CoreData.framework"];
1552 | "/System/Library/Frameworks/AppKit.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework" [ltail="cluster_/System/Library/Frameworks/AppKit.framework"];
1553 | "/System/Library/Frameworks/AppKit.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/AppKit.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1554 | "/System/Library/Frameworks/AppKit.framework" -> "/System/Library/Frameworks/OpenGL.framework" [ltail="cluster_/System/Library/Frameworks/AppKit.framework",lhead="cluster_/System/Library/Frameworks/OpenGL.framework"];
1555 | "/System/Library/Frameworks/Automator.framework" -> "/System/Library/Frameworks/Quartz.framework" [ltail="cluster_/System/Library/Frameworks/Automator.framework",lhead="cluster_/System/Library/Frameworks/Quartz.framework"];
1556 | "/System/Library/Frameworks/Automator.framework" -> "/System/Library/Frameworks/ScriptingBridge.framework" [ltail="cluster_/System/Library/Frameworks/Automator.framework",lhead="cluster_/System/Library/Frameworks/ScriptingBridge.framework"];
1557 | "/System/Library/Frameworks/Automator.framework" -> "/System/Library/Frameworks/QTKit.framework" [ltail="cluster_/System/Library/Frameworks/Automator.framework",lhead="cluster_/System/Library/Frameworks/QTKit.framework"];
1558 | "/System/Library/Frameworks/Automator.framework" -> "/System/Library/Frameworks/AppleScriptObjC.framework" [ltail="cluster_/System/Library/Frameworks/Automator.framework",lhead="cluster_/System/Library/Frameworks/AppleScriptObjC.framework"];
1559 | "/System/Library/Frameworks/Automator.framework" -> "/System/Library/Frameworks/OSAKit.framework" [ltail="cluster_/System/Library/Frameworks/Automator.framework",lhead="cluster_/System/Library/Frameworks/OSAKit.framework"];
1560 | "/System/Library/Frameworks/AGL.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/AGL.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1561 | "/System/Library/Frameworks/AGL.framework" -> "/System/Library/Frameworks/OpenGL.framework" [ltail="cluster_/System/Library/Frameworks/AGL.framework",lhead="cluster_/System/Library/Frameworks/OpenGL.framework"];
1562 | "/System/Library/Frameworks/AGL.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/AGL.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1563 | "/System/Library/Frameworks/AGL.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/AGL.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1564 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" -> "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework" ;
1565 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" -> "/System/Library/Frameworks/AudioToolbox.framework" [lhead="cluster_/System/Library/Frameworks/AudioToolbox.framework"];
1566 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1567 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1568 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1569 | "/System/Library/Frameworks/vecLib.framework" -> "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework" [ltail="cluster_/System/Library/Frameworks/vecLib.framework"];
1570 | "/usr/lib/system/libremovefile.dylib" -> "/usr/lib/system/libsystem_malloc.dylib" [ltail="cluster_/usr/lib/system/libremovefile.dylib",lhead="cluster_/usr/lib/system/libsystem_malloc.dylib"];
1571 | "/System/Library/Frameworks/NetFS.framework" -> "/usr/lib/libDiagnosticMessagesClient.dylib" [ltail="cluster_/System/Library/Frameworks/NetFS.framework",lhead="cluster_/usr/lib/libDiagnosticMessagesClient.dylib"];
1572 | "/System/Library/Frameworks/NetFS.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/NetFS.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1573 | "/System/Library/Frameworks/NetFS.framework" -> "/System/Library/Frameworks/DiskArbitration.framework" [ltail="cluster_/System/Library/Frameworks/NetFS.framework",lhead="cluster_/System/Library/Frameworks/DiskArbitration.framework"];
1574 | "/usr/lib/liblangid.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/liblangid.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1575 | "/System/Library/Frameworks/ImageIO.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/ImageIO.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1576 | "/System/Library/Frameworks/ImageIO.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/ImageIO.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1577 | "/System/Library/Frameworks/AVFoundation.framework" -> "/System/Library/Frameworks/ImageIO.framework" [ltail="cluster_/System/Library/Frameworks/AVFoundation.framework",lhead="cluster_/System/Library/Frameworks/ImageIO.framework"];
1578 | "/System/Library/Frameworks/AVFoundation.framework" -> "/System/Library/Frameworks/CoreMediaIO.framework" [ltail="cluster_/System/Library/Frameworks/AVFoundation.framework",lhead="cluster_/System/Library/Frameworks/CoreMediaIO.framework"];
1579 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/Quartz.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/Quartz.framework"];
1580 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/NetFS.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/NetFS.framework"];
1581 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/OpenDirectory.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/OpenDirectory.framework"];
1582 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/DirectoryService.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/DirectoryService.framework"];
1583 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/LDAP.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/LDAP.framework"];
1584 | "/System/Library/Frameworks/AddressBook.framework" -> "/System/Library/Frameworks/SecurityInterface.framework" [ltail="cluster_/System/Library/Frameworks/AddressBook.framework",lhead="cluster_/System/Library/Frameworks/SecurityInterface.framework"];
1585 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libsystem_coreservices.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libsystem_coreservices.dylib"];
1586 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libsystem_secinit.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libsystem_secinit.dylib"];
1587 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libremovefile.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libremovefile.dylib"];
1588 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libcache.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libcache.dylib"];
1589 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libsystem_stats.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libsystem_stats.dylib"];
1590 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libunc.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libunc.dylib"];
1591 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libsystem_configuration.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libsystem_configuration.dylib"];
1592 | "/usr/lib/libSystem.B.dylib" -> "/usr/lib/system/libcopyfile.dylib" [ltail="cluster_/usr/lib/libSystem.B.dylib",lhead="cluster_/usr/lib/system/libcopyfile.dylib"];
1593 | "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework" -> "/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework" ;
1594 | "/usr/lib/system/libdispatch.dylib" -> "/usr/lib/system/libsystem_blocks.dylib" [ltail="cluster_/usr/lib/system/libdispatch.dylib",lhead="cluster_/usr/lib/system/libsystem_blocks.dylib"];
1595 | "/usr/lib/system/libdispatch.dylib" -> "/usr/lib/libobjc.A.dylib" [ltail="cluster_/usr/lib/system/libdispatch.dylib",lhead="cluster_/usr/lib/libobjc.A.dylib"];
1596 | "/usr/lib/libbz2.1.0.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libbz2.1.0.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1597 | "/usr/lib/system/libsystem_notify.dylib" -> "/usr/lib/system/libsystem_pthread.dylib" [ltail="cluster_/usr/lib/system/libsystem_notify.dylib",lhead="cluster_/usr/lib/system/libsystem_pthread.dylib"];
1598 | "/usr/lib/system/libsystem_notify.dylib" -> "/usr/lib/system/libxpc.dylib" [ltail="cluster_/usr/lib/system/libsystem_notify.dylib",lhead="cluster_/usr/lib/system/libxpc.dylib"];
1599 | "/usr/lib/system/libsystem_notify.dylib" -> "/usr/lib/system/libdispatch.dylib" [ltail="cluster_/usr/lib/system/libsystem_notify.dylib",lhead="cluster_/usr/lib/system/libdispatch.dylib"];
1600 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework" -> "/usr/lib/libxml2.2.dylib" [lhead="cluster_/usr/lib/libxml2.2.dylib"];
1601 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework" -> "/System/Library/Frameworks/IOKit.framework" [lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1602 | "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1603 | "/usr/lib/system/libcorecrypto.dylib" -> "/usr/lib/system/libdispatch.dylib" [ltail="cluster_/usr/lib/system/libcorecrypto.dylib",lhead="cluster_/usr/lib/system/libdispatch.dylib"];
1604 | "/usr/lib/system/libcorecrypto.dylib" -> "/usr/lib/system/libmacho.dylib" [ltail="cluster_/usr/lib/system/libcorecrypto.dylib",lhead="cluster_/usr/lib/system/libmacho.dylib"];
1605 | "/usr/lib/libgcc_s.1.dylib" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/usr/lib/libgcc_s.1.dylib",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1606 | "/System/Library/Frameworks/DrawSprocket.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/DrawSprocket.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1607 | "/System/Library/Frameworks/DrawSprocket.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/DrawSprocket.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1608 | "/System/Library/Frameworks/DrawSprocket.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/DrawSprocket.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1609 | "/System/Library/Frameworks/DrawSprocket.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/DrawSprocket.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1610 | "/System/Library/Frameworks/DrawSprocket.framework" -> "/System/Library/Frameworks/Carbon.framework" [ltail="cluster_/System/Library/Frameworks/DrawSprocket.framework",lhead="cluster_/System/Library/Frameworks/Carbon.framework"];
1611 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" -> "/System/Library/Frameworks/CoreAudio.framework" [lhead="cluster_/System/Library/Frameworks/CoreAudio.framework"];
1612 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" -> "/System/Library/Frameworks/CoreServices.framework" [lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1613 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" -> "/usr/lib/libc++.1.dylib" [lhead="cluster_/usr/lib/libc++.1.dylib"];
1614 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1615 | "/usr/lib/system/libkeymgr.dylib" -> "/usr/lib/system/libsystem_pthread.dylib" [ltail="cluster_/usr/lib/system/libkeymgr.dylib",lhead="cluster_/usr/lib/system/libsystem_pthread.dylib"];
1616 | "/usr/lib/system/libkeymgr.dylib" -> "/usr/lib/system/libsystem_platform.dylib" [ltail="cluster_/usr/lib/system/libkeymgr.dylib",lhead="cluster_/usr/lib/system/libsystem_platform.dylib"];
1617 | "/usr/lib/system/libkeymgr.dylib" -> "/usr/lib/system/libsystem_c.dylib" [ltail="cluster_/usr/lib/system/libkeymgr.dylib",lhead="cluster_/usr/lib/system/libsystem_c.dylib"];
1618 | "/usr/lib/system/libkeymgr.dylib" -> "/usr/lib/system/libsystem_malloc.dylib" [ltail="cluster_/usr/lib/system/libkeymgr.dylib",lhead="cluster_/usr/lib/system/libsystem_malloc.dylib"];
1619 | "/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework" -> "/System/Library/Frameworks/JavaVM.framework" [lhead="cluster_/System/Library/Frameworks/JavaVM.framework"];
1620 | "/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework" -> "/System/Library/Frameworks/Cocoa.framework" [lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1621 | "/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework" -> "/System/Library/Frameworks/Foundation.framework" [lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1622 | "/usr/lib/system/libquarantine.dylib" -> "/usr/lib/system/libcorecrypto.dylib" [ltail="cluster_/usr/lib/system/libquarantine.dylib",lhead="cluster_/usr/lib/system/libcorecrypto.dylib"];
1623 | "/System/Library/Frameworks/QuickTime.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/QuickTime.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1624 | "/System/Library/Frameworks/QuickTime.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" [ltail="cluster_/System/Library/Frameworks/QuickTime.framework"];
1625 | "/System/Library/Frameworks/QuickTime.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework" [ltail="cluster_/System/Library/Frameworks/QuickTime.framework"];
1626 | "/System/Library/Frameworks/QuickTime.framework" -> "/System/Library/Frameworks/CoreData.framework" [ltail="cluster_/System/Library/Frameworks/QuickTime.framework",lhead="cluster_/System/Library/Frameworks/CoreData.framework"];
1627 | "/System/Library/Frameworks/DiscRecording.framework" -> "/System/Library/Frameworks/AudioToolbox.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecording.framework",lhead="cluster_/System/Library/Frameworks/AudioToolbox.framework"];
1628 | "/System/Library/Frameworks/DiscRecording.framework" -> "/System/Library/Frameworks/DiskArbitration.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecording.framework",lhead="cluster_/System/Library/Frameworks/DiskArbitration.framework"];
1629 | "/System/Library/Frameworks/DiscRecording.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/DiscRecording.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1630 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" ;
1631 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework" -> "/System/Library/Frameworks/Security.framework" [lhead="cluster_/System/Library/Frameworks/Security.framework"];
1632 | "/System/Library/Frameworks/LocalAuthentication.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/LocalAuthentication.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1633 | "/System/Library/Frameworks/InstantMessage.framework" -> "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework" [ltail="cluster_/System/Library/Frameworks/InstantMessage.framework"];
1634 | "/System/Library/Frameworks/InstantMessage.framework" -> "/System/Library/Frameworks/QuartzCore.framework" [ltail="cluster_/System/Library/Frameworks/InstantMessage.framework",lhead="cluster_/System/Library/Frameworks/QuartzCore.framework"];
1635 | "/System/Library/Frameworks/InstantMessage.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/InstantMessage.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1636 | "/System/Library/Frameworks/InstantMessage.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/InstantMessage.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1637 | "/System/Library/Frameworks/CoreData.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/CoreData.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1638 | "/System/Library/Frameworks/CoreData.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/CoreData.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1639 | "/System/Library/Frameworks/CoreData.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/CoreData.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1640 | "/System/Library/Frameworks/IOBluetooth.framework" -> "/System/Library/Frameworks/OpenDirectory.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetooth.framework",lhead="cluster_/System/Library/Frameworks/OpenDirectory.framework"];
1641 | "/System/Library/Frameworks/IOBluetooth.framework" -> "/System/Library/Frameworks/CoreWLAN.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetooth.framework",lhead="cluster_/System/Library/Frameworks/CoreWLAN.framework"];
1642 | "/System/Library/Frameworks/IOBluetooth.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetooth.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1643 | "/System/Library/Frameworks/IOBluetooth.framework" -> "/System/Library/Frameworks/CoreBluetooth.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetooth.framework",lhead="cluster_/System/Library/Frameworks/CoreBluetooth.framework"];
1644 | "/System/Library/Frameworks/IOBluetooth.framework" -> "/System/Library/Frameworks/AudioUnit.framework" [ltail="cluster_/System/Library/Frameworks/IOBluetooth.framework",lhead="cluster_/System/Library/Frameworks/AudioUnit.framework"];
1645 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1646 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/CoreGraphics.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/CoreGraphics.framework"];
1647 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/ApplicationServices.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/ApplicationServices.framework"];
1648 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1649 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/SecurityInterface.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/SecurityInterface.framework"];
1650 | "/System/Library/Frameworks/ScreenSaver.framework" -> "/System/Library/Frameworks/PubSub.framework" [ltail="cluster_/System/Library/Frameworks/ScreenSaver.framework",lhead="cluster_/System/Library/Frameworks/PubSub.framework"];
1651 | "/usr/lib/libxar.1.dylib" -> "/usr/lib/libxml2.2.dylib" [ltail="cluster_/usr/lib/libxar.1.dylib",lhead="cluster_/usr/lib/libxml2.2.dylib"];
1652 | "/usr/lib/libxar.1.dylib" -> "/usr/lib/libbz2.1.0.dylib" [ltail="cluster_/usr/lib/libxar.1.dylib",lhead="cluster_/usr/lib/libbz2.1.0.dylib"];
1653 | "/System/Library/Frameworks/Social.framework" -> "/System/Library/Frameworks/CoreLocation.framework" [ltail="cluster_/System/Library/Frameworks/Social.framework",lhead="cluster_/System/Library/Frameworks/CoreLocation.framework"];
1654 | "/usr/lib/system/libsystem_dnssd.dylib" -> "/usr/lib/system/libsystem_asl.dylib" [ltail="cluster_/usr/lib/system/libsystem_dnssd.dylib",lhead="cluster_/usr/lib/system/libsystem_asl.dylib"];
1655 | "/usr/lib/system/libsystem_dnssd.dylib" -> "/usr/lib/system/liblaunch.dylib" [ltail="cluster_/usr/lib/system/libsystem_dnssd.dylib",lhead="cluster_/usr/lib/system/liblaunch.dylib"];
1656 | "/usr/lib/libssl.0.9.8.dylib" -> "/usr/lib/libcrypto.0.9.8.dylib" [ltail="cluster_/usr/lib/libssl.0.9.8.dylib",lhead="cluster_/usr/lib/libcrypto.0.9.8.dylib"];
1657 | "/usr/lib/libauto.dylib" -> "/usr/lib/libDiagnosticMessagesClient.dylib" [ltail="cluster_/usr/lib/libauto.dylib",lhead="cluster_/usr/lib/libDiagnosticMessagesClient.dylib"];
1658 | "/usr/lib/libauto.dylib" -> "/usr/lib/libc++.1.dylib" [ltail="cluster_/usr/lib/libauto.dylib",lhead="cluster_/usr/lib/libc++.1.dylib"];
1659 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" -> "/System/Library/Frameworks/AudioToolbox.framework" [lhead="cluster_/System/Library/Frameworks/AudioToolbox.framework"];
1660 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" -> "/System/Library/Frameworks/CoreText.framework" [lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1661 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" -> "/System/Library/Frameworks/DiskArbitration.framework" [lhead="cluster_/System/Library/Frameworks/DiskArbitration.framework"];
1662 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" -> "/usr/lib/libDiagnosticMessagesClient.dylib" [lhead="cluster_/usr/lib/libDiagnosticMessagesClient.dylib"];
1663 | "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework" -> "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework" ;
1664 | "/System/Library/Frameworks/Foundation.framework" -> "/usr/lib/libextension.dylib" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/usr/lib/libextension.dylib"];
1665 | "/System/Library/Frameworks/Foundation.framework" -> "/usr/lib/libCRFSuite.dylib" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/usr/lib/libCRFSuite.dylib"];
1666 | "/System/Library/Frameworks/Foundation.framework" -> "/System/Library/Frameworks/CFNetwork.framework" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/System/Library/Frameworks/CFNetwork.framework"];
1667 | "/System/Library/Frameworks/Foundation.framework" -> "/System/Library/Frameworks/CoreServices.framework" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/System/Library/Frameworks/CoreServices.framework"];
1668 | "/System/Library/Frameworks/Foundation.framework" -> "/usr/lib/libarchive.2.dylib" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/usr/lib/libarchive.2.dylib"];
1669 | "/System/Library/Frameworks/Foundation.framework" -> "/usr/lib/liblangid.dylib" [ltail="cluster_/System/Library/Frameworks/Foundation.framework",lhead="cluster_/usr/lib/liblangid.dylib"];
1670 | "/System/Library/Frameworks/CoreLocation.framework" -> "/usr/lib/libxml2.2.dylib" [ltail="cluster_/System/Library/Frameworks/CoreLocation.framework",lhead="cluster_/usr/lib/libxml2.2.dylib"];
1671 | "/System/Library/Frameworks/CoreLocation.framework" -> "/usr/lib/libsqlite3.dylib" [ltail="cluster_/System/Library/Frameworks/CoreLocation.framework",lhead="cluster_/usr/lib/libsqlite3.dylib"];
1672 | "/System/Library/Frameworks/CoreLocation.framework" -> "/System/Library/Frameworks/IOKit.framework" [ltail="cluster_/System/Library/Frameworks/CoreLocation.framework",lhead="cluster_/System/Library/Frameworks/IOKit.framework"];
1673 | "/usr/lib/system/libsystem_networkextension.dylib" -> "/usr/lib/system/libsystem_notify.dylib" [ltail="cluster_/usr/lib/system/libsystem_networkextension.dylib",lhead="cluster_/usr/lib/system/libsystem_notify.dylib"];
1674 | "/usr/lib/system/libsystem_networkextension.dylib" -> "/usr/lib/system/libsystem_platform.dylib" [ltail="cluster_/usr/lib/system/libsystem_networkextension.dylib",lhead="cluster_/usr/lib/system/libsystem_platform.dylib"];
1675 | "/usr/lib/system/libsystem_networkextension.dylib" -> "/usr/lib/system/libcommonCrypto.dylib" [ltail="cluster_/usr/lib/system/libsystem_networkextension.dylib",lhead="cluster_/usr/lib/system/libcommonCrypto.dylib"];
1676 | "/usr/lib/system/libsystem_networkextension.dylib" -> "/usr/lib/system/libsystem_kernel.dylib" [ltail="cluster_/usr/lib/system/libsystem_networkextension.dylib",lhead="cluster_/usr/lib/system/libsystem_kernel.dylib"];
1677 | "/System/Library/Frameworks/CoreMedia.framework" -> "/System/Library/Frameworks/CoreAudio.framework" [ltail="cluster_/System/Library/Frameworks/CoreMedia.framework",lhead="cluster_/System/Library/Frameworks/CoreAudio.framework"];
1678 | "/System/Library/Frameworks/CoreMedia.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/CoreMedia.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1679 | "/System/Library/Frameworks/CoreMedia.framework" -> "/System/Library/Frameworks/CoreVideo.framework" [ltail="cluster_/System/Library/Frameworks/CoreMedia.framework",lhead="cluster_/System/Library/Frameworks/CoreVideo.framework"];
1680 | "/usr/lib/libexslt.0.dylib" -> "/usr/lib/libxslt.1.dylib" [ltail="cluster_/usr/lib/libexslt.0.dylib",lhead="cluster_/usr/lib/libxslt.1.dylib"];
1681 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/AVFoundation.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/AVFoundation.framework"];
1682 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/CoreText.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1683 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/Cocoa.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/Cocoa.framework"];
1684 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/OpenAL.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/OpenAL.framework"];
1685 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/GLKit.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/GLKit.framework"];
1686 | "/System/Library/Frameworks/SpriteKit.framework" -> "/System/Library/Frameworks/JavaScriptCore.framework" [ltail="cluster_/System/Library/Frameworks/SpriteKit.framework",lhead="cluster_/System/Library/Frameworks/JavaScriptCore.framework"];
1687 | "/System/Library/Frameworks/Tcl.framework" -> "/usr/lib/libSystem.B.dylib" [ltail="cluster_/System/Library/Frameworks/Tcl.framework",lhead="cluster_/usr/lib/libSystem.B.dylib"];
1688 | "/System/Library/Frameworks/Tcl.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/Tcl.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1689 | "/System/Library/Frameworks/WebKit.framework" -> "/System/Library/Frameworks/CoreAudio.framework" [ltail="cluster_/System/Library/Frameworks/WebKit.framework",lhead="cluster_/System/Library/Frameworks/CoreAudio.framework"];
1690 | "/System/Library/Frameworks/WebKit.framework" -> "/System/Library/Frameworks/QuartzCore.framework" [ltail="cluster_/System/Library/Frameworks/WebKit.framework",lhead="cluster_/System/Library/Frameworks/QuartzCore.framework"];
1691 | "/System/Library/Frameworks/WebKit.framework" -> "/System/Library/Frameworks/CoreText.framework" [ltail="cluster_/System/Library/Frameworks/WebKit.framework",lhead="cluster_/System/Library/Frameworks/CoreText.framework"];
1692 | "/System/Library/Frameworks/Cocoa.framework" -> "/System/Library/Frameworks/AppKit.framework" [ltail="cluster_/System/Library/Frameworks/Cocoa.framework",lhead="cluster_/System/Library/Frameworks/AppKit.framework"];
1693 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework" -> "/usr/lib/libmecabra.dylib" [lhead="cluster_/usr/lib/libmecabra.dylib"];
1694 | "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework" -> "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework" ;
1695 | "/usr/lib/system/libsystem_trace.dylib" -> "/usr/lib/system/libsystem_notify.dylib" [ltail="cluster_/usr/lib/system/libsystem_trace.dylib",lhead="cluster_/usr/lib/system/libsystem_notify.dylib"];
1696 | "/System/Library/Frameworks/JavaScriptCore.framework" -> "/System/Library/Frameworks/CoreFoundation.framework" [ltail="cluster_/System/Library/Frameworks/JavaScriptCore.framework",lhead="cluster_/System/Library/Frameworks/CoreFoundation.framework"];
1697 | "/System/Library/Frameworks/JavaScriptCore.framework" -> "/System/Library/Frameworks/Foundation.framework" [ltail="cluster_/System/Library/Frameworks/JavaScriptCore.framework",lhead="cluster_/System/Library/Frameworks/Foundation.framework"];
1698 | "/System/Library/Frameworks/GSS.framework" -> "/System/Library/Frameworks/OpenDirectory.framework" [ltail="cluster_/System/Library/Frameworks/GSS.framework",lhead="cluster_/System/Library/Frameworks/OpenDirectory.framework"];
1699 | "/System/Library/Frameworks/GSS.framework" -> "/System/Library/Frameworks/Security.framework" [ltail="cluster_/System/Library/Frameworks/GSS.framework",lhead="cluster_/System/Library/Frameworks/Security.framework"];
1700 | "/System/Library/Frameworks/GSS.framework" -> "/System/Library/Frameworks/SystemConfiguration.framework" [ltail="cluster_/System/Library/Frameworks/GSS.framework",lhead="cluster_/System/Library/Frameworks/SystemConfiguration.framework"];
1701 | }
1702 |
--------------------------------------------------------------------------------