[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference napalm::guitar

Title:GUITARnotes - Where Every Note has Emotion
Notice:Discussion of the finer stringed instruments
Moderator:KDX200::COOPER
Created:Thu Aug 14 1986
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:3280
Total number of notes:61432

2658.0. "DIY Bass Amp Schematics" by TECRUS::ROST (Give me Beefheart or give me death) Fri Jan 08 1993 11:34

    The following is a schematic for an 80WRMS bass amplifier project from
    a fellow named Francis Deck.  He uses this with a home-made cabinet to
    play all his gigs after deciding that no amp on the market met his
    needs. 
    
    It is designed to drive an 8 ohm load only.  The interesting part is it
    uses ICs everywhere so it's relatively simple to put together.  It is
    pretty basic, volume and 2-band EQ but does have a limiter circuit
    built-in.  Not a beginner's project but if you know your way around
    circuits, it looks pretty easy to me.  
    
    The schematic is in PostScript format.
    
    						Brian
    
    
%!
% BASS AMP SCHEMATIC
% Francis J. Deck
%
%This file contains the complete schematic diagrams for my
%home-brew bass amp.  You'll need to find a Postscript printer
%such as Apple LaserWriter to print this out.
%
/WinDict 282 dict def WinDict begin
/SaveState { /LFrench save def } bind def
/RestoreState { LFrench restore } bind def
currentscreen
/proc exch def
/angle exch def
/frequency exch def
/mxDefault matrix defaultmatrix def
/mx1 matrix def
/mx2 matrix def
/mx3 matrix def
/x0 0 def
/y0 0 def
/x1 0 def
/y1 0 def
/hypot { dup mul exch dup mul add sqrt } def
/iRes 300 def
/iDevRes 72 0 mx1 defaultmatrix dtransform hypot def
/PenWidth iRes iDevRes div def 
/iPenGray 0 def 
/inch { 72 mul } def
/fLandscape false def 
/cxPaper 8.5 inch def 
/cyPaper 11 inch def 
/cxMargin .25 inch def 
/cyMargin .125 inch def 
/SetCTM
 {
 mx1 defaultmatrix setmatrix
 fLandscape { 0 cyPaper translate -90 rotate } if
 SetMap
 } def
/SetMap
 {
 fLandscape
 {cyMargin cxPaper cxMargin sub}
 {cxMargin cyPaper cyMargin sub}
 ifelse
 translate
 72 iRes div dup neg
 scale
 } def
/SetMetrics
 {
 /fLandscape exch 0 ne def
 /iRes exch def
 fLandscape
 {
 /cxPaper exch iRes div inch def 
 /cyPaper exch iRes div inch def 
 /cxMargin exch iRes div inch def 
 /cyMargin exch iRes div inch def 
 }{
 /cyPaper exch iRes div inch def 
 /cxPaper exch iRes div inch def 
 /cyMargin exch iRes div inch def 
 /cxMargin exch iRes div inch def 
 }
 ifelse
 SetCTM
 } def
/ClipBox
 {
 2 {.5 add 4 1 roll} repeat
 2 {.5 sub 4 1 roll} repeat
 /y1 exch def /x1 exch def
 /y0 exch def /x0 exch def
 newpath
 x0 y0 moveto
 x1 y0 lineto
 x1 y1 lineto
 x0 y1 lineto
 closepath
 clip
 } def
/mxCharToUser matrix def
/mxAlpha matrix def
/str 1 string def
/BreakChar 32 def
/fBreakExtra false def
/ratGdiDev { iDevRes iRes div } def
/Align { ratGdiDev mul round ratGdiDev div } def
/AlignXY { iRes iDevRes ne {Align exch Align exch } if } def
/Underline
 {
 currentpoint newpath
 cyUnderline setlinewidth
 x0 dxUnderline add y0 dyUnderline neg add AlignXY moveto
 dx dy rlineto stroke
 moveto
 } def
/Strikeout
 {
 currentpoint newpath
 cyUnderline setlinewidth
 x0 dxStrikeout add y0 dyStrikeout neg add AlignXY moveto
 dx dy rlineto stroke
 moveto
 } def
/SetUnderline 
 {
 dup /FontInfo get /UnderlineThickness known not
 { pop /Courier findfont } if
 /FontInfo get dup /UnderlinePosition get
 Sy mul 1000 div
 0 exch mxAlpha transform
 /dyUnderline exch def
 /dxUnderline exch def
 /UnderlineThickness get Sy mul 1000 div /cyUnderline exch def
 } def
/SetStrikeout
 {
 0 Sy 0.3 mul mxAlpha transform
 /dyStrikeout exch def
 /dxStrikeout exch def
 } def
/SetJustify
 {
 1 index 0 eq
 { pop pop /fBreakExtra false def }
 { div dup
 /dxBreak exch 1 mul def 
 /dyBreak exch 0 mul def 
 /fBreakExtra true def
 } ifelse
 } def
/StrBlt
 {
 grayCur setgray
 /str exch def
 /cbStr str length fBreakExtra not { dup 1 gt { 1 sub } if } if def 
 /dxGdi exch def
 alpha 0 ne
 { 
 dxGdi 0 mxAlpha transform 
 /dxGdi exch def /dyGdi exch def
 mxCharToUser transform AlignXY 
 /y0 exch def /x0 exch def
 str stringwidth
 neg dyGdi add cbStr div /dyExtra exch def
 neg dxGdi add cbStr div /dxExtra exch def
 }
 { 
 /y0 exch def
 
 /x0 exch def
 iRes iDevRes ne 
 { x0 y0 AlignXY /y0 exch def /x0 exch def } if
 str stringwidth pop
 neg dxGdi add cbStr div /dxExtra exch def /dyExtra 0 def
 } ifelse
 x0 y0 moveto
 fBreakExtra
 { dxBreak dyBreak BreakChar dxExtra dyExtra str awidthshow }
 { dxExtra dyExtra str ashow }
 ifelse
 fStrikeout fUnderline or
 {
 currentpoint
 exch dxExtra sub exch dyExtra sub
 y0 sub /dy exch def
 x0 sub /dx exch def
 fUnderline {Underline} if
 fStrikeout {Strikeout} if
 } if
 /fBreakExtra false def
 } bind def
/ANSIVec[
16#0 /grave
16#1 /acute
16#2 /circumflex
16#3 /tilde
16#4 /macron
16#5 /brev
16#6 /dotaccent
16#7 /dieresis
16#8 /ring
16#9 /cedilla
16#A /hungarumlaut
16#B /ogonek
16#C /caron
16#D /dotlessi
16#27 /quotesingle
16#60 /grave
16#7C /bar 
16#91 /quoteleft
16#92 /quoteright
16#93 /quotedblleft
16#94 /quotedblright
16#95 /bullet
16#96 /endash
16#97 /emdash
16#A0 /space
16#A4 /currency
16#A6 /brokenbar 
16#A7 /section
16#A8 /dieresis
16#A9 /copyright 
16#AA /ordfeminine
16#AB /guillemotleft
16#AC /bullet
16#AD /hyphen
16#AE /registered 
16#AF /macron
16#B0 /degree 
16#B1 /plusminus 
16#B2 /twosuperior 
16#B3 /threesuperior 
16#B4 /acute
16#B5 /mu 
16#B6 /paragraph
16#B7 /periodcentered
16#B8 /cedilla
16#B9 /onesuperior 
16#BA /ordmasculine
16#BB /guillemotright
16#BC /onequarter 
16#BD /onehalf 
16#BE /threequarters 
16#BF /questiondown
16#C0 /Agrave
16#C1 /Aacute
16#C2 /Acircumflex
16#C3 /Atilde
16#C4 /Adieresis
16#C5 /Aring
16#C6 /AE
16#C7 /Ccedilla
16#C8 /Egrave
16#C9 /Eacute
16#CA /Ecircumflex
16#CB /Edieresis
16#CC /Igrave
16#CD /Iacute
16#CE /Icircumflex
16#CF /Idieresis
16#D0 /Eth 
16#D1 /Ntilde
16#D2 /Ograve
16#D3 /Oacute
16#D4 /Ocircumflex
16#D5 /Otilde
16#D6 /Odieresis
16#D7 /multiply 
16#D8 /Oslash
16#D9 /Ugrave
16#DA /Uacute
16#DB /Ucircumflex
16#DC /Udieresis
16#DD /Yacute 
16#DE /Thorn 
16#DF /germandbls
16#E0 /agrave
16#E1 /aacute
16#E2 /acircumflex
16#E3 /atilde
16#E4 /adieresis
16#E5 /aring
16#E6 /ae
16#E7 /ccedilla
16#E8 /egrave
16#E9 /eacute
16#EA /ecircumflex
16#EB /edieresis
16#EC /igrave
16#ED /iacute
16#EE /icircumflex
16#EF /idieresis
16#F0 /eth 
16#F1 /ntilde
16#F2 /ograve
16#F3 /oacute
16#F4 /ocircumflex
16#F5 /otilde
16#F6 /odieresis
16#F7 /divide 
16#F8 /oslash
16#F9 /ugrave
16#FA /uacute
16#FB /ucircumflex
16#FC /udieresis
16#FD /yacute 
16#FE /thorn 
16#FF /ydieresis
] def
/reencdict 12 dict def
/IsChar {basefontdict /CharStrings get exch known} bind def
/MapCh {
 dup IsChar not 
 {pop /bullet} if 
 newfont /Encoding get 3 1 roll put 
 }bind def
/MapDegree{16#b0 /degree IsChar {/degree}{/ring} ifelse MapCh} bind def
/MapBB {16#a6 /brokenbar IsChar {/brokenbar}{/bar}ifelse MapCh} bind def
/ANSIFont
 {
 reencdict begin
 /newfontname exch def 
 /basefontname exch def
 FontDirectory newfontname known not
 {
 /basefontdict basefontname findfont def
 /newfont basefontdict maxlength dict def
 basefontdict
 { exch dup /FID ne
 { dup /Encoding eq
 { exch dup length array copy newfont 3 1 roll put }
 { exch newfont 3 1 roll put }
 ifelse
 }
 {pop pop}
 ifelse
 }forall
 newfont /FontName newfontname put
 127 1 159 {newfont /Encoding get exch /bullet put} for
 ANSIVec aload pop
 ANSIVec length 2 idiv
 {MapCh}repeat 
 MapDegree MapBB
 newfontname newfont definefont pop
 } if
 newfontname
 end
 } bind def
/font
 {
 9 1 roll
 0 ne {0} {1} ifelse 
 /grayCur exch def
 0 ne /fStrikeout exch def
 0 ne /fUnderline exch def
 /Sy exch def
 /Sx exch def
 /beta exch 10.0 div def
 /alpha exch 10.0 div def
 /BreakChar exch def
 alpha mxAlpha rotate pop
 findfont dup
 Sx Sy neg mx1 scale
 alpha mx2 rotate
 mx3 concatmatrix
 makefont setfont
 
 dup /FontBBox get
 dup 3 get dup 3 2 roll 1 get sub div
 Sy mul /dyFromTop exch def
 0 dyFromTop mx1 translate alpha mx2 rotate mxCharToUser concatmatrix pop
 0 0 mxCharToUser transform mxCharToUser translate pop
 SetUnderline
 SetStrikeout
 } def
/eject { showpage SetCTM PenWidth setlinewidth } def
/m matrix def 
/cellsize 0 def 
/bitison
 {
 /iy exch def
 /ix exch def
 pat iy 7 and get 
 1 7 ix 7 and sub bitshift
 and 
 0 eq 
 } bind def
/spotfunction
 {
 exch
 1 add 4 mul cvi 
 exch
 1 add 4 mul cvi 
 bitison 
 { /onbits onbits 1 add def 1 }
 { /offbits offbits 1 add def 0 }
 ifelse
 } bind def
/PatGray { offbits offbits onbits add div setgray } def
/SolidGray { iBrushGray setgray } def
/PenGray { iPenGray setgray } def
/SetPattern
 {
 /pat exch def
 /cellsize iRes 300 16 div div def
 /rm 90 matrix rotate def
 /sm cellsize dup matrix scale def
 sm rm matrix concatmatrix
 matrix currentmatrix
 m concatmatrix pop
 1 0 m dtransform /dy exch def /dx exch def
 /onbits 0 def
 /offbits 0 def
 iDevRes dx dy hypot div 
 dx dy atan /spotfunction load setscreen
 {} settransfer
 0 setgray
 /fGrayScreen false def
 } bind def
/min { 1 index 1 index gt { exch } if pop } def
/NonZero { dup 0 eq { pop 1 } if } def
/sto { exch def } def
/iBrush 1 def 
/iPen 0 def 
/fGrayScreen true def 
/iBrushGray 0 def 
/picstr 1 string def
/cx 0 def
/cy 0 def
/FillPoly
 {
 iBrush 0 eq { SolidGray fill 0 setgray } if 
 iBrush 1 eq {} if 
 iBrush 2 eq {} if 
 iBrush 3 eq { PatGray fill 0 setgray } if 
 } def
/EOFillPoly
 {
 iBrush 0 eq { SolidGray eofill 0 setgray } if 
 iBrush 1 eq {} if 
 iBrush 2 eq {} if 
 iBrush 3 eq { PatGray eofill 0 setgray } if 
 } def
/GDIStroke
 {
 iPen 0 ge iPen 5 lt and
 { PenGray stroke 0 setgray }
 { newpath } 
 ifelse
 } def
/GetAngle
 {
 Ty sub
 Sy div
 exch
 Tx sub
 Sx div
 atan
 } def
/SetBrush
 {
 /iBrush exch def
 iBrush 0 eq
 {
 /iBrushGray exch 1000 div def
 fGrayScreen not 
 { 
 frequency angle WinDict /proc get setscreen 
 } if
 /fGrayScreen true def
 0 setgray
 } if
 } def
/GapWidth { iRes 0.0825 mul PenWidth mul cvi } def
/DotWidth { iRes 0.020 mul PenWidth mul cvi } def
/DashWidth { iRes 0.125 mul PenWidth mul cvi } def
/SetPen
 {
 /iPenGray exch 1000 div def
 /PenWidth exch def
 /iPen exch def
 iPen 0 ge
 {
 iPen 0 eq 
 { [] 0 setdash } if
 iPen 1 eq 
 { [DashWidth GapWidth] 0 setdash } if
 iPen 2 eq 
 { [DotWidth GapWidth] 0 setdash } if
 iPen 3 eq 
 { [DashWidth GapWidth DotWidth GapWidth] 0 setdash } if
 iPen 4 eq 
 { [DashWidth GapWidth DotWidth GapWidth DotWidth GapWidth] 0 setdash} if
 } if
 PenWidth setlinewidth
 } bind def
/EBox {
 /y1 sto /x1 sto
 /y0 sto /x0 sto
 /Sx x1 x0 sub 2 div abs NonZero def
 /Sy y1 y0 sub 2 div abs NonZero def
 Sx Sy min /r sto
 x0 x1 add 2 div /Tx sto
 y0 y1 add 2 div /Ty sto
 Tx Ty translate
 Sx r div Sy r div scale
 0 0 r
 }def
/ABox
 {
 /y3 sto /x3 sto
 /y2 sto /x2 sto
 EBox
 
 x0 x1 eq y0 y1 eq or
 {
 y0 y1 eq
 { x2 x3 le { 90 180 } { 0 90 } ifelse }
 { y2 y3 le { 0 90 } { 270 360 } ifelse }
 ifelse
 }
 {x3 y3 GetAngle x2 y2 GetAngle}
 ifelse
 }def
/GDIEllipse
 {
 gsave EBox
 newpath 0 360 arc closepath SetCTM
 gsave FillPoly grestore GDIStroke
 grestore
 } def
/GDIArc {gsave ABox newpath arc SetCTM GDIStroke grestore} def
/GDIPie
 {
 gsave ABox newpath 0 0 moveto arc closepath SetCTM
 gsave FillPoly grestore GDIStroke grestore
 } def
/Box
 {
 save 5 1 roll
 dtransform exch 1 sub exch 1 sub idtransform
 /y2 sto /x2 sto
 newpath AlignXY moveto
 x2 0 rlineto
 0 y2 rlineto
 x2 neg 0 rlineto
 closepath FillPoly restore
 } bind def
/GDIRect
 {
 SaveState
 /y1 sto /x1 sto
 /y0 sto /x0 sto
 newpath
 x0 y0 moveto
 x0 y1 lineto
 x1 y1 lineto
 x1 y0 lineto
 closepath
 gsave FillPoly grestore GDIStroke
 RestoreState
 0 setgray 
 } bind def
/GDIRoundRect {
 SaveState
 /y2 sto /x2 sto
 /y1 sto /x1 sto
 /y0 sto /x0 sto
 newpath
 x0 x2 add y0 moveto
 x1 y0 x1 y1 x2 arcto 4 { pop } repeat
 x1 y1 x0 y1 x2 arcto 4 { pop } repeat
 x0 y1 x0 y0 x2 arcto 4 { pop } repeat
 x0 y0 x1 y0 x2 arcto 4 { pop } repeat
 closepath
 gsave FillPoly grestore GDIStroke
 RestoreState
 0 setgray
} bind def
/StartFill
 {
 newpath
 moveto
 } def
/PolyPoints
 {
 { lineto } repeat
 } def
/EndFill
 {
 closepath
 gsave
 0 ne {EOFillPoly} {FillPoly} ifelse
 grestore
 GDIStroke
 } def
/GDIPolyLine
 {
 newpath
 3 1 roll
 .5 add exch .5 add exch moveto
 1 sub
 {.5 add exch .5 add exch lineto } repeat
 GDIStroke
 clear
 } bind def
/GDILine
 {
 SaveState
 newpath
 4 2 roll
 moveto
 lineto
 GDIStroke
 RestoreState
 } def
/_S
 {
 SaveState
 gsave
 0 eq
 {PenGray}
 {
 iBrush 0 eq {SolidGray} if 
 iBrush 1 eq {0 setgray} if 
 iBrush 2 eq iBrush 3 eq or {PatGray} if 
 1 setlinewidth
 [] 0 setdash
 } ifelse
 exch /y0 exch def
 {
 y0 moveto
 y0 lineto
 stroke
 } repeat
 PenWidth setlinewidth
 0 setgray
 grestore
 RestoreState
 } bind def
/cbRun 0 def
/cbPat 0 def
/cRep 0 def
/rgbRun 1024 string def
/rgbByte 1 string def
/GetByte { currentfile rgbByte readhexstring pop 0 get } bind def
/GetWord { GetByte 256 mul GetByte add } bind def
/GetString { currentfile exch readhexstring pop pop } bind def
/RepString
 {
 /cbRun cbPat cRep mul cvi store
 rgbRun 0 cbPat getinterval GetString
 cbPat
 {
 dup 2 mul exch rgbRun exch
 rgbRun 0 2 index getinterval
 putinterval
 dup 16 ge {exit} if
 } loop
 /cbPat exch def
 0 cbPat cbRun 1 sub 
 { rgbRun exch rgbRun 0 cbPat getinterval putinterval } for
 rgbRun 0 cbRun getinterval
 } bind def
/GetRun
 {
 /cRep GetWord def
 /cbPat GetByte def
 cbPat 0 eq { rgbRun 0 cRep getinterval GetString } { RepString } ifelse
 } bind def
/Scan
 {
 /cx exch cvi def
 /y0 exch cvi def
 /x0 exch cvi def
 gsave
 x0 y0 translate
 save
 cx 1 scale
 cx 1 false [cx 0 0 1 0 0] { GetRun } imagemask
 restore
 grestore
 } bind def
 /BitBlt
 {
 SaveState
 /cy exch cvi def
 /cx exch cvi def
 /y0 exch cvi def
 /x0 exch cvi def
 /picstr cx 7 add 8 idiv string def 
 gsave
 0 setgray 
 x0 y0 translate
 cx cy false [1 0 0 1 0 0] {currentfile picstr readhexstring pop} imagemask
 grestore
 RestoreState
 }def
/OpaqueBox
 {
 /cy exch def
 /cx exch def
 /y0 exch def
 /x0 exch def
 gsave
 1 setgray
 newpath
 x0 y0 moveto
 x0 cx add y0 lineto
 x0 cx add y0 cy add lineto
 x0 y0 cy add lineto
 closepath
 fill
 grestore
 } bind def
statusdict begin /letter end
105 90 3300 2550 300 1 SetMetrics

SaveState
statusdict begin /manualfeed false def end
statusdict begin 0 setjobtimeout end
userdict begin /#copies 1 def end
1 setlinecap
1 setlinejoin
0 1 0 SetPen
gsave 195 943 241 974 ClipBox
195 943 195 973 225 973 240 958 225 943 196 943 6 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
105 943 72 33 OpaqueBox
105 967 72 (Input) StrBlt
grestore
gsave 270 1018 300 1079 ClipBox
285 1078 299 1072 270 1060 299 1048 270 1036 299 1024 285 1018 285 1018 8 GDIPolyLine
grestore
gsave 240 958 287 1019 ClipBox
240 958 285 958 285 1018 285 1018 4 GDIPolyLine
grestore
gsave 285 1078 287 1154 ClipBox
285 1078 285 1153 285 1153 3 GDIPolyLine
grestore
gsave 270 1138 300 1169 ClipBox
299 1138 270 1168 270 1168 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
314 1042 60 (R11) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
314 1075 45 (1M) StrBlt
grestore
gsave 285 958 361 959 ClipBox
285 958 359 958 359 958 3 GDIPolyLine
grestore
gsave 359 943 361 974 ClipBox
359 943 359 973 359 973 3 GDIPolyLine
grestore
gsave 374 943 376 974 ClipBox
374 943 374 973 374 973 3 GDIPolyLine
grestore
gsave 374 958 436 1019 ClipBox
374 958 434 958 434 1018 434 1018 4 GDIPolyLine
grestore
gsave 419 1018 450 1079 ClipBox
434 1078 449 1072 419 1060 449 1048 419 1036 449 1024 434 1018 434 1018 8 GDIPolyLine
grestore
gsave 434 1078 436 1154 ClipBox
434 1078 434 1153 434 1153 3 GDIPolyLine
grestore
gsave 419 1138 450 1169 ClipBox
449 1138 419 1168 419 1168 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
344 848 60 (C11) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
344 881 45 (0.1) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
344 914 64 (Poly) StrBlt
grestore
gsave 434 958 616 959 ClipBox
434 958 614 958 614 958 3 GDIPolyLine
grestore
gsave 614 928 735 1049 ClipBox
614 928 614 1048 734 988 615 929 4 GDIPolyLine
grestore
gsave 623 963 653 964 ClipBox
623 963 651 963 651 963 3 GDIPolyLine
grestore
gsave 637 950 639 978 ClipBox
637 950 637 977 637 977 3 GDIPolyLine
grestore
gsave 623 1018 653 1019 ClipBox
623 1018 651 1018 651 1018 3 GDIPolyLine
grestore
gsave 793 1228 824 1289 ClipBox
808 1288 823 1282 793 1270 823 1258 793 1246 823 1234 808 1228 808 1228 8 GDIPolyLine
grestore
gsave 793 1347 824 1408 ClipBox
808 1407 823 1401 793 1389 823 1377 793 1365 823 1353 808 1347 808 1347 8 GDIPolyLine
grestore
gsave 808 1288 810 1348 ClipBox
808 1288 808 1347 808 1347 3 GDIPolyLine
grestore
gsave 808 1407 810 1468 ClipBox
808 1407 808 1467 808 1467 3 GDIPolyLine
grestore
gsave 793 1467 825 1468 ClipBox
793 1467 823 1467 823 1467 3 GDIPolyLine
grestore
gsave 793 1482 825 1483 ClipBox
793 1482 823 1482 823 1482 3 GDIPolyLine
grestore
gsave 808 1482 900 1528 ClipBox
808 1482 808 1527 898 1527 898 1527 4 GDIPolyLine
grestore
gsave 898 1512 959 1543 ClipBox
958 1527 952 1542 940 1512 928 1542 916 1512 904 1542 898 1527 898 1527 8 GDIPolyLine
grestore
gsave 928 1542 930 1633 ClipBox
928 1542 928 1632 928 1632 3 GDIPolyLine
grestore
0 0 SetBrush
914 1570 StartFill
914 1570 928 1556 942 1570 928 1542 4 PolyPoints
1 EndFill
gsave 913 1617 944 1648 ClipBox
943 1617 913 1647 913 1647 3 GDIPolyLine
grestore
0 0 SetBrush
5 1 0 SetPen
890 1557 StartFill
890 1557 891 1557 894 1557 894 1558 895 1558 895 1559 896 1559 896 1560 897 1560 897 1561 898 1561 898 1564 898 1565 898 1568 897 1568 897 1569 896 1569 896 1570 895 1570 895 1571 894 1571 894 1572 891 1572 890 1572 887 1572 887 1571 886 1571 886 1570 885 1570 885 1569 884 1569 884 1568 883 1568 883 1565 883 1564 883 1561 884 1561 884 1560 885 1560 885 1559 886 1559 886 1558 887 1558 887 1557 44 PolyPoints
1 EndFill
0 1 0 SetPen
gsave 808 988 885 989 ClipBox
808 988 883 988 883 988 3 GDIPolyLine
grestore
gsave 883 973 944 1004 ClipBox
943 988 937 973 925 1003 913 973 901 1003 889 973 883 988 883 988 8 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
464 1042 60 (R12) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
464 1075 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
838 1252 60 (R13) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
838 1285 71 (100k) StrBlt
grestore
gsave 569 1018 809 1319 ClipBox
808 1318 569 1318 569 1018 614 1018 614 1018 5 GDIPolyLine
grestore
gsave 734 988 810 1229 ClipBox
734 988 808 988 808 1228 808 1228 4 GDIPolyLine
grestore
gsave 569 1168 661 1169 ClipBox
569 1168 659 1168 659 1168 3 GDIPolyLine
grestore
gsave 659 1153 661 1184 ClipBox
659 1153 659 1183 659 1183 3 GDIPolyLine
grestore
gsave 674 1153 676 1184 ClipBox
674 1153 674 1183 674 1183 3 GDIPolyLine
grestore
gsave 674 1168 810 1169 ClipBox
674 1168 808 1168 808 1168 3 GDIPolyLine
grestore
gsave 943 988 1019 1528 ClipBox
943 988 1018 988 1018 1527 958 1527 958 1527 5 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
838 1371 60 (R14) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
838 1405 54 (500) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
883 922 60 (R15) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
883 956 54 (500) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
958 1581 60 (R16) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
958 1614 58 (50K) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
958 1648 134 ("Volume") StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
629 1222 60 (C12) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
629 1255 101 (100 pF) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
719 1461 60 (C13) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
719 1495 36 (10) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
823 1461 19 (+) StrBlt
grestore
gsave 1138 973 1199 1004 ClipBox
1198 988 1192 973 1180 1003 1168 973 1156 1003 1144 973 1138 988 1138 988 8 GDIPolyLine
grestore
gsave 1332 973 1393 1004 ClipBox
1392 988 1386 1003 1374 973 1362 1003 1350 973 1338 1003 1332 988 1332 988 8 GDIPolyLine
grestore
gsave 1527 973 1588 1004 ClipBox
1587 988 1581 973 1569 1003 1557 973 1545 1003 1533 973 1527 988 1527 988 8 GDIPolyLine
grestore
gsave 1018 988 1140 989 ClipBox
1018 988 1138 988 1138 988 3 GDIPolyLine
grestore
gsave 1198 988 1334 989 ClipBox
1198 988 1332 988 1332 988 3 GDIPolyLine
grestore
gsave 1392 988 1529 989 ClipBox
1392 988 1527 988 1527 988 3 GDIPolyLine
grestore
gsave 1228 988 1275 1094 ClipBox
1228 988 1228 1093 1273 1093 1273 1093 4 GDIPolyLine
grestore
gsave 1273 1078 1275 1109 ClipBox
1273 1078 1273 1108 1273 1108 3 GDIPolyLine
grestore
gsave 1288 1078 1290 1109 ClipBox
1288 1078 1288 1108 1288 1108 3 GDIPolyLine
grestore
gsave 1288 1093 1439 1094 ClipBox
1288 1093 1437 1093 1437 1093 3 GDIPolyLine
grestore
gsave 1437 1078 1439 1109 ClipBox
1437 1078 1437 1108 1437 1108 3 GDIPolyLine
grestore
gsave 1452 1078 1454 1109 ClipBox
1452 1078 1452 1108 1452 1108 3 GDIPolyLine
grestore
gsave 1452 988 1484 1094 ClipBox
1452 1093 1482 1093 1482 988 1482 988 4 GDIPolyLine
grestore
gsave 1362 1003 1364 1094 ClipBox
1362 1003 1362 1093 1362 1093 3 GDIPolyLine
grestore
0 0 SetBrush
1348 1031 StartFill
1348 1031 1362 1017 1376 1031 1362 1003 4 PolyPoints
1 EndFill
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1138 922 60 (R21) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1138 956 35 (1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1317 878 60 (R22) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1317 911 53 (50k) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1317 944 98 ("Bass") StrBlt
grestore
0 0 SetBrush
5 1 0 SetPen
1324 1018 StartFill
1324 1018 1325 1018 1328 1018 1328 1019 1329 1019 1329 1020 1330 1020 1330 1021 1331 1021 1331 1022 1332 1022 1332 1025 1332 1026 1332 1029 1331 1029 1331 1030 1330 1030 1330 1031 1329 1031 1329 1032 1328 1032 1328 1033 1325 1033 1324 1033 1321 1033 1321 1032 1320 1032 1320 1031 1319 1031 1319 1030 1318 1030 1318 1029 1317 1029 1317 1026 1317 1025 1317 1022 1318 1022 1318 1021 1319 1021 1319 1020 1320 1020 1320 1019 1321 1019 1321 1018 44 PolyPoints
1 EndFill
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1527 922 60 (R23) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1527 956 35 (1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1243 1147 60 (C21) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1243 1180 45 (0.1) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1422 1147 60 (C22) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1422 1180 45 (0.1) StrBlt
grestore
0 1 0 SetPen
gsave 1332 1213 1363 1274 ClipBox
1347 1273 1362 1267 1332 1255 1362 1243 1332 1231 1362 1219 1347 1213 1347 1213 8 GDIPolyLine
grestore
gsave 1332 1362 1363 1423 ClipBox
1347 1422 1362 1416 1332 1404 1362 1392 1332 1380 1362 1368 1347 1362 1347 1362 8 GDIPolyLine
grestore
gsave 1347 1093 1349 1214 ClipBox
1347 1093 1347 1213 1347 1213 3 GDIPolyLine
grestore
gsave 1347 1273 1349 1363 ClipBox
1347 1273 1347 1362 1347 1362 3 GDIPolyLine
grestore
gsave 1018 1527 1140 1528 ClipBox
1018 1527 1138 1527 1138 1527 3 GDIPolyLine
grestore
gsave 1153 1512 1155 1543 ClipBox
1153 1512 1153 1542 1153 1542 3 GDIPolyLine
grestore
gsave 1138 1512 1140 1543 ClipBox
1138 1512 1138 1542 1138 1542 3 GDIPolyLine
grestore
gsave 1317 1512 1378 1543 ClipBox
1377 1527 1371 1512 1359 1542 1347 1512 1335 1542 1323 1512 1317 1527 1317 1527 8 GDIPolyLine
grestore
gsave 1347 1422 1349 1513 ClipBox
1347 1512 1347 1422 1347 1422 3 GDIPolyLine
grestore
0 0 SetBrush
1361 1484 StartFill
1361 1484 1347 1498 1333 1484 1347 1512 4 PolyPoints
1 EndFill
gsave 1153 1527 1319 1528 ClipBox
1153 1527 1317 1527 1317 1527 3 GDIPolyLine
grestore
gsave 1377 1527 1544 1528 ClipBox
1377 1527 1542 1527 1542 1527 3 GDIPolyLine
grestore
gsave 1542 1512 1544 1543 ClipBox
1542 1512 1542 1542 1542 1542 3 GDIPolyLine
grestore
gsave 1557 1512 1559 1543 ClipBox
1557 1512 1557 1542 1557 1542 3 GDIPolyLine
grestore
gsave 1557 988 1693 1528 ClipBox
1587 988 1692 988 1692 1527 1557 1527 1557 1527 5 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1377 1237 60 (R24) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1377 1270 62 (1.5k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1377 1386 60 (R25) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1377 1420 62 (5.1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1108 1461 60 (C23) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1108 1495 63 (0.01) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1512 1461 60 (C24) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1512 1495 63 (0.01) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1317 1581 60 (R26) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1317 1614 58 (50K) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1317 1648 116 ("Treble") StrBlt
grestore
0 0 SetBrush
5 1 0 SetPen
1309 1482 StartFill
1309 1482 1310 1482 1313 1482 1313 1483 1314 1483 1314 1484 1315 1484 1315 1485 1316 1485 1316 1486 1317 1486 1317 1489 1317 1490 1317 1493 1316 1493 1316 1494 1315 1494 1315 1495 1314 1495 1314 1496 1313 1496 1313 1497 1310 1497 1309 1497 1306 1497 1306 1496 1305 1496 1305 1495 1304 1495 1304 1494 1303 1494 1303 1493 1302 1493 1302 1490 1302 1489 1302 1486 1303 1486 1303 1485 1304 1485 1304 1484 1305 1484 1305 1483 1306 1483 1306 1482 44 PolyPoints
1 EndFill
0 1 0 SetPen
gsave 1826 1288 1947 1408 ClipBox
1826 1407 1826 1288 1946 1347 1827 1406 4 GDIPolyLine
grestore
gsave 1836 1372 1865 1373 ClipBox
1836 1372 1863 1372 1863 1372 3 GDIPolyLine
grestore
gsave 1849 1359 1851 1387 ClipBox
1849 1386 1849 1359 1849 1359 3 GDIPolyLine
grestore
gsave 1836 1317 1865 1318 ClipBox
1836 1317 1863 1317 1863 1317 3 GDIPolyLine
grestore
gsave 1347 1318 1828 1319 ClipBox
1347 1318 1826 1318 1826 1318 3 GDIPolyLine
grestore
gsave 1692 988 2007 1348 ClipBox
1692 988 2006 988 2006 1347 1946 1347 1946 1347 5 GDIPolyLine
grestore
gsave 1767 1377 1827 1453 ClipBox
1826 1377 1767 1377 1767 1452 1767 1452 4 GDIPolyLine
grestore
gsave 1752 1437 1783 1468 ClipBox
1782 1437 1752 1467 1752 1467 3 GDIPolyLine
grestore
gsave 2141 1333 2202 1363 ClipBox
2201 1347 2195 1333 2183 1362 2171 1333 2159 1362 2147 1333 2141 1347 2141 1347 8 GDIPolyLine
grestore
gsave 2500 1333 2561 1363 ClipBox
2560 1347 2554 1333 2542 1362 2530 1333 2518 1362 2506 1333 2500 1347 2500 1347 8 GDIPolyLine
grestore
gsave 2380 1452 2501 1573 ClipBox
2380 1572 2380 1452 2500 1512 2381 1571 4 GDIPolyLine
grestore
gsave 2390 1537 2419 1538 ClipBox
2390 1537 2417 1537 2417 1537 3 GDIPolyLine
grestore
gsave 2403 1523 2405 1552 ClipBox
2403 1551 2403 1523 2403 1523 3 GDIPolyLine
grestore
gsave 2390 1482 2419 1483 ClipBox
2390 1482 2417 1482 2417 1482 3 GDIPolyLine
grestore
gsave 2305 1542 2381 1603 ClipBox
2380 1542 2305 1542 2305 1602 2305 1602 4 GDIPolyLine
grestore
gsave 2290 1587 2321 1618 ClipBox
2320 1587 2290 1617 2290 1617 3 GDIPolyLine
grestore
gsave 2201 1347 2502 1348 ClipBox
2201 1347 2500 1347 2500 1347 3 GDIPolyLine
grestore
gsave 2006 1347 2142 1348 ClipBox
2141 1347 2006 1347 2006 1347 3 GDIPolyLine
grestore
gsave 2305 1347 2382 1483 ClipBox
2305 1347 2305 1482 2380 1482 2380 1482 4 GDIPolyLine
grestore
gsave 2500 1512 2786 1513 ClipBox
2500 1512 2784 1512 2784 1512 3 GDIPolyLine
grestore
gsave 2784 1497 2830 1528 ClipBox
2784 1497 2784 1527 2814 1527 2829 1512 2814 1497 2785 1497 6 GDIPolyLine
grestore
gsave 2560 1347 2682 1513 ClipBox
2560 1347 2680 1347 2680 1512 2680 1512 4 GDIPolyLine
grestore
gsave 2380 1198 2502 1348 ClipBox
2380 1347 2380 1198 2500 1198 2500 1198 4 GDIPolyLine
grestore
gsave 2500 1183 2502 1214 ClipBox
2500 1183 2500 1213 2500 1213 3 GDIPolyLine
grestore
gsave 2515 1183 2517 1214 ClipBox
2515 1183 2515 1213 2515 1213 3 GDIPolyLine
grestore
gsave 2515 1198 2682 1348 ClipBox
2515 1198 2680 1198 2680 1347 2680 1347 4 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2141 1282 60 (R31) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2141 1315 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2500 1282 60 (R32) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2500 1315 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2470 1117 60 (C31) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2470 1150 101 (100 pF) StrBlt
grestore
gsave 2395 554 2516 675 ClipBox
2515 674 2515 554 2395 614 2514 673 4 GDIPolyLine
grestore
gsave 2478 639 2507 640 ClipBox
2506 639 2478 639 2478 639 3 GDIPolyLine
grestore
gsave 2492 625 2494 654 ClipBox
2492 653 2492 625 2492 625 3 GDIPolyLine
grestore
gsave 2478 584 2507 585 ClipBox
2506 584 2478 584 2478 584 3 GDIPolyLine
grestore
gsave 2515 644 2577 705 ClipBox
2515 644 2575 644 2575 704 2575 704 4 GDIPolyLine
grestore
gsave 2560 689 2591 720 ClipBox
2590 689 2560 719 2560 719 3 GDIPolyLine
grestore
gsave 2605 464 2666 495 ClipBox
2665 479 2659 494 2647 464 2635 494 2623 464 2611 494 2605 479 2605 479 8 GDIPolyLine
grestore
gsave 2770 464 2830 495 ClipBox
2829 479 2823 494 2811 464 2799 494 2787 464 2776 494 2770 479 2770 479 8 GDIPolyLine
grestore
gsave 2380 464 2441 495 ClipBox
2440 479 2434 494 2422 464 2410 494 2398 464 2386 494 2380 479 2380 479 8 GDIPolyLine
grestore
gsave 2515 494 2636 585 ClipBox
2635 494 2635 584 2515 584 2515 584 4 GDIPolyLine
grestore
0 0 SetBrush
2621 522 StartFill
2621 522 2635 508 2649 522 2635 494 4 PolyPoints
1 EndFill
gsave 2665 479 2771 480 ClipBox
2770 479 2665 479 2665 479 3 GDIPolyLine
grestore
gsave 2440 479 2606 480 ClipBox
2605 479 2440 479 2440 479 3 GDIPolyLine
grestore
gsave 2290 479 2397 615 ClipBox
2380 479 2290 479 2290 614 2395 614 2395 614 5 GDIPolyLine
grestore
gsave 2186 599 2247 630 ClipBox
2246 614 2240 629 2228 599 2216 629 2204 599 2192 629 2186 614 2186 614 8 GDIPolyLine
grestore
gsave 2246 614 2291 615 ClipBox
2290 614 2246 614 2246 614 3 GDIPolyLine
grestore
gsave 2096 614 2187 750 ClipBox
2186 614 2096 614 2096 749 2156 749 2156 749 5 GDIPolyLine
grestore
1 SetBrush
0 setlinecap
0 setlinejoin
2156 734 2306 855 GDIRect
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2171 773 46 (AC) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2171 833 46 (AC) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2261 773 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2261 833 11 (-) StrBlt
grestore
1 setlinecap
1 setlinejoin
gsave 2096 824 2157 899 ClipBox
2156 824 2096 824 2096 898 2096 898 4 GDIPolyLine
grestore
gsave 2081 883 2112 914 ClipBox
2111 883 2081 913 2081 913 3 GDIPolyLine
grestore
gsave 2305 824 2457 825 ClipBox
2305 824 2455 824 2455 824 3 GDIPolyLine
grestore
gsave 2455 809 2457 840 ClipBox
2455 809 2455 839 2455 839 3 GDIPolyLine
grestore
0 0 SetBrush
2485 809 StartFill
2485 809 2485 839 2455 824 3 PolyPoints
1 EndFill
gsave 2305 764 2546 825 ClipBox
2305 764 2545 764 2545 824 2485 824 2485 824 5 GDIPolyLine
grestore
gsave 2425 928 2486 959 ClipBox
2485 943 2479 928 2467 958 2455 928 2443 958 2431 928 2425 943 2425 943 8 GDIPolyLine
grestore
gsave 2455 854 2472 914 ClipBox
2455 913 2470 854 2470 854 3 GDIPolyLine
grestore
0 0 SetBrush
2475 889 StartFill
2475 889 2458 900 2449 883 2455 913 4 PolyPoints
1 EndFill
gsave 2485 943 2891 944 ClipBox
2485 943 2889 943 2889 943 3 GDIPolyLine
grestore
2 1 0 SetPen
gsave 2395 779 2531 1004 ClipBox
2462 779 2456 779 2455 780 2452 780 2450 781 2448 781 2447 782 2446 782 
2445 783 2444 783 2442 784 2441 784 2439 786 2438 786 2435 789 2434 789 
2429 794 2427 795 2426 796 2426 797 2423 800 2422 802 2418 806 2417 808 
2415 810 2415 812 2414 813 2413 815 2412 816 2411 818 2411 819 2410 821 
2409 822 2408 824 2408 825 2407 827 2406 828 2406 830 2405 832 2405 833 
2404 835 2403 837 2403 838 2402 840 2402 842 2401 844 2401 845 2400 847 
2400 849 2399 851 50 GDIPolyLine
2399 851 2399 855 2398 856 2398 860 2397 862 2397 866 2396 868 2396 875 
2395 877 2395 891 2395 891 2395 905 2396 907 2396 914 2397 916 2397 920 
2398 922 2398 926 2399 927 2399 931 2400 933 2400 935 2401 937 2401 938 
2402 940 2402 942 2403 944 2403 945 2404 947 2405 949 2405 950 2406 952 
2406 954 2407 955 2408 957 2408 958 2409 960 2410 961 2411 963 2411 964 
2412 966 2413 967 2414 969 2415 970 2415 972 2417 974 2418 976 2422 980 
2423 982 2426 985 50 GDIPolyLine
2426 985 2426 986 2427 987 2429 988 2434 993 2435 993 2438 996 2439 996 
2441 998 2442 998 2444 999 2445 999 2446 1000 2447 1000 2448 1001 2450 1001 
2452 1002 2455 1002 2456 1003 2462 1003 2463 1003 2469 1003 2470 1002 2473 1002 
2475 1001 2477 1001 2478 1000 2479 1000 2480 999 2481 999 2483 998 2484 998 
2486 996 2487 996 2490 993 2491 993 2496 988 2498 987 2499 986 2499 985 
2502 982 2503 980 2507 976 2508 974 2510 972 2510 970 2511 969 2512 967 
2513 966 2514 964 50 GDIPolyLine
2514 964 2514 963 2515 961 2516 960 2517 958 2517 957 2518 955 2519 954 
2519 952 2520 950 2520 949 2521 947 2522 945 2522 944 2523 942 2523 940 
2524 938 2524 937 2525 935 2525 933 2526 931 2526 927 2527 926 2527 922 
2528 920 2528 916 2529 914 2529 907 2530 905 2530 891 2530 891 2530 877 
2529 875 2529 868 2528 866 2528 862 2527 860 2527 856 2526 855 2526 851 
2525 849 2525 847 2524 845 2524 844 2523 842 2523 840 2522 838 2522 837 
2521 835 2520 833 50 GDIPolyLine
2520 833 2520 832 2519 830 2519 828 2518 827 2517 825 2517 824 2516 822 
2515 821 2514 819 2514 818 2513 816 2512 815 2511 813 2510 812 2510 810 
2508 808 2507 806 2503 802 2502 800 2499 797 2499 796 2498 795 2496 794 
2491 789 2490 789 2487 786 2486 786 2484 784 2483 784 2481 783 2480 783 
2479 782 2478 782 2477 781 2475 781 2473 780 2470 780 2469 779 2463 779 
2463 779 41 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2844 1521 98 (Output) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2770 413 60 (R41) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2770 447 35 (1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2500 369 60 (R42) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2500 402 53 (50k) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2500 435 235 ("Limit threshold") StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2380 413 60 (R42) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2380 447 35 (1k) StrBlt
grestore
0 0 SetBrush
5 1 0 SetPen
2597 509 StartFill
2597 509 2598 509 2601 509 2601 510 2602 510 2602 511 2603 511 2603 512 2604 512 2604 513 2605 513 2605 516 2605 517 2605 520 2604 520 2604 521 2603 521 2603 522 2602 522 2602 523 2601 523 2601 524 2598 524 2597 524 2594 524 2594 523 2593 523 2593 522 2592 522 2592 521 2591 521 2591 520 2590 520 2590 517 2590 516 2590 513 2591 513 2591 512 2592 512 2592 511 2593 511 2593 510 2594 510 2594 509 44 PolyPoints
1 EndFill
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2186 548 60 (R43) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2186 581 54 (100) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2186 683 46 (DB) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2186 716 100 (DB001) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2590 863 35 (OI) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2590 896 141 (CLM6000) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
479 411 479 (Electric Bass Preamp) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
grestore
gsave 45 135 3040 2232 ClipBox
479 510 346 (Francis J. Deck) StrBlt
grestore
0 1 0 SetPen
gsave 2380 943 2427 1199 ClipBox
2380 1198 2380 943 2425 943 2425 943 4 GDIPolyLine
grestore
gsave 2680 479 2890 1199 ClipBox
2829 479 2889 479 2889 1198 2680 1198 2680 1198 5 GDIPolyLine
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
674 919 61 (A1) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1886 1458 61 (A2) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2440 1638 61 (A3) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2395 695 61 (A4) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1198 1716 123 (NOTES:) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
grestore
gsave 45 135 3040 2232 ClipBox
1198 1782 565 (        Dot indicates clockwise rotation of) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1198 1815 279 (        potentiometer.) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
grestore
gsave 45 135 3040 2232 ClipBox
1198 1882 625 (        All resistances in Ohms, capacitances) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1198 1915 356 (        in uF, unless noted.) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
grestore
gsave 45 135 3040 2232 ClipBox
1198 1982 610 (        A1-A4 = LM837 \(preferred\) or LF347.) StrBlt
grestore
eject
RestoreState

SaveState
statusdict begin /manualfeed false def end
statusdict begin 0 setjobtimeout end
userdict begin /#copies 1 def end
0 1 0 SetPen
gsave 1243 434 1303 465 ClipBox
1302 449 1296 434 1285 464 1273 434 1261 464 1249 434 1243 449 1243 449 8 GDIPolyLine
grestore
gsave 1168 554 1289 675 ClipBox
1168 674 1168 554 1288 614 1169 673 4 GDIPolyLine
grestore
gsave 1177 639 1207 640 ClipBox
1177 639 1205 639 1205 639 3 GDIPolyLine
grestore
gsave 1191 625 1193 654 ClipBox
1191 653 1191 625 1191 625 3 GDIPolyLine
grestore
gsave 1177 584 1207 585 ClipBox
1177 584 1205 584 1205 584 3 GDIPolyLine
grestore
gsave 943 434 1004 465 ClipBox
1003 449 997 434 985 464 973 434 961 464 949 434 943 449 943 449 8 GDIPolyLine
grestore
gsave 629 434 675 465 ClipBox
629 434 629 464 659 464 674 449 659 434 630 434 6 GDIPolyLine
grestore
gsave 674 449 781 450 ClipBox
674 449 779 449 779 449 3 GDIPolyLine
grestore
gsave 779 434 781 465 ClipBox
779 434 779 464 779 464 3 GDIPolyLine
grestore
gsave 793 434 795 465 ClipBox
793 434 793 464 793 464 3 GDIPolyLine
grestore
gsave 793 449 945 450 ClipBox
793 449 943 449 943 449 3 GDIPolyLine
grestore
gsave 1003 449 1245 450 ClipBox
1003 449 1243 449 1243 449 3 GDIPolyLine
grestore
gsave 1093 449 1170 585 ClipBox
1093 449 1093 584 1168 584 1168 584 4 GDIPolyLine
grestore
gsave 1093 644 1169 750 ClipBox
1168 644 1093 644 1093 749 1093 749 4 GDIPolyLine
grestore
gsave 1078 734 1109 765 ClipBox
1108 734 1078 764 1078 764 3 GDIPolyLine
grestore
gsave 1288 449 1393 615 ClipBox
1302 449 1392 449 1392 614 1288 614 1288 614 5 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
764 360 60 33 OpaqueBox
764 384 60 (C11) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
764 393 45 33 OpaqueBox
764 417 45 (0.1) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
943 360 60 33 OpaqueBox
943 384 60 (R11) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
943 393 71 33 OpaqueBox
943 417 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1243 360 60 33 OpaqueBox
1243 384 60 (R12) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1243 393 71 33 OpaqueBox
1243 417 71 (100k) StrBlt
grestore
gsave 1243 1003 1303 1034 ClipBox
1302 1018 1296 1003 1285 1033 1273 1003 1261 1033 1249 1003 1243 1018 1243 1018 8 GDIPolyLine
grestore
gsave 1168 1123 1289 1244 ClipBox
1168 1243 1168 1123 1288 1183 1169 1242 4 GDIPolyLine
grestore
gsave 1177 1208 1207 1209 ClipBox
1177 1208 1205 1208 1205 1208 3 GDIPolyLine
grestore
gsave 1191 1194 1193 1222 ClipBox
1191 1221 1191 1194 1191 1194 3 GDIPolyLine
grestore
gsave 1177 1153 1207 1154 ClipBox
1177 1153 1205 1153 1205 1153 3 GDIPolyLine
grestore
gsave 943 1003 1004 1034 ClipBox
1003 1018 997 1003 985 1033 973 1003 961 1033 949 1003 943 1018 943 1018 8 GDIPolyLine
grestore
gsave 1003 1018 1245 1019 ClipBox
1003 1018 1243 1018 1243 1018 3 GDIPolyLine
grestore
gsave 1093 1018 1170 1154 ClipBox
1093 1018 1093 1153 1168 1153 1168 1153 4 GDIPolyLine
grestore
gsave 1093 1213 1169 1319 ClipBox
1168 1213 1093 1213 1093 1318 1093 1318 4 GDIPolyLine
grestore
gsave 1078 1303 1109 1334 ClipBox
1108 1303 1078 1333 1078 1333 3 GDIPolyLine
grestore
gsave 1288 1018 1393 1184 ClipBox
1302 1018 1392 1018 1392 1183 1288 1183 1288 1183 5 GDIPolyLine
grestore
gsave 823 614 1393 1019 ClipBox
1392 614 1392 854 823 854 823 1018 943 1018 943 1018 6 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
943 928 60 33 OpaqueBox
943 952 60 (R21) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
943 962 71 33 OpaqueBox
943 986 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1243 928 60 33 OpaqueBox
1243 952 60 (R22) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1243 962 71 33 OpaqueBox
1243 986 71 (100k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1213 659 40 33 OpaqueBox
1213 683 40 (A1) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1213 692 146 33 OpaqueBox
1213 716 146 (1/2 LF353) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1228 1243 40 33 OpaqueBox
1228 1267 40 (A2) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1228 1276 146 33 OpaqueBox
1228 1300 146 (1/2 LF353) StrBlt
grestore
gsave 1782 614 1902 735 ClipBox
1782 614 1782 734 1901 674 1783 615 4 GDIPolyLine
grestore
gsave 1791 649 1820 650 ClipBox
1791 649 1818 649 1818 649 3 GDIPolyLine
grestore
gsave 1805 635 1807 664 ClipBox
1805 635 1805 663 1805 663 3 GDIPolyLine
grestore
gsave 1791 704 1820 705 ClipBox
1791 704 1818 704 1818 704 3 GDIPolyLine
grestore
gsave 1392 644 1784 645 ClipBox
1392 644 1782 644 1782 644 3 GDIPolyLine
grestore
gsave 2051 764 2082 825 ClipBox
2066 764 2051 770 2081 782 2051 794 2081 806 2051 818 2066 824 2066 824 8 GDIPolyLine
grestore
gsave 2051 928 2082 989 ClipBox
2066 928 2051 934 2081 946 2051 958 2081 970 2051 982 2066 988 2066 988 8 GDIPolyLine
grestore
gsave 1901 674 2068 765 ClipBox
1901 674 2066 674 2066 764 2066 764 4 GDIPolyLine
grestore
gsave 2066 824 2068 929 ClipBox
2066 824 2066 928 2066 928 3 GDIPolyLine
grestore
gsave 2066 988 2068 1049 ClipBox
2066 988 2066 1048 2066 1048 3 GDIPolyLine
grestore
gsave 2051 1033 2082 1064 ClipBox
2081 1033 2051 1063 2051 1063 3 GDIPolyLine
grestore
gsave 1961 674 1963 795 ClipBox
1961 674 1961 794 1961 794 3 GDIPolyLine
grestore
gsave 1946 794 1978 795 ClipBox
1946 794 1976 794 1976 794 3 GDIPolyLine
grestore
gsave 1946 809 1978 810 ClipBox
1946 809 1976 809 1976 809 3 GDIPolyLine
grestore
gsave 1961 809 2068 869 ClipBox
1961 809 1961 868 2066 868 2066 868 4 GDIPolyLine
grestore
gsave 1707 704 1963 869 ClipBox
1782 704 1707 704 1707 868 1961 868 1961 868 5 GDIPolyLine
grestore
gsave 1841 704 1843 989 ClipBox
1841 704 1841 988 1841 988 3 GDIPolyLine
grestore
gsave 1826 988 1857 1019 ClipBox
1826 988 1856 988 1841 1018 1827 989 4 GDIPolyLine
grestore
gsave 1841 419 1843 645 ClipBox
1841 644 1841 419 1841 419 3 GDIPolyLine
grestore
gsave 1826 389 1857 420 ClipBox
1826 419 1856 419 1841 389 1827 418 4 GDIPolyLine
grestore
gsave 1841 449 1948 510 ClipBox
1841 449 1946 449 1946 509 1946 509 4 GDIPolyLine
grestore
gsave 1931 509 1963 510 ClipBox
1931 509 1961 509 1961 509 3 GDIPolyLine
grestore
gsave 1931 524 1963 525 ClipBox
1931 524 1961 524 1961 524 3 GDIPolyLine
grestore
gsave 1946 524 1948 570 ClipBox
1946 524 1946 569 1946 569 3 GDIPolyLine
grestore
gsave 1931 554 1962 585 ClipBox
1961 554 1931 584 1931 584 3 GDIPolyLine
grestore
gsave 1767 913 1842 1004 ClipBox
1841 913 1767 913 1767 1003 1767 1003 4 GDIPolyLine
grestore
gsave 1752 1003 1784 1004 ClipBox
1752 1003 1782 1003 1782 1003 3 GDIPolyLine
grestore
gsave 1752 1018 1784 1019 ClipBox
1752 1018 1782 1018 1782 1018 3 GDIPolyLine
grestore
gsave 1767 1018 1769 1079 ClipBox
1767 1018 1767 1078 1767 1078 3 GDIPolyLine
grestore
gsave 1752 1063 1783 1094 ClipBox
1782 1063 1752 1093 1752 1093 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1737 524 40 33 OpaqueBox
1737 548 40 (A3) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1737 557 81 33 OpaqueBox
1737 581 81 (LM12) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2096 952 60 (R32) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2096 986 35 (1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2096 788 60 (R31) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2096 821 53 (10k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1856 818 60 (C31) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1856 851 92 (1.5 nF) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1991 503 60 (C32) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1991 537 54 (100) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1961 488 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1737 1042 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1662 997 60 (C33) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1662 1030 54 (100) StrBlt
grestore
gsave 1782 1377 1902 1498 ClipBox
1782 1377 1782 1497 1901 1437 1783 1378 4 GDIPolyLine
grestore
gsave 1791 1412 1820 1413 ClipBox
1791 1412 1818 1412 1818 1412 3 GDIPolyLine
grestore
gsave 1805 1399 1807 1427 ClipBox
1805 1399 1805 1426 1805 1426 3 GDIPolyLine
grestore
gsave 1791 1468 1820 1469 ClipBox
1791 1468 1818 1468 1818 1468 3 GDIPolyLine
grestore
gsave 2051 1527 2082 1588 ClipBox
2066 1527 2051 1533 2081 1545 2051 1557 2081 1569 2051 1581 2066 1587 2066 1587 8 GDIPolyLine
grestore
gsave 2051 1692 2082 1753 ClipBox
2066 1692 2051 1698 2081 1710 2051 1722 2081 1734 2051 1746 2066 1752 2066 1752 8 GDIPolyLine
grestore
gsave 1901 1437 2068 1528 ClipBox
1901 1437 2066 1437 2066 1527 2066 1527 4 GDIPolyLine
grestore
gsave 2066 1587 2068 1693 ClipBox
2066 1587 2066 1692 2066 1692 3 GDIPolyLine
grestore
gsave 2066 1752 2068 1813 ClipBox
2066 1752 2066 1812 2066 1812 3 GDIPolyLine
grestore
gsave 2051 1797 2082 1828 ClipBox
2081 1797 2051 1827 2051 1827 3 GDIPolyLine
grestore
gsave 1961 1437 1963 1558 ClipBox
1961 1437 1961 1557 1961 1557 3 GDIPolyLine
grestore
gsave 1946 1557 1978 1558 ClipBox
1946 1557 1976 1557 1976 1557 3 GDIPolyLine
grestore
gsave 1946 1572 1978 1573 ClipBox
1946 1572 1976 1572 1976 1572 3 GDIPolyLine
grestore
gsave 1961 1572 2068 1633 ClipBox
1961 1572 1961 1632 2066 1632 2066 1632 4 GDIPolyLine
grestore
gsave 1707 1467 1963 1633 ClipBox
1782 1467 1707 1467 1707 1632 1961 1632 1961 1632 5 GDIPolyLine
grestore
gsave 1841 1467 1843 1753 ClipBox
1841 1467 1841 1752 1841 1752 3 GDIPolyLine
grestore
gsave 1826 1752 1857 1783 ClipBox
1826 1752 1856 1752 1841 1782 1827 1753 4 GDIPolyLine
grestore
gsave 1841 1183 1843 1408 ClipBox
1841 1407 1841 1183 1841 1183 3 GDIPolyLine
grestore
gsave 1826 1153 1857 1184 ClipBox
1826 1183 1856 1183 1841 1153 1827 1182 4 GDIPolyLine
grestore
gsave 1841 1213 1948 1274 ClipBox
1841 1213 1946 1213 1946 1273 1946 1273 4 GDIPolyLine
grestore
gsave 1931 1273 1963 1274 ClipBox
1931 1273 1961 1273 1961 1273 3 GDIPolyLine
grestore
gsave 1931 1288 1963 1289 ClipBox
1931 1288 1961 1288 1961 1288 3 GDIPolyLine
grestore
gsave 1946 1288 1948 1334 ClipBox
1946 1288 1946 1333 1946 1333 3 GDIPolyLine
grestore
gsave 1931 1318 1962 1348 ClipBox
1961 1318 1931 1347 1931 1347 3 GDIPolyLine
grestore
gsave 1767 1677 1842 1768 ClipBox
1841 1677 1767 1677 1767 1767 1767 1767 4 GDIPolyLine
grestore
gsave 1752 1767 1784 1768 ClipBox
1752 1767 1782 1767 1782 1767 3 GDIPolyLine
grestore
gsave 1752 1782 1784 1783 ClipBox
1752 1782 1782 1782 1782 1782 3 GDIPolyLine
grestore
gsave 1767 1782 1769 1842 ClipBox
1767 1782 1767 1841 1767 1841 3 GDIPolyLine
grestore
gsave 1752 1827 1783 1857 ClipBox
1782 1827 1752 1856 1752 1856 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1961 1252 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1737 1806 19 (+) StrBlt
grestore
gsave 1392 1183 1784 1408 ClipBox
1392 1183 1482 1183 1482 1407 1782 1407 1782 1407 5 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1737 1288 40 33 OpaqueBox
1737 1312 40 (A4) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1737 1321 81 33 OpaqueBox
1737 1345 81 (LM12) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1991 1267 60 (C42) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1991 1300 54 (100) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2096 1551 60 (R41) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2096 1584 53 (10k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2096 1716 60 (R42) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2096 1749 35 (1k) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1856 1581 60 (C41) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1856 1614 92 (1.5 nF) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1662 1761 60 (C43) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1662 1794 54 (100) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1782 369 124 (+Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1796 1057 116 (-Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1796 1821 116 (-Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1811 1132 124 (+Vunreg) StrBlt
grestore
gsave 2066 674 2307 1064 ClipBox
2066 674 2305 674 2305 1063 2305 1063 4 GDIPolyLine
grestore
1 SetBrush
0 setlinecap
0 setlinejoin
2276 1063 2336 1124 GDIRect
1 setlinecap
1 setlinejoin
gsave 2335 1063 2366 1124 ClipBox
2335 1078 2365 1063 2365 1123 2335 1108 2335 1108 5 GDIPolyLine
grestore
gsave 2066 1123 2306 1438 ClipBox
2305 1123 2305 1437 2066 1437 2066 1437 4 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2410 1087 77 (Spkr.) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
2410 1120 115 (8 Ohms) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
524 458 72 (Input) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
180 261 466 (POWER AMPLIFIER) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
180 311 226 (F. J. Deck) StrBlt
grestore
eject
RestoreState

SaveState
statusdict begin /manualfeed false def end
statusdict begin 0 setjobtimeout end
userdict begin /#copies 1 def end
0 1 0 SetPen
gsave 1213 584 1229 608 ClipBox
1213 607 1217 607 1218 606 1221 606 1221 605 1222 605 1223 604 1224 604 
1224 603 1225 603 1225 602 1226 602 1226 601 1227 601 1227 599 1228 599 
1228 592 1227 592 1227 590 1226 590 1226 589 1225 589 1225 588 1224 588 
1224 587 1223 587 1222 586 1221 586 1221 585 1218 585 1217 584 1213 584 
1213 584 33 GDIPolyLine
grestore
gsave 1213 607 1229 630 ClipBox
1213 629 1217 629 1218 628 1221 628 1221 627 1222 627 1223 626 1224 626 
1224 625 1225 625 1225 624 1226 624 1226 623 1227 623 1227 621 1228 621 
1228 615 1227 615 1227 613 1226 613 1226 612 1225 612 1225 611 1224 611 
1224 610 1223 610 1222 609 1221 609 1221 608 1218 608 1217 607 1213 607 
1213 607 33 GDIPolyLine
grestore
gsave 1213 629 1229 652 ClipBox
1213 651 1217 651 1218 650 1221 650 1221 649 1222 649 1223 648 1224 648 
1224 647 1225 647 1225 646 1226 646 1226 645 1227 645 1227 643 1228 643 
1228 637 1227 637 1227 635 1226 635 1226 634 1225 634 1225 633 1224 633 
1224 632 1223 632 1222 631 1221 631 1221 630 1218 630 1217 629 1213 629 
1213 629 33 GDIPolyLine
grestore
gsave 1213 651 1229 675 ClipBox
1213 674 1217 674 1218 673 1221 673 1221 672 1222 672 1223 671 1224 671 
1224 670 1225 670 1225 669 1226 669 1226 668 1227 668 1227 666 1228 666 
1228 659 1227 659 1227 657 1226 657 1226 656 1225 656 1225 655 1224 655 
1224 654 1223 654 1222 653 1221 653 1221 652 1218 652 1217 651 1213 651 
1213 651 33 GDIPolyLine
grestore
gsave 1273 584 1290 608 ClipBox
1288 607 1284 607 1283 606 1281 606 1280 605 1279 605 1278 604 1277 604 
1277 603 1276 603 1276 602 1275 602 1275 601 1274 601 1274 599 1273 599 
1273 592 1274 592 1274 590 1275 590 1275 589 1276 589 1276 588 1277 588 
1277 587 1278 587 1279 586 1280 586 1281 585 1283 585 1284 584 1288 584 
1288 584 33 GDIPolyLine
grestore
gsave 1273 607 1290 630 ClipBox
1288 629 1284 629 1283 628 1281 628 1280 627 1279 627 1278 626 1277 626 
1277 625 1276 625 1276 624 1275 624 1275 623 1274 623 1274 621 1273 621 
1273 615 1274 615 1274 613 1275 613 1275 612 1276 612 1276 611 1277 611 
1277 610 1278 610 1279 609 1280 609 1281 608 1283 608 1284 607 1288 607 
1288 607 33 GDIPolyLine
grestore
gsave 1273 629 1290 652 ClipBox
1288 651 1284 651 1283 650 1281 650 1280 649 1279 649 1278 648 1277 648 
1277 647 1276 647 1276 646 1275 646 1275 645 1274 645 1274 643 1273 643 
1273 637 1274 637 1274 635 1275 635 1275 634 1276 634 1276 633 1277 633 
1277 632 1278 632 1279 631 1280 631 1281 630 1283 630 1284 629 1288 629 
1288 629 33 GDIPolyLine
grestore
gsave 1273 651 1290 675 ClipBox
1288 674 1284 674 1283 673 1281 673 1280 672 1279 672 1278 671 1277 671 
1277 670 1276 670 1276 669 1275 669 1275 668 1274 668 1274 666 1273 666 
1273 659 1274 659 1274 657 1275 657 1275 656 1276 656 1276 655 1277 655 
1277 654 1278 654 1279 653 1280 653 1281 652 1283 652 1284 651 1288 651 
1288 651 33 GDIPolyLine
grestore
gsave 1273 719 1290 742 ClipBox
1288 741 1284 741 1283 740 1281 740 1280 739 1279 739 1278 738 1277 738 
1277 737 1276 737 1276 736 1275 736 1275 735 1274 735 1274 733 1273 733 
1273 727 1274 727 1274 725 1275 725 1275 724 1276 724 1276 723 1277 723 
1277 722 1278 722 1279 721 1280 721 1281 720 1283 720 1284 719 1288 719 
1288 719 33 GDIPolyLine
grestore
gsave 1273 741 1290 765 ClipBox
1288 764 1284 764 1283 763 1281 763 1280 762 1279 762 1278 761 1277 761 
1277 760 1276 760 1276 759 1275 759 1275 758 1274 758 1274 756 1273 756 
1273 749 1274 749 1274 747 1275 747 1275 746 1276 746 1276 745 1277 745 
1277 744 1278 744 1279 743 1280 743 1281 742 1283 742 1284 741 1288 741 
1288 741 33 GDIPolyLine
grestore
gsave 1273 764 1290 787 ClipBox
1288 786 1284 786 1283 785 1281 785 1280 784 1279 784 1278 783 1277 783 
1277 782 1276 782 1276 781 1275 781 1275 780 1274 780 1274 778 1273 778 
1273 772 1274 772 1274 770 1275 770 1275 769 1276 769 1276 768 1277 768 
1277 767 1278 767 1279 766 1280 766 1281 765 1283 765 1284 764 1288 764 
1288 764 33 GDIPolyLine
grestore
gsave 1273 786 1290 810 ClipBox
1288 809 1284 809 1283 808 1281 808 1280 807 1279 807 1278 806 1277 806 
1277 805 1276 805 1276 804 1275 804 1275 803 1274 803 1274 801 1273 801 
1273 794 1274 794 1274 792 1275 792 1275 791 1276 791 1276 790 1277 790 
1277 789 1278 789 1279 788 1280 788 1281 787 1283 787 1284 786 1288 786 
1288 786 33 GDIPolyLine
grestore
gsave 1258 584 1260 810 ClipBox
1258 584 1258 809 1258 809 3 GDIPolyLine
grestore
gsave 1243 584 1245 810 ClipBox
1243 584 1243 809 1243 809 3 GDIPolyLine
grestore
gsave 1288 674 1394 765 ClipBox
1288 674 1392 674 1392 764 1392 764 4 GDIPolyLine
grestore
gsave 1288 719 1394 720 ClipBox
1288 719 1392 719 1392 719 3 GDIPolyLine
grestore
gsave 1377 749 1408 780 ClipBox
1407 749 1377 779 1377 779 3 GDIPolyLine
grestore
1 SetBrush
0 setlinecap
0 setlinejoin
1542 644 1708 765 GDIRect
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1557 683 46 (AC) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1557 743 46 (AC) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1677 683 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1677 743 11 (-) StrBlt
grestore
1 setlinecap
1 setlinejoin
gsave 1288 584 1544 675 ClipBox
1288 584 1482 584 1482 674 1542 674 1542 674 5 GDIPolyLine
grestore
gsave 1288 734 1544 810 ClipBox
1288 809 1482 809 1482 734 1542 734 1542 734 5 GDIPolyLine
grestore
gsave 1707 734 2233 735 ClipBox
1707 734 2231 734 2231 734 3 GDIPolyLine
grestore
gsave 2231 719 2277 750 ClipBox
2231 719 2231 749 2261 749 2276 734 2261 719 2232 719 6 GDIPolyLine
grestore
gsave 1886 734 1888 869 ClipBox
1886 734 1886 868 1886 868 3 GDIPolyLine
grestore
gsave 1871 868 1903 869 ClipBox
1871 868 1901 868 1901 868 3 GDIPolyLine
grestore
gsave 1871 883 1903 884 ClipBox
1871 883 1901 883 1901 883 3 GDIPolyLine
grestore
gsave 1886 883 1888 959 ClipBox
1886 883 1886 958 1886 958 3 GDIPolyLine
grestore
gsave 1871 943 1902 974 ClipBox
1901 943 1871 973 1871 973 3 GDIPolyLine
grestore
gsave 2231 389 2277 420 ClipBox
2231 389 2231 419 2261 419 2276 404 2261 389 2232 389 6 GDIPolyLine
grestore
gsave 1886 404 1888 540 ClipBox
1886 404 1886 539 1886 539 3 GDIPolyLine
grestore
gsave 1871 539 1903 540 ClipBox
1871 539 1901 539 1901 539 3 GDIPolyLine
grestore
gsave 1871 554 1903 555 ClipBox
1871 554 1901 554 1901 554 3 GDIPolyLine
grestore
gsave 1886 554 1888 630 ClipBox
1886 554 1886 629 1886 629 3 GDIPolyLine
grestore
gsave 1871 614 1902 645 ClipBox
1901 614 1871 644 1871 644 3 GDIPolyLine
grestore
gsave 1707 404 2232 675 ClipBox
2231 404 1782 404 1782 674 1707 674 1707 674 5 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2305 413 124 (+Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2305 743 116 (-Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
2201 578 220 (\26120 V Supplies) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1901 533 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1901 907 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1931 533 42 (C1) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1931 566 90 (20000) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1931 863 42 (C2) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1931 896 90 (20000) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1557 818 188 (Diode Bridge) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1557 851 134 (50 V, 5 A) StrBlt
grestore
gsave 479 569 510 600 ClipBox
494 569 490 569 490 570 488 570 487 571 486 571 486 572 485 572 
484 573 483 573 483 574 482 575 482 576 481 576 481 577 480 578 
480 580 479 580 479 584 479 584 479 588 480 588 480 590 481 591 
481 592 482 592 482 593 483 594 483 595 484 595 485 596 486 596 
486 597 487 597 488 598 490 598 490 599 494 599 494 599 498 599 
498 598 500 598 501 597 502 597 502 596 503 596 504 595 505 595 
505 594 506 593 50 GDIPolyLine
506 593 506 592 507 592 507 591 508 590 508 588 509 588 509 584 
509 584 509 580 508 580 508 578 507 577 507 576 506 576 506 575 
505 574 505 573 504 573 503 572 502 572 502 571 501 571 500 570 
498 570 498 569 495 569 27 GDIPolyLine
grestore
gsave 479 659 510 690 ClipBox
494 659 490 659 490 660 488 660 487 661 486 661 486 662 485 662 
484 663 483 663 483 664 482 665 482 666 481 666 481 667 480 668 
480 670 479 670 479 674 479 674 479 678 480 678 480 680 481 681 
481 682 482 682 482 683 483 684 483 685 484 685 485 686 486 686 
486 687 487 687 488 688 490 688 490 689 494 689 494 689 498 689 
498 688 500 688 501 687 502 687 502 686 503 686 504 685 505 685 
505 684 506 683 50 GDIPolyLine
506 683 506 682 507 682 507 681 508 680 508 678 509 678 509 674 
509 674 509 670 508 670 508 668 507 667 507 666 506 666 506 665 
505 664 505 663 504 663 503 662 502 662 502 661 501 661 500 660 
498 660 498 659 495 659 27 GDIPolyLine
grestore
gsave 479 749 510 780 ClipBox
494 749 490 749 490 750 488 750 487 751 486 751 486 752 485 752 
484 753 483 753 483 754 482 755 482 756 481 756 481 757 480 758 
480 760 479 760 479 764 479 764 479 768 480 768 480 770 481 771 
481 772 482 772 482 773 483 774 483 775 484 775 485 776 486 776 
486 777 487 777 488 778 490 778 490 779 494 779 494 779 498 779 
498 778 500 778 501 777 502 777 502 776 503 776 504 775 505 775 
505 774 506 773 50 GDIPolyLine
506 773 506 772 507 772 507 771 508 770 508 768 509 768 509 764 
509 764 509 760 508 760 508 758 507 757 507 756 506 756 506 755 
505 754 505 753 504 753 503 752 502 752 502 751 501 751 500 750 
498 750 498 749 495 749 27 GDIPolyLine
grestore
gsave 509 584 616 585 ClipBox
509 584 614 584 614 584 3 GDIPolyLine
grestore
gsave 509 674 1214 675 ClipBox
1213 674 509 674 509 674 3 GDIPolyLine
grestore
gsave 614 569 705 600 ClipBox
614 569 614 599 704 599 704 569 615 569 5 GDIPolyLine
grestore
gsave 629 584 691 585 ClipBox
629 584 689 584 689 584 3 GDIPolyLine
grestore
gsave 704 554 930 585 ClipBox
704 584 868 584 928 554 928 554 4 GDIPolyLine
grestore
gsave 928 584 1215 585 ClipBox
928 584 1213 584 1213 584 3 GDIPolyLine
grestore
gsave 509 764 601 840 ClipBox
509 764 599 764 599 839 599 839 4 GDIPolyLine
grestore
gsave 584 824 615 855 ClipBox
614 824 584 854 584 854 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
434 593 18 (L) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
434 683 24 (N) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
434 773 26 (G) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
240 668 131 (120 VAC) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
240 701 163 (Power Line) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
614 518 73 (Fuse) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
614 551 49 (5 A) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
868 503 71 (SW1) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
868 537 117 ("Power") StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1168 878 38 (T1) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
1168 911 169 (24VCT, 4 A) StrBlt
grestore
gsave 943 1362 989 1393 ClipBox
943 1362 943 1392 973 1392 988 1377 973 1362 944 1362 6 GDIPolyLine
grestore
gsave 943 1033 989 1064 ClipBox
943 1033 943 1063 973 1063 988 1048 973 1033 944 1033 6 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
793 1057 124 (+Vunreg) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
808 1386 116 (-Vunreg) StrBlt
grestore
0 setlinecap
0 setlinejoin
1183 1018 1303 1079 GDIRect
1 setlinecap
1 setlinejoin
gsave 1243 1078 1245 1184 ClipBox
1243 1078 1243 1183 1243 1183 3 GDIPolyLine
grestore
gsave 1228 1168 1259 1199 ClipBox
1258 1168 1228 1198 1228 1198 3 GDIPolyLine
grestore
gsave 988 1048 1185 1049 ClipBox
988 1048 1183 1048 1183 1048 3 GDIPolyLine
grestore
gsave 1302 1048 1559 1049 ClipBox
1302 1048 1557 1048 1557 1048 3 GDIPolyLine
grestore
gsave 1557 1033 1603 1064 ClipBox
1557 1033 1557 1063 1587 1063 1602 1048 1587 1033 1558 1033 6 GDIPolyLine
grestore
gsave 1452 1048 1454 1139 ClipBox
1452 1048 1452 1138 1452 1138 3 GDIPolyLine
grestore
gsave 1437 1138 1469 1139 ClipBox
1437 1138 1467 1138 1467 1138 3 GDIPolyLine
grestore
gsave 1437 1153 1469 1154 ClipBox
1437 1153 1467 1153 1467 1153 3 GDIPolyLine
grestore
gsave 1452 1153 1454 1229 ClipBox
1452 1153 1452 1228 1452 1228 3 GDIPolyLine
grestore
gsave 1437 1213 1468 1244 ClipBox
1467 1213 1437 1243 1437 1243 3 GDIPolyLine
grestore
0 setlinecap
0 setlinejoin
1183 1347 1303 1408 GDIRect
1 setlinecap
1 setlinejoin
gsave 1243 1407 1245 1513 ClipBox
1243 1407 1243 1512 1243 1512 3 GDIPolyLine
grestore
gsave 1228 1497 1259 1528 ClipBox
1258 1497 1228 1527 1228 1527 3 GDIPolyLine
grestore
gsave 988 1377 1185 1378 ClipBox
988 1377 1183 1377 1183 1377 3 GDIPolyLine
grestore
gsave 1302 1377 1559 1378 ClipBox
1302 1377 1557 1377 1557 1377 3 GDIPolyLine
grestore
gsave 1557 1362 1603 1393 ClipBox
1557 1362 1557 1392 1587 1392 1602 1377 1587 1362 1558 1362 6 GDIPolyLine
grestore
gsave 1452 1377 1454 1468 ClipBox
1452 1377 1452 1467 1452 1467 3 GDIPolyLine
grestore
gsave 1437 1467 1469 1468 ClipBox
1437 1467 1467 1467 1467 1467 3 GDIPolyLine
grestore
gsave 1437 1482 1469 1483 ClipBox
1437 1482 1467 1482 1467 1482 3 GDIPolyLine
grestore
gsave 1452 1482 1454 1558 ClipBox
1452 1482 1452 1557 1452 1557 3 GDIPolyLine
grestore
gsave 1437 1542 1468 1573 ClipBox
1467 1542 1437 1572 1437 1572 3 GDIPolyLine
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1632 1057 86 (+15 V) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1632 1386 78 (-15 V) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1467 1132 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1467 1506 19 (+) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1497 1162 36 (10) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1482 1476 36 (10) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1198 1057 72 (7815) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1198 1386 72 (7915) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1153 1042 25 (in) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1317 1042 45 (out) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1258 1102 54 (gnd) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1153 1371 25 (in) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1317 1371 45 (out) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
1258 1431 54 (gnd) StrBlt
grestore
32 0 0 50 50 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
434 276 398 (POWER SUPPLY) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
434 326 226 (F. J. Deck) StrBlt
grestore
32 0 0 33 33 0 0 1 /Helvetica /font4 ANSIFont font
gsave 45 135 3040 2232 ClipBox
599 1731 169 (WARNING:) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
grestore
gsave 45 135 3040 2232 ClipBox
599 1797 702 (This documentation is not sufficiently detailed for) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1830 751 (use as a construction plan.  The circuit is connected) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1864 749 (to 120 VAC line power, and can be dangerous if it is) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1897 753 (improperly constructed or operated.  Construction of) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1930 757 (this circuit should only be attempted by persons who) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1963 737 (are experienced in designing and building electrical) StrBlt
grestore
gsave 45 135 3040 2232 ClipBox
599 1997 160 (equipment.) StrBlt
grestore
eject
RestoreState

SaveState
statusdict begin /manualfeed false def end
statusdict begin 0 setjobtimeout end
userdict begin /#copies 1 def end
RestoreState
end
T.RTitleUserPersonal
Name
DateLines