| 1 |
%!PS-Adobe-3.0 |
|---|
| 2 |
%%Creator: graphviz version 2.26.3 (20100126.1600) |
|---|
| 3 |
%%Title: avcconnections |
|---|
| 4 |
%%Pages: (atend) |
|---|
| 5 |
%%BoundingBox: (atend) |
|---|
| 6 |
%%EndComments |
|---|
| 7 |
save |
|---|
| 8 |
%%BeginProlog |
|---|
| 9 |
/DotDict 200 dict def |
|---|
| 10 |
DotDict begin |
|---|
| 11 |
|
|---|
| 12 |
/setupLatin1 { |
|---|
| 13 |
mark |
|---|
| 14 |
/EncodingVector 256 array def |
|---|
| 15 |
EncodingVector 0 |
|---|
| 16 |
|
|---|
| 17 |
ISOLatin1Encoding 0 255 getinterval putinterval |
|---|
| 18 |
EncodingVector 45 /hyphen put |
|---|
| 19 |
|
|---|
| 20 |
% Set up ISO Latin 1 character encoding |
|---|
| 21 |
/starnetISO { |
|---|
| 22 |
dup dup findfont dup length dict begin |
|---|
| 23 |
{ 1 index /FID ne { def }{ pop pop } ifelse |
|---|
| 24 |
} forall |
|---|
| 25 |
/Encoding EncodingVector def |
|---|
| 26 |
currentdict end definefont |
|---|
| 27 |
} def |
|---|
| 28 |
/Times-Roman starnetISO def |
|---|
| 29 |
/Times-Italic starnetISO def |
|---|
| 30 |
/Times-Bold starnetISO def |
|---|
| 31 |
/Times-BoldItalic starnetISO def |
|---|
| 32 |
/Helvetica starnetISO def |
|---|
| 33 |
/Helvetica-Oblique starnetISO def |
|---|
| 34 |
/Helvetica-Bold starnetISO def |
|---|
| 35 |
/Helvetica-BoldOblique starnetISO def |
|---|
| 36 |
/Courier starnetISO def |
|---|
| 37 |
/Courier-Oblique starnetISO def |
|---|
| 38 |
/Courier-Bold starnetISO def |
|---|
| 39 |
/Courier-BoldOblique starnetISO def |
|---|
| 40 |
cleartomark |
|---|
| 41 |
} bind def |
|---|
| 42 |
|
|---|
| 43 |
%%BeginResource: procset graphviz 0 0 |
|---|
| 44 |
/coord-font-family /Times-Roman def |
|---|
| 45 |
/default-font-family /Times-Roman def |
|---|
| 46 |
/coordfont coord-font-family findfont 8 scalefont def |
|---|
| 47 |
|
|---|
| 48 |
/InvScaleFactor 1.0 def |
|---|
| 49 |
/set_scale { |
|---|
| 50 |
dup 1 exch div /InvScaleFactor exch def |
|---|
| 51 |
scale |
|---|
| 52 |
} bind def |
|---|
| 53 |
|
|---|
| 54 |
% styles |
|---|
| 55 |
/solid { [] 0 setdash } bind def |
|---|
| 56 |
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def |
|---|
| 57 |
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def |
|---|
| 58 |
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def |
|---|
| 59 |
/bold { 2 setlinewidth } bind def |
|---|
| 60 |
/filled { } bind def |
|---|
| 61 |
/unfilled { } bind def |
|---|
| 62 |
/rounded { } bind def |
|---|
| 63 |
/diagonals { } bind def |
|---|
| 64 |
|
|---|
| 65 |
% hooks for setting color |
|---|
| 66 |
/nodecolor { sethsbcolor } bind def |
|---|
| 67 |
/edgecolor { sethsbcolor } bind def |
|---|
| 68 |
/graphcolor { sethsbcolor } bind def |
|---|
| 69 |
/nopcolor {pop pop pop} bind def |
|---|
| 70 |
|
|---|
| 71 |
/beginpage { % i j npages |
|---|
| 72 |
/npages exch def |
|---|
| 73 |
/j exch def |
|---|
| 74 |
/i exch def |
|---|
| 75 |
/str 10 string def |
|---|
| 76 |
npages 1 gt { |
|---|
| 77 |
gsave |
|---|
| 78 |
coordfont setfont |
|---|
| 79 |
0 0 moveto |
|---|
| 80 |
(\() show i str cvs show (,) show j str cvs show (\)) show |
|---|
| 81 |
grestore |
|---|
| 82 |
} if |
|---|
| 83 |
} bind def |
|---|
| 84 |
|
|---|
| 85 |
/set_font { |
|---|
| 86 |
findfont exch |
|---|
| 87 |
scalefont setfont |
|---|
| 88 |
} def |
|---|
| 89 |
|
|---|
| 90 |
% draw text fitted to its expected width |
|---|
| 91 |
/alignedtext { % width text |
|---|
| 92 |
/text exch def |
|---|
| 93 |
/width exch def |
|---|
| 94 |
gsave |
|---|
| 95 |
width 0 gt { |
|---|
| 96 |
[] 0 setdash |
|---|
| 97 |
text stringwidth pop width exch sub text length div 0 text ashow |
|---|
| 98 |
} if |
|---|
| 99 |
grestore |
|---|
| 100 |
} def |
|---|
| 101 |
|
|---|
| 102 |
/boxprim { % xcorner ycorner xsize ysize |
|---|
| 103 |
4 2 roll |
|---|
| 104 |
moveto |
|---|
| 105 |
2 copy |
|---|
| 106 |
exch 0 rlineto |
|---|
| 107 |
0 exch rlineto |
|---|
| 108 |
pop neg 0 rlineto |
|---|
| 109 |
closepath |
|---|
| 110 |
} bind def |
|---|
| 111 |
|
|---|
| 112 |
/ellipse_path { |
|---|
| 113 |
/ry exch def |
|---|
| 114 |
/rx exch def |
|---|
| 115 |
/y exch def |
|---|
| 116 |
/x exch def |
|---|
| 117 |
matrix currentmatrix |
|---|
| 118 |
newpath |
|---|
| 119 |
x y translate |
|---|
| 120 |
rx ry scale |
|---|
| 121 |
0 0 1 0 360 arc |
|---|
| 122 |
setmatrix |
|---|
| 123 |
} bind def |
|---|
| 124 |
|
|---|
| 125 |
/endpage { showpage } bind def |
|---|
| 126 |
/showpage { } def |
|---|
| 127 |
|
|---|
| 128 |
/layercolorseq |
|---|
| 129 |
[ % layer color sequence - darkest to lightest |
|---|
| 130 |
[0 0 0] |
|---|
| 131 |
[.2 .8 .8] |
|---|
| 132 |
[.4 .8 .8] |
|---|
| 133 |
[.6 .8 .8] |
|---|
| 134 |
[.8 .8 .8] |
|---|
| 135 |
] |
|---|
| 136 |
def |
|---|
| 137 |
|
|---|
| 138 |
/layerlen layercolorseq length def |
|---|
| 139 |
|
|---|
| 140 |
/setlayer {/maxlayer exch def /curlayer exch def |
|---|
| 141 |
layercolorseq curlayer 1 sub layerlen mod get |
|---|
| 142 |
aload pop sethsbcolor |
|---|
| 143 |
/nodecolor {nopcolor} def |
|---|
| 144 |
/edgecolor {nopcolor} def |
|---|
| 145 |
/graphcolor {nopcolor} def |
|---|
| 146 |
} bind def |
|---|
| 147 |
|
|---|
| 148 |
/onlayer { curlayer ne {invis} if } def |
|---|
| 149 |
|
|---|
| 150 |
/onlayers { |
|---|
| 151 |
/myupper exch def |
|---|
| 152 |
/mylower exch def |
|---|
| 153 |
curlayer mylower lt |
|---|
| 154 |
curlayer myupper gt |
|---|
| 155 |
or |
|---|
| 156 |
{invis} if |
|---|
| 157 |
} def |
|---|
| 158 |
|
|---|
| 159 |
/curlayer 0 def |
|---|
| 160 |
|
|---|
| 161 |
%%EndResource |
|---|
| 162 |
%%EndProlog |
|---|
| 163 |
%%BeginSetup |
|---|
| 164 |
14 default-font-family set_font |
|---|
| 165 |
1 setmiterlimit |
|---|
| 166 |
% /arrowlength 10 def |
|---|
| 167 |
% /arrowwidth 5 def |
|---|
| 168 |
|
|---|
| 169 |
% make sure pdfmark is harmless for PS-interpreters other than Distiller |
|---|
| 170 |
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse |
|---|
| 171 |
% make '<<' and '>>' safe on PS Level 1 devices |
|---|
| 172 |
/languagelevel where {pop languagelevel}{1} ifelse |
|---|
| 173 |
2 lt { |
|---|
| 174 |
userdict (<<) cvn ([) cvn load put |
|---|
| 175 |
userdict (>>) cvn ([) cvn load put |
|---|
| 176 |
} if |
|---|
| 177 |
|
|---|
| 178 |
%%EndSetup |
|---|
| 179 |
setupLatin1 |
|---|
| 180 |
%%Page: 1 1 |
|---|
| 181 |
%%PageBoundingBox: 36 36 3048 526 |
|---|
| 182 |
%%PageOrientation: Portrait |
|---|
| 183 |
0 0 1 beginpage |
|---|
| 184 |
gsave |
|---|
| 185 |
36 36 3012 490 boxprim clip newpath |
|---|
| 186 |
1 1 set_scale 0 rotate 40 41 translate |
|---|
| 187 |
% (15) MSU AV Audio Output |
|---|
| 188 |
gsave |
|---|
| 189 |
0.33333 1 1 nodecolor |
|---|
| 190 |
143 463 142.84 18.38 ellipse_path fill |
|---|
| 191 |
1 setlinewidth |
|---|
| 192 |
filled |
|---|
| 193 |
0.33333 1 1 nodecolor |
|---|
| 194 |
143 463 142.84 18.38 ellipse_path stroke |
|---|
| 195 |
0 0 0 nodecolor |
|---|
| 196 |
14 /Times-Roman set_font |
|---|
| 197 |
50 459.4 moveto 186 (\(15\) MSU AV Audio Output) alignedtext |
|---|
| 198 |
grestore |
|---|
| 199 |
% (0) ASU FW Audio Input |
|---|
| 200 |
gsave |
|---|
| 201 |
0.33333 1 1 nodecolor |
|---|
| 202 |
143 389 128.19 18.38 ellipse_path fill |
|---|
| 203 |
1 setlinewidth |
|---|
| 204 |
filled |
|---|
| 205 |
0.33333 1 1 nodecolor |
|---|
| 206 |
143 389 128.19 18.38 ellipse_path stroke |
|---|
| 207 |
0 0 0 nodecolor |
|---|
| 208 |
14 /Times-Roman set_font |
|---|
| 209 |
60 385.4 moveto 166 (\(0\) ASU FW Audio Input) alignedtext |
|---|
| 210 |
grestore |
|---|
| 211 |
% (15) MSU AV Audio Output->(0) ASU FW Audio Input |
|---|
| 212 |
gsave |
|---|
| 213 |
1 setlinewidth |
|---|
| 214 |
0 0 0 edgecolor |
|---|
| 215 |
newpath 143 444.33 moveto |
|---|
| 216 |
143 436.26 143 426.65 143 417.71 curveto |
|---|
| 217 |
stroke |
|---|
| 218 |
0 0 0 edgecolor |
|---|
| 219 |
newpath 146.5 417.67 moveto |
|---|
| 220 |
143 407.67 lineto |
|---|
| 221 |
139.5 417.67 lineto |
|---|
| 222 |
closepath fill |
|---|
| 223 |
1 setlinewidth |
|---|
| 224 |
solid |
|---|
| 225 |
0 0 0 edgecolor |
|---|
| 226 |
newpath 146.5 417.67 moveto |
|---|
| 227 |
143 407.67 lineto |
|---|
| 228 |
139.5 417.67 lineto |
|---|
| 229 |
closepath stroke |
|---|
| 230 |
grestore |
|---|
| 231 |
% (4) Feature FB 1 In |
|---|
| 232 |
gsave |
|---|
| 233 |
0.16471 1 1 nodecolor |
|---|
| 234 |
143 315 104.15 18.38 ellipse_path fill |
|---|
| 235 |
1 setlinewidth |
|---|
| 236 |
filled |
|---|
| 237 |
0.16471 1 1 nodecolor |
|---|
| 238 |
143 315 104.15 18.38 ellipse_path stroke |
|---|
| 239 |
0 0 0 nodecolor |
|---|
| 240 |
14 /Times-Roman set_font |
|---|
| 241 |
77 311.4 moveto 132 (\(4\) Feature FB 1 In) alignedtext |
|---|
| 242 |
grestore |
|---|
| 243 |
% (0) ASU FW Audio Input->(4) Feature FB 1 In |
|---|
| 244 |
gsave |
|---|
| 245 |
1 setlinewidth |
|---|
| 246 |
0 0 0 edgecolor |
|---|
| 247 |
newpath 143 370.33 moveto |
|---|
| 248 |
143 362.26 143 352.65 143 343.71 curveto |
|---|
| 249 |
stroke |
|---|
| 250 |
0 0 0 edgecolor |
|---|
| 251 |
newpath 146.5 343.67 moveto |
|---|
| 252 |
143 333.67 lineto |
|---|
| 253 |
139.5 343.67 lineto |
|---|
| 254 |
closepath fill |
|---|
| 255 |
1 setlinewidth |
|---|
| 256 |
solid |
|---|
| 257 |
0 0 0 edgecolor |
|---|
| 258 |
newpath 146.5 343.67 moveto |
|---|
| 259 |
143 333.67 lineto |
|---|
| 260 |
139.5 343.67 lineto |
|---|
| 261 |
closepath stroke |
|---|
| 262 |
grestore |
|---|
| 263 |
% (Feature FB, ID 1) |
|---|
| 264 |
gsave |
|---|
| 265 |
1 setlinewidth |
|---|
| 266 |
0 0 0 nodecolor |
|---|
| 267 |
143 241 99.2 18.38 ellipse_path stroke |
|---|
| 268 |
0 0 0 nodecolor |
|---|
| 269 |
14 /Times-Roman set_font |
|---|
| 270 |
80.5 237.4 moveto 125 (\(Feature FB, ID 1\)) alignedtext |
|---|
| 271 |
grestore |
|---|
| 272 |
% (4) Feature FB 1 In->(Feature FB, ID 1) |
|---|
| 273 |
gsave |
|---|
| 274 |
1 setlinewidth |
|---|
| 275 |
0 0 0 edgecolor |
|---|
| 276 |
newpath 143 296.33 moveto |
|---|
| 277 |
143 288.26 143 278.65 143 269.71 curveto |
|---|
| 278 |
stroke |
|---|
| 279 |
0 0 0 edgecolor |
|---|
| 280 |
newpath 146.5 269.67 moveto |
|---|
| 281 |
143 259.67 lineto |
|---|
| 282 |
139.5 269.67 lineto |
|---|
| 283 |
closepath fill |
|---|
| 284 |
1 setlinewidth |
|---|
| 285 |
solid |
|---|
| 286 |
0 0 0 edgecolor |
|---|
| 287 |
newpath 146.5 269.67 moveto |
|---|
| 288 |
143 259.67 lineto |
|---|
| 289 |
139.5 269.67 lineto |
|---|
| 290 |
closepath stroke |
|---|
| 291 |
grestore |
|---|
| 292 |
% (21) Ext Audio Input |
|---|
| 293 |
gsave |
|---|
| 294 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 295 |
434 463 111.22 18.38 ellipse_path fill |
|---|
| 296 |
1 setlinewidth |
|---|
| 297 |
filled |
|---|
| 298 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 299 |
434 463 111.22 18.38 ellipse_path stroke |
|---|
| 300 |
0 0 0 nodecolor |
|---|
| 301 |
14 /Times-Roman set_font |
|---|
| 302 |
363 459.4 moveto 142 (\(21\) Ext Audio Input) alignedtext |
|---|
| 303 |
grestore |
|---|
| 304 |
% (1) ASU AV Audio Input |
|---|
| 305 |
gsave |
|---|
| 306 |
0.33333 1 1 nodecolor |
|---|
| 307 |
434 389 125.87 18.38 ellipse_path fill |
|---|
| 308 |
1 setlinewidth |
|---|
| 309 |
filled |
|---|
| 310 |
0.33333 1 1 nodecolor |
|---|
| 311 |
434 389 125.87 18.38 ellipse_path stroke |
|---|
| 312 |
0 0 0 nodecolor |
|---|
| 313 |
14 /Times-Roman set_font |
|---|
| 314 |
353 385.4 moveto 162 (\(1\) ASU AV Audio Input) alignedtext |
|---|
| 315 |
grestore |
|---|
| 316 |
% (21) Ext Audio Input->(1) ASU AV Audio Input |
|---|
| 317 |
gsave |
|---|
| 318 |
1 setlinewidth |
|---|
| 319 |
0 0 0 edgecolor |
|---|
| 320 |
newpath 434 444.33 moveto |
|---|
| 321 |
434 436.26 434 426.65 434 417.71 curveto |
|---|
| 322 |
stroke |
|---|
| 323 |
0 0 0 edgecolor |
|---|
| 324 |
newpath 437.5 417.67 moveto |
|---|
| 325 |
434 407.67 lineto |
|---|
| 326 |
430.5 417.67 lineto |
|---|
| 327 |
closepath fill |
|---|
| 328 |
1 setlinewidth |
|---|
| 329 |
solid |
|---|
| 330 |
0 0 0 edgecolor |
|---|
| 331 |
newpath 437.5 417.67 moveto |
|---|
| 332 |
434 407.67 lineto |
|---|
| 333 |
430.5 417.67 lineto |
|---|
| 334 |
closepath stroke |
|---|
| 335 |
grestore |
|---|
| 336 |
% (6) Feature FB 2 In |
|---|
| 337 |
gsave |
|---|
| 338 |
0.16471 1 1 nodecolor |
|---|
| 339 |
434 315 104.15 18.38 ellipse_path fill |
|---|
| 340 |
1 setlinewidth |
|---|
| 341 |
filled |
|---|
| 342 |
0.16471 1 1 nodecolor |
|---|
| 343 |
434 315 104.15 18.38 ellipse_path stroke |
|---|
| 344 |
0 0 0 nodecolor |
|---|
| 345 |
14 /Times-Roman set_font |
|---|
| 346 |
368 311.4 moveto 132 (\(6\) Feature FB 2 In) alignedtext |
|---|
| 347 |
grestore |
|---|
| 348 |
% (1) ASU AV Audio Input->(6) Feature FB 2 In |
|---|
| 349 |
gsave |
|---|
| 350 |
1 setlinewidth |
|---|
| 351 |
0 0 0 edgecolor |
|---|
| 352 |
newpath 434 370.33 moveto |
|---|
| 353 |
434 362.26 434 352.65 434 343.71 curveto |
|---|
| 354 |
stroke |
|---|
| 355 |
0 0 0 edgecolor |
|---|
| 356 |
newpath 437.5 343.67 moveto |
|---|
| 357 |
434 333.67 lineto |
|---|
| 358 |
430.5 343.67 lineto |
|---|
| 359 |
closepath fill |
|---|
| 360 |
1 setlinewidth |
|---|
| 361 |
solid |
|---|
| 362 |
0 0 0 edgecolor |
|---|
| 363 |
newpath 437.5 343.67 moveto |
|---|
| 364 |
434 333.67 lineto |
|---|
| 365 |
430.5 343.67 lineto |
|---|
| 366 |
closepath stroke |
|---|
| 367 |
grestore |
|---|
| 368 |
% (Feature FB, ID 2) |
|---|
| 369 |
gsave |
|---|
| 370 |
1 setlinewidth |
|---|
| 371 |
0 0 0 nodecolor |
|---|
| 372 |
434 241 99.2 18.38 ellipse_path stroke |
|---|
| 373 |
0 0 0 nodecolor |
|---|
| 374 |
14 /Times-Roman set_font |
|---|
| 375 |
371.5 237.4 moveto 125 (\(Feature FB, ID 2\)) alignedtext |
|---|
| 376 |
grestore |
|---|
| 377 |
% (6) Feature FB 2 In->(Feature FB, ID 2) |
|---|
| 378 |
gsave |
|---|
| 379 |
1 setlinewidth |
|---|
| 380 |
0 0 0 edgecolor |
|---|
| 381 |
newpath 434 296.33 moveto |
|---|
| 382 |
434 288.26 434 278.65 434 269.71 curveto |
|---|
| 383 |
stroke |
|---|
| 384 |
0 0 0 edgecolor |
|---|
| 385 |
newpath 437.5 269.67 moveto |
|---|
| 386 |
434 259.67 lineto |
|---|
| 387 |
430.5 269.67 lineto |
|---|
| 388 |
closepath fill |
|---|
| 389 |
1 setlinewidth |
|---|
| 390 |
solid |
|---|
| 391 |
0 0 0 edgecolor |
|---|
| 392 |
newpath 437.5 269.67 moveto |
|---|
| 393 |
434 259.67 lineto |
|---|
| 394 |
430.5 269.67 lineto |
|---|
| 395 |
closepath stroke |
|---|
| 396 |
grestore |
|---|
| 397 |
% (7) Feature FB 2 Out |
|---|
| 398 |
gsave |
|---|
| 399 |
0.16471 1 1 nodecolor |
|---|
| 400 |
434 167 113.84 18.38 ellipse_path fill |
|---|
| 401 |
1 setlinewidth |
|---|
| 402 |
filled |
|---|
| 403 |
0.16471 1 1 nodecolor |
|---|
| 404 |
434 167 113.84 18.38 ellipse_path stroke |
|---|
| 405 |
0 0 0 nodecolor |
|---|
| 406 |
14 /Times-Roman set_font |
|---|
| 407 |
361.5 163.4 moveto 145 (\(7\) Feature FB 2 Out) alignedtext |
|---|
| 408 |
grestore |
|---|
| 409 |
% (2) ASU FW Audio Output |
|---|
| 410 |
gsave |
|---|
| 411 |
0.33333 1 1 nodecolor |
|---|
| 412 |
434 93 137.89 18.38 ellipse_path fill |
|---|
| 413 |
1 setlinewidth |
|---|
| 414 |
filled |
|---|
| 415 |
0.33333 1 1 nodecolor |
|---|
| 416 |
434 93 137.89 18.38 ellipse_path stroke |
|---|
| 417 |
0 0 0 nodecolor |
|---|
| 418 |
14 /Times-Roman set_font |
|---|
| 419 |
344.5 89.4 moveto 179 (\(2\) ASU FW Audio Output) alignedtext |
|---|
| 420 |
grestore |
|---|
| 421 |
% (7) Feature FB 2 Out->(2) ASU FW Audio Output |
|---|
| 422 |
gsave |
|---|
| 423 |
1 setlinewidth |
|---|
| 424 |
0 0 0 edgecolor |
|---|
| 425 |
newpath 434 148.33 moveto |
|---|
| 426 |
434 140.26 434 130.65 434 121.71 curveto |
|---|
| 427 |
stroke |
|---|
| 428 |
0 0 0 edgecolor |
|---|
| 429 |
newpath 437.5 121.67 moveto |
|---|
| 430 |
434 111.67 lineto |
|---|
| 431 |
430.5 121.67 lineto |
|---|
| 432 |
closepath fill |
|---|
| 433 |
1 setlinewidth |
|---|
| 434 |
solid |
|---|
| 435 |
0 0 0 edgecolor |
|---|
| 436 |
newpath 437.5 121.67 moveto |
|---|
| 437 |
434 111.67 lineto |
|---|
| 438 |
430.5 121.67 lineto |
|---|
| 439 |
closepath stroke |
|---|
| 440 |
grestore |
|---|
| 441 |
% (11) MSU AV Audio Input |
|---|
| 442 |
gsave |
|---|
| 443 |
0.33333 1 1 nodecolor |
|---|
| 444 |
434 19 133.14 18.38 ellipse_path fill |
|---|
| 445 |
1 setlinewidth |
|---|
| 446 |
filled |
|---|
| 447 |
0.33333 1 1 nodecolor |
|---|
| 448 |
434 19 133.14 18.38 ellipse_path stroke |
|---|
| 449 |
0 0 0 nodecolor |
|---|
| 450 |
14 /Times-Roman set_font |
|---|
| 451 |
347.5 15.4 moveto 173 (\(11\) MSU AV Audio Input) alignedtext |
|---|
| 452 |
grestore |
|---|
| 453 |
% (2) ASU FW Audio Output->(11) MSU AV Audio Input |
|---|
| 454 |
gsave |
|---|
| 455 |
1 setlinewidth |
|---|
| 456 |
0 0 0 edgecolor |
|---|
| 457 |
newpath 434 74.33 moveto |
|---|
| 458 |
434 66.26 434 56.65 434 47.71 curveto |
|---|
| 459 |
stroke |
|---|
| 460 |
0 0 0 edgecolor |
|---|
| 461 |
newpath 437.5 47.67 moveto |
|---|
| 462 |
434 37.67 lineto |
|---|
| 463 |
430.5 47.67 lineto |
|---|
| 464 |
closepath fill |
|---|
| 465 |
1 setlinewidth |
|---|
| 466 |
solid |
|---|
| 467 |
0 0 0 edgecolor |
|---|
| 468 |
newpath 437.5 47.67 moveto |
|---|
| 469 |
434 37.67 lineto |
|---|
| 470 |
430.5 47.67 lineto |
|---|
| 471 |
closepath stroke |
|---|
| 472 |
grestore |
|---|
| 473 |
% (5) Feature FB 1 Out |
|---|
| 474 |
gsave |
|---|
| 475 |
0.16471 1 1 nodecolor |
|---|
| 476 |
143 167 113.84 18.38 ellipse_path fill |
|---|
| 477 |
1 setlinewidth |
|---|
| 478 |
filled |
|---|
| 479 |
0.16471 1 1 nodecolor |
|---|
| 480 |
143 167 113.84 18.38 ellipse_path stroke |
|---|
| 481 |
0 0 0 nodecolor |
|---|
| 482 |
14 /Times-Roman set_font |
|---|
| 483 |
70.5 163.4 moveto 145 (\(5\) Feature FB 1 Out) alignedtext |
|---|
| 484 |
grestore |
|---|
| 485 |
% (3) ASU AV Audio Output |
|---|
| 486 |
gsave |
|---|
| 487 |
0.33333 1 1 nodecolor |
|---|
| 488 |
143 93 135.06 18.38 ellipse_path fill |
|---|
| 489 |
1 setlinewidth |
|---|
| 490 |
filled |
|---|
| 491 |
0.33333 1 1 nodecolor |
|---|
| 492 |
143 93 135.06 18.38 ellipse_path stroke |
|---|
| 493 |
0 0 0 nodecolor |
|---|
| 494 |
14 /Times-Roman set_font |
|---|
| 495 |
55.5 89.4 moveto 175 (\(3\) ASU AV Audio Output) alignedtext |
|---|
| 496 |
grestore |
|---|
| 497 |
% (5) Feature FB 1 Out->(3) ASU AV Audio Output |
|---|
| 498 |
gsave |
|---|
| 499 |
1 setlinewidth |
|---|
| 500 |
0 0 0 edgecolor |
|---|
| 501 |
newpath 143 148.33 moveto |
|---|
| 502 |
143 140.26 143 130.65 143 121.71 curveto |
|---|
| 503 |
stroke |
|---|
| 504 |
0 0 0 edgecolor |
|---|
| 505 |
newpath 146.5 121.67 moveto |
|---|
| 506 |
143 111.67 lineto |
|---|
| 507 |
139.5 121.67 lineto |
|---|
| 508 |
closepath fill |
|---|
| 509 |
1 setlinewidth |
|---|
| 510 |
solid |
|---|
| 511 |
0 0 0 edgecolor |
|---|
| 512 |
newpath 146.5 121.67 moveto |
|---|
| 513 |
143 111.67 lineto |
|---|
| 514 |
139.5 121.67 lineto |
|---|
| 515 |
closepath stroke |
|---|
| 516 |
grestore |
|---|
| 517 |
% (24) Ext Audio Output |
|---|
| 518 |
gsave |
|---|
| 519 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 520 |
143 19 120.21 18.38 ellipse_path fill |
|---|
| 521 |
1 setlinewidth |
|---|
| 522 |
filled |
|---|
| 523 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 524 |
143 19 120.21 18.38 ellipse_path stroke |
|---|
| 525 |
0 0 0 nodecolor |
|---|
| 526 |
14 /Times-Roman set_font |
|---|
| 527 |
66 15.4 moveto 154 (\(24\) Ext Audio Output) alignedtext |
|---|
| 528 |
grestore |
|---|
| 529 |
% (3) ASU AV Audio Output->(24) Ext Audio Output |
|---|
| 530 |
gsave |
|---|
| 531 |
1 setlinewidth |
|---|
| 532 |
0 0 0 edgecolor |
|---|
| 533 |
newpath 143 74.33 moveto |
|---|
| 534 |
143 66.26 143 56.65 143 47.71 curveto |
|---|
| 535 |
stroke |
|---|
| 536 |
0 0 0 edgecolor |
|---|
| 537 |
newpath 146.5 47.67 moveto |
|---|
| 538 |
143 37.67 lineto |
|---|
| 539 |
139.5 47.67 lineto |
|---|
| 540 |
closepath fill |
|---|
| 541 |
1 setlinewidth |
|---|
| 542 |
solid |
|---|
| 543 |
0 0 0 edgecolor |
|---|
| 544 |
newpath 146.5 47.67 moveto |
|---|
| 545 |
143 37.67 lineto |
|---|
| 546 |
139.5 47.67 lineto |
|---|
| 547 |
closepath stroke |
|---|
| 548 |
grestore |
|---|
| 549 |
% (17) PCR Compound Input |
|---|
| 550 |
gsave |
|---|
| 551 |
0.043137 0.68627 1 nodecolor |
|---|
| 552 |
713 463 138.8 18.38 ellipse_path fill |
|---|
| 553 |
1 setlinewidth |
|---|
| 554 |
filled |
|---|
| 555 |
0.043137 0.68627 1 nodecolor |
|---|
| 556 |
713 463 138.8 18.38 ellipse_path stroke |
|---|
| 557 |
0 0 0 nodecolor |
|---|
| 558 |
14 /Times-Roman set_font |
|---|
| 559 |
622.5 459.4 moveto 181 (\(17\) PCR Compound Input) alignedtext |
|---|
| 560 |
grestore |
|---|
| 561 |
% (8) MSU Compound Input |
|---|
| 562 |
gsave |
|---|
| 563 |
0.33333 1 1 nodecolor |
|---|
| 564 |
713 389 135.06 18.38 ellipse_path fill |
|---|
| 565 |
1 setlinewidth |
|---|
| 566 |
filled |
|---|
| 567 |
0.33333 1 1 nodecolor |
|---|
| 568 |
713 389 135.06 18.38 ellipse_path stroke |
|---|
| 569 |
0 0 0 nodecolor |
|---|
| 570 |
14 /Times-Roman set_font |
|---|
| 571 |
625.5 385.4 moveto 175 (\(8\) MSU Compound Input) alignedtext |
|---|
| 572 |
grestore |
|---|
| 573 |
% (17) PCR Compound Input->(8) MSU Compound Input |
|---|
| 574 |
gsave |
|---|
| 575 |
1 setlinewidth |
|---|
| 576 |
0 0 0 edgecolor |
|---|
| 577 |
newpath 713 444.33 moveto |
|---|
| 578 |
713 436.26 713 426.65 713 417.71 curveto |
|---|
| 579 |
stroke |
|---|
| 580 |
0 0 0 edgecolor |
|---|
| 581 |
newpath 716.5 417.67 moveto |
|---|
| 582 |
713 407.67 lineto |
|---|
| 583 |
709.5 417.67 lineto |
|---|
| 584 |
closepath fill |
|---|
| 585 |
1 setlinewidth |
|---|
| 586 |
solid |
|---|
| 587 |
0 0 0 edgecolor |
|---|
| 588 |
newpath 716.5 417.67 moveto |
|---|
| 589 |
713 407.67 lineto |
|---|
| 590 |
709.5 417.67 lineto |
|---|
| 591 |
closepath stroke |
|---|
| 592 |
grestore |
|---|
| 593 |
% (22) Ext Midi Input |
|---|
| 594 |
gsave |
|---|
| 595 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 596 |
994 463 103.24 18.38 ellipse_path fill |
|---|
| 597 |
1 setlinewidth |
|---|
| 598 |
filled |
|---|
| 599 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 600 |
994 463 103.24 18.38 ellipse_path stroke |
|---|
| 601 |
0 0 0 nodecolor |
|---|
| 602 |
14 /Times-Roman set_font |
|---|
| 603 |
929 459.4 moveto 130 (\(22\) Ext Midi Input) alignedtext |
|---|
| 604 |
grestore |
|---|
| 605 |
% (12) MSU AV MIDI Input |
|---|
| 606 |
gsave |
|---|
| 607 |
0.33333 1 1 nodecolor |
|---|
| 608 |
994 389 128.19 18.38 ellipse_path fill |
|---|
| 609 |
1 setlinewidth |
|---|
| 610 |
filled |
|---|
| 611 |
0.33333 1 1 nodecolor |
|---|
| 612 |
994 389 128.19 18.38 ellipse_path stroke |
|---|
| 613 |
0 0 0 nodecolor |
|---|
| 614 |
14 /Times-Roman set_font |
|---|
| 615 |
911 385.4 moveto 166 (\(12\) MSU AV MIDI Input) alignedtext |
|---|
| 616 |
grestore |
|---|
| 617 |
% (22) Ext Midi Input->(12) MSU AV MIDI Input |
|---|
| 618 |
gsave |
|---|
| 619 |
1 setlinewidth |
|---|
| 620 |
0 0 0 edgecolor |
|---|
| 621 |
newpath 994 444.33 moveto |
|---|
| 622 |
994 436.26 994 426.65 994 417.71 curveto |
|---|
| 623 |
stroke |
|---|
| 624 |
0 0 0 edgecolor |
|---|
| 625 |
newpath 997.5 417.67 moveto |
|---|
| 626 |
994 407.67 lineto |
|---|
| 627 |
990.5 417.67 lineto |
|---|
| 628 |
closepath fill |
|---|
| 629 |
1 setlinewidth |
|---|
| 630 |
solid |
|---|
| 631 |
0 0 0 edgecolor |
|---|
| 632 |
newpath 997.5 417.67 moveto |
|---|
| 633 |
994 407.67 lineto |
|---|
| 634 |
990.5 417.67 lineto |
|---|
| 635 |
closepath stroke |
|---|
| 636 |
grestore |
|---|
| 637 |
% (13) MSU Compound Output |
|---|
| 638 |
gsave |
|---|
| 639 |
0.33333 1 1 nodecolor |
|---|
| 640 |
1284 463 150.11 18.38 ellipse_path fill |
|---|
| 641 |
1 setlinewidth |
|---|
| 642 |
filled |
|---|
| 643 |
0.33333 1 1 nodecolor |
|---|
| 644 |
1284 463 150.11 18.38 ellipse_path stroke |
|---|
| 645 |
0 0 0 nodecolor |
|---|
| 646 |
14 /Times-Roman set_font |
|---|
| 647 |
1185.5 459.4 moveto 197 (\(13\) MSU Compound Output) alignedtext |
|---|
| 648 |
grestore |
|---|
| 649 |
% (19) PCR Compound Ouput |
|---|
| 650 |
gsave |
|---|
| 651 |
0.043137 0.68627 1 nodecolor |
|---|
| 652 |
1284 389 144.25 18.38 ellipse_path fill |
|---|
| 653 |
1 setlinewidth |
|---|
| 654 |
filled |
|---|
| 655 |
0.043137 0.68627 1 nodecolor |
|---|
| 656 |
1284 389 144.25 18.38 ellipse_path stroke |
|---|
| 657 |
0 0 0 nodecolor |
|---|
| 658 |
14 /Times-Roman set_font |
|---|
| 659 |
1190 385.4 moveto 188 (\(19\) PCR Compound Ouput) alignedtext |
|---|
| 660 |
grestore |
|---|
| 661 |
% (13) MSU Compound Output->(19) PCR Compound Ouput |
|---|
| 662 |
gsave |
|---|
| 663 |
1 setlinewidth |
|---|
| 664 |
0 0 0 edgecolor |
|---|
| 665 |
newpath 1284 444.33 moveto |
|---|
| 666 |
1284 436.26 1284 426.65 1284 417.71 curveto |
|---|
| 667 |
stroke |
|---|
| 668 |
0 0 0 edgecolor |
|---|
| 669 |
newpath 1287.5 417.67 moveto |
|---|
| 670 |
1284 407.67 lineto |
|---|
| 671 |
1280.5 417.67 lineto |
|---|
| 672 |
closepath fill |
|---|
| 673 |
1 setlinewidth |
|---|
| 674 |
solid |
|---|
| 675 |
0 0 0 edgecolor |
|---|
| 676 |
newpath 1287.5 417.67 moveto |
|---|
| 677 |
1284 407.67 lineto |
|---|
| 678 |
1280.5 417.67 lineto |
|---|
| 679 |
closepath stroke |
|---|
| 680 |
grestore |
|---|
| 681 |
% (14) MSU Sync Output |
|---|
| 682 |
gsave |
|---|
| 683 |
0.33333 1 1 nodecolor |
|---|
| 684 |
1574 463 121.83 18.38 ellipse_path fill |
|---|
| 685 |
1 setlinewidth |
|---|
| 686 |
filled |
|---|
| 687 |
0.33333 1 1 nodecolor |
|---|
| 688 |
1574 463 121.83 18.38 ellipse_path stroke |
|---|
| 689 |
0 0 0 nodecolor |
|---|
| 690 |
14 /Times-Roman set_font |
|---|
| 691 |
1495.5 459.4 moveto 157 (\(14\) MSU Sync Output) alignedtext |
|---|
| 692 |
grestore |
|---|
| 693 |
% (20) PCR Synch Output |
|---|
| 694 |
gsave |
|---|
| 695 |
0.043137 0.68627 1 nodecolor |
|---|
| 696 |
1574 389 126.07 18.38 ellipse_path fill |
|---|
| 697 |
1 setlinewidth |
|---|
| 698 |
filled |
|---|
| 699 |
0.043137 0.68627 1 nodecolor |
|---|
| 700 |
1574 389 126.07 18.38 ellipse_path stroke |
|---|
| 701 |
0 0 0 nodecolor |
|---|
| 702 |
14 /Times-Roman set_font |
|---|
| 703 |
1492.5 385.4 moveto 163 (\(20\) PCR Synch Output) alignedtext |
|---|
| 704 |
grestore |
|---|
| 705 |
% (14) MSU Sync Output->(20) PCR Synch Output |
|---|
| 706 |
gsave |
|---|
| 707 |
1 setlinewidth |
|---|
| 708 |
0 0 0 edgecolor |
|---|
| 709 |
newpath 1574 444.33 moveto |
|---|
| 710 |
1574 436.26 1574 426.65 1574 417.71 curveto |
|---|
| 711 |
stroke |
|---|
| 712 |
0 0 0 edgecolor |
|---|
| 713 |
newpath 1577.5 417.67 moveto |
|---|
| 714 |
1574 407.67 lineto |
|---|
| 715 |
1570.5 417.67 lineto |
|---|
| 716 |
closepath fill |
|---|
| 717 |
1 setlinewidth |
|---|
| 718 |
solid |
|---|
| 719 |
0 0 0 edgecolor |
|---|
| 720 |
newpath 1577.5 417.67 moveto |
|---|
| 721 |
1574 407.67 lineto |
|---|
| 722 |
1570.5 417.67 lineto |
|---|
| 723 |
closepath stroke |
|---|
| 724 |
grestore |
|---|
| 725 |
% (16) MSU AV MIDI Output |
|---|
| 726 |
gsave |
|---|
| 727 |
0.33333 1 1 nodecolor |
|---|
| 728 |
1852 463 137.89 18.38 ellipse_path fill |
|---|
| 729 |
1 setlinewidth |
|---|
| 730 |
filled |
|---|
| 731 |
0.33333 1 1 nodecolor |
|---|
| 732 |
1852 463 137.89 18.38 ellipse_path stroke |
|---|
| 733 |
0 0 0 nodecolor |
|---|
| 734 |
14 /Times-Roman set_font |
|---|
| 735 |
1762.5 459.4 moveto 179 (\(16\) MSU AV MIDI Output) alignedtext |
|---|
| 736 |
grestore |
|---|
| 737 |
% (25) Ext Midi Output |
|---|
| 738 |
gsave |
|---|
| 739 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 740 |
1852 389 111.93 18.38 ellipse_path fill |
|---|
| 741 |
1 setlinewidth |
|---|
| 742 |
filled |
|---|
| 743 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 744 |
1852 389 111.93 18.38 ellipse_path stroke |
|---|
| 745 |
0 0 0 nodecolor |
|---|
| 746 |
14 /Times-Roman set_font |
|---|
| 747 |
1780.5 385.4 moveto 143 (\(25\) Ext Midi Output) alignedtext |
|---|
| 748 |
grestore |
|---|
| 749 |
% (16) MSU AV MIDI Output->(25) Ext Midi Output |
|---|
| 750 |
gsave |
|---|
| 751 |
1 setlinewidth |
|---|
| 752 |
0 0 0 edgecolor |
|---|
| 753 |
newpath 1852 444.33 moveto |
|---|
| 754 |
1852 436.26 1852 426.65 1852 417.71 curveto |
|---|
| 755 |
stroke |
|---|
| 756 |
0 0 0 edgecolor |
|---|
| 757 |
newpath 1855.5 417.67 moveto |
|---|
| 758 |
1852 407.67 lineto |
|---|
| 759 |
1848.5 417.67 lineto |
|---|
| 760 |
closepath fill |
|---|
| 761 |
1 setlinewidth |
|---|
| 762 |
solid |
|---|
| 763 |
0 0 0 edgecolor |
|---|
| 764 |
newpath 1855.5 417.67 moveto |
|---|
| 765 |
1852 407.67 lineto |
|---|
| 766 |
1848.5 417.67 lineto |
|---|
| 767 |
closepath stroke |
|---|
| 768 |
grestore |
|---|
| 769 |
% (Feature FB, ID 1)->(5) Feature FB 1 Out |
|---|
| 770 |
gsave |
|---|
| 771 |
1 setlinewidth |
|---|
| 772 |
0 0 0 edgecolor |
|---|
| 773 |
newpath 143 222.33 moveto |
|---|
| 774 |
143 214.26 143 204.65 143 195.71 curveto |
|---|
| 775 |
stroke |
|---|
| 776 |
0 0 0 edgecolor |
|---|
| 777 |
newpath 146.5 195.67 moveto |
|---|
| 778 |
143 185.67 lineto |
|---|
| 779 |
139.5 195.67 lineto |
|---|
| 780 |
closepath fill |
|---|
| 781 |
1 setlinewidth |
|---|
| 782 |
solid |
|---|
| 783 |
0 0 0 edgecolor |
|---|
| 784 |
newpath 146.5 195.67 moveto |
|---|
| 785 |
143 185.67 lineto |
|---|
| 786 |
139.5 195.67 lineto |
|---|
| 787 |
closepath stroke |
|---|
| 788 |
grestore |
|---|
| 789 |
% (Feature FB, ID 2)->(7) Feature FB 2 Out |
|---|
| 790 |
gsave |
|---|
| 791 |
1 setlinewidth |
|---|
| 792 |
0 0 0 edgecolor |
|---|
| 793 |
newpath 434 222.33 moveto |
|---|
| 794 |
434 214.26 434 204.65 434 195.71 curveto |
|---|
| 795 |
stroke |
|---|
| 796 |
0 0 0 edgecolor |
|---|
| 797 |
newpath 437.5 195.67 moveto |
|---|
| 798 |
434 185.67 lineto |
|---|
| 799 |
430.5 195.67 lineto |
|---|
| 800 |
closepath fill |
|---|
| 801 |
1 setlinewidth |
|---|
| 802 |
solid |
|---|
| 803 |
0 0 0 edgecolor |
|---|
| 804 |
newpath 437.5 195.67 moveto |
|---|
| 805 |
434 185.67 lineto |
|---|
| 806 |
430.5 195.67 lineto |
|---|
| 807 |
closepath stroke |
|---|
| 808 |
grestore |
|---|
| 809 |
% (9) MSU Internal Sync |
|---|
| 810 |
gsave |
|---|
| 811 |
0.33333 1 1 nodecolor |
|---|
| 812 |
2127 463 119 18.38 ellipse_path fill |
|---|
| 813 |
1 setlinewidth |
|---|
| 814 |
filled |
|---|
| 815 |
0.33333 1 1 nodecolor |
|---|
| 816 |
2127 463 119 18.38 ellipse_path stroke |
|---|
| 817 |
0 0 0 nodecolor |
|---|
| 818 |
14 /Times-Roman set_font |
|---|
| 819 |
2050.5 459.4 moveto 153 (\(9\) MSU Internal Sync) alignedtext |
|---|
| 820 |
grestore |
|---|
| 821 |
% (10) MSU External Sync |
|---|
| 822 |
gsave |
|---|
| 823 |
0.33333 1 1 nodecolor |
|---|
| 824 |
2392 463 128.19 18.38 ellipse_path fill |
|---|
| 825 |
1 setlinewidth |
|---|
| 826 |
filled |
|---|
| 827 |
0.33333 1 1 nodecolor |
|---|
| 828 |
2392 463 128.19 18.38 ellipse_path stroke |
|---|
| 829 |
0 0 0 nodecolor |
|---|
| 830 |
14 /Times-Roman set_font |
|---|
| 831 |
2309 459.4 moveto 166 (\(10\) MSU External Sync) alignedtext |
|---|
| 832 |
grestore |
|---|
| 833 |
% (18) PCR Synch Input |
|---|
| 834 |
gsave |
|---|
| 835 |
0.043137 0.68627 1 nodecolor |
|---|
| 836 |
2655 463 116.88 18.38 ellipse_path fill |
|---|
| 837 |
1 setlinewidth |
|---|
| 838 |
filled |
|---|
| 839 |
0.043137 0.68627 1 nodecolor |
|---|
| 840 |
2655 463 116.88 18.38 ellipse_path stroke |
|---|
| 841 |
0 0 0 nodecolor |
|---|
| 842 |
14 /Times-Roman set_font |
|---|
| 843 |
2580 459.4 moveto 150 (\(18\) PCR Synch Input) alignedtext |
|---|
| 844 |
grestore |
|---|
| 845 |
% (23) Ext Sync Input |
|---|
| 846 |
gsave |
|---|
| 847 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 848 |
2897 463 106.98 18.38 ellipse_path fill |
|---|
| 849 |
1 setlinewidth |
|---|
| 850 |
filled |
|---|
| 851 |
0.68627 0.56078 0.80392 nodecolor |
|---|
| 852 |
2897 463 106.98 18.38 ellipse_path stroke |
|---|
| 853 |
0 0 0 nodecolor |
|---|
| 854 |
14 /Times-Roman set_font |
|---|
| 855 |
2829 459.4 moveto 136 (\(23\) Ext Sync Input) alignedtext |
|---|
| 856 |
grestore |
|---|
| 857 |
endpage |
|---|
| 858 |
showpage |
|---|
| 859 |
grestore |
|---|
| 860 |
%%PageTrailer |
|---|
| 861 |
%%EndPage: 1 |
|---|
| 862 |
%%Trailer |
|---|
| 863 |
%%Pages: 1 |
|---|
| 864 |
%%BoundingBox: 36 36 3048 526 |
|---|
| 865 |
end |
|---|
| 866 |
restore |
|---|
| 867 |
%%EOF |
|---|