Mainboard.s#5 291 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. </layers>
  72. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  73. <libraries>
  74. <library name="pinhead">
  75. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  76. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  77. <packages>
  78. <package name="2X06">
  79. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  80. <wire x1="-7.62" y1="-1.905" x2="-6.985" y2="-2.54" width="0.1524" layer="21"/>
  81. <wire x1="-5.715" y1="-2.54" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  82. <wire x1="-5.08" y1="-1.905" x2="-4.445" y2="-2.54" width="0.1524" layer="21"/>
  83. <wire x1="-3.175" y1="-2.54" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  84. <wire x1="-2.54" y1="-1.905" x2="-1.905" y2="-2.54" width="0.1524" layer="21"/>
  85. <wire x1="-0.635" y1="-2.54" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  86. <wire x1="0" y1="-1.905" x2="0.635" y2="-2.54" width="0.1524" layer="21"/>
  87. <wire x1="1.905" y1="-2.54" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  88. <wire x1="2.54" y1="-1.905" x2="3.175" y2="-2.54" width="0.1524" layer="21"/>
  89. <wire x1="4.445" y1="-2.54" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  90. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="1.905" width="0.1524" layer="21"/>
  91. <wire x1="-7.62" y1="1.905" x2="-6.985" y2="2.54" width="0.1524" layer="21"/>
  92. <wire x1="-6.985" y1="2.54" x2="-5.715" y2="2.54" width="0.1524" layer="21"/>
  93. <wire x1="-5.715" y1="2.54" x2="-5.08" y2="1.905" width="0.1524" layer="21"/>
  94. <wire x1="-5.08" y1="1.905" x2="-4.445" y2="2.54" width="0.1524" layer="21"/>
  95. <wire x1="-4.445" y1="2.54" x2="-3.175" y2="2.54" width="0.1524" layer="21"/>
  96. <wire x1="-3.175" y1="2.54" x2="-2.54" y2="1.905" width="0.1524" layer="21"/>
  97. <wire x1="-2.54" y1="1.905" x2="-1.905" y2="2.54" width="0.1524" layer="21"/>
  98. <wire x1="-1.905" y1="2.54" x2="-0.635" y2="2.54" width="0.1524" layer="21"/>
  99. <wire x1="-0.635" y1="2.54" x2="0" y2="1.905" width="0.1524" layer="21"/>
  100. <wire x1="0" y1="1.905" x2="0.635" y2="2.54" width="0.1524" layer="21"/>
  101. <wire x1="0.635" y1="2.54" x2="1.905" y2="2.54" width="0.1524" layer="21"/>
  102. <wire x1="1.905" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="21"/>
  103. <wire x1="2.54" y1="1.905" x2="3.175" y2="2.54" width="0.1524" layer="21"/>
  104. <wire x1="3.175" y1="2.54" x2="4.445" y2="2.54" width="0.1524" layer="21"/>
  105. <wire x1="4.445" y1="2.54" x2="5.08" y2="1.905" width="0.1524" layer="21"/>
  106. <wire x1="-5.08" y1="1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  107. <wire x1="-2.54" y1="1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  108. <wire x1="0" y1="1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  109. <wire x1="2.54" y1="1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  110. <wire x1="5.08" y1="1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  111. <wire x1="3.175" y1="-2.54" x2="4.445" y2="-2.54" width="0.1524" layer="21"/>
  112. <wire x1="0.635" y1="-2.54" x2="1.905" y2="-2.54" width="0.1524" layer="21"/>
  113. <wire x1="-1.905" y1="-2.54" x2="-0.635" y2="-2.54" width="0.1524" layer="21"/>
  114. <wire x1="-4.445" y1="-2.54" x2="-3.175" y2="-2.54" width="0.1524" layer="21"/>
  115. <wire x1="-6.985" y1="-2.54" x2="-5.715" y2="-2.54" width="0.1524" layer="21"/>
  116. <wire x1="5.08" y1="-1.905" x2="5.715" y2="-2.54" width="0.1524" layer="21"/>
  117. <wire x1="6.985" y1="-2.54" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  118. <wire x1="5.08" y1="1.905" x2="5.715" y2="2.54" width="0.1524" layer="21"/>
  119. <wire x1="5.715" y1="2.54" x2="6.985" y2="2.54" width="0.1524" layer="21"/>
  120. <wire x1="6.985" y1="2.54" x2="7.62" y2="1.905" width="0.1524" layer="21"/>
  121. <wire x1="7.62" y1="1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  122. <wire x1="5.715" y1="-2.54" x2="6.985" y2="-2.54" width="0.1524" layer="21"/>
  123. <pad name="1" x="-6.35" y="-1.27" drill="1.016" shape="octagon"/>
  124. <pad name="2" x="-6.35" y="1.27" drill="1.016" shape="octagon"/>
  125. <pad name="3" x="-3.81" y="-1.27" drill="1.016" shape="octagon"/>
  126. <pad name="4" x="-3.81" y="1.27" drill="1.016" shape="octagon"/>
  127. <pad name="5" x="-1.27" y="-1.27" drill="1.016" shape="octagon"/>
  128. <pad name="6" x="-1.27" y="1.27" drill="1.016" shape="octagon"/>
  129. <pad name="7" x="1.27" y="-1.27" drill="1.016" shape="octagon"/>
  130. <pad name="8" x="1.27" y="1.27" drill="1.016" shape="octagon"/>
  131. <pad name="9" x="3.81" y="-1.27" drill="1.016" shape="octagon"/>
  132. <pad name="10" x="3.81" y="1.27" drill="1.016" shape="octagon"/>
  133. <pad name="11" x="6.35" y="-1.27" drill="1.016" shape="octagon"/>
  134. <pad name="12" x="6.35" y="1.27" drill="1.016" shape="octagon"/>
  135. <text x="-7.62" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  136. <text x="-7.62" y="-4.445" size="1.27" layer="27">&gt;VALUE</text>
  137. <rectangle x1="-6.604" y1="-1.524" x2="-6.096" y2="-1.016" layer="51"/>
  138. <rectangle x1="-6.604" y1="1.016" x2="-6.096" y2="1.524" layer="51"/>
  139. <rectangle x1="-4.064" y1="1.016" x2="-3.556" y2="1.524" layer="51"/>
  140. <rectangle x1="-4.064" y1="-1.524" x2="-3.556" y2="-1.016" layer="51"/>
  141. <rectangle x1="-1.524" y1="1.016" x2="-1.016" y2="1.524" layer="51"/>
  142. <rectangle x1="-1.524" y1="-1.524" x2="-1.016" y2="-1.016" layer="51"/>
  143. <rectangle x1="1.016" y1="1.016" x2="1.524" y2="1.524" layer="51"/>
  144. <rectangle x1="3.556" y1="1.016" x2="4.064" y2="1.524" layer="51"/>
  145. <rectangle x1="1.016" y1="-1.524" x2="1.524" y2="-1.016" layer="51"/>
  146. <rectangle x1="3.556" y1="-1.524" x2="4.064" y2="-1.016" layer="51"/>
  147. <rectangle x1="6.096" y1="1.016" x2="6.604" y2="1.524" layer="51"/>
  148. <rectangle x1="6.096" y1="-1.524" x2="6.604" y2="-1.016" layer="51"/>
  149. </package>
  150. <package name="2X06/90">
  151. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  152. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  153. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  154. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  155. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  156. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  157. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  158. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  159. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  160. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  161. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  162. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  163. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  164. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  165. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  166. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  167. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  168. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  169. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  170. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  171. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  172. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  173. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  174. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  175. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  176. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  177. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="octagon"/>
  178. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="octagon"/>
  179. <pad name="6" x="-1.27" y="-3.81" drill="1.016" shape="octagon"/>
  180. <pad name="8" x="1.27" y="-3.81" drill="1.016" shape="octagon"/>
  181. <pad name="10" x="3.81" y="-3.81" drill="1.016" shape="octagon"/>
  182. <pad name="12" x="6.35" y="-3.81" drill="1.016" shape="octagon"/>
  183. <pad name="1" x="-6.35" y="-6.35" drill="1.016" shape="octagon"/>
  184. <pad name="3" x="-3.81" y="-6.35" drill="1.016" shape="octagon"/>
  185. <pad name="5" x="-1.27" y="-6.35" drill="1.016" shape="octagon"/>
  186. <pad name="7" x="1.27" y="-6.35" drill="1.016" shape="octagon"/>
  187. <pad name="9" x="3.81" y="-6.35" drill="1.016" shape="octagon"/>
  188. <pad name="11" x="6.35" y="-6.35" drill="1.016" shape="octagon"/>
  189. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  190. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  191. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  192. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  193. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  194. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  195. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  196. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  197. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  198. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  199. <rectangle x1="-6.731" y1="-5.461" x2="-5.969" y2="-4.699" layer="21"/>
  200. <rectangle x1="-6.731" y1="-4.699" x2="-5.969" y2="-2.921" layer="51"/>
  201. <rectangle x1="-4.191" y1="-4.699" x2="-3.429" y2="-2.921" layer="51"/>
  202. <rectangle x1="-4.191" y1="-5.461" x2="-3.429" y2="-4.699" layer="21"/>
  203. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  204. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  205. <rectangle x1="-1.651" y1="-5.461" x2="-0.889" y2="-4.699" layer="21"/>
  206. <rectangle x1="-1.651" y1="-4.699" x2="-0.889" y2="-2.921" layer="51"/>
  207. <rectangle x1="0.889" y1="-4.699" x2="1.651" y2="-2.921" layer="51"/>
  208. <rectangle x1="0.889" y1="-5.461" x2="1.651" y2="-4.699" layer="21"/>
  209. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  210. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  211. <rectangle x1="3.429" y1="-5.461" x2="4.191" y2="-4.699" layer="21"/>
  212. <rectangle x1="3.429" y1="-4.699" x2="4.191" y2="-2.921" layer="51"/>
  213. <rectangle x1="5.969" y1="-4.699" x2="6.731" y2="-2.921" layer="51"/>
  214. <rectangle x1="5.969" y1="-5.461" x2="6.731" y2="-4.699" layer="21"/>
  215. </package>
  216. <package name="1X05">
  217. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  218. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  219. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  220. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  221. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  222. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  223. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  224. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  225. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  226. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  227. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  228. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  229. <wire x1="1.905" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  230. <wire x1="1.27" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  231. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  232. <wire x1="-5.715" y1="1.27" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  233. <wire x1="-4.445" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  234. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  235. <wire x1="-3.81" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  236. <wire x1="-3.81" y1="0.635" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  237. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  238. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  239. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  240. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  241. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  242. <wire x1="-3.175" y1="-1.27" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  243. <wire x1="-6.35" y1="0.635" x2="-6.35" y2="-0.635" width="0.1524" layer="21"/>
  244. <wire x1="-5.715" y1="1.27" x2="-6.35" y2="0.635" width="0.1524" layer="21"/>
  245. <wire x1="-6.35" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  246. <wire x1="-4.445" y1="-1.27" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  247. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  248. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.1524" layer="21"/>
  249. <wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.1524" layer="21"/>
  250. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  251. <wire x1="4.445" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  252. <wire x1="3.81" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  253. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  254. <pad name="1" x="-5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  255. <pad name="2" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  256. <pad name="3" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  257. <pad name="4" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  258. <pad name="5" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  259. <text x="-6.4262" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  260. <text x="-6.35" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  261. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  262. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  263. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  264. <rectangle x1="-5.334" y1="-0.254" x2="-4.826" y2="0.254" layer="51"/>
  265. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  266. </package>
  267. <package name="1X05/90">
  268. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  269. <wire x1="-6.35" y1="-1.905" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  270. <wire x1="-3.81" y1="-1.905" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  271. <wire x1="-3.81" y1="0.635" x2="-6.35" y2="0.635" width="0.1524" layer="21"/>
  272. <wire x1="-6.35" y1="0.635" x2="-6.35" y2="-1.905" width="0.1524" layer="21"/>
  273. <wire x1="-5.08" y1="6.985" x2="-5.08" y2="1.27" width="0.762" layer="21"/>
  274. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  275. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  276. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  277. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  278. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  279. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  280. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  281. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  282. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  283. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  284. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  285. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  286. <wire x1="3.81" y1="-1.905" x2="6.35" y2="-1.905" width="0.1524" layer="21"/>
  287. <wire x1="6.35" y1="-1.905" x2="6.35" y2="0.635" width="0.1524" layer="21"/>
  288. <wire x1="6.35" y1="0.635" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  289. <wire x1="5.08" y1="6.985" x2="5.08" y2="1.27" width="0.762" layer="21"/>
  290. <pad name="1" x="-5.08" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  291. <pad name="2" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  292. <pad name="3" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  293. <pad name="4" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  294. <pad name="5" x="5.08" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  295. <text x="-6.985" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  296. <text x="8.255" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  297. <rectangle x1="-5.461" y1="0.635" x2="-4.699" y2="1.143" layer="21"/>
  298. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  299. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  300. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  301. <rectangle x1="4.699" y1="0.635" x2="5.461" y2="1.143" layer="21"/>
  302. <rectangle x1="-5.461" y1="-2.921" x2="-4.699" y2="-1.905" layer="21"/>
  303. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  304. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  305. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  306. <rectangle x1="4.699" y1="-2.921" x2="5.461" y2="-1.905" layer="21"/>
  307. </package>
  308. <package name="1_05X2MM">
  309. <description>CON-M-1X5-200</description>
  310. <text x="-4.5" y="1.5" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  311. <text x="-4.75" y="-2.75" size="1.27" layer="27">&gt;VALUE</text>
  312. <wire x1="-5" y1="0.5" x2="-4.5" y2="1" width="0.1524" layer="21"/>
  313. <wire x1="-4.5" y1="1" x2="-3.5" y2="1" width="0.1524" layer="21"/>
  314. <wire x1="-3.5" y1="1" x2="-3" y2="0.5" width="0.1524" layer="21"/>
  315. <wire x1="-3" y1="-0.5" x2="-3.5" y2="-1" width="0.1524" layer="21"/>
  316. <wire x1="-3.5" y1="-1" x2="-4.5" y2="-1" width="0.1524" layer="21"/>
  317. <wire x1="-4.5" y1="-1" x2="-5" y2="-0.5" width="0.1524" layer="21"/>
  318. <wire x1="-5" y1="0.5" x2="-5" y2="-0.5" width="0.1524" layer="21"/>
  319. <pad name="1" x="-4" y="0" drill="1.016" diameter="1.3" shape="square" rot="R90"/>
  320. <rectangle x1="-4.254" y1="-0.254" x2="-3.746" y2="0.254" layer="51"/>
  321. <wire x1="-3" y1="0.5" x2="-2.5" y2="1" width="0.1524" layer="21"/>
  322. <wire x1="-2.5" y1="1" x2="-1.5" y2="1" width="0.1524" layer="21"/>
  323. <wire x1="-1.5" y1="1" x2="-1" y2="0.5" width="0.1524" layer="21"/>
  324. <wire x1="-1" y1="-0.5" x2="-1.5" y2="-1" width="0.1524" layer="21"/>
  325. <wire x1="-1.5" y1="-1" x2="-2.5" y2="-1" width="0.1524" layer="21"/>
  326. <wire x1="-2.5" y1="-1" x2="-3" y2="-0.5" width="0.1524" layer="21"/>
  327. <wire x1="-3" y1="0.5" x2="-3" y2="-0.5" width="0.1524" layer="21"/>
  328. <pad name="3" x="-2" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  329. <rectangle x1="-2.254" y1="-0.254" x2="-1.746" y2="0.254" layer="51"/>
  330. <wire x1="-1" y1="0.5" x2="-0.5" y2="1" width="0.1524" layer="21"/>
  331. <wire x1="-0.5" y1="1" x2="0.5" y2="1" width="0.1524" layer="21"/>
  332. <wire x1="0.5" y1="1" x2="1" y2="0.5" width="0.1524" layer="21"/>
  333. <wire x1="1" y1="-0.5" x2="0.5" y2="-1" width="0.1524" layer="21"/>
  334. <wire x1="0.5" y1="-1" x2="-0.5" y2="-1" width="0.1524" layer="21"/>
  335. <wire x1="-0.5" y1="-1" x2="-1" y2="-0.5" width="0.1524" layer="21"/>
  336. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.1524" layer="21"/>
  337. <pad name="2" x="0" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  338. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  339. <wire x1="1" y1="0.5" x2="1.5" y2="1" width="0.1524" layer="21"/>
  340. <wire x1="1.5" y1="1" x2="2.5" y2="1" width="0.1524" layer="21"/>
  341. <wire x1="2.5" y1="1" x2="3" y2="0.5" width="0.1524" layer="21"/>
  342. <wire x1="3" y1="-0.5" x2="2.5" y2="-1" width="0.1524" layer="21"/>
  343. <wire x1="2.5" y1="-1" x2="1.5" y2="-1" width="0.1524" layer="21"/>
  344. <wire x1="1.5" y1="-1" x2="1" y2="-0.5" width="0.1524" layer="21"/>
  345. <wire x1="1" y1="0.5" x2="1" y2="-0.5" width="0.1524" layer="21"/>
  346. <pad name="4" x="2" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  347. <rectangle x1="1.746" y1="-0.254" x2="2.254" y2="0.254" layer="51"/>
  348. <wire x1="3" y1="0.5" x2="3.5" y2="1" width="0.1524" layer="21"/>
  349. <wire x1="3.5" y1="1" x2="4.5" y2="1" width="0.1524" layer="21"/>
  350. <wire x1="4.5" y1="1" x2="5" y2="0.5" width="0.1524" layer="21"/>
  351. <wire x1="5" y1="0.5" x2="5" y2="-0.5" width="0.1524" layer="21"/>
  352. <wire x1="5" y1="-0.5" x2="4.5" y2="-1" width="0.1524" layer="21"/>
  353. <wire x1="4.5" y1="-1" x2="3.5" y2="-1" width="0.1524" layer="21"/>
  354. <wire x1="3.5" y1="-1" x2="3" y2="-0.5" width="0.1524" layer="21"/>
  355. <wire x1="3" y1="0.5" x2="3" y2="-0.5" width="0.1524" layer="21"/>
  356. <pad name="5" x="4" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  357. <rectangle x1="3.746" y1="-0.254" x2="4.254" y2="0.254" layer="51"/>
  358. </package>
  359. <package name="1X03">
  360. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  361. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  362. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  363. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  364. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  365. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  366. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  367. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  368. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  369. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  370. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  371. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  372. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  373. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  374. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  375. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  376. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  377. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  378. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  379. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  380. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  381. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  382. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  383. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  384. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  385. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  386. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  387. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  388. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  389. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  390. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  391. </package>
  392. <package name="1X03/90">
  393. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  394. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  395. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  396. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  397. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  398. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  399. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  400. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  401. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  402. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  403. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  404. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  405. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  406. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  407. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  408. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  409. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  410. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  411. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  412. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  413. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  414. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  415. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  416. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  417. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  418. </package>
  419. </packages>
  420. <symbols>
  421. <symbol name="PINH2X6">
  422. <wire x1="-6.35" y1="-10.16" x2="8.89" y2="-10.16" width="0.4064" layer="94"/>
  423. <wire x1="8.89" y1="-10.16" x2="8.89" y2="7.62" width="0.4064" layer="94"/>
  424. <wire x1="8.89" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  425. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  426. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  427. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  428. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  429. <pin name="2" x="5.08" y="5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  430. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  431. <pin name="4" x="5.08" y="2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  432. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  433. <pin name="6" x="5.08" y="0" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  434. <pin name="7" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  435. <pin name="8" x="5.08" y="-2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  436. <pin name="9" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  437. <pin name="10" x="5.08" y="-5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  438. <pin name="11" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  439. <pin name="12" x="5.08" y="-7.62" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  440. </symbol>
  441. <symbol name="PINHD5">
  442. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  443. <wire x1="1.27" y1="-7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  444. <wire x1="1.27" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  445. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  446. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  447. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  448. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  449. <pin name="2" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  450. <pin name="3" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  451. <pin name="4" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  452. <pin name="5" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  453. </symbol>
  454. <symbol name="PINHD3">
  455. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  456. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  457. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  458. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  459. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  460. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  461. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  462. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  463. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  464. </symbol>
  465. </symbols>
  466. <devicesets>
  467. <deviceset name="PINHD-2X6" prefix="JP" uservalue="yes">
  468. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  469. <gates>
  470. <gate name="A" symbol="PINH2X6" x="0" y="0"/>
  471. </gates>
  472. <devices>
  473. <device name="" package="2X06">
  474. <connects>
  475. <connect gate="A" pin="1" pad="1"/>
  476. <connect gate="A" pin="10" pad="10"/>
  477. <connect gate="A" pin="11" pad="11"/>
  478. <connect gate="A" pin="12" pad="12"/>
  479. <connect gate="A" pin="2" pad="2"/>
  480. <connect gate="A" pin="3" pad="3"/>
  481. <connect gate="A" pin="4" pad="4"/>
  482. <connect gate="A" pin="5" pad="5"/>
  483. <connect gate="A" pin="6" pad="6"/>
  484. <connect gate="A" pin="7" pad="7"/>
  485. <connect gate="A" pin="8" pad="8"/>
  486. <connect gate="A" pin="9" pad="9"/>
  487. </connects>
  488. <technologies>
  489. <technology name=""/>
  490. </technologies>
  491. </device>
  492. <device name="/90" package="2X06/90">
  493. <connects>
  494. <connect gate="A" pin="1" pad="1"/>
  495. <connect gate="A" pin="10" pad="10"/>
  496. <connect gate="A" pin="11" pad="11"/>
  497. <connect gate="A" pin="12" pad="12"/>
  498. <connect gate="A" pin="2" pad="2"/>
  499. <connect gate="A" pin="3" pad="3"/>
  500. <connect gate="A" pin="4" pad="4"/>
  501. <connect gate="A" pin="5" pad="5"/>
  502. <connect gate="A" pin="6" pad="6"/>
  503. <connect gate="A" pin="7" pad="7"/>
  504. <connect gate="A" pin="8" pad="8"/>
  505. <connect gate="A" pin="9" pad="9"/>
  506. </connects>
  507. <technologies>
  508. <technology name=""/>
  509. </technologies>
  510. </device>
  511. </devices>
  512. </deviceset>
  513. <deviceset name="PINHD-1X5" prefix="JP" uservalue="yes">
  514. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  515. <gates>
  516. <gate name="A" symbol="PINHD5" x="0" y="0"/>
  517. </gates>
  518. <devices>
  519. <device name="" package="1X05">
  520. <connects>
  521. <connect gate="A" pin="1" pad="1"/>
  522. <connect gate="A" pin="2" pad="2"/>
  523. <connect gate="A" pin="3" pad="3"/>
  524. <connect gate="A" pin="4" pad="4"/>
  525. <connect gate="A" pin="5" pad="5"/>
  526. </connects>
  527. <technologies>
  528. <technology name=""/>
  529. </technologies>
  530. </device>
  531. <device name="/90" package="1X05/90">
  532. <connects>
  533. <connect gate="A" pin="1" pad="1"/>
  534. <connect gate="A" pin="2" pad="2"/>
  535. <connect gate="A" pin="3" pad="3"/>
  536. <connect gate="A" pin="4" pad="4"/>
  537. <connect gate="A" pin="5" pad="5"/>
  538. </connects>
  539. <technologies>
  540. <technology name=""/>
  541. </technologies>
  542. </device>
  543. <device name="5X2MM" package="1_05X2MM">
  544. <connects>
  545. <connect gate="A" pin="1" pad="1"/>
  546. <connect gate="A" pin="2" pad="2"/>
  547. <connect gate="A" pin="3" pad="3"/>
  548. <connect gate="A" pin="4" pad="4"/>
  549. <connect gate="A" pin="5" pad="5"/>
  550. </connects>
  551. <technologies>
  552. <technology name=""/>
  553. </technologies>
  554. </device>
  555. </devices>
  556. </deviceset>
  557. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  558. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  559. <gates>
  560. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  561. </gates>
  562. <devices>
  563. <device name="" package="1X03">
  564. <connects>
  565. <connect gate="A" pin="1" pad="1"/>
  566. <connect gate="A" pin="2" pad="2"/>
  567. <connect gate="A" pin="3" pad="3"/>
  568. </connects>
  569. <technologies>
  570. <technology name=""/>
  571. </technologies>
  572. </device>
  573. <device name="/90" package="1X03/90">
  574. <connects>
  575. <connect gate="A" pin="1" pad="1"/>
  576. <connect gate="A" pin="2" pad="2"/>
  577. <connect gate="A" pin="3" pad="3"/>
  578. </connects>
  579. <technologies>
  580. <technology name=""/>
  581. </technologies>
  582. </device>
  583. </devices>
  584. </deviceset>
  585. </devicesets>
  586. </library>
  587. <library name="optocoupler">
  588. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  589. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  590. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  591. <packages>
  592. <package name="DIL16">
  593. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  594. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  595. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  596. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  597. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  598. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  599. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  600. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  601. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  602. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  603. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  604. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  605. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  606. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  607. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  608. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  609. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  610. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  611. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  612. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  613. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  614. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  615. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  616. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  617. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  618. </package>
  619. </packages>
  620. <symbols>
  621. <symbol name="LTV847">
  622. <description>LTV847 4-opto DIP16</description>
  623. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  624. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  625. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  626. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  627. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  628. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  629. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  630. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  631. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  632. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  633. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  634. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  635. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  636. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  637. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  638. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  639. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  640. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  641. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  642. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  643. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  644. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  645. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  646. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  647. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  648. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  649. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  650. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  651. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  652. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  653. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  654. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  655. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  656. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  657. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  658. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  659. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  660. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  661. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  662. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  663. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  664. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  665. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  666. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  667. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  668. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  669. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  670. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  671. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  672. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  673. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  674. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  675. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  676. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  677. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  678. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  679. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  680. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  681. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  682. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  683. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  684. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  685. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  686. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  687. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  688. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  689. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  690. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  691. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  692. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  693. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  694. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  695. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  696. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  697. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  698. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  699. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  700. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  701. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  702. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  703. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  704. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  705. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  706. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  707. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  708. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  709. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  710. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  711. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  712. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  713. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  714. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  715. </symbol>
  716. </symbols>
  717. <devicesets>
  718. <deviceset name="LTV847">
  719. <description>LTV847 4-optocoupler DIP16</description>
  720. <gates>
  721. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  722. </gates>
  723. <devices>
  724. <device name="" package="DIL16">
  725. <connects>
  726. <connect gate="G$1" pin="P$1" pad="8"/>
  727. <connect gate="G$1" pin="P$10" pad="10"/>
  728. <connect gate="G$1" pin="P$11" pad="11"/>
  729. <connect gate="G$1" pin="P$12" pad="12"/>
  730. <connect gate="G$1" pin="P$13" pad="13"/>
  731. <connect gate="G$1" pin="P$14" pad="14"/>
  732. <connect gate="G$1" pin="P$15" pad="15"/>
  733. <connect gate="G$1" pin="P$16" pad="16"/>
  734. <connect gate="G$1" pin="P$2" pad="7"/>
  735. <connect gate="G$1" pin="P$3" pad="6"/>
  736. <connect gate="G$1" pin="P$4" pad="5"/>
  737. <connect gate="G$1" pin="P$5" pad="4"/>
  738. <connect gate="G$1" pin="P$6" pad="3"/>
  739. <connect gate="G$1" pin="P$7" pad="2"/>
  740. <connect gate="G$1" pin="P$8" pad="1"/>
  741. <connect gate="G$1" pin="P$9" pad="9"/>
  742. </connects>
  743. <technologies>
  744. <technology name=""/>
  745. </technologies>
  746. </device>
  747. </devices>
  748. </deviceset>
  749. </devicesets>
  750. </library>
  751. <library name="rcl">
  752. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  753. Based on the previous libraries:
  754. &lt;ul&gt;
  755. &lt;li&gt;r.lbr
  756. &lt;li&gt;cap.lbr
  757. &lt;li&gt;cap-fe.lbr
  758. &lt;li&gt;captant.lbr
  759. &lt;li&gt;polcap.lbr
  760. &lt;li&gt;ipc-smd.lbr
  761. &lt;/ul&gt;
  762. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  763. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  764. &lt;p&gt;
  765. for Electrolyt Capacitors see also :&lt;p&gt;
  766. www.bccomponents.com &lt;p&gt;
  767. www.panasonic.com&lt;p&gt;
  768. www.kemet.com&lt;p&gt;
  769. http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf &lt;b&gt;(SANYO)&lt;/b&gt;
  770. &lt;p&gt;
  771. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  772. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0&gt;
  773. &lt;tr valign="top"&gt;
  774. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  775. &lt;td width="90%"&gt;
  776. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  777. &lt;P&gt;
  778. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  779. &lt;TR&gt;
  780. &lt;TD COLSPAN=8&gt;
  781. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  782. &lt;/TD&gt;
  783. &lt;/TR&gt;
  784. &lt;TR&gt;
  785. &lt;TD ALIGN=CENTER&gt;
  786. &lt;B&gt;
  787. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  788. &lt;/B&gt;
  789. &lt;/TD&gt;
  790. &lt;TD ALIGN=CENTER&gt;
  791. &lt;B&gt;
  792. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  793. &lt;/B&gt;
  794. &lt;/TD&gt;
  795. &lt;TD ALIGN=CENTER&gt;
  796. &lt;B&gt;
  797. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  798. &lt;/B&gt;
  799. &lt;/TD&gt;
  800. &lt;TD ALIGN=CENTER&gt;
  801. &lt;B&gt;
  802. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  803. &lt;/B&gt;
  804. &lt;/TD&gt;
  805. &lt;TD ALIGN=CENTER&gt;
  806. &lt;B&gt;
  807. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  808. &lt;/B&gt;
  809. &lt;/TD&gt;
  810. &lt;TD ALIGN=CENTER&gt;
  811. &lt;B&gt;
  812. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  813. &lt;/B&gt;
  814. &lt;/TD&gt;
  815. &lt;TD ALIGN=CENTER&gt;
  816. &lt;B&gt;
  817. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  818. &lt;/B&gt;
  819. &lt;/TD&gt;
  820. &lt;TD ALIGN=CENTER&gt;
  821. &lt;B&gt;
  822. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  823. &lt;/B&gt;
  824. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  825. &lt;/TR&gt;
  826. &lt;TR&gt;
  827. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  828. 3005P&lt;BR&gt;
  829. 3006P&lt;BR&gt;
  830. 3006W&lt;BR&gt;
  831. 3006Y&lt;BR&gt;
  832. 3009P&lt;BR&gt;
  833. 3009W&lt;BR&gt;
  834. 3009Y&lt;BR&gt;
  835. 3057J&lt;BR&gt;
  836. 3057L&lt;BR&gt;
  837. 3057P&lt;BR&gt;
  838. 3057Y&lt;BR&gt;
  839. 3059J&lt;BR&gt;
  840. 3059L&lt;BR&gt;
  841. 3059P&lt;BR&gt;
  842. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  843. &lt;/TD&gt;
  844. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  845. -&lt;BR&gt;
  846. 89P&lt;BR&gt;
  847. 89W&lt;BR&gt;
  848. 89X&lt;BR&gt;
  849. 89PH&lt;BR&gt;
  850. 76P&lt;BR&gt;
  851. 89XH&lt;BR&gt;
  852. 78SLT&lt;BR&gt;
  853. 78L&amp;nbsp;ALT&lt;BR&gt;
  854. 56P&amp;nbsp;ALT&lt;BR&gt;
  855. 78P&amp;nbsp;ALT&lt;BR&gt;
  856. T8S&lt;BR&gt;
  857. 78L&lt;BR&gt;
  858. 56P&lt;BR&gt;
  859. 78P&lt;BR&gt;&lt;/FONT&gt;
  860. &lt;/TD&gt;
  861. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  862. -&lt;BR&gt;
  863. T18/784&lt;BR&gt;
  864. 783&lt;BR&gt;
  865. 781&lt;BR&gt;
  866. -&lt;BR&gt;
  867. -&lt;BR&gt;
  868. -&lt;BR&gt;
  869. 2199&lt;BR&gt;
  870. 1697/1897&lt;BR&gt;
  871. 1680/1880&lt;BR&gt;
  872. 2187&lt;BR&gt;
  873. -&lt;BR&gt;
  874. -&lt;BR&gt;
  875. -&lt;BR&gt;
  876. -&lt;BR&gt;&lt;/FONT&gt;
  877. &lt;/TD&gt;
  878. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  879. -&lt;BR&gt;
  880. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  881. -&lt;BR&gt;
  882. RJ-20X&lt;BR&gt;
  883. -&lt;BR&gt;
  884. -&lt;BR&gt;
  885. -&lt;BR&gt;
  886. 1211L&lt;BR&gt;
  887. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  888. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  889. 1211P&lt;BR&gt;
  890. 8012EKJ&lt;BR&gt;
  891. 8012EKL&lt;BR&gt;
  892. 8012EKQ&lt;BR&gt;
  893. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  894. &lt;/TD&gt;
  895. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  896. -&lt;BR&gt;
  897. 2101P&lt;BR&gt;
  898. 2101W&lt;BR&gt;
  899. 2101Y&lt;BR&gt;
  900. -&lt;BR&gt;
  901. -&lt;BR&gt;
  902. -&lt;BR&gt;
  903. -&lt;BR&gt;
  904. -&lt;BR&gt;
  905. -&lt;BR&gt;
  906. -&lt;BR&gt;
  907. -&lt;BR&gt;
  908. 2102L&lt;BR&gt;
  909. 2102S&lt;BR&gt;
  910. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  911. &lt;/TD&gt;
  912. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  913. -&lt;BR&gt;
  914. EVMCOG&lt;BR&gt;
  915. -&lt;BR&gt;
  916. -&lt;BR&gt;
  917. -&lt;BR&gt;
  918. -&lt;BR&gt;
  919. -&lt;BR&gt;
  920. -&lt;BR&gt;
  921. -&lt;BR&gt;
  922. -&lt;BR&gt;
  923. -&lt;BR&gt;
  924. -&lt;BR&gt;
  925. -&lt;BR&gt;
  926. -&lt;BR&gt;
  927. -&lt;BR&gt;&lt;/FONT&gt;
  928. &lt;/TD&gt;
  929. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  930. -&lt;BR&gt;
  931. 43P&lt;BR&gt;
  932. 43W&lt;BR&gt;
  933. 43Y&lt;BR&gt;
  934. -&lt;BR&gt;
  935. -&lt;BR&gt;
  936. -&lt;BR&gt;
  937. -&lt;BR&gt;
  938. 40L&lt;BR&gt;
  939. 40P&lt;BR&gt;
  940. 40Y&lt;BR&gt;
  941. 70Y-T602&lt;BR&gt;
  942. 70L&lt;BR&gt;
  943. 70P&lt;BR&gt;
  944. 70Y&lt;BR&gt;&lt;/FONT&gt;
  945. &lt;/TD&gt;
  946. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  947. -&lt;BR&gt;
  948. -&lt;BR&gt;
  949. -&lt;BR&gt;
  950. -&lt;BR&gt;
  951. -&lt;BR&gt;
  952. -&lt;BR&gt;
  953. -&lt;BR&gt;
  954. -&lt;BR&gt;
  955. RT/RTR12&lt;BR&gt;
  956. RT/RTR12&lt;BR&gt;
  957. RT/RTR12&lt;BR&gt;
  958. -&lt;BR&gt;
  959. RJ/RJR12&lt;BR&gt;
  960. RJ/RJR12&lt;BR&gt;
  961. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  962. &lt;/TD&gt;
  963. &lt;/TR&gt;
  964. &lt;TR&gt;
  965. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  966. &lt;/TD&gt;
  967. &lt;/TR&gt;
  968. &lt;TR&gt;
  969. &lt;TD COLSPAN=8&gt;
  970. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  971. &lt;/TD&gt;
  972. &lt;/TR&gt;
  973. &lt;TR&gt;
  974. &lt;TD ALIGN=CENTER&gt;
  975. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  976. &lt;/TD&gt;
  977. &lt;TD ALIGN=CENTER&gt;
  978. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  979. &lt;/TD&gt;
  980. &lt;TD ALIGN=CENTER&gt;
  981. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  982. &lt;/TD&gt;
  983. &lt;TD ALIGN=CENTER&gt;
  984. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  985. &lt;/TD&gt;
  986. &lt;TD ALIGN=CENTER&gt;
  987. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  988. &lt;/TD&gt;
  989. &lt;TD ALIGN=CENTER&gt;
  990. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  991. &lt;/TD&gt;
  992. &lt;TD ALIGN=CENTER&gt;
  993. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  994. &lt;/TD&gt;
  995. &lt;TD ALIGN=CENTER&gt;
  996. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  997. &lt;/TD&gt;
  998. &lt;/TR&gt;
  999. &lt;TR&gt;
  1000. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1001. 3250L&lt;BR&gt;
  1002. 3250P&lt;BR&gt;
  1003. 3250W&lt;BR&gt;
  1004. 3250X&lt;BR&gt;
  1005. 3252P&lt;BR&gt;
  1006. 3252W&lt;BR&gt;
  1007. 3252X&lt;BR&gt;
  1008. 3260P&lt;BR&gt;
  1009. 3260W&lt;BR&gt;
  1010. 3260X&lt;BR&gt;
  1011. 3262P&lt;BR&gt;
  1012. 3262W&lt;BR&gt;
  1013. 3262X&lt;BR&gt;
  1014. 3266P&lt;BR&gt;
  1015. 3266W&lt;BR&gt;
  1016. 3266X&lt;BR&gt;
  1017. 3290H&lt;BR&gt;
  1018. 3290P&lt;BR&gt;
  1019. 3290W&lt;BR&gt;
  1020. 3292P&lt;BR&gt;
  1021. 3292W&lt;BR&gt;
  1022. 3292X&lt;BR&gt;
  1023. 3296P&lt;BR&gt;
  1024. 3296W&lt;BR&gt;
  1025. 3296X&lt;BR&gt;
  1026. 3296Y&lt;BR&gt;
  1027. 3296Z&lt;BR&gt;
  1028. 3299P&lt;BR&gt;
  1029. 3299W&lt;BR&gt;
  1030. 3299X&lt;BR&gt;
  1031. 3299Y&lt;BR&gt;
  1032. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  1033. &lt;/TD&gt;
  1034. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1035. -&lt;BR&gt;
  1036. 66P&amp;nbsp;ALT&lt;BR&gt;
  1037. 66W&amp;nbsp;ALT&lt;BR&gt;
  1038. 66X&amp;nbsp;ALT&lt;BR&gt;
  1039. 66P&amp;nbsp;ALT&lt;BR&gt;
  1040. 66W&amp;nbsp;ALT&lt;BR&gt;
  1041. 66X&amp;nbsp;ALT&lt;BR&gt;
  1042. -&lt;BR&gt;
  1043. 64W&amp;nbsp;ALT&lt;BR&gt;
  1044. -&lt;BR&gt;
  1045. 64P&amp;nbsp;ALT&lt;BR&gt;
  1046. 64W&amp;nbsp;ALT&lt;BR&gt;
  1047. 64X&amp;nbsp;ALT&lt;BR&gt;
  1048. 64P&lt;BR&gt;
  1049. 64W&lt;BR&gt;
  1050. 64X&lt;BR&gt;
  1051. 66X&amp;nbsp;ALT&lt;BR&gt;
  1052. 66P&amp;nbsp;ALT&lt;BR&gt;
  1053. 66W&amp;nbsp;ALT&lt;BR&gt;
  1054. 66P&lt;BR&gt;
  1055. 66W&lt;BR&gt;
  1056. 66X&lt;BR&gt;
  1057. 67P&lt;BR&gt;
  1058. 67W&lt;BR&gt;
  1059. 67X&lt;BR&gt;
  1060. 67Y&lt;BR&gt;
  1061. 67Z&lt;BR&gt;
  1062. 68P&lt;BR&gt;
  1063. 68W&lt;BR&gt;
  1064. 68X&lt;BR&gt;
  1065. 67Y&amp;nbsp;ALT&lt;BR&gt;
  1066. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  1067. &lt;/TD&gt;
  1068. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1069. 5050&lt;BR&gt;
  1070. 5091&lt;BR&gt;
  1071. 5080&lt;BR&gt;
  1072. 5087&lt;BR&gt;
  1073. -&lt;BR&gt;
  1074. -&lt;BR&gt;
  1075. -&lt;BR&gt;
  1076. -&lt;BR&gt;
  1077. -&lt;BR&gt;
  1078. -&lt;BR&gt;
  1079. -&lt;BR&gt;
  1080. T63YB&lt;BR&gt;
  1081. T63XB&lt;BR&gt;
  1082. -&lt;BR&gt;
  1083. -&lt;BR&gt;
  1084. -&lt;BR&gt;
  1085. 5887&lt;BR&gt;
  1086. 5891&lt;BR&gt;
  1087. 5880&lt;BR&gt;
  1088. -&lt;BR&gt;
  1089. -&lt;BR&gt;
  1090. -&lt;BR&gt;
  1091. T93Z&lt;BR&gt;
  1092. T93YA&lt;BR&gt;
  1093. T93XA&lt;BR&gt;
  1094. T93YB&lt;BR&gt;
  1095. T93XB&lt;BR&gt;
  1096. -&lt;BR&gt;
  1097. -&lt;BR&gt;
  1098. -&lt;BR&gt;
  1099. -&lt;BR&gt;
  1100. -&lt;BR&gt;&lt;/FONT&gt;
  1101. &lt;/TD&gt;
  1102. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1103. -&lt;BR&gt;
  1104. -&lt;BR&gt;
  1105. -&lt;BR&gt;
  1106. -&lt;BR&gt;
  1107. -&lt;BR&gt;
  1108. -&lt;BR&gt;
  1109. -&lt;BR&gt;
  1110. -&lt;BR&gt;
  1111. -&lt;BR&gt;
  1112. -&lt;BR&gt;
  1113. 8026EKP&lt;BR&gt;
  1114. 8026EKW&lt;BR&gt;
  1115. 8026EKM&lt;BR&gt;
  1116. 8026EKP&lt;BR&gt;
  1117. 8026EKB&lt;BR&gt;
  1118. 8026EKM&lt;BR&gt;
  1119. 1309X&lt;BR&gt;
  1120. 1309P&lt;BR&gt;
  1121. 1309W&lt;BR&gt;
  1122. 8024EKP&lt;BR&gt;
  1123. 8024EKW&lt;BR&gt;
  1124. 8024EKN&lt;BR&gt;
  1125. RJ-9P/CT9P&lt;BR&gt;
  1126. RJ-9W&lt;BR&gt;
  1127. RJ-9X&lt;BR&gt;
  1128. -&lt;BR&gt;
  1129. -&lt;BR&gt;
  1130. -&lt;BR&gt;
  1131. -&lt;BR&gt;
  1132. -&lt;BR&gt;
  1133. -&lt;BR&gt;
  1134. -&lt;BR&gt;&lt;/FONT&gt;
  1135. &lt;/TD&gt;
  1136. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1137. -&lt;BR&gt;
  1138. -&lt;BR&gt;
  1139. -&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. -&lt;BR&gt;
  1142. -&lt;BR&gt;
  1143. -&lt;BR&gt;
  1144. -&lt;BR&gt;
  1145. -&lt;BR&gt;
  1146. -&lt;BR&gt;
  1147. 3103P&lt;BR&gt;
  1148. 3103Y&lt;BR&gt;
  1149. 3103Z&lt;BR&gt;
  1150. 3103P&lt;BR&gt;
  1151. 3103Y&lt;BR&gt;
  1152. 3103Z&lt;BR&gt;
  1153. -&lt;BR&gt;
  1154. -&lt;BR&gt;
  1155. -&lt;BR&gt;
  1156. -&lt;BR&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. 3105P/3106P&lt;BR&gt;
  1160. 3105W/3106W&lt;BR&gt;
  1161. 3105X/3106X&lt;BR&gt;
  1162. 3105Y/3106Y&lt;BR&gt;
  1163. 3105Z/3105Z&lt;BR&gt;
  1164. 3102P&lt;BR&gt;
  1165. 3102W&lt;BR&gt;
  1166. 3102X&lt;BR&gt;
  1167. 3102Y&lt;BR&gt;
  1168. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1169. &lt;/TD&gt;
  1170. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1171. -&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. -&lt;BR&gt;
  1175. -&lt;BR&gt;
  1176. -&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. -&lt;BR&gt;
  1179. -&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. -&lt;BR&gt;
  1182. -&lt;BR&gt;
  1183. -&lt;BR&gt;
  1184. -&lt;BR&gt;
  1185. -&lt;BR&gt;
  1186. -&lt;BR&gt;
  1187. -&lt;BR&gt;
  1188. -&lt;BR&gt;
  1189. -&lt;BR&gt;
  1190. -&lt;BR&gt;
  1191. -&lt;BR&gt;
  1192. -&lt;BR&gt;
  1193. EVMCBG&lt;BR&gt;
  1194. EVMCCG&lt;BR&gt;
  1195. -&lt;BR&gt;
  1196. -&lt;BR&gt;
  1197. -&lt;BR&gt;
  1198. -&lt;BR&gt;
  1199. -&lt;BR&gt;
  1200. -&lt;BR&gt;
  1201. -&lt;BR&gt;
  1202. -&lt;BR&gt;&lt;/FONT&gt;
  1203. &lt;/TD&gt;
  1204. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1205. 55-1-X&lt;BR&gt;
  1206. 55-4-X&lt;BR&gt;
  1207. 55-3-X&lt;BR&gt;
  1208. 55-2-X&lt;BR&gt;
  1209. -&lt;BR&gt;
  1210. -&lt;BR&gt;
  1211. -&lt;BR&gt;
  1212. -&lt;BR&gt;
  1213. -&lt;BR&gt;
  1214. -&lt;BR&gt;
  1215. -&lt;BR&gt;
  1216. -&lt;BR&gt;
  1217. -&lt;BR&gt;
  1218. -&lt;BR&gt;
  1219. -&lt;BR&gt;
  1220. -&lt;BR&gt;
  1221. 50-2-X&lt;BR&gt;
  1222. 50-4-X&lt;BR&gt;
  1223. 50-3-X&lt;BR&gt;
  1224. -&lt;BR&gt;
  1225. -&lt;BR&gt;
  1226. -&lt;BR&gt;
  1227. 64P&lt;BR&gt;
  1228. 64W&lt;BR&gt;
  1229. 64X&lt;BR&gt;
  1230. 64Y&lt;BR&gt;
  1231. 64Z&lt;BR&gt;
  1232. -&lt;BR&gt;
  1233. -&lt;BR&gt;
  1234. -&lt;BR&gt;
  1235. -&lt;BR&gt;
  1236. -&lt;BR&gt;&lt;/FONT&gt;
  1237. &lt;/TD&gt;
  1238. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1239. RT/RTR22&lt;BR&gt;
  1240. RT/RTR22&lt;BR&gt;
  1241. RT/RTR22&lt;BR&gt;
  1242. RT/RTR22&lt;BR&gt;
  1243. RJ/RJR22&lt;BR&gt;
  1244. RJ/RJR22&lt;BR&gt;
  1245. RJ/RJR22&lt;BR&gt;
  1246. RT/RTR26&lt;BR&gt;
  1247. RT/RTR26&lt;BR&gt;
  1248. RT/RTR26&lt;BR&gt;
  1249. RJ/RJR26&lt;BR&gt;
  1250. RJ/RJR26&lt;BR&gt;
  1251. RJ/RJR26&lt;BR&gt;
  1252. RJ/RJR26&lt;BR&gt;
  1253. RJ/RJR26&lt;BR&gt;
  1254. RJ/RJR26&lt;BR&gt;
  1255. RT/RTR24&lt;BR&gt;
  1256. RT/RTR24&lt;BR&gt;
  1257. RT/RTR24&lt;BR&gt;
  1258. RJ/RJR24&lt;BR&gt;
  1259. RJ/RJR24&lt;BR&gt;
  1260. RJ/RJR24&lt;BR&gt;
  1261. RJ/RJR24&lt;BR&gt;
  1262. RJ/RJR24&lt;BR&gt;
  1263. RJ/RJR24&lt;BR&gt;
  1264. -&lt;BR&gt;
  1265. -&lt;BR&gt;
  1266. -&lt;BR&gt;
  1267. -&lt;BR&gt;
  1268. -&lt;BR&gt;
  1269. -&lt;BR&gt;
  1270. -&lt;BR&gt;&lt;/FONT&gt;
  1271. &lt;/TD&gt;
  1272. &lt;/TR&gt;
  1273. &lt;TR&gt;
  1274. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1275. &lt;/TD&gt;
  1276. &lt;/TR&gt;
  1277. &lt;TR&gt;
  1278. &lt;TD COLSPAN=8&gt;
  1279. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1280. &lt;/TD&gt;
  1281. &lt;/TR&gt;
  1282. &lt;TR&gt;
  1283. &lt;TD ALIGN=CENTER&gt;
  1284. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1285. &lt;/TD&gt;
  1286. &lt;TD ALIGN=CENTER&gt;
  1287. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1288. &lt;/TD&gt;
  1289. &lt;TD ALIGN=CENTER&gt;
  1290. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1291. &lt;/TD&gt;
  1292. &lt;TD ALIGN=CENTER&gt;
  1293. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1294. &lt;/TD&gt;
  1295. &lt;TD ALIGN=CENTER&gt;
  1296. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1297. &lt;/TD&gt;
  1298. &lt;TD ALIGN=CENTER&gt;
  1299. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1300. &lt;/TD&gt;
  1301. &lt;TD ALIGN=CENTER&gt;
  1302. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1303. &lt;/TD&gt;
  1304. &lt;TD ALIGN=CENTER&gt;
  1305. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1306. &lt;/TD&gt;
  1307. &lt;/TR&gt;
  1308. &lt;TR&gt;
  1309. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1310. 3323P&lt;BR&gt;
  1311. 3323S&lt;BR&gt;
  1312. 3323W&lt;BR&gt;
  1313. 3329H&lt;BR&gt;
  1314. 3329P&lt;BR&gt;
  1315. 3329W&lt;BR&gt;
  1316. 3339H&lt;BR&gt;
  1317. 3339P&lt;BR&gt;
  1318. 3339W&lt;BR&gt;
  1319. 3352E&lt;BR&gt;
  1320. 3352H&lt;BR&gt;
  1321. 3352K&lt;BR&gt;
  1322. 3352P&lt;BR&gt;
  1323. 3352T&lt;BR&gt;
  1324. 3352V&lt;BR&gt;
  1325. 3352W&lt;BR&gt;
  1326. 3362H&lt;BR&gt;
  1327. 3362M&lt;BR&gt;
  1328. 3362P&lt;BR&gt;
  1329. 3362R&lt;BR&gt;
  1330. 3362S&lt;BR&gt;
  1331. 3362U&lt;BR&gt;
  1332. 3362W&lt;BR&gt;
  1333. 3362X&lt;BR&gt;
  1334. 3386B&lt;BR&gt;
  1335. 3386C&lt;BR&gt;
  1336. 3386F&lt;BR&gt;
  1337. 3386H&lt;BR&gt;
  1338. 3386K&lt;BR&gt;
  1339. 3386M&lt;BR&gt;
  1340. 3386P&lt;BR&gt;
  1341. 3386S&lt;BR&gt;
  1342. 3386W&lt;BR&gt;
  1343. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1344. &lt;/TD&gt;
  1345. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1346. 25P&lt;BR&gt;
  1347. 25S&lt;BR&gt;
  1348. 25RX&lt;BR&gt;
  1349. 82P&lt;BR&gt;
  1350. 82M&lt;BR&gt;
  1351. 82PA&lt;BR&gt;
  1352. -&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. 91E&lt;BR&gt;
  1356. 91X&lt;BR&gt;
  1357. 91T&lt;BR&gt;
  1358. 91B&lt;BR&gt;
  1359. 91A&lt;BR&gt;
  1360. 91V&lt;BR&gt;
  1361. 91W&lt;BR&gt;
  1362. 25W&lt;BR&gt;
  1363. 25V&lt;BR&gt;
  1364. 25P&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. 25S&lt;BR&gt;
  1367. 25U&lt;BR&gt;
  1368. 25RX&lt;BR&gt;
  1369. 25X&lt;BR&gt;
  1370. 72XW&lt;BR&gt;
  1371. 72XL&lt;BR&gt;
  1372. 72PM&lt;BR&gt;
  1373. 72RX&lt;BR&gt;
  1374. -&lt;BR&gt;
  1375. 72PX&lt;BR&gt;
  1376. 72P&lt;BR&gt;
  1377. 72RXW&lt;BR&gt;
  1378. 72RXL&lt;BR&gt;
  1379. 72X&lt;BR&gt;&lt;/FONT&gt;
  1380. &lt;/TD&gt;
  1381. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1382. -&lt;BR&gt;
  1383. -&lt;BR&gt;
  1384. -&lt;BR&gt;
  1385. T7YB&lt;BR&gt;
  1386. T7YA&lt;BR&gt;
  1387. -&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;
  1392. -&lt;BR&gt;
  1393. -&lt;BR&gt;
  1394. -&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. TXD&lt;BR&gt;
  1400. TYA&lt;BR&gt;
  1401. TYP&lt;BR&gt;
  1402. -&lt;BR&gt;
  1403. TYD&lt;BR&gt;
  1404. TX&lt;BR&gt;
  1405. -&lt;BR&gt;
  1406. 150SX&lt;BR&gt;
  1407. 100SX&lt;BR&gt;
  1408. 102T&lt;BR&gt;
  1409. 101S&lt;BR&gt;
  1410. 190T&lt;BR&gt;
  1411. 150TX&lt;BR&gt;
  1412. 101&lt;BR&gt;
  1413. -&lt;BR&gt;
  1414. -&lt;BR&gt;
  1415. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1416. &lt;/TD&gt;
  1417. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1418. ET6P&lt;BR&gt;
  1419. ET6S&lt;BR&gt;
  1420. ET6X&lt;BR&gt;
  1421. RJ-6W/8014EMW&lt;BR&gt;
  1422. RJ-6P/8014EMP&lt;BR&gt;
  1423. RJ-6X/8014EMX&lt;BR&gt;
  1424. TM7W&lt;BR&gt;
  1425. TM7P&lt;BR&gt;
  1426. TM7X&lt;BR&gt;
  1427. -&lt;BR&gt;
  1428. 8017SMS&lt;BR&gt;
  1429. -&lt;BR&gt;
  1430. 8017SMB&lt;BR&gt;
  1431. 8017SMA&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. CT-6W&lt;BR&gt;
  1435. CT-6H&lt;BR&gt;
  1436. CT-6P&lt;BR&gt;
  1437. CT-6R&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. CT-6V&lt;BR&gt;
  1440. CT-6X&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. 8038EKV&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. 8038EKX&lt;BR&gt;
  1446. -&lt;BR&gt;
  1447. -&lt;BR&gt;
  1448. 8038EKP&lt;BR&gt;
  1449. 8038EKZ&lt;BR&gt;
  1450. 8038EKW&lt;BR&gt;
  1451. -&lt;BR&gt;&lt;/FONT&gt;
  1452. &lt;/TD&gt;
  1453. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1454. -&lt;BR&gt;
  1455. -&lt;BR&gt;
  1456. -&lt;BR&gt;
  1457. 3321H&lt;BR&gt;
  1458. 3321P&lt;BR&gt;
  1459. 3321N&lt;BR&gt;
  1460. 1102H&lt;BR&gt;
  1461. 1102P&lt;BR&gt;
  1462. 1102T&lt;BR&gt;
  1463. RVA0911V304A&lt;BR&gt;
  1464. -&lt;BR&gt;
  1465. RVA0911H413A&lt;BR&gt;
  1466. RVG0707V100A&lt;BR&gt;
  1467. RVA0607V(H)306A&lt;BR&gt;
  1468. RVA1214H213A&lt;BR&gt;
  1469. -&lt;BR&gt;
  1470. -&lt;BR&gt;
  1471. -&lt;BR&gt;
  1472. -&lt;BR&gt;
  1473. -&lt;BR&gt;
  1474. -&lt;BR&gt;
  1475. -&lt;BR&gt;
  1476. -&lt;BR&gt;
  1477. -&lt;BR&gt;
  1478. 3104B&lt;BR&gt;
  1479. 3104C&lt;BR&gt;
  1480. 3104F&lt;BR&gt;
  1481. 3104H&lt;BR&gt;
  1482. -&lt;BR&gt;
  1483. 3104M&lt;BR&gt;
  1484. 3104P&lt;BR&gt;
  1485. 3104S&lt;BR&gt;
  1486. 3104W&lt;BR&gt;
  1487. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1488. &lt;/TD&gt;
  1489. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1490. EVMQ0G&lt;BR&gt;
  1491. EVMQIG&lt;BR&gt;
  1492. EVMQ3G&lt;BR&gt;
  1493. EVMS0G&lt;BR&gt;
  1494. EVMQ0G&lt;BR&gt;
  1495. EVMG0G&lt;BR&gt;
  1496. -&lt;BR&gt;
  1497. -&lt;BR&gt;
  1498. -&lt;BR&gt;
  1499. EVMK4GA00B&lt;BR&gt;
  1500. EVM30GA00B&lt;BR&gt;
  1501. EVMK0GA00B&lt;BR&gt;
  1502. EVM38GA00B&lt;BR&gt;
  1503. EVMB6&lt;BR&gt;
  1504. EVLQ0&lt;BR&gt;
  1505. -&lt;BR&gt;
  1506. EVMMSG&lt;BR&gt;
  1507. EVMMBG&lt;BR&gt;
  1508. EVMMAG&lt;BR&gt;
  1509. -&lt;BR&gt;
  1510. -&lt;BR&gt;
  1511. EVMMCS&lt;BR&gt;
  1512. -&lt;BR&gt;
  1513. -&lt;BR&gt;
  1514. -&lt;BR&gt;
  1515. -&lt;BR&gt;
  1516. -&lt;BR&gt;
  1517. EVMM1&lt;BR&gt;
  1518. -&lt;BR&gt;
  1519. -&lt;BR&gt;
  1520. EVMM0&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;
  1523. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1524. &lt;/TD&gt;
  1525. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;
  1529. 62-3-1&lt;BR&gt;
  1530. 62-1-2&lt;BR&gt;
  1531. -&lt;BR&gt;
  1532. -&lt;BR&gt;
  1533. -&lt;BR&gt;
  1534. -&lt;BR&gt;
  1535. -&lt;BR&gt;
  1536. -&lt;BR&gt;
  1537. -&lt;BR&gt;
  1538. -&lt;BR&gt;
  1539. -&lt;BR&gt;
  1540. -&lt;BR&gt;
  1541. -&lt;BR&gt;
  1542. 67R&lt;BR&gt;
  1543. -&lt;BR&gt;
  1544. 67P&lt;BR&gt;
  1545. -&lt;BR&gt;
  1546. -&lt;BR&gt;
  1547. -&lt;BR&gt;
  1548. -&lt;BR&gt;
  1549. 67X&lt;BR&gt;
  1550. 63V&lt;BR&gt;
  1551. 63S&lt;BR&gt;
  1552. 63M&lt;BR&gt;
  1553. -&lt;BR&gt;
  1554. -&lt;BR&gt;
  1555. 63H&lt;BR&gt;
  1556. 63P&lt;BR&gt;
  1557. -&lt;BR&gt;
  1558. -&lt;BR&gt;
  1559. 63X&lt;BR&gt;&lt;/FONT&gt;
  1560. &lt;/TD&gt;
  1561. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1562. -&lt;BR&gt;
  1563. -&lt;BR&gt;
  1564. -&lt;BR&gt;
  1565. RJ/RJR50&lt;BR&gt;
  1566. RJ/RJR50&lt;BR&gt;
  1567. RJ/RJR50&lt;BR&gt;
  1568. -&lt;BR&gt;
  1569. -&lt;BR&gt;
  1570. -&lt;BR&gt;
  1571. -&lt;BR&gt;
  1572. -&lt;BR&gt;
  1573. -&lt;BR&gt;
  1574. -&lt;BR&gt;
  1575. -&lt;BR&gt;
  1576. -&lt;BR&gt;
  1577. -&lt;BR&gt;
  1578. -&lt;BR&gt;
  1579. -&lt;BR&gt;
  1580. -&lt;BR&gt;
  1581. -&lt;BR&gt;
  1582. -&lt;BR&gt;
  1583. -&lt;BR&gt;
  1584. -&lt;BR&gt;
  1585. -&lt;BR&gt;
  1586. -&lt;BR&gt;
  1587. -&lt;BR&gt;
  1588. -&lt;BR&gt;
  1589. -&lt;BR&gt;
  1590. -&lt;BR&gt;
  1591. -&lt;BR&gt;
  1592. -&lt;BR&gt;
  1593. -&lt;BR&gt;
  1594. -&lt;BR&gt;
  1595. -&lt;BR&gt;&lt;/FONT&gt;
  1596. &lt;/TD&gt;
  1597. &lt;/TR&gt;
  1598. &lt;/TABLE&gt;
  1599. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1600. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1601. &lt;TR&gt;
  1602. &lt;TD COLSPAN=7&gt;
  1603. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1604. &lt;P&gt;
  1605. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1606. &lt;/TD&gt;
  1607. &lt;/TR&gt;
  1608. &lt;TR&gt;
  1609. &lt;TD&gt;
  1610. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1611. &lt;/TD&gt;
  1612. &lt;TD&gt;
  1613. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1614. &lt;/TD&gt;
  1615. &lt;TD&gt;
  1616. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1617. &lt;/TD&gt;
  1618. &lt;TD&gt;
  1619. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1620. &lt;/TD&gt;
  1621. &lt;TD&gt;
  1622. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1623. &lt;/TD&gt;
  1624. &lt;TD&gt;
  1625. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1626. &lt;/TD&gt;
  1627. &lt;TD&gt;
  1628. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1629. &lt;/TD&gt;
  1630. &lt;/TR&gt;
  1631. &lt;TR&gt;
  1632. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1633. 3224G&lt;BR&gt;
  1634. 3224J&lt;BR&gt;
  1635. 3224W&lt;BR&gt;
  1636. 3269P&lt;BR&gt;
  1637. 3269W&lt;BR&gt;
  1638. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1639. &lt;/TD&gt;
  1640. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1641. 44G&lt;BR&gt;
  1642. 44J&lt;BR&gt;
  1643. 44W&lt;BR&gt;
  1644. 84P&lt;BR&gt;
  1645. 84W&lt;BR&gt;
  1646. 84X&lt;BR&gt;&lt;/FONT&gt;
  1647. &lt;/TD&gt;
  1648. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1649. -&lt;BR&gt;
  1650. -&lt;BR&gt;
  1651. -&lt;BR&gt;
  1652. ST63Z&lt;BR&gt;
  1653. ST63Y&lt;BR&gt;
  1654. -&lt;BR&gt;&lt;/FONT&gt;
  1655. &lt;/TD&gt;
  1656. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1657. -&lt;BR&gt;
  1658. -&lt;BR&gt;
  1659. -&lt;BR&gt;
  1660. ST5P&lt;BR&gt;
  1661. ST5W&lt;BR&gt;
  1662. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1663. &lt;/TD&gt;
  1664. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1665. -&lt;BR&gt;
  1666. -&lt;BR&gt;
  1667. -&lt;BR&gt;
  1668. -&lt;BR&gt;
  1669. -&lt;BR&gt;
  1670. -&lt;BR&gt;&lt;/FONT&gt;
  1671. &lt;/TD&gt;
  1672. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1673. -&lt;BR&gt;
  1674. -&lt;BR&gt;
  1675. -&lt;BR&gt;
  1676. -&lt;BR&gt;
  1677. -&lt;BR&gt;
  1678. -&lt;BR&gt;&lt;/FONT&gt;
  1679. &lt;/TD&gt;
  1680. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1681. -&lt;BR&gt;
  1682. -&lt;BR&gt;
  1683. -&lt;BR&gt;
  1684. -&lt;BR&gt;
  1685. -&lt;BR&gt;
  1686. -&lt;BR&gt;&lt;/FONT&gt;
  1687. &lt;/TD&gt;
  1688. &lt;/TR&gt;
  1689. &lt;TR&gt;
  1690. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1691. &lt;/TD&gt;
  1692. &lt;/TR&gt;
  1693. &lt;TR&gt;
  1694. &lt;TD COLSPAN=7&gt;
  1695. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1696. &lt;/TD&gt;
  1697. &lt;/TR&gt;
  1698. &lt;TR&gt;
  1699. &lt;TD&gt;
  1700. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1701. &lt;/TD&gt;
  1702. &lt;TD&gt;
  1703. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1704. &lt;/TD&gt;
  1705. &lt;TD&gt;
  1706. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1707. &lt;/TD&gt;
  1708. &lt;TD&gt;
  1709. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1710. &lt;/TD&gt;
  1711. &lt;TD&gt;
  1712. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1713. &lt;/TD&gt;
  1714. &lt;TD&gt;
  1715. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1716. &lt;/TD&gt;
  1717. &lt;TD&gt;
  1718. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1719. &lt;/TD&gt;
  1720. &lt;/TR&gt;
  1721. &lt;TR&gt;
  1722. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1723. 3314G&lt;BR&gt;
  1724. 3314J&lt;BR&gt;
  1725. 3364A/B&lt;BR&gt;
  1726. 3364C/D&lt;BR&gt;
  1727. 3364W/X&lt;BR&gt;
  1728. 3313G&lt;BR&gt;
  1729. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1730. &lt;/TD&gt;
  1731. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1732. 23B&lt;BR&gt;
  1733. 23A&lt;BR&gt;
  1734. 21X&lt;BR&gt;
  1735. 21W&lt;BR&gt;
  1736. -&lt;BR&gt;
  1737. 22B&lt;BR&gt;
  1738. 22A&lt;BR&gt;&lt;/FONT&gt;
  1739. &lt;/TD&gt;
  1740. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1741. ST5YL/ST53YL&lt;BR&gt;
  1742. ST5YJ/5T53YJ&lt;BR&gt;
  1743. ST-23A&lt;BR&gt;
  1744. ST-22B&lt;BR&gt;
  1745. ST-22&lt;BR&gt;
  1746. -&lt;BR&gt;
  1747. -&lt;BR&gt;&lt;/FONT&gt;
  1748. &lt;/TD&gt;
  1749. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1750. ST-4B&lt;BR&gt;
  1751. ST-4A&lt;BR&gt;
  1752. -&lt;BR&gt;
  1753. -&lt;BR&gt;
  1754. -&lt;BR&gt;
  1755. ST-3B&lt;BR&gt;
  1756. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1757. &lt;/TD&gt;
  1758. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1759. -&lt;BR&gt;
  1760. EVM-6YS&lt;BR&gt;
  1761. EVM-1E&lt;BR&gt;
  1762. EVM-1G&lt;BR&gt;
  1763. EVM-1D&lt;BR&gt;
  1764. -&lt;BR&gt;
  1765. -&lt;BR&gt;&lt;/FONT&gt;
  1766. &lt;/TD&gt;
  1767. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1768. G4B&lt;BR&gt;
  1769. G4A&lt;BR&gt;
  1770. TR04-3S1&lt;BR&gt;
  1771. TRG04-2S1&lt;BR&gt;
  1772. -&lt;BR&gt;
  1773. -&lt;BR&gt;
  1774. -&lt;BR&gt;&lt;/FONT&gt;
  1775. &lt;/TD&gt;
  1776. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1777. -&lt;BR&gt;
  1778. -&lt;BR&gt;
  1779. DVR-43A&lt;BR&gt;
  1780. CVR-42C&lt;BR&gt;
  1781. CVR-42A/C&lt;BR&gt;
  1782. -&lt;BR&gt;
  1783. -&lt;BR&gt;&lt;/FONT&gt;
  1784. &lt;/TD&gt;
  1785. &lt;/TR&gt;
  1786. &lt;/TABLE&gt;
  1787. &lt;P&gt;
  1788. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1789. &lt;P&gt;
  1790. &amp;nbsp;
  1791. &lt;P&gt;
  1792. &lt;/td&gt;
  1793. &lt;/tr&gt;
  1794. &lt;/table&gt;</description>
  1795. <packages>
  1796. <package name="R0402">
  1797. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1798. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1799. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1800. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1801. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1802. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1803. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1804. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1805. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1806. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1807. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1808. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1809. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1810. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1811. </package>
  1812. <package name="R0603">
  1813. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1814. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1815. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1816. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1817. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1818. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1819. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1820. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1821. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1822. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1823. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1824. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1825. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1826. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1827. </package>
  1828. <package name="R0805">
  1829. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1830. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1831. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1832. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1833. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1834. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1835. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1836. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1837. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1838. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1839. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1840. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1841. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1842. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1843. </package>
  1844. <package name="R0805W">
  1845. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1846. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1847. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1848. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1849. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1850. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1851. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1852. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1853. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1854. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1855. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1856. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1857. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1858. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1859. </package>
  1860. <package name="R1206">
  1861. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1862. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1863. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1864. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1865. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1866. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1867. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1868. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1869. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1870. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1871. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1872. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1873. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1874. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1875. </package>
  1876. <package name="R1206W">
  1877. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1878. wave soldering</description>
  1879. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1880. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1881. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1882. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1883. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1884. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1885. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1886. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1887. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1888. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1889. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1890. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1891. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1892. </package>
  1893. <package name="R1210">
  1894. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1895. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1896. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1897. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1898. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1899. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1900. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1901. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1902. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1903. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1904. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1905. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1906. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1907. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1908. </package>
  1909. <package name="R1210W">
  1910. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1911. wave soldering</description>
  1912. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1913. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1914. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1915. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1916. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1917. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1918. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1919. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1920. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1921. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1922. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1923. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1924. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1925. </package>
  1926. <package name="R2010">
  1927. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1928. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1929. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1930. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1931. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1932. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1933. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1934. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1935. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1936. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1937. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1938. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1939. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1940. </package>
  1941. <package name="R2010W">
  1942. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1943. wave soldering</description>
  1944. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1945. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1946. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1947. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1948. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1949. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1950. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1951. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1952. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1953. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1954. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1955. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1956. </package>
  1957. <package name="R2012">
  1958. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1959. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1960. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1961. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1962. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1963. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1964. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1965. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1966. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1967. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1968. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1969. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1970. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1971. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1972. </package>
  1973. <package name="R2012W">
  1974. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1975. wave soldering</description>
  1976. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1977. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1978. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1979. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1980. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1981. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1982. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1983. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1984. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1985. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1986. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1987. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1988. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1989. </package>
  1990. <package name="R2512">
  1991. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1992. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1993. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1994. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1995. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1996. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1997. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1998. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1999. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2000. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2001. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2002. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2003. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2004. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2005. </package>
  2006. <package name="R2512W">
  2007. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2008. wave soldering</description>
  2009. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2010. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2011. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2012. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2013. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2014. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2015. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2016. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2017. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2018. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2019. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2020. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2021. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2022. </package>
  2023. <package name="R3216">
  2024. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2025. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2026. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2027. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2028. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2029. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2030. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2031. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2032. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2033. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2034. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2035. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2036. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2037. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2038. </package>
  2039. <package name="R3216W">
  2040. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2041. wave soldering</description>
  2042. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2043. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2044. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2045. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2046. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2047. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2048. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2049. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2050. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2051. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2052. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2053. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2054. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2055. </package>
  2056. <package name="R3225">
  2057. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2058. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2059. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2060. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2061. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2062. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2063. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2064. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2065. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2066. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2067. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2068. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2069. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2070. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2071. </package>
  2072. <package name="R3225W">
  2073. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2074. wave soldering</description>
  2075. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2076. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2077. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2078. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2079. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2080. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2081. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2082. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2083. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2084. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2085. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2086. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2087. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2088. </package>
  2089. <package name="R5025">
  2090. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2091. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2092. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2093. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2094. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2095. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2096. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2097. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2098. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2099. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2100. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2101. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2102. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2103. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2104. </package>
  2105. <package name="R5025W">
  2106. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2107. wave soldering</description>
  2108. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2109. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2110. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2111. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2112. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2113. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2114. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2115. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2116. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2117. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2118. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2119. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2120. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2121. </package>
  2122. <package name="R6332">
  2123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2124. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2125. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2126. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2127. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2128. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2129. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2130. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2131. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2132. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2133. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2134. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2135. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2136. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2137. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2138. </package>
  2139. <package name="R6332W">
  2140. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  2141. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2142. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2143. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2144. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2145. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2146. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2147. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2148. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2149. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2150. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2151. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2152. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2153. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2154. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2155. </package>
  2156. <package name="M0805">
  2157. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2158. MELF 0.10 W</description>
  2159. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2160. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2161. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2162. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2163. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2164. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2165. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2166. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2167. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2168. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2169. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2170. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2171. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2172. </package>
  2173. <package name="M1206">
  2174. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2175. MELF 0.25 W</description>
  2176. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2177. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2178. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2179. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2180. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2181. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2182. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2183. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2184. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2185. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2186. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2187. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2188. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2189. </package>
  2190. <package name="M1406">
  2191. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2192. MELF 0.12 W</description>
  2193. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2194. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2195. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2196. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2197. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2198. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2199. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2200. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2201. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2202. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2203. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2204. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2205. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2206. </package>
  2207. <package name="M2012">
  2208. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2209. MELF 0.10 W</description>
  2210. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2211. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2212. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2213. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2214. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2215. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2216. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2217. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2218. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2219. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2220. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2221. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2222. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2223. </package>
  2224. <package name="M2309">
  2225. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2226. MELF 0.25 W</description>
  2227. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2228. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2229. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2230. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2231. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2232. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2233. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2234. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2235. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2236. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2237. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2238. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2239. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2240. </package>
  2241. <package name="M3216">
  2242. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2243. MELF 0.25 W</description>
  2244. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2245. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2246. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2247. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2248. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2249. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2250. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2251. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2252. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2253. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2254. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2255. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2256. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2257. </package>
  2258. <package name="M3516">
  2259. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2260. MELF 0.12 W</description>
  2261. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2262. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2263. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2264. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2265. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2266. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2267. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2268. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2269. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2270. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2271. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2272. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2273. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2274. </package>
  2275. <package name="M5923">
  2276. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2277. MELF 0.25 W</description>
  2278. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2279. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2280. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2281. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2282. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2283. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2284. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2285. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2286. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2287. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2288. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2289. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2290. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2291. </package>
  2292. <package name="0204/5">
  2293. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2294. type 0204, grid 5 mm</description>
  2295. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2296. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2297. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2298. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2299. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2300. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2301. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2302. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2303. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2304. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2305. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2306. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2307. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2308. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2309. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2310. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2311. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2312. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2313. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2314. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2315. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2316. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2317. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2318. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2319. </package>
  2320. <package name="0204/7">
  2321. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2322. type 0204, grid 7.5 mm</description>
  2323. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2324. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2325. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2326. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2327. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2328. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2329. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2330. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2331. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2332. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2333. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2334. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2335. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2336. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2337. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2338. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2339. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2340. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2341. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2342. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2343. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2344. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2345. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2346. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2347. </package>
  2348. <package name="0204V">
  2349. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2350. type 0204, grid 2.5 mm</description>
  2351. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2352. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2353. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2354. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2355. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2356. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2357. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2358. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2359. </package>
  2360. <package name="0207/10">
  2361. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2362. type 0207, grid 10 mm</description>
  2363. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2364. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2365. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2366. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2367. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2368. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2369. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2370. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2371. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2372. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2373. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2374. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2375. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2376. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2377. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2378. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2379. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2380. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2381. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2382. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2383. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2384. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2385. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2386. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2387. </package>
  2388. <package name="0207/12">
  2389. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2390. type 0207, grid 12 mm</description>
  2391. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2392. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2393. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2394. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2395. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2396. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2397. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2398. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2399. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2400. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2401. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2402. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2403. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2404. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2405. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2406. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2407. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2408. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2409. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2410. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2411. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2412. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2413. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2414. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2415. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2416. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2417. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2418. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2419. </package>
  2420. <package name="0207/15">
  2421. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2422. type 0207, grid 15mm</description>
  2423. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2424. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2425. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2426. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2427. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2428. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2429. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2430. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2431. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2432. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2433. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2434. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2435. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2436. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2437. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2438. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2439. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2440. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2441. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2442. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2443. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2444. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2445. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2446. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2447. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2448. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2449. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2450. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2451. </package>
  2452. <package name="0207/2V">
  2453. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2454. type 0207, grid 2.5 mm</description>
  2455. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2456. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2457. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2458. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2459. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2460. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2461. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2462. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2463. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2464. </package>
  2465. <package name="0207/5V">
  2466. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2467. type 0207, grid 5 mm</description>
  2468. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2469. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2470. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2471. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2472. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2473. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2474. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2475. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2476. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2477. </package>
  2478. <package name="0207/7">
  2479. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2480. type 0207, grid 7.5 mm</description>
  2481. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2482. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2483. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2484. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2485. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2486. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2487. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2488. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2489. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2490. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2491. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2492. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2493. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2494. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2495. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2496. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2497. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2498. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2499. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2500. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2501. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2502. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2503. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2504. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2505. </package>
  2506. <package name="0309/10">
  2507. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2508. type 0309, grid 10mm</description>
  2509. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2510. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2511. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2512. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2513. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2514. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2515. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2516. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2517. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2518. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2519. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2520. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2521. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2522. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2523. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2524. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2525. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2526. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2527. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2528. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2529. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2530. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2531. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2532. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2533. </package>
  2534. <package name="0309/12">
  2535. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2536. type 0309, grid 12.5 mm</description>
  2537. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2538. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2539. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2540. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2541. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2542. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2543. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2544. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2545. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2546. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2547. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2548. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2549. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2550. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2551. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2552. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2553. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2554. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2555. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2556. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2557. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2558. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2559. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2560. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2561. </package>
  2562. <package name="0309V">
  2563. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2564. type 0309, grid 2.5 mm</description>
  2565. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2566. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2567. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2568. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2569. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2570. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2571. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2572. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2573. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2574. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2575. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2576. </package>
  2577. <package name="0411/12">
  2578. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2579. type 0411, grid 12.5 mm</description>
  2580. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2581. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2582. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2583. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2584. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2585. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2587. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2588. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2589. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2590. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2591. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2592. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2593. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2594. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2595. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2596. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2597. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2598. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2599. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2600. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2601. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2602. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2603. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2604. </package>
  2605. <package name="0411/15">
  2606. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2607. type 0411, grid 15 mm</description>
  2608. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2609. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2610. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2611. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2612. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2613. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2614. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2615. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2616. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2617. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2618. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2619. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2620. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2621. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2622. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2623. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2624. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2625. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2626. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2627. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2628. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2629. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2630. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2631. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2632. </package>
  2633. <package name="0411V">
  2634. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2635. type 0411, grid 3.81 mm</description>
  2636. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2637. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2638. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2639. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2640. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2641. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2642. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2643. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2644. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2645. </package>
  2646. <package name="0414/15">
  2647. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2648. type 0414, grid 15 mm</description>
  2649. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2650. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2651. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2652. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2653. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2654. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2655. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2656. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2657. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2658. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2659. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2660. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2661. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2662. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2663. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2664. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2665. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2666. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2667. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2668. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2669. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2670. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2671. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2672. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2673. </package>
  2674. <package name="0414V">
  2675. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2676. type 0414, grid 5 mm</description>
  2677. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2678. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2679. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2680. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2681. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2682. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2683. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2684. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2685. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2686. </package>
  2687. <package name="0617/17">
  2688. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2689. type 0617, grid 17.5 mm</description>
  2690. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2691. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2692. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2693. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2694. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2695. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2696. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2697. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2698. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2699. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2700. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2701. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2702. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2703. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2704. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2705. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2706. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2707. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2708. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2709. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2710. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2711. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2712. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2713. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2714. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2715. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2716. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2717. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2718. </package>
  2719. <package name="0617/22">
  2720. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2721. type 0617, grid 22.5 mm</description>
  2722. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2723. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2724. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2725. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2726. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2727. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2728. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2729. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2730. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2731. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2732. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2733. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2734. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2735. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2736. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2737. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2738. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2739. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2740. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2741. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2742. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2743. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2744. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2745. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2746. </package>
  2747. <package name="0617V">
  2748. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2749. type 0617, grid 5 mm</description>
  2750. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2751. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2752. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2753. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2754. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2755. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2756. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2757. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2758. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2759. </package>
  2760. <package name="0922/22">
  2761. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2762. type 0922, grid 22.5 mm</description>
  2763. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2764. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2765. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2766. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2767. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2768. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2769. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2770. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2771. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2772. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2773. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2774. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2775. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2776. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2777. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2778. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2779. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2780. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2781. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2782. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2783. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2784. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2785. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2786. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2787. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2788. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2789. </package>
  2790. <package name="P0613V">
  2791. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2792. type 0613, grid 5 mm</description>
  2793. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2794. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2795. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2796. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2797. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2798. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2799. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2800. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2801. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2802. </package>
  2803. <package name="P0613/15">
  2804. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2805. type 0613, grid 15 mm</description>
  2806. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2807. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2808. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2809. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2810. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2811. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2812. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2813. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2814. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2815. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2816. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2817. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2818. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2819. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2820. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2821. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2822. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2823. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2824. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2825. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2826. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2827. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2828. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2829. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2830. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2831. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2832. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2833. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2834. </package>
  2835. <package name="P0817/22">
  2836. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2837. type 0817, grid 22.5 mm</description>
  2838. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2839. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2840. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2841. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2842. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2843. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2844. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2845. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2846. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2847. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2848. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2849. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2850. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2851. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2852. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2853. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2854. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2855. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2856. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2857. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2858. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2859. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2860. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2861. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2862. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2863. </package>
  2864. <package name="P0817V">
  2865. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2866. type 0817, grid 6.35 mm</description>
  2867. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2868. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2869. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2870. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2871. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2872. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2873. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2874. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2875. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2876. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2877. </package>
  2878. <package name="V234/12">
  2879. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2880. type V234, grid 12.5 mm</description>
  2881. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2882. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2883. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2884. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2885. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2886. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2887. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2888. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2889. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2890. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2891. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2892. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2893. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2894. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2895. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2896. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2897. </package>
  2898. <package name="V235/17">
  2899. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2900. type V235, grid 17.78 mm</description>
  2901. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2902. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2903. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2904. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2905. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2906. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2907. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2908. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2909. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2910. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2911. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2912. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2913. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2914. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2915. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2916. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2917. </package>
  2918. <package name="V526-0">
  2919. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2920. type V526-0, grid 2.5 mm</description>
  2921. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2922. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2923. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2924. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2925. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2926. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2927. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2928. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2929. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2930. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2931. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2932. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2933. </package>
  2934. <package name="MINI_MELF-0102R">
  2935. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2936. source Beyschlag</description>
  2937. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2938. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2939. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2940. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2941. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2942. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2943. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2944. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2945. </package>
  2946. <package name="MINI_MELF-0102W">
  2947. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2948. source Beyschlag</description>
  2949. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2950. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2951. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2952. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2953. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2954. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2955. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2956. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2957. </package>
  2958. <package name="MINI_MELF-0204R">
  2959. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2960. source Beyschlag</description>
  2961. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2962. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2963. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2964. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2965. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2966. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2967. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2968. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2969. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2970. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2971. </package>
  2972. <package name="MINI_MELF-0204W">
  2973. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2974. source Beyschlag</description>
  2975. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2976. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2977. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2978. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2979. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2980. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2981. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2982. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2983. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2984. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2985. </package>
  2986. <package name="MINI_MELF-0207R">
  2987. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2988. source Beyschlag</description>
  2989. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2990. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2991. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2992. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2993. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2994. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2995. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2996. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2997. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2998. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2999. </package>
  3000. <package name="MINI_MELF-0207W">
  3001. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  3002. source Beyschlag</description>
  3003. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3004. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3005. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3006. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3007. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  3008. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  3009. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3010. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3011. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3012. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3013. </package>
  3014. <package name="0922V">
  3015. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3016. type 0922, grid 7.5 mm</description>
  3017. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3018. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  3019. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  3020. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  3021. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3022. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3023. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3024. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3025. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  3026. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3027. </package>
  3028. <package name="RDH/15">
  3029. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3030. type RDH, grid 15 mm</description>
  3031. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  3032. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3033. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3034. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3035. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3036. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3037. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  3038. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3039. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  3040. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3041. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3042. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  3043. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  3044. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  3045. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  3046. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  3047. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  3048. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  3049. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3050. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3051. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3052. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3053. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3054. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3055. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3056. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3057. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  3058. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  3059. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  3060. </package>
  3061. <package name="MINI_MELF-0102AX">
  3062. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  3063. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  3064. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  3065. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  3066. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  3067. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3068. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3069. <hole x="0" y="0" drill="1.3"/>
  3070. </package>
  3071. <package name="R0201">
  3072. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  3073. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  3074. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3075. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3076. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3077. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3078. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  3079. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  3080. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  3081. </package>
  3082. <package name="VTA52">
  3083. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3084. MIL SIZE RBR52&lt;br&gt;
  3085. Source: VISHAY .. vta56.pdf</description>
  3086. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  3087. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  3088. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  3089. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  3090. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3091. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3092. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  3093. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  3094. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  3095. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  3096. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3097. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3098. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  3099. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  3100. </package>
  3101. <package name="VTA53">
  3102. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3103. MIL SIZE RBR53&lt;br&gt;
  3104. Source: VISHAY .. vta56.pdf</description>
  3105. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3106. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  3107. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  3108. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3109. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3110. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3111. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3112. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3113. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3114. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3115. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3116. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3117. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3118. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3119. </package>
  3120. <package name="VTA54">
  3121. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3122. MIL SIZE RBR54&lt;br&gt;
  3123. Source: VISHAY .. vta56.pdf</description>
  3124. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3125. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  3126. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  3127. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3128. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3129. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3130. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3131. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3132. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3133. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3134. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3135. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3136. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3137. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3138. </package>
  3139. <package name="VTA55">
  3140. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3141. MIL SIZE RBR55&lt;br&gt;
  3142. Source: VISHAY .. vta56.pdf</description>
  3143. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  3144. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  3145. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  3146. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3147. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3148. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3149. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3150. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3151. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3152. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3153. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3154. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3155. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3156. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3157. </package>
  3158. <package name="VTA56">
  3159. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3160. MIL SIZE RBR56&lt;br&gt;
  3161. Source: VISHAY .. vta56.pdf</description>
  3162. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3163. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3164. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3165. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3166. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3167. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3168. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3169. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3170. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3171. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3172. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3173. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3174. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3175. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3176. </package>
  3177. <package name="VMTA55">
  3178. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3179. MIL SIZE RNC55&lt;br&gt;
  3180. Source: VISHAY .. vta56.pdf</description>
  3181. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3182. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3183. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3184. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3185. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3186. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3187. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3188. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3189. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3190. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3191. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3192. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3193. </package>
  3194. <package name="VMTB60">
  3195. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3196. MIL SIZE RNC60&lt;br&gt;
  3197. Source: VISHAY .. vta56.pdf</description>
  3198. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3199. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3200. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3201. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3202. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3203. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3204. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3205. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3206. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3207. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3208. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3209. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3210. </package>
  3211. <package name="R4527">
  3212. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3213. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3214. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3215. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3216. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3217. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3218. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3219. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3220. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3221. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3222. </package>
  3223. <package name="WSC0001">
  3224. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3225. Source: VISHAY wscwsn.pdf</description>
  3226. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3227. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3228. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3229. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3230. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3231. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3232. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3233. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3234. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3235. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3236. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3237. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3238. </package>
  3239. <package name="WSC0002">
  3240. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3241. Source: VISHAY wscwsn.pdf</description>
  3242. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3243. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3244. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3245. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3246. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3247. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3248. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3249. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3250. </package>
  3251. <package name="WSC01/2">
  3252. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3253. Source: VISHAY wscwsn.pdf</description>
  3254. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3255. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3256. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3257. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3258. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3259. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3260. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3261. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3262. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3263. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3264. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3265. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3266. </package>
  3267. <package name="WSC2515">
  3268. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3269. Source: VISHAY wscwsn.pdf</description>
  3270. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3271. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3272. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3273. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3274. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3275. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3276. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3277. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3278. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3279. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3280. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3281. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3282. </package>
  3283. <package name="WSC4527">
  3284. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3285. Source: VISHAY wscwsn.pdf</description>
  3286. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3287. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3288. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3289. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3290. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3291. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3292. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3293. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3294. </package>
  3295. <package name="WSC6927">
  3296. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3297. Source: VISHAY wscwsn.pdf</description>
  3298. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3299. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3300. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3301. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3302. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3303. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3304. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3305. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3306. </package>
  3307. <package name="R1218">
  3308. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3309. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3310. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3311. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3312. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3313. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3314. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3315. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3316. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3317. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3318. </package>
  3319. <package name="1812X7R">
  3320. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3321. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3322. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3323. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3324. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3325. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3326. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3327. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3328. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3329. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3330. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3331. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3332. </package>
  3333. <package name="PRL1632">
  3334. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3335. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3336. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3337. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3338. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3339. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3340. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3341. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3342. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3343. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3344. </package>
  3345. <package name="R01005">
  3346. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3347. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3348. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3349. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3350. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3351. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3352. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3353. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3354. </package>
  3355. </packages>
  3356. <symbols>
  3357. <symbol name="R-EU">
  3358. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3359. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3360. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3361. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3362. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3363. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3364. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3365. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3366. </symbol>
  3367. </symbols>
  3368. <devicesets>
  3369. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  3370. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  3371. <gates>
  3372. <gate name="G$1" symbol="R-EU" x="0" y="0"/>
  3373. </gates>
  3374. <devices>
  3375. <device name="R0402" package="R0402">
  3376. <connects>
  3377. <connect gate="G$1" pin="1" pad="1"/>
  3378. <connect gate="G$1" pin="2" pad="2"/>
  3379. </connects>
  3380. <technologies>
  3381. <technology name=""/>
  3382. </technologies>
  3383. </device>
  3384. <device name="R0603" package="R0603">
  3385. <connects>
  3386. <connect gate="G$1" pin="1" pad="1"/>
  3387. <connect gate="G$1" pin="2" pad="2"/>
  3388. </connects>
  3389. <technologies>
  3390. <technology name=""/>
  3391. </technologies>
  3392. </device>
  3393. <device name="R0805" package="R0805">
  3394. <connects>
  3395. <connect gate="G$1" pin="1" pad="1"/>
  3396. <connect gate="G$1" pin="2" pad="2"/>
  3397. </connects>
  3398. <technologies>
  3399. <technology name=""/>
  3400. </technologies>
  3401. </device>
  3402. <device name="R0805W" package="R0805W">
  3403. <connects>
  3404. <connect gate="G$1" pin="1" pad="1"/>
  3405. <connect gate="G$1" pin="2" pad="2"/>
  3406. </connects>
  3407. <technologies>
  3408. <technology name=""/>
  3409. </technologies>
  3410. </device>
  3411. <device name="R1206" package="R1206">
  3412. <connects>
  3413. <connect gate="G$1" pin="1" pad="1"/>
  3414. <connect gate="G$1" pin="2" pad="2"/>
  3415. </connects>
  3416. <technologies>
  3417. <technology name=""/>
  3418. </technologies>
  3419. </device>
  3420. <device name="R1206W" package="R1206W">
  3421. <connects>
  3422. <connect gate="G$1" pin="1" pad="1"/>
  3423. <connect gate="G$1" pin="2" pad="2"/>
  3424. </connects>
  3425. <technologies>
  3426. <technology name=""/>
  3427. </technologies>
  3428. </device>
  3429. <device name="R1210" package="R1210">
  3430. <connects>
  3431. <connect gate="G$1" pin="1" pad="1"/>
  3432. <connect gate="G$1" pin="2" pad="2"/>
  3433. </connects>
  3434. <technologies>
  3435. <technology name=""/>
  3436. </technologies>
  3437. </device>
  3438. <device name="R1210W" package="R1210W">
  3439. <connects>
  3440. <connect gate="G$1" pin="1" pad="1"/>
  3441. <connect gate="G$1" pin="2" pad="2"/>
  3442. </connects>
  3443. <technologies>
  3444. <technology name=""/>
  3445. </technologies>
  3446. </device>
  3447. <device name="R2010" package="R2010">
  3448. <connects>
  3449. <connect gate="G$1" pin="1" pad="1"/>
  3450. <connect gate="G$1" pin="2" pad="2"/>
  3451. </connects>
  3452. <technologies>
  3453. <technology name=""/>
  3454. </technologies>
  3455. </device>
  3456. <device name="R2010W" package="R2010W">
  3457. <connects>
  3458. <connect gate="G$1" pin="1" pad="1"/>
  3459. <connect gate="G$1" pin="2" pad="2"/>
  3460. </connects>
  3461. <technologies>
  3462. <technology name=""/>
  3463. </technologies>
  3464. </device>
  3465. <device name="R2012" package="R2012">
  3466. <connects>
  3467. <connect gate="G$1" pin="1" pad="1"/>
  3468. <connect gate="G$1" pin="2" pad="2"/>
  3469. </connects>
  3470. <technologies>
  3471. <technology name=""/>
  3472. </technologies>
  3473. </device>
  3474. <device name="R2012W" package="R2012W">
  3475. <connects>
  3476. <connect gate="G$1" pin="1" pad="1"/>
  3477. <connect gate="G$1" pin="2" pad="2"/>
  3478. </connects>
  3479. <technologies>
  3480. <technology name=""/>
  3481. </technologies>
  3482. </device>
  3483. <device name="R2512" package="R2512">
  3484. <connects>
  3485. <connect gate="G$1" pin="1" pad="1"/>
  3486. <connect gate="G$1" pin="2" pad="2"/>
  3487. </connects>
  3488. <technologies>
  3489. <technology name=""/>
  3490. </technologies>
  3491. </device>
  3492. <device name="R2512W" package="R2512W">
  3493. <connects>
  3494. <connect gate="G$1" pin="1" pad="1"/>
  3495. <connect gate="G$1" pin="2" pad="2"/>
  3496. </connects>
  3497. <technologies>
  3498. <technology name=""/>
  3499. </technologies>
  3500. </device>
  3501. <device name="R3216" package="R3216">
  3502. <connects>
  3503. <connect gate="G$1" pin="1" pad="1"/>
  3504. <connect gate="G$1" pin="2" pad="2"/>
  3505. </connects>
  3506. <technologies>
  3507. <technology name=""/>
  3508. </technologies>
  3509. </device>
  3510. <device name="R3216W" package="R3216W">
  3511. <connects>
  3512. <connect gate="G$1" pin="1" pad="1"/>
  3513. <connect gate="G$1" pin="2" pad="2"/>
  3514. </connects>
  3515. <technologies>
  3516. <technology name=""/>
  3517. </technologies>
  3518. </device>
  3519. <device name="R3225" package="R3225">
  3520. <connects>
  3521. <connect gate="G$1" pin="1" pad="1"/>
  3522. <connect gate="G$1" pin="2" pad="2"/>
  3523. </connects>
  3524. <technologies>
  3525. <technology name=""/>
  3526. </technologies>
  3527. </device>
  3528. <device name="R3225W" package="R3225W">
  3529. <connects>
  3530. <connect gate="G$1" pin="1" pad="1"/>
  3531. <connect gate="G$1" pin="2" pad="2"/>
  3532. </connects>
  3533. <technologies>
  3534. <technology name=""/>
  3535. </technologies>
  3536. </device>
  3537. <device name="R5025" package="R5025">
  3538. <connects>
  3539. <connect gate="G$1" pin="1" pad="1"/>
  3540. <connect gate="G$1" pin="2" pad="2"/>
  3541. </connects>
  3542. <technologies>
  3543. <technology name=""/>
  3544. </technologies>
  3545. </device>
  3546. <device name="R5025W" package="R5025W">
  3547. <connects>
  3548. <connect gate="G$1" pin="1" pad="1"/>
  3549. <connect gate="G$1" pin="2" pad="2"/>
  3550. </connects>
  3551. <technologies>
  3552. <technology name=""/>
  3553. </technologies>
  3554. </device>
  3555. <device name="R6332" package="R6332">
  3556. <connects>
  3557. <connect gate="G$1" pin="1" pad="1"/>
  3558. <connect gate="G$1" pin="2" pad="2"/>
  3559. </connects>
  3560. <technologies>
  3561. <technology name=""/>
  3562. </technologies>
  3563. </device>
  3564. <device name="R6332W" package="R6332W">
  3565. <connects>
  3566. <connect gate="G$1" pin="1" pad="1"/>
  3567. <connect gate="G$1" pin="2" pad="2"/>
  3568. </connects>
  3569. <technologies>
  3570. <technology name=""/>
  3571. </technologies>
  3572. </device>
  3573. <device name="M0805" package="M0805">
  3574. <connects>
  3575. <connect gate="G$1" pin="1" pad="1"/>
  3576. <connect gate="G$1" pin="2" pad="2"/>
  3577. </connects>
  3578. <technologies>
  3579. <technology name=""/>
  3580. </technologies>
  3581. </device>
  3582. <device name="M1206" package="M1206">
  3583. <connects>
  3584. <connect gate="G$1" pin="1" pad="1"/>
  3585. <connect gate="G$1" pin="2" pad="2"/>
  3586. </connects>
  3587. <technologies>
  3588. <technology name=""/>
  3589. </technologies>
  3590. </device>
  3591. <device name="M1406" package="M1406">
  3592. <connects>
  3593. <connect gate="G$1" pin="1" pad="1"/>
  3594. <connect gate="G$1" pin="2" pad="2"/>
  3595. </connects>
  3596. <technologies>
  3597. <technology name=""/>
  3598. </technologies>
  3599. </device>
  3600. <device name="M2012" package="M2012">
  3601. <connects>
  3602. <connect gate="G$1" pin="1" pad="1"/>
  3603. <connect gate="G$1" pin="2" pad="2"/>
  3604. </connects>
  3605. <technologies>
  3606. <technology name=""/>
  3607. </technologies>
  3608. </device>
  3609. <device name="M2309" package="M2309">
  3610. <connects>
  3611. <connect gate="G$1" pin="1" pad="1"/>
  3612. <connect gate="G$1" pin="2" pad="2"/>
  3613. </connects>
  3614. <technologies>
  3615. <technology name=""/>
  3616. </technologies>
  3617. </device>
  3618. <device name="M3216" package="M3216">
  3619. <connects>
  3620. <connect gate="G$1" pin="1" pad="1"/>
  3621. <connect gate="G$1" pin="2" pad="2"/>
  3622. </connects>
  3623. <technologies>
  3624. <technology name=""/>
  3625. </technologies>
  3626. </device>
  3627. <device name="M3516" package="M3516">
  3628. <connects>
  3629. <connect gate="G$1" pin="1" pad="1"/>
  3630. <connect gate="G$1" pin="2" pad="2"/>
  3631. </connects>
  3632. <technologies>
  3633. <technology name=""/>
  3634. </technologies>
  3635. </device>
  3636. <device name="M5923" package="M5923">
  3637. <connects>
  3638. <connect gate="G$1" pin="1" pad="1"/>
  3639. <connect gate="G$1" pin="2" pad="2"/>
  3640. </connects>
  3641. <technologies>
  3642. <technology name=""/>
  3643. </technologies>
  3644. </device>
  3645. <device name="0204/5" package="0204/5">
  3646. <connects>
  3647. <connect gate="G$1" pin="1" pad="1"/>
  3648. <connect gate="G$1" pin="2" pad="2"/>
  3649. </connects>
  3650. <technologies>
  3651. <technology name=""/>
  3652. </technologies>
  3653. </device>
  3654. <device name="0204/7" package="0204/7">
  3655. <connects>
  3656. <connect gate="G$1" pin="1" pad="1"/>
  3657. <connect gate="G$1" pin="2" pad="2"/>
  3658. </connects>
  3659. <technologies>
  3660. <technology name=""/>
  3661. </technologies>
  3662. </device>
  3663. <device name="0204/2V" package="0204V">
  3664. <connects>
  3665. <connect gate="G$1" pin="1" pad="1"/>
  3666. <connect gate="G$1" pin="2" pad="2"/>
  3667. </connects>
  3668. <technologies>
  3669. <technology name=""/>
  3670. </technologies>
  3671. </device>
  3672. <device name="0207/10" package="0207/10">
  3673. <connects>
  3674. <connect gate="G$1" pin="1" pad="1"/>
  3675. <connect gate="G$1" pin="2" pad="2"/>
  3676. </connects>
  3677. <technologies>
  3678. <technology name=""/>
  3679. </technologies>
  3680. </device>
  3681. <device name="0207/12" package="0207/12">
  3682. <connects>
  3683. <connect gate="G$1" pin="1" pad="1"/>
  3684. <connect gate="G$1" pin="2" pad="2"/>
  3685. </connects>
  3686. <technologies>
  3687. <technology name=""/>
  3688. </technologies>
  3689. </device>
  3690. <device name="0207/15" package="0207/15">
  3691. <connects>
  3692. <connect gate="G$1" pin="1" pad="1"/>
  3693. <connect gate="G$1" pin="2" pad="2"/>
  3694. </connects>
  3695. <technologies>
  3696. <technology name=""/>
  3697. </technologies>
  3698. </device>
  3699. <device name="0207/2V" package="0207/2V">
  3700. <connects>
  3701. <connect gate="G$1" pin="1" pad="1"/>
  3702. <connect gate="G$1" pin="2" pad="2"/>
  3703. </connects>
  3704. <technologies>
  3705. <technology name=""/>
  3706. </technologies>
  3707. </device>
  3708. <device name="0207/5V" package="0207/5V">
  3709. <connects>
  3710. <connect gate="G$1" pin="1" pad="1"/>
  3711. <connect gate="G$1" pin="2" pad="2"/>
  3712. </connects>
  3713. <technologies>
  3714. <technology name=""/>
  3715. </technologies>
  3716. </device>
  3717. <device name="0207/7" package="0207/7">
  3718. <connects>
  3719. <connect gate="G$1" pin="1" pad="1"/>
  3720. <connect gate="G$1" pin="2" pad="2"/>
  3721. </connects>
  3722. <technologies>
  3723. <technology name=""/>
  3724. </technologies>
  3725. </device>
  3726. <device name="0309/10" package="0309/10">
  3727. <connects>
  3728. <connect gate="G$1" pin="1" pad="1"/>
  3729. <connect gate="G$1" pin="2" pad="2"/>
  3730. </connects>
  3731. <technologies>
  3732. <technology name=""/>
  3733. </technologies>
  3734. </device>
  3735. <device name="0309/12" package="0309/12">
  3736. <connects>
  3737. <connect gate="G$1" pin="1" pad="1"/>
  3738. <connect gate="G$1" pin="2" pad="2"/>
  3739. </connects>
  3740. <technologies>
  3741. <technology name=""/>
  3742. </technologies>
  3743. </device>
  3744. <device name="0309/V" package="0309V">
  3745. <connects>
  3746. <connect gate="G$1" pin="1" pad="1"/>
  3747. <connect gate="G$1" pin="2" pad="2"/>
  3748. </connects>
  3749. <technologies>
  3750. <technology name=""/>
  3751. </technologies>
  3752. </device>
  3753. <device name="0411/12" package="0411/12">
  3754. <connects>
  3755. <connect gate="G$1" pin="1" pad="1"/>
  3756. <connect gate="G$1" pin="2" pad="2"/>
  3757. </connects>
  3758. <technologies>
  3759. <technology name=""/>
  3760. </technologies>
  3761. </device>
  3762. <device name="0411/15" package="0411/15">
  3763. <connects>
  3764. <connect gate="G$1" pin="1" pad="1"/>
  3765. <connect gate="G$1" pin="2" pad="2"/>
  3766. </connects>
  3767. <technologies>
  3768. <technology name=""/>
  3769. </technologies>
  3770. </device>
  3771. <device name="0411/3V" package="0411V">
  3772. <connects>
  3773. <connect gate="G$1" pin="1" pad="1"/>
  3774. <connect gate="G$1" pin="2" pad="2"/>
  3775. </connects>
  3776. <technologies>
  3777. <technology name=""/>
  3778. </technologies>
  3779. </device>
  3780. <device name="0414/15" package="0414/15">
  3781. <connects>
  3782. <connect gate="G$1" pin="1" pad="1"/>
  3783. <connect gate="G$1" pin="2" pad="2"/>
  3784. </connects>
  3785. <technologies>
  3786. <technology name=""/>
  3787. </technologies>
  3788. </device>
  3789. <device name="0414/5V" package="0414V">
  3790. <connects>
  3791. <connect gate="G$1" pin="1" pad="1"/>
  3792. <connect gate="G$1" pin="2" pad="2"/>
  3793. </connects>
  3794. <technologies>
  3795. <technology name=""/>
  3796. </technologies>
  3797. </device>
  3798. <device name="0617/17" package="0617/17">
  3799. <connects>
  3800. <connect gate="G$1" pin="1" pad="1"/>
  3801. <connect gate="G$1" pin="2" pad="2"/>
  3802. </connects>
  3803. <technologies>
  3804. <technology name=""/>
  3805. </technologies>
  3806. </device>
  3807. <device name="0617/22" package="0617/22">
  3808. <connects>
  3809. <connect gate="G$1" pin="1" pad="1"/>
  3810. <connect gate="G$1" pin="2" pad="2"/>
  3811. </connects>
  3812. <technologies>
  3813. <technology name=""/>
  3814. </technologies>
  3815. </device>
  3816. <device name="0617/5V" package="0617V">
  3817. <connects>
  3818. <connect gate="G$1" pin="1" pad="1"/>
  3819. <connect gate="G$1" pin="2" pad="2"/>
  3820. </connects>
  3821. <technologies>
  3822. <technology name=""/>
  3823. </technologies>
  3824. </device>
  3825. <device name="0922/22" package="0922/22">
  3826. <connects>
  3827. <connect gate="G$1" pin="1" pad="1"/>
  3828. <connect gate="G$1" pin="2" pad="2"/>
  3829. </connects>
  3830. <technologies>
  3831. <technology name=""/>
  3832. </technologies>
  3833. </device>
  3834. <device name="0613/5V" package="P0613V">
  3835. <connects>
  3836. <connect gate="G$1" pin="1" pad="1"/>
  3837. <connect gate="G$1" pin="2" pad="2"/>
  3838. </connects>
  3839. <technologies>
  3840. <technology name=""/>
  3841. </technologies>
  3842. </device>
  3843. <device name="0613/15" package="P0613/15">
  3844. <connects>
  3845. <connect gate="G$1" pin="1" pad="1"/>
  3846. <connect gate="G$1" pin="2" pad="2"/>
  3847. </connects>
  3848. <technologies>
  3849. <technology name=""/>
  3850. </technologies>
  3851. </device>
  3852. <device name="0817/22" package="P0817/22">
  3853. <connects>
  3854. <connect gate="G$1" pin="1" pad="1"/>
  3855. <connect gate="G$1" pin="2" pad="2"/>
  3856. </connects>
  3857. <technologies>
  3858. <technology name=""/>
  3859. </technologies>
  3860. </device>
  3861. <device name="0817/7V" package="P0817V">
  3862. <connects>
  3863. <connect gate="G$1" pin="1" pad="1"/>
  3864. <connect gate="G$1" pin="2" pad="2"/>
  3865. </connects>
  3866. <technologies>
  3867. <technology name=""/>
  3868. </technologies>
  3869. </device>
  3870. <device name="V234/12" package="V234/12">
  3871. <connects>
  3872. <connect gate="G$1" pin="1" pad="1"/>
  3873. <connect gate="G$1" pin="2" pad="2"/>
  3874. </connects>
  3875. <technologies>
  3876. <technology name=""/>
  3877. </technologies>
  3878. </device>
  3879. <device name="V235/17" package="V235/17">
  3880. <connects>
  3881. <connect gate="G$1" pin="1" pad="1"/>
  3882. <connect gate="G$1" pin="2" pad="2"/>
  3883. </connects>
  3884. <technologies>
  3885. <technology name=""/>
  3886. </technologies>
  3887. </device>
  3888. <device name="V526-0" package="V526-0">
  3889. <connects>
  3890. <connect gate="G$1" pin="1" pad="1"/>
  3891. <connect gate="G$1" pin="2" pad="2"/>
  3892. </connects>
  3893. <technologies>
  3894. <technology name=""/>
  3895. </technologies>
  3896. </device>
  3897. <device name="MELF0102R" package="MINI_MELF-0102R">
  3898. <connects>
  3899. <connect gate="G$1" pin="1" pad="1"/>
  3900. <connect gate="G$1" pin="2" pad="2"/>
  3901. </connects>
  3902. <technologies>
  3903. <technology name=""/>
  3904. </technologies>
  3905. </device>
  3906. <device name="MELF0102W" package="MINI_MELF-0102W">
  3907. <connects>
  3908. <connect gate="G$1" pin="1" pad="1"/>
  3909. <connect gate="G$1" pin="2" pad="2"/>
  3910. </connects>
  3911. <technologies>
  3912. <technology name=""/>
  3913. </technologies>
  3914. </device>
  3915. <device name="MELF0204R" package="MINI_MELF-0204R">
  3916. <connects>
  3917. <connect gate="G$1" pin="1" pad="1"/>
  3918. <connect gate="G$1" pin="2" pad="2"/>
  3919. </connects>
  3920. <technologies>
  3921. <technology name=""/>
  3922. </technologies>
  3923. </device>
  3924. <device name="MELF0204W" package="MINI_MELF-0204W">
  3925. <connects>
  3926. <connect gate="G$1" pin="1" pad="1"/>
  3927. <connect gate="G$1" pin="2" pad="2"/>
  3928. </connects>
  3929. <technologies>
  3930. <technology name=""/>
  3931. </technologies>
  3932. </device>
  3933. <device name="MELF0207R" package="MINI_MELF-0207R">
  3934. <connects>
  3935. <connect gate="G$1" pin="1" pad="1"/>
  3936. <connect gate="G$1" pin="2" pad="2"/>
  3937. </connects>
  3938. <technologies>
  3939. <technology name=""/>
  3940. </technologies>
  3941. </device>
  3942. <device name="MELF0207W" package="MINI_MELF-0207W">
  3943. <connects>
  3944. <connect gate="G$1" pin="1" pad="1"/>
  3945. <connect gate="G$1" pin="2" pad="2"/>
  3946. </connects>
  3947. <technologies>
  3948. <technology name=""/>
  3949. </technologies>
  3950. </device>
  3951. <device name="0922V" package="0922V">
  3952. <connects>
  3953. <connect gate="G$1" pin="1" pad="1"/>
  3954. <connect gate="G$1" pin="2" pad="2"/>
  3955. </connects>
  3956. <technologies>
  3957. <technology name=""/>
  3958. </technologies>
  3959. </device>
  3960. <device name="RDH/15" package="RDH/15">
  3961. <connects>
  3962. <connect gate="G$1" pin="1" pad="1"/>
  3963. <connect gate="G$1" pin="2" pad="2"/>
  3964. </connects>
  3965. <technologies>
  3966. <technology name=""/>
  3967. </technologies>
  3968. </device>
  3969. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  3970. <connects>
  3971. <connect gate="G$1" pin="1" pad="1"/>
  3972. <connect gate="G$1" pin="2" pad="2"/>
  3973. </connects>
  3974. <technologies>
  3975. <technology name=""/>
  3976. </technologies>
  3977. </device>
  3978. <device name="R0201" package="R0201">
  3979. <connects>
  3980. <connect gate="G$1" pin="1" pad="1"/>
  3981. <connect gate="G$1" pin="2" pad="2"/>
  3982. </connects>
  3983. <technologies>
  3984. <technology name=""/>
  3985. </technologies>
  3986. </device>
  3987. <device name="VTA52" package="VTA52">
  3988. <connects>
  3989. <connect gate="G$1" pin="1" pad="1"/>
  3990. <connect gate="G$1" pin="2" pad="2"/>
  3991. </connects>
  3992. <technologies>
  3993. <technology name=""/>
  3994. </technologies>
  3995. </device>
  3996. <device name="VTA53" package="VTA53">
  3997. <connects>
  3998. <connect gate="G$1" pin="1" pad="1"/>
  3999. <connect gate="G$1" pin="2" pad="2"/>
  4000. </connects>
  4001. <technologies>
  4002. <technology name=""/>
  4003. </technologies>
  4004. </device>
  4005. <device name="VTA54" package="VTA54">
  4006. <connects>
  4007. <connect gate="G$1" pin="1" pad="1"/>
  4008. <connect gate="G$1" pin="2" pad="2"/>
  4009. </connects>
  4010. <technologies>
  4011. <technology name=""/>
  4012. </technologies>
  4013. </device>
  4014. <device name="VTA55" package="VTA55">
  4015. <connects>
  4016. <connect gate="G$1" pin="1" pad="1"/>
  4017. <connect gate="G$1" pin="2" pad="2"/>
  4018. </connects>
  4019. <technologies>
  4020. <technology name=""/>
  4021. </technologies>
  4022. </device>
  4023. <device name="VTA56" package="VTA56">
  4024. <connects>
  4025. <connect gate="G$1" pin="1" pad="1"/>
  4026. <connect gate="G$1" pin="2" pad="2"/>
  4027. </connects>
  4028. <technologies>
  4029. <technology name=""/>
  4030. </technologies>
  4031. </device>
  4032. <device name="VMTA55" package="VMTA55">
  4033. <connects>
  4034. <connect gate="G$1" pin="1" pad="1"/>
  4035. <connect gate="G$1" pin="2" pad="2"/>
  4036. </connects>
  4037. <technologies>
  4038. <technology name=""/>
  4039. </technologies>
  4040. </device>
  4041. <device name="VMTB60" package="VMTB60">
  4042. <connects>
  4043. <connect gate="G$1" pin="1" pad="1"/>
  4044. <connect gate="G$1" pin="2" pad="2"/>
  4045. </connects>
  4046. <technologies>
  4047. <technology name=""/>
  4048. </technologies>
  4049. </device>
  4050. <device name="R4527" package="R4527">
  4051. <connects>
  4052. <connect gate="G$1" pin="1" pad="1"/>
  4053. <connect gate="G$1" pin="2" pad="2"/>
  4054. </connects>
  4055. <technologies>
  4056. <technology name=""/>
  4057. </technologies>
  4058. </device>
  4059. <device name="WSC0001" package="WSC0001">
  4060. <connects>
  4061. <connect gate="G$1" pin="1" pad="1"/>
  4062. <connect gate="G$1" pin="2" pad="2"/>
  4063. </connects>
  4064. <technologies>
  4065. <technology name=""/>
  4066. </technologies>
  4067. </device>
  4068. <device name="WSC0002" package="WSC0002">
  4069. <connects>
  4070. <connect gate="G$1" pin="1" pad="1"/>
  4071. <connect gate="G$1" pin="2" pad="2"/>
  4072. </connects>
  4073. <technologies>
  4074. <technology name=""/>
  4075. </technologies>
  4076. </device>
  4077. <device name="WSC01/2" package="WSC01/2">
  4078. <connects>
  4079. <connect gate="G$1" pin="1" pad="1"/>
  4080. <connect gate="G$1" pin="2" pad="2"/>
  4081. </connects>
  4082. <technologies>
  4083. <technology name=""/>
  4084. </technologies>
  4085. </device>
  4086. <device name="WSC2515" package="WSC2515">
  4087. <connects>
  4088. <connect gate="G$1" pin="1" pad="1"/>
  4089. <connect gate="G$1" pin="2" pad="2"/>
  4090. </connects>
  4091. <technologies>
  4092. <technology name=""/>
  4093. </technologies>
  4094. </device>
  4095. <device name="WSC4527" package="WSC4527">
  4096. <connects>
  4097. <connect gate="G$1" pin="1" pad="1"/>
  4098. <connect gate="G$1" pin="2" pad="2"/>
  4099. </connects>
  4100. <technologies>
  4101. <technology name=""/>
  4102. </technologies>
  4103. </device>
  4104. <device name="WSC6927" package="WSC6927">
  4105. <connects>
  4106. <connect gate="G$1" pin="1" pad="1"/>
  4107. <connect gate="G$1" pin="2" pad="2"/>
  4108. </connects>
  4109. <technologies>
  4110. <technology name=""/>
  4111. </technologies>
  4112. </device>
  4113. <device name="R1218" package="R1218">
  4114. <connects>
  4115. <connect gate="G$1" pin="1" pad="1"/>
  4116. <connect gate="G$1" pin="2" pad="2"/>
  4117. </connects>
  4118. <technologies>
  4119. <technology name=""/>
  4120. </technologies>
  4121. </device>
  4122. <device name="1812X7R" package="1812X7R">
  4123. <connects>
  4124. <connect gate="G$1" pin="1" pad="1"/>
  4125. <connect gate="G$1" pin="2" pad="2"/>
  4126. </connects>
  4127. <technologies>
  4128. <technology name=""/>
  4129. </technologies>
  4130. </device>
  4131. <device name="PRL1632" package="PRL1632">
  4132. <connects>
  4133. <connect gate="G$1" pin="1" pad="1"/>
  4134. <connect gate="G$1" pin="2" pad="2"/>
  4135. </connects>
  4136. <technologies>
  4137. <technology name=""/>
  4138. </technologies>
  4139. </device>
  4140. <device name="01005" package="R01005">
  4141. <connects>
  4142. <connect gate="G$1" pin="1" pad="1"/>
  4143. <connect gate="G$1" pin="2" pad="2"/>
  4144. </connects>
  4145. <technologies>
  4146. <technology name=""/>
  4147. </technologies>
  4148. </device>
  4149. </devices>
  4150. </deviceset>
  4151. </devicesets>
  4152. </library>
  4153. <library name="con-phoenix-3.81">
  4154. <description>&lt;b&gt;Phoenix Connectors&lt;/b&gt; Grid 3.81 mm&lt;p&gt;
  4155. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4156. <packages>
  4157. <package name="1705566">
  4158. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  4159. Nennstrom: 8 A&lt;br&gt;
  4160. Bemessungsspannung: 200 V&lt;br&gt;
  4161. Raster: 3,81 mm&lt;br&gt;
  4162. Polzahl: 4&lt;br&gt;
  4163. Montageart: Löten&lt;br&gt;
  4164. Anschlussart: Schraubanschluss&lt;br&gt;
  4165. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  4166. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  4167. <wire x1="-8.175" y1="-4.65" x2="-8.175" y2="-4.15" width="0.1016" layer="21"/>
  4168. <wire x1="8.175" y1="4.65" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  4169. <wire x1="-8.175" y1="-4.15" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  4170. <wire x1="-8.175" y1="-4.15" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  4171. <wire x1="-8.175" y1="2.7596" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  4172. <wire x1="8.175" y1="-3.25" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  4173. <wire x1="8.175" y1="-3.05" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  4174. <wire x1="8.175" y1="2.2824" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  4175. <wire x1="8.175" y1="2.7596" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  4176. <wire x1="-8.175" y1="-4.05" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  4177. <wire x1="-8.175" y1="-3.25" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  4178. <wire x1="-8.175" y1="-3.05" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  4179. <wire x1="-8.175" y1="2.2824" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  4180. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  4181. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  4182. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  4183. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-1.8" width="0.1016" layer="21"/>
  4184. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  4185. <wire x1="8.175" y1="-4.05" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  4186. <wire x1="8.175" y1="-4.05" x2="8.175" y2="-3.25" width="0.1016" layer="21"/>
  4187. <wire x1="8.175" y1="-3.25" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  4188. <wire x1="8.175" y1="-4.65" x2="-8.175" y2="-4.65" width="0.1016" layer="21"/>
  4189. <wire x1="8.175" y1="-4.65" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  4190. <wire x1="8.175" y1="-4.15" x2="8.175" y2="-4.05" width="0.1016" layer="21"/>
  4191. <wire x1="8.175" y1="2.2824" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  4192. <wire x1="8.175" y1="2.7596" x2="8.175" y2="2.2824" width="0.1016" layer="21"/>
  4193. <wire x1="8.175" y1="2.7596" x2="8.175" y2="4.65" width="0.1016" layer="21"/>
  4194. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  4195. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  4196. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  4197. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  4198. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  4199. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  4200. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  4201. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  4202. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  4203. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  4204. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  4205. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  4206. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4207. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4208. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4209. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4210. <pad name="1.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4211. <pad name="1.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4212. <pad name="2.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4213. <pad name="2.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4214. <pad name="3.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4215. <pad name="3.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4216. <pad name="4.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4217. <pad name="4.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4218. <text x="-8.89" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  4219. <text x="-6.985" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  4220. <polygon width="0.1016" layer="21">
  4221. <vertex x="-6.985" y="-1.27"/>
  4222. <vertex x="-6.35" y="-2.54"/>
  4223. <vertex x="-7.62" y="-2.54"/>
  4224. </polygon>
  4225. </package>
  4226. </packages>
  4227. <symbols>
  4228. <symbol name="SCHRAUBKLEMME_2">
  4229. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.254" layer="94"/>
  4230. <wire x1="-12.7" y1="1.27" x2="0" y2="1.27" width="0.254" layer="94"/>
  4231. <wire x1="-12.7" y1="1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  4232. <wire x1="0" y1="-1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  4233. <circle x="-11.43" y="0" radius="0.6839" width="0.254" layer="94"/>
  4234. <text x="-10.16" y="-0.889" size="1.778" layer="95">&gt;NAME</text>
  4235. <text x="-12.7" y="-3.81" size="1.778" layer="96">&gt;VALUE</text>
  4236. <pin name="1A" x="2.54" y="0" visible="off" length="short" direction="pas" rot="R180"/>
  4237. </symbol>
  4238. </symbols>
  4239. <devicesets>
  4240. <deviceset name="1705566" prefix="X">
  4241. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  4242. Nennstrom: 8 A&lt;br&gt;
  4243. Bemessungsspannung: 200 V&lt;br&gt;
  4244. Raster: 3,81 mm&lt;br&gt;
  4245. Polzahl: 4&lt;br&gt;
  4246. Montageart: Löten&lt;br&gt;
  4247. Anschlussart: Schraubanschluss&lt;br&gt;
  4248. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  4249. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  4250. <gates>
  4251. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  4252. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  4253. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  4254. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  4255. </gates>
  4256. <devices>
  4257. <device name="" package="1705566">
  4258. <connects>
  4259. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  4260. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  4261. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  4262. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  4263. </connects>
  4264. <technologies>
  4265. <technology name="">
  4266. <attribute name="MF" value="" constant="no"/>
  4267. <attribute name="MPN" value="" constant="no"/>
  4268. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4269. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4270. </technology>
  4271. </technologies>
  4272. </device>
  4273. </devices>
  4274. </deviceset>
  4275. </devicesets>
  4276. </library>
  4277. <library name="mc33269dt">
  4278. <packages>
  4279. <package name="MC33269DT">
  4280. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  4281. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  4282. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  4283. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  4284. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  4285. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  4286. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  4287. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  4288. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  4289. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  4290. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  4291. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  4292. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  4293. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  4294. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  4295. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  4296. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  4297. </package>
  4298. </packages>
  4299. <symbols>
  4300. <symbol name="MC33269DT">
  4301. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  4302. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  4303. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  4304. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  4305. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  4306. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  4307. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  4308. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  4309. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  4310. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  4311. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  4312. </symbol>
  4313. </symbols>
  4314. <devicesets>
  4315. <deviceset name="MC33269DT">
  4316. <gates>
  4317. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  4318. </gates>
  4319. <devices>
  4320. <device name="" package="MC33269DT">
  4321. <connects>
  4322. <connect gate="G$1" pin="GND" pad="P1"/>
  4323. <connect gate="G$1" pin="VIN" pad="P3"/>
  4324. <connect gate="G$1" pin="VOUT" pad="P2"/>
  4325. </connects>
  4326. <technologies>
  4327. <technology name=""/>
  4328. </technologies>
  4329. </device>
  4330. </devices>
  4331. </deviceset>
  4332. </devicesets>
  4333. </library>
  4334. <library name="capacitor-wima">
  4335. <description>&lt;b&gt;WIMA Capacitors&lt;/b&gt;&lt;p&gt;
  4336. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4337. <packages>
  4338. <package name="C10B4">
  4339. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 4 mm, grid 10.16 mm</description>
  4340. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4341. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4342. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4343. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4344. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4345. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4346. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  4347. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  4348. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  4349. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  4350. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4351. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4352. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4353. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4354. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4355. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4356. <text x="-3.429" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4357. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4358. </package>
  4359. <package name="C10B5">
  4360. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 5 mm, grid 10.16 mm</description>
  4361. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4362. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4363. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4364. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4365. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4366. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4367. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  4368. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  4369. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  4370. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  4371. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4372. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4373. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4374. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4375. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4376. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4377. <text x="-5.08" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4378. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4379. </package>
  4380. <package name="C10B6">
  4381. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 6 mm, grid 10.16 mm</description>
  4382. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4383. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4384. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4385. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4386. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4387. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4388. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  4389. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  4390. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4391. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4392. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4393. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4394. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4395. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4396. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4397. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4398. <text x="-5.08" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4399. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4400. </package>
  4401. <package name="C15B5">
  4402. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 5 mm, grid 15 mm</description>
  4403. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4404. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4405. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4406. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4407. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4408. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4409. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  4410. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  4411. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  4412. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  4413. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4414. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4415. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4416. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4417. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4418. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4419. <text x="-7.493" y="2.794" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4420. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4421. </package>
  4422. <package name="C15B6">
  4423. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 6 mm, grid 15 mm</description>
  4424. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4425. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4426. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4427. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4428. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4429. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4430. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  4431. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  4432. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  4433. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  4434. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4435. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4436. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4437. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4438. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4439. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4440. <text x="-7.493" y="3.302" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4441. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4442. </package>
  4443. <package name="C15B7">
  4444. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 7 mm, grid 15 mm</description>
  4445. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4446. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4447. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4448. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4449. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4450. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4451. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  4452. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  4453. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  4454. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  4455. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4456. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4457. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4458. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4459. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4460. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4461. <text x="-7.493" y="3.81" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4462. <text x="-3.429" y="-2.286" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4463. </package>
  4464. <package name="C15B8">
  4465. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 8 mm, grid 15 mm</description>
  4466. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4467. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4468. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4469. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4470. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4471. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4472. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  4473. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  4474. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  4475. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  4476. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4477. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4478. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4479. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4480. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4481. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4482. <text x="-7.493" y="4.318" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4483. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4484. </package>
  4485. <package name="C15B9">
  4486. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 9 mm, grid 15 mm</description>
  4487. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4488. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4489. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4490. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4491. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4492. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4493. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  4494. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  4495. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  4496. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  4497. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  4498. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  4499. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  4500. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  4501. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4502. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4503. <text x="-7.493" y="4.699" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4504. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4505. </package>
  4506. <package name="C2.5-2">
  4507. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 2.5 mm, grid 2.54 mm</description>
  4508. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  4509. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  4510. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  4511. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  4512. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4513. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4514. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4515. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4516. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4517. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4518. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4519. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4520. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4521. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4522. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4523. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4524. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4525. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4526. <text x="-1.651" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4527. <text x="-1.651" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4528. </package>
  4529. <package name="C2.5-4">
  4530. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 4 mm, grid 2.54 mm</description>
  4531. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  4532. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  4533. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  4534. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  4535. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  4536. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  4537. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  4538. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  4539. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4540. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4541. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4542. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4543. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4544. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4545. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4546. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4547. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4548. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4549. <text x="-1.651" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4550. <text x="-1.651" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4551. </package>
  4552. <package name="C2.5-5">
  4553. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 5 mm, grid 2.54 mm</description>
  4554. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  4555. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  4556. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  4557. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  4558. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4559. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4560. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4561. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4562. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4563. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4564. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4565. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4566. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4567. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4568. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4569. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4570. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4571. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4572. <text x="-1.778" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4573. <text x="-1.778" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4574. </package>
  4575. <package name="C2.5-6">
  4576. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 6 mm, grid 2.54 mm</description>
  4577. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  4578. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  4579. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  4580. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  4581. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4582. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4583. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4584. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4585. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4586. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4587. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4588. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4589. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4590. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4591. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4592. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4593. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4594. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4595. <text x="2.667" y="0.762" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4596. <text x="-1.905" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4597. </package>
  4598. <package name="C22.5B10">
  4599. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 10 mm, grid 22.5 mm</description>
  4600. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  4601. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  4602. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  4603. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  4604. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4605. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4606. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4607. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4608. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  4609. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  4610. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  4611. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  4612. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4613. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4614. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4615. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4616. <text x="-11.303" y="5.588" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4617. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4618. </package>
  4619. <package name="C22.5B11">
  4620. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 11 mm, grid 22.5 mm</description>
  4621. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  4622. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  4623. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  4624. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  4625. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4626. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4627. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4628. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4629. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4630. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4631. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4632. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4633. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4634. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4635. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4636. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4637. <text x="-11.303" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4638. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4639. </package>
  4640. <package name="C22.5B6">
  4641. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 6 mm, grid 22.5 mm</description>
  4642. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  4643. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  4644. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  4645. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  4646. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4647. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4648. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4649. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4650. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4651. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4652. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4653. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4654. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4655. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4656. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4657. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4658. <text x="-11.303" y="3.302" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4659. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4660. </package>
  4661. <package name="C22.5B7">
  4662. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 7 mm, grid 22.5 mm</description>
  4663. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  4664. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  4665. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  4666. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  4667. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4668. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4669. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4670. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4671. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4672. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4673. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4674. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4675. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4676. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4677. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4678. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4679. <text x="-11.303" y="3.81" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4680. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4681. </package>
  4682. <package name="C22.5B8">
  4683. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 8 mm, grid 22.5 mm</description>
  4684. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  4685. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  4686. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  4687. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  4688. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4689. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4690. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4691. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4692. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  4693. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  4694. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  4695. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  4696. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4697. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4698. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4699. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4700. <text x="-11.303" y="4.572" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4701. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4702. </package>
  4703. <package name="C27.5B11">
  4704. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 11 mm, grid 27.5 mm</description>
  4705. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  4706. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  4707. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  4708. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  4709. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4710. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4711. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4712. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4713. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4714. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4715. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4716. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4717. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4718. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4719. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4720. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4721. <text x="-13.716" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4722. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4723. </package>
  4724. <package name="C27.5B13">
  4725. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 13 mm, grid 27.5 mm</description>
  4726. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  4727. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  4728. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  4729. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  4730. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4731. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4732. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4733. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4734. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  4735. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  4736. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  4737. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  4738. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4739. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4740. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4741. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4742. <text x="-13.716" y="6.858" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4743. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4744. </package>
  4745. <package name="C27.5B15">
  4746. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 15 mm, grid 27.5 mm</description>
  4747. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  4748. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  4749. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  4750. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  4751. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4752. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4753. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4754. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4755. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4756. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4757. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4758. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4759. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4760. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4761. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4762. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4763. <text x="-13.716" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4764. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4765. </package>
  4766. <package name="C27.5B17">
  4767. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 17 mm, grid 27.5 mm</description>
  4768. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  4769. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  4770. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  4771. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  4772. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4773. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4774. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4775. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4776. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4777. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4778. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4779. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4780. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4781. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4782. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4783. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4784. <text x="-13.716" y="8.763" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4785. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4786. </package>
  4787. <package name="C27.5B20">
  4788. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 20 mm, grid 27.5 mm</description>
  4789. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  4790. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  4791. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  4792. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  4793. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4794. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4795. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4796. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4797. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4798. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4799. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4800. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4801. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4802. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4803. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4804. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4805. <text x="-13.589" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4806. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4807. </package>
  4808. <package name="C27.5B9">
  4809. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 9 mm, grid 27.5 mm</description>
  4810. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  4811. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  4812. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  4813. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  4814. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4815. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4816. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4817. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4818. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4819. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4820. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  4821. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  4822. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4823. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4824. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4825. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4826. <text x="-13.589" y="4.826" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4827. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4828. </package>
  4829. <package name="C37.5B15">
  4830. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 15 mm, grid 37.5 mm</description>
  4831. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  4832. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  4833. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  4834. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  4835. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4836. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4837. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4838. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4839. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4840. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4841. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4842. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4843. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4844. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4845. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4846. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4847. <text x="-18.796" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4848. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4849. </package>
  4850. <package name="C37.5B19">
  4851. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 19 mm, grid 37.5 mm</description>
  4852. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  4853. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  4854. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  4855. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  4856. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4857. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4858. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4859. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4860. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4861. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4862. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4863. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4864. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4865. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4866. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4867. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4868. <text x="-18.796" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4869. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4870. </package>
  4871. <package name="C37.5B20">
  4872. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 20 mm, grid 37.5 mm</description>
  4873. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  4874. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  4875. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  4876. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  4877. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4878. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4879. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4880. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4881. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4882. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4883. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4884. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4885. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4886. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4887. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4888. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4889. <text x="-18.796" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4890. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4891. </package>
  4892. <package name="C5B2.5">
  4893. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 2.5 mm, grid 5.08 mm</description>
  4894. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4895. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4896. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4897. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4898. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4899. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4900. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  4901. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  4902. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  4903. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  4904. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4905. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4906. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4907. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4908. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4909. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4910. <text x="-2.032" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4911. <text x="-2.032" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4912. </package>
  4913. <package name="C5B3">
  4914. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 3 mm, grid 5.08 mm</description>
  4915. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4916. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4917. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4918. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4919. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4920. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4921. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  4922. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  4923. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  4924. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  4925. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4926. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4927. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4928. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4929. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4930. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4931. <text x="-2.54" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4932. <text x="-2.54" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4933. </package>
  4934. <package name="C5B3.5">
  4935. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4 mm, grid 5.08 mm</description>
  4936. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4937. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4938. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4939. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4940. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4941. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4942. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  4943. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  4944. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  4945. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  4946. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4947. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4948. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4949. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4950. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4951. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4952. <text x="-2.54" y="2.032" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4953. <text x="-2.54" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4954. </package>
  4955. <package name="C5B4.5">
  4956. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4.5 mm, grid 5.08 mm</description>
  4957. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4958. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4959. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4960. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4961. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4962. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4963. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  4964. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  4965. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  4966. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  4967. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4968. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4969. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4970. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4971. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4972. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4973. <text x="-2.54" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4974. <text x="-2.54" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4975. </package>
  4976. <package name="C5B5">
  4977. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5 mm, grid 5.08 mm</description>
  4978. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4979. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4980. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4981. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4982. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4983. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4984. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  4985. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  4986. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  4987. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  4988. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4989. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4990. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4991. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4992. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4993. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4994. <text x="-2.54" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4995. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4996. </package>
  4997. <package name="C5B5.5">
  4998. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5.5 mm, grid 5.08 mm</description>
  4999. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  5000. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  5001. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  5002. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  5003. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  5004. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  5005. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  5006. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  5007. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  5008. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  5009. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5010. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5011. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  5012. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  5013. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5014. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5015. <text x="-2.54" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5016. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5017. </package>
  5018. <package name="C5B7.2">
  5019. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 7.2 mm, grid 5.08 mm</description>
  5020. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  5021. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  5022. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  5023. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  5024. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  5025. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  5026. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  5027. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  5028. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  5029. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  5030. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  5031. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  5032. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  5033. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  5034. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5035. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5036. <text x="-2.54" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5037. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5038. </package>
  5039. <package name="C7.5B3">
  5040. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 3 mm, grid 7.62 mm</description>
  5041. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  5042. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  5043. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  5044. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  5045. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  5046. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  5047. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5048. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5049. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  5050. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  5051. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  5052. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  5053. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  5054. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  5055. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5056. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5057. <text x="-3.81" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5058. <text x="-3.81" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5059. </package>
  5060. <package name="C7.5B4">
  5061. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 4 mm, grid 7.62 mm</description>
  5062. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  5063. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  5064. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  5065. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  5066. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  5067. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  5068. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5069. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5070. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5071. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5072. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5073. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5074. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5075. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5076. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5077. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5078. <text x="-3.81" y="2.286" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5079. <text x="-3.81" y="-3.556" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5080. </package>
  5081. <package name="C7.5B5">
  5082. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 5 mm, grid 7.62 mm</description>
  5083. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  5084. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  5085. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  5086. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  5087. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  5088. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  5089. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5090. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5091. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5092. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5093. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5094. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5095. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5096. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5097. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5098. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5099. <text x="-3.81" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5100. <text x="-3.81" y="-4.064" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5101. </package>
  5102. <package name="C7.5B6">
  5103. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 6 mm, grid 7.62 mm</description>
  5104. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  5105. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  5106. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  5107. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  5108. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  5109. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  5110. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5111. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5112. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5113. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5114. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5115. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5116. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5117. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5118. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5119. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5120. <text x="-3.683" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5121. <text x="-0.889" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5122. </package>
  5123. <package name="C2.5-3">
  5124. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 3 mm, grid 2.54 mm</description>
  5125. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  5126. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  5127. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  5128. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  5129. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  5130. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5131. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  5132. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5133. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  5134. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  5135. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  5136. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  5137. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  5138. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  5139. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  5140. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  5141. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5142. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5143. <text x="-1.651" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5144. <text x="-1.651" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5145. </package>
  5146. </packages>
  5147. <symbols>
  5148. <symbol name="C">
  5149. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  5150. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  5151. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  5152. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  5153. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  5154. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  5155. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  5156. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  5157. </symbol>
  5158. </symbols>
  5159. <devicesets>
  5160. <deviceset name="C" prefix="C" uservalue="yes">
  5161. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;&lt;p&gt;
  5162. naming: grid - package width</description>
  5163. <gates>
  5164. <gate name="G$1" symbol="C" x="0" y="0"/>
  5165. </gates>
  5166. <devices>
  5167. <device name="10/4" package="C10B4">
  5168. <connects>
  5169. <connect gate="G$1" pin="1" pad="1"/>
  5170. <connect gate="G$1" pin="2" pad="2"/>
  5171. </connects>
  5172. <technologies>
  5173. <technology name=""/>
  5174. </technologies>
  5175. </device>
  5176. <device name="10/5" package="C10B5">
  5177. <connects>
  5178. <connect gate="G$1" pin="1" pad="1"/>
  5179. <connect gate="G$1" pin="2" pad="2"/>
  5180. </connects>
  5181. <technologies>
  5182. <technology name=""/>
  5183. </technologies>
  5184. </device>
  5185. <device name="10/6" package="C10B6">
  5186. <connects>
  5187. <connect gate="G$1" pin="1" pad="1"/>
  5188. <connect gate="G$1" pin="2" pad="2"/>
  5189. </connects>
  5190. <technologies>
  5191. <technology name=""/>
  5192. </technologies>
  5193. </device>
  5194. <device name="15/5" package="C15B5">
  5195. <connects>
  5196. <connect gate="G$1" pin="1" pad="1"/>
  5197. <connect gate="G$1" pin="2" pad="2"/>
  5198. </connects>
  5199. <technologies>
  5200. <technology name=""/>
  5201. </technologies>
  5202. </device>
  5203. <device name="15/6" package="C15B6">
  5204. <connects>
  5205. <connect gate="G$1" pin="1" pad="1"/>
  5206. <connect gate="G$1" pin="2" pad="2"/>
  5207. </connects>
  5208. <technologies>
  5209. <technology name=""/>
  5210. </technologies>
  5211. </device>
  5212. <device name="15/7" package="C15B7">
  5213. <connects>
  5214. <connect gate="G$1" pin="1" pad="1"/>
  5215. <connect gate="G$1" pin="2" pad="2"/>
  5216. </connects>
  5217. <technologies>
  5218. <technology name=""/>
  5219. </technologies>
  5220. </device>
  5221. <device name="15/8" package="C15B8">
  5222. <connects>
  5223. <connect gate="G$1" pin="1" pad="1"/>
  5224. <connect gate="G$1" pin="2" pad="2"/>
  5225. </connects>
  5226. <technologies>
  5227. <technology name=""/>
  5228. </technologies>
  5229. </device>
  5230. <device name="15/9" package="C15B9">
  5231. <connects>
  5232. <connect gate="G$1" pin="1" pad="1"/>
  5233. <connect gate="G$1" pin="2" pad="2"/>
  5234. </connects>
  5235. <technologies>
  5236. <technology name=""/>
  5237. </technologies>
  5238. </device>
  5239. <device name="2.5/2" package="C2.5-2">
  5240. <connects>
  5241. <connect gate="G$1" pin="1" pad="1"/>
  5242. <connect gate="G$1" pin="2" pad="2"/>
  5243. </connects>
  5244. <technologies>
  5245. <technology name=""/>
  5246. </technologies>
  5247. </device>
  5248. <device name="2.5/4" package="C2.5-4">
  5249. <connects>
  5250. <connect gate="G$1" pin="1" pad="1"/>
  5251. <connect gate="G$1" pin="2" pad="2"/>
  5252. </connects>
  5253. <technologies>
  5254. <technology name=""/>
  5255. </technologies>
  5256. </device>
  5257. <device name="2.5/5" package="C2.5-5">
  5258. <connects>
  5259. <connect gate="G$1" pin="1" pad="1"/>
  5260. <connect gate="G$1" pin="2" pad="2"/>
  5261. </connects>
  5262. <technologies>
  5263. <technology name=""/>
  5264. </technologies>
  5265. </device>
  5266. <device name="2.5/6" package="C2.5-6">
  5267. <connects>
  5268. <connect gate="G$1" pin="1" pad="1"/>
  5269. <connect gate="G$1" pin="2" pad="2"/>
  5270. </connects>
  5271. <technologies>
  5272. <technology name=""/>
  5273. </technologies>
  5274. </device>
  5275. <device name="22/10" package="C22.5B10">
  5276. <connects>
  5277. <connect gate="G$1" pin="1" pad="1"/>
  5278. <connect gate="G$1" pin="2" pad="2"/>
  5279. </connects>
  5280. <technologies>
  5281. <technology name=""/>
  5282. </technologies>
  5283. </device>
  5284. <device name="22/11" package="C22.5B11">
  5285. <connects>
  5286. <connect gate="G$1" pin="1" pad="1"/>
  5287. <connect gate="G$1" pin="2" pad="2"/>
  5288. </connects>
  5289. <technologies>
  5290. <technology name=""/>
  5291. </technologies>
  5292. </device>
  5293. <device name="22/6" package="C22.5B6">
  5294. <connects>
  5295. <connect gate="G$1" pin="1" pad="1"/>
  5296. <connect gate="G$1" pin="2" pad="2"/>
  5297. </connects>
  5298. <technologies>
  5299. <technology name=""/>
  5300. </technologies>
  5301. </device>
  5302. <device name="22/7" package="C22.5B7">
  5303. <connects>
  5304. <connect gate="G$1" pin="1" pad="1"/>
  5305. <connect gate="G$1" pin="2" pad="2"/>
  5306. </connects>
  5307. <technologies>
  5308. <technology name=""/>
  5309. </technologies>
  5310. </device>
  5311. <device name="22/8" package="C22.5B8">
  5312. <connects>
  5313. <connect gate="G$1" pin="1" pad="1"/>
  5314. <connect gate="G$1" pin="2" pad="2"/>
  5315. </connects>
  5316. <technologies>
  5317. <technology name=""/>
  5318. </technologies>
  5319. </device>
  5320. <device name="27/11" package="C27.5B11">
  5321. <connects>
  5322. <connect gate="G$1" pin="1" pad="1"/>
  5323. <connect gate="G$1" pin="2" pad="2"/>
  5324. </connects>
  5325. <technologies>
  5326. <technology name=""/>
  5327. </technologies>
  5328. </device>
  5329. <device name="27/13" package="C27.5B13">
  5330. <connects>
  5331. <connect gate="G$1" pin="1" pad="1"/>
  5332. <connect gate="G$1" pin="2" pad="2"/>
  5333. </connects>
  5334. <technologies>
  5335. <technology name=""/>
  5336. </technologies>
  5337. </device>
  5338. <device name="27/15" package="C27.5B15">
  5339. <connects>
  5340. <connect gate="G$1" pin="1" pad="1"/>
  5341. <connect gate="G$1" pin="2" pad="2"/>
  5342. </connects>
  5343. <technologies>
  5344. <technology name=""/>
  5345. </technologies>
  5346. </device>
  5347. <device name="27/17" package="C27.5B17">
  5348. <connects>
  5349. <connect gate="G$1" pin="1" pad="1"/>
  5350. <connect gate="G$1" pin="2" pad="2"/>
  5351. </connects>
  5352. <technologies>
  5353. <technology name=""/>
  5354. </technologies>
  5355. </device>
  5356. <device name="27/20" package="C27.5B20">
  5357. <connects>
  5358. <connect gate="G$1" pin="1" pad="1"/>
  5359. <connect gate="G$1" pin="2" pad="2"/>
  5360. </connects>
  5361. <technologies>
  5362. <technology name=""/>
  5363. </technologies>
  5364. </device>
  5365. <device name="27/9" package="C27.5B9">
  5366. <connects>
  5367. <connect gate="G$1" pin="1" pad="1"/>
  5368. <connect gate="G$1" pin="2" pad="2"/>
  5369. </connects>
  5370. <technologies>
  5371. <technology name=""/>
  5372. </technologies>
  5373. </device>
  5374. <device name="37/15" package="C37.5B15">
  5375. <connects>
  5376. <connect gate="G$1" pin="1" pad="1"/>
  5377. <connect gate="G$1" pin="2" pad="2"/>
  5378. </connects>
  5379. <technologies>
  5380. <technology name=""/>
  5381. </technologies>
  5382. </device>
  5383. <device name="37/19" package="C37.5B19">
  5384. <connects>
  5385. <connect gate="G$1" pin="1" pad="1"/>
  5386. <connect gate="G$1" pin="2" pad="2"/>
  5387. </connects>
  5388. <technologies>
  5389. <technology name=""/>
  5390. </technologies>
  5391. </device>
  5392. <device name="37/20" package="C37.5B20">
  5393. <connects>
  5394. <connect gate="G$1" pin="1" pad="1"/>
  5395. <connect gate="G$1" pin="2" pad="2"/>
  5396. </connects>
  5397. <technologies>
  5398. <technology name=""/>
  5399. </technologies>
  5400. </device>
  5401. <device name="5/2.5" package="C5B2.5">
  5402. <connects>
  5403. <connect gate="G$1" pin="1" pad="1"/>
  5404. <connect gate="G$1" pin="2" pad="2"/>
  5405. </connects>
  5406. <technologies>
  5407. <technology name=""/>
  5408. </technologies>
  5409. </device>
  5410. <device name="5/3" package="C5B3">
  5411. <connects>
  5412. <connect gate="G$1" pin="1" pad="1"/>
  5413. <connect gate="G$1" pin="2" pad="2"/>
  5414. </connects>
  5415. <technologies>
  5416. <technology name=""/>
  5417. </technologies>
  5418. </device>
  5419. <device name="5/3.5" package="C5B3.5">
  5420. <connects>
  5421. <connect gate="G$1" pin="1" pad="1"/>
  5422. <connect gate="G$1" pin="2" pad="2"/>
  5423. </connects>
  5424. <technologies>
  5425. <technology name=""/>
  5426. </technologies>
  5427. </device>
  5428. <device name="5/4.5" package="C5B4.5">
  5429. <connects>
  5430. <connect gate="G$1" pin="1" pad="1"/>
  5431. <connect gate="G$1" pin="2" pad="2"/>
  5432. </connects>
  5433. <technologies>
  5434. <technology name=""/>
  5435. </technologies>
  5436. </device>
  5437. <device name="5/5" package="C5B5">
  5438. <connects>
  5439. <connect gate="G$1" pin="1" pad="1"/>
  5440. <connect gate="G$1" pin="2" pad="2"/>
  5441. </connects>
  5442. <technologies>
  5443. <technology name=""/>
  5444. </technologies>
  5445. </device>
  5446. <device name="5/5.5" package="C5B5.5">
  5447. <connects>
  5448. <connect gate="G$1" pin="1" pad="1"/>
  5449. <connect gate="G$1" pin="2" pad="2"/>
  5450. </connects>
  5451. <technologies>
  5452. <technology name=""/>
  5453. </technologies>
  5454. </device>
  5455. <device name="5/7.2" package="C5B7.2">
  5456. <connects>
  5457. <connect gate="G$1" pin="1" pad="1"/>
  5458. <connect gate="G$1" pin="2" pad="2"/>
  5459. </connects>
  5460. <technologies>
  5461. <technology name=""/>
  5462. </technologies>
  5463. </device>
  5464. <device name="7.5/3" package="C7.5B3">
  5465. <connects>
  5466. <connect gate="G$1" pin="1" pad="1"/>
  5467. <connect gate="G$1" pin="2" pad="2"/>
  5468. </connects>
  5469. <technologies>
  5470. <technology name=""/>
  5471. </technologies>
  5472. </device>
  5473. <device name="7.5/4" package="C7.5B4">
  5474. <connects>
  5475. <connect gate="G$1" pin="1" pad="1"/>
  5476. <connect gate="G$1" pin="2" pad="2"/>
  5477. </connects>
  5478. <technologies>
  5479. <technology name=""/>
  5480. </technologies>
  5481. </device>
  5482. <device name="7.5/5" package="C7.5B5">
  5483. <connects>
  5484. <connect gate="G$1" pin="1" pad="1"/>
  5485. <connect gate="G$1" pin="2" pad="2"/>
  5486. </connects>
  5487. <technologies>
  5488. <technology name=""/>
  5489. </technologies>
  5490. </device>
  5491. <device name="7.5/6" package="C7.5B6">
  5492. <connects>
  5493. <connect gate="G$1" pin="1" pad="1"/>
  5494. <connect gate="G$1" pin="2" pad="2"/>
  5495. </connects>
  5496. <technologies>
  5497. <technology name=""/>
  5498. </technologies>
  5499. </device>
  5500. <device name="2,5-3" package="C2.5-3">
  5501. <connects>
  5502. <connect gate="G$1" pin="1" pad="1"/>
  5503. <connect gate="G$1" pin="2" pad="2"/>
  5504. </connects>
  5505. <technologies>
  5506. <technology name=""/>
  5507. </technologies>
  5508. </device>
  5509. </devices>
  5510. </deviceset>
  5511. </devicesets>
  5512. </library>
  5513. </libraries>
  5514. <attributes>
  5515. </attributes>
  5516. <variantdefs>
  5517. </variantdefs>
  5518. <classes>
  5519. <class number="0" name="default" width="0" drill="0">
  5520. </class>
  5521. </classes>
  5522. <parts>
  5523. <part name="JP1" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5524. <part name="JP2" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5525. <part name="JP3" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5526. <part name="JP4" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5527. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  5528. <part name="U$2" library="optocoupler" deviceset="LTV847" device=""/>
  5529. <part name="R1" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5530. <part name="R2" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5531. <part name="R3" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5532. <part name="R4" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5533. <part name="R5" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5534. <part name="R6" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5535. <part name="R7" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5536. <part name="R8" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5537. <part name="X1" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5538. <part name="X2" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5539. <part name="X3" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5540. <part name="JP5" library="pinhead" deviceset="PINHD-1X5" device=""/>
  5541. <part name="JP6" library="pinhead" deviceset="PINHD-1X3" device=""/>
  5542. <part name="X4" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5543. <part name="R9" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5544. <part name="R10" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5545. <part name="R11" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5546. <part name="R12" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5547. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  5548. <part name="C1" library="capacitor-wima" deviceset="C" device="5/7.2" value="1000mkF"/>
  5549. <part name="R13" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5550. <part name="R14" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5551. <part name="R15" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5552. <part name="R16" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5553. <part name="R17" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5554. </parts>
  5555. <sheets>
  5556. <sheet>
  5557. <plain>
  5558. </plain>
  5559. <instances>
  5560. <instance part="JP1" gate="A" x="93.98" y="15.24" rot="R90"/>
  5561. <instance part="JP2" gate="A" x="172.72" y="71.12" rot="R180"/>
  5562. <instance part="JP3" gate="A" x="96.52" y="127" rot="R270"/>
  5563. <instance part="JP4" gate="A" x="40.64" y="76.2"/>
  5564. <instance part="U$1" gate="G$1" x="67.31" y="-33.02" rot="R270"/>
  5565. <instance part="U$2" gate="G$1" x="132.08" y="-33.02" rot="R270"/>
  5566. <instance part="R1" gate="G$1" x="170.18" y="-25.4" rot="R90"/>
  5567. <instance part="R2" gate="G$1" x="160.02" y="-25.4" rot="R90"/>
  5568. <instance part="R3" gate="G$1" x="149.86" y="-25.4" rot="R90"/>
  5569. <instance part="R4" gate="G$1" x="139.7" y="-25.4" rot="R90"/>
  5570. <instance part="R5" gate="G$1" x="105.41" y="-25.4" rot="R90"/>
  5571. <instance part="R6" gate="G$1" x="95.25" y="-25.4" rot="R90"/>
  5572. <instance part="R7" gate="G$1" x="85.09" y="-25.4" rot="R90"/>
  5573. <instance part="R8" gate="G$1" x="74.93" y="-25.4" rot="R90"/>
  5574. <instance part="X1" gate="-1" x="-33.02" y="-34.29" rot="R90"/>
  5575. <instance part="X1" gate="-2" x="-25.4" y="-34.29" rot="R90"/>
  5576. <instance part="X1" gate="-3" x="-17.78" y="-34.29" rot="R90"/>
  5577. <instance part="X1" gate="-4" x="-10.16" y="-34.29" rot="R90"/>
  5578. <instance part="X2" gate="-1" x="78.74" y="-93.98" rot="R90"/>
  5579. <instance part="X2" gate="-2" x="86.36" y="-93.98" rot="R90"/>
  5580. <instance part="X2" gate="-3" x="93.98" y="-93.98" rot="R90"/>
  5581. <instance part="X2" gate="-4" x="101.6" y="-93.98" rot="R90"/>
  5582. <instance part="X3" gate="-1" x="142.24" y="-93.98" rot="R90"/>
  5583. <instance part="X3" gate="-2" x="149.86" y="-93.98" rot="R90"/>
  5584. <instance part="X3" gate="-3" x="157.48" y="-93.98" rot="R90"/>
  5585. <instance part="X3" gate="-4" x="165.1" y="-93.98" rot="R90"/>
  5586. <instance part="JP5" gate="A" x="119.38" y="166.37" rot="R90"/>
  5587. <instance part="JP6" gate="A" x="99.06" y="166.37" rot="R90"/>
  5588. <instance part="X4" gate="-1" x="-43.18" y="86.36"/>
  5589. <instance part="X4" gate="-2" x="-43.18" y="78.74"/>
  5590. <instance part="X4" gate="-3" x="-43.18" y="71.12"/>
  5591. <instance part="X4" gate="-4" x="-43.18" y="63.5"/>
  5592. <instance part="R9" gate="G$1" x="-31.75" y="45.72" rot="R90"/>
  5593. <instance part="R10" gate="G$1" x="-22.86" y="45.72" rot="R90"/>
  5594. <instance part="R11" gate="G$1" x="-13.97" y="45.72" rot="R90"/>
  5595. <instance part="R12" gate="G$1" x="-6.35" y="45.72" rot="R90"/>
  5596. <instance part="U$3" gate="G$1" x="35.56" y="-12.7"/>
  5597. <instance part="C1" gate="G$1" x="54.61" y="-20.32"/>
  5598. <instance part="R13" gate="G$1" x="63.5" y="-21.59" rot="R90"/>
  5599. <instance part="R14" gate="G$1" x="11.43" y="86.36" rot="R180"/>
  5600. <instance part="R15" gate="G$1" x="11.43" y="78.74" rot="R180"/>
  5601. <instance part="R16" gate="G$1" x="11.43" y="71.12" rot="R180"/>
  5602. <instance part="R17" gate="G$1" x="11.43" y="63.5" rot="R180"/>
  5603. </instances>
  5604. <busses>
  5605. </busses>
  5606. <nets>
  5607. <net name="N$1" class="0">
  5608. <segment>
  5609. <pinref part="U$2" gate="G$1" pin="P$8"/>
  5610. <pinref part="R1" gate="G$1" pin="1"/>
  5611. </segment>
  5612. </net>
  5613. <net name="N$2" class="0">
  5614. <segment>
  5615. <pinref part="U$2" gate="G$1" pin="P$6"/>
  5616. <pinref part="R2" gate="G$1" pin="1"/>
  5617. </segment>
  5618. </net>
  5619. <net name="N$3" class="0">
  5620. <segment>
  5621. <pinref part="U$2" gate="G$1" pin="P$4"/>
  5622. <pinref part="R3" gate="G$1" pin="1"/>
  5623. </segment>
  5624. </net>
  5625. <net name="N$4" class="0">
  5626. <segment>
  5627. <pinref part="U$1" gate="G$1" pin="P$8"/>
  5628. <pinref part="R5" gate="G$1" pin="1"/>
  5629. </segment>
  5630. </net>
  5631. <net name="N$5" class="0">
  5632. <segment>
  5633. <pinref part="U$1" gate="G$1" pin="P$6"/>
  5634. <pinref part="R6" gate="G$1" pin="1"/>
  5635. </segment>
  5636. </net>
  5637. <net name="N$6" class="0">
  5638. <segment>
  5639. <pinref part="U$1" gate="G$1" pin="P$4"/>
  5640. <pinref part="R7" gate="G$1" pin="1"/>
  5641. </segment>
  5642. </net>
  5643. <net name="N$7" class="0">
  5644. <segment>
  5645. <pinref part="U$1" gate="G$1" pin="P$2"/>
  5646. <pinref part="R8" gate="G$1" pin="1"/>
  5647. </segment>
  5648. </net>
  5649. <net name="N$8" class="0">
  5650. <segment>
  5651. <pinref part="U$2" gate="G$1" pin="P$2"/>
  5652. <pinref part="R4" gate="G$1" pin="1"/>
  5653. </segment>
  5654. </net>
  5655. <net name="N$10" class="0">
  5656. <segment>
  5657. <pinref part="X1" gate="-3" pin="1A"/>
  5658. <wire x1="-17.78" y1="-31.75" x2="-17.78" y2="-25.4" width="0.1524" layer="91"/>
  5659. <wire x1="-17.78" y1="-25.4" x2="17.78" y2="-25.4" width="0.1524" layer="91"/>
  5660. <wire x1="17.78" y1="-25.4" x2="17.78" y2="-59.69" width="0.1524" layer="91"/>
  5661. <wire x1="17.78" y1="-59.69" x2="74.93" y2="-59.69" width="0.1524" layer="91"/>
  5662. <wire x1="74.93" y1="-59.69" x2="74.93" y2="-54.61" width="0.1524" layer="91"/>
  5663. <pinref part="U$1" gate="G$1" pin="P$12"/>
  5664. <wire x1="74.93" y1="-59.69" x2="85.09" y2="-59.69" width="0.1524" layer="91"/>
  5665. <wire x1="85.09" y1="-59.69" x2="85.09" y2="-55.88" width="0.1524" layer="91"/>
  5666. <junction x="74.93" y="-59.69"/>
  5667. <pinref part="U$1" gate="G$1" pin="P$14"/>
  5668. <wire x1="85.09" y1="-59.69" x2="95.25" y2="-59.69" width="0.1524" layer="91"/>
  5669. <wire x1="95.25" y1="-59.69" x2="95.25" y2="-55.88" width="0.1524" layer="91"/>
  5670. <junction x="85.09" y="-59.69"/>
  5671. <pinref part="U$1" gate="G$1" pin="P$16"/>
  5672. <wire x1="95.25" y1="-59.69" x2="105.41" y2="-59.69" width="0.1524" layer="91"/>
  5673. <wire x1="105.41" y1="-59.69" x2="105.41" y2="-55.88" width="0.1524" layer="91"/>
  5674. <junction x="95.25" y="-59.69"/>
  5675. <pinref part="U$2" gate="G$1" pin="P$10"/>
  5676. <wire x1="105.41" y1="-59.69" x2="124.46" y2="-59.69" width="0.1524" layer="91"/>
  5677. <wire x1="124.46" y1="-59.69" x2="139.7" y2="-59.69" width="0.1524" layer="91"/>
  5678. <wire x1="139.7" y1="-59.69" x2="139.7" y2="-55.88" width="0.1524" layer="91"/>
  5679. <junction x="105.41" y="-59.69"/>
  5680. <wire x1="139.7" y1="-59.69" x2="149.86" y2="-59.69" width="0.1524" layer="91"/>
  5681. <junction x="139.7" y="-59.69"/>
  5682. <wire x1="149.86" y1="-54.61" x2="149.86" y2="-59.69" width="0.1524" layer="91"/>
  5683. <pinref part="U$2" gate="G$1" pin="P$14"/>
  5684. <wire x1="149.86" y1="-59.69" x2="160.02" y2="-59.69" width="0.1524" layer="91"/>
  5685. <wire x1="160.02" y1="-59.69" x2="160.02" y2="-55.88" width="0.1524" layer="91"/>
  5686. <junction x="149.86" y="-59.69"/>
  5687. <pinref part="U$2" gate="G$1" pin="P$16"/>
  5688. <wire x1="160.02" y1="-59.69" x2="170.18" y2="-59.69" width="0.1524" layer="91"/>
  5689. <wire x1="170.18" y1="-59.69" x2="170.18" y2="-55.88" width="0.1524" layer="91"/>
  5690. <junction x="160.02" y="-59.69"/>
  5691. <pinref part="JP5" gate="A" pin="5"/>
  5692. <wire x1="124.46" y1="163.83" x2="124.46" y2="152.4" width="0.1524" layer="91"/>
  5693. <junction x="124.46" y="-59.69"/>
  5694. <pinref part="JP6" gate="A" pin="3"/>
  5695. <wire x1="124.46" y1="152.4" x2="124.46" y2="-59.69" width="0.1524" layer="91"/>
  5696. <wire x1="101.6" y1="163.83" x2="101.6" y2="152.4" width="0.1524" layer="91"/>
  5697. <wire x1="101.6" y1="152.4" x2="124.46" y2="152.4" width="0.1524" layer="91"/>
  5698. <junction x="124.46" y="152.4"/>
  5699. </segment>
  5700. </net>
  5701. <net name="N$11" class="0">
  5702. <segment>
  5703. <pinref part="R6" gate="G$1" pin="2"/>
  5704. <wire x1="95.25" y1="-20.32" x2="95.25" y2="-16.51" width="0.1524" layer="91"/>
  5705. <wire x1="95.25" y1="-16.51" x2="119.38" y2="-16.51" width="0.1524" layer="91"/>
  5706. <wire x1="119.38" y1="-16.51" x2="119.38" y2="30.48" width="0.1524" layer="91"/>
  5707. <pinref part="JP1" gate="A" pin="12"/>
  5708. <wire x1="119.38" y1="30.48" x2="101.6" y2="30.48" width="0.1524" layer="91"/>
  5709. <wire x1="101.6" y1="30.48" x2="101.6" y2="20.32" width="0.1524" layer="91"/>
  5710. </segment>
  5711. </net>
  5712. <net name="N$12" class="0">
  5713. <segment>
  5714. <pinref part="R7" gate="G$1" pin="2"/>
  5715. <wire x1="85.09" y1="-20.32" x2="90.17" y2="-15.24" width="0.1524" layer="91"/>
  5716. <wire x1="90.17" y1="-15.24" x2="101.6" y2="-15.24" width="0.1524" layer="91"/>
  5717. <pinref part="JP1" gate="A" pin="11"/>
  5718. <wire x1="101.6" y1="-15.24" x2="101.6" y2="12.7" width="0.1524" layer="91"/>
  5719. </segment>
  5720. </net>
  5721. <net name="N$13" class="0">
  5722. <segment>
  5723. <pinref part="R8" gate="G$1" pin="2"/>
  5724. <wire x1="74.93" y1="-20.32" x2="81.28" y2="-13.97" width="0.1524" layer="91"/>
  5725. <wire x1="81.28" y1="-13.97" x2="105.41" y2="-13.97" width="0.1524" layer="91"/>
  5726. <wire x1="105.41" y1="-13.97" x2="105.41" y2="29.21" width="0.1524" layer="91"/>
  5727. <wire x1="105.41" y1="29.21" x2="99.06" y2="29.21" width="0.1524" layer="91"/>
  5728. <pinref part="JP1" gate="A" pin="10"/>
  5729. <wire x1="99.06" y1="29.21" x2="99.06" y2="20.32" width="0.1524" layer="91"/>
  5730. </segment>
  5731. </net>
  5732. <net name="N$14" class="0">
  5733. <segment>
  5734. <pinref part="JP1" gate="A" pin="9"/>
  5735. <wire x1="99.06" y1="12.7" x2="99.06" y2="-12.7" width="0.1524" layer="91"/>
  5736. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  5737. <wire x1="48.26" y1="-7.62" x2="48.26" y2="-12.7" width="0.1524" layer="91"/>
  5738. <wire x1="48.26" y1="-12.7" x2="54.61" y2="-12.7" width="0.1524" layer="91"/>
  5739. <pinref part="C1" gate="G$1" pin="1"/>
  5740. <wire x1="54.61" y1="-12.7" x2="63.5" y2="-12.7" width="0.1524" layer="91"/>
  5741. <wire x1="63.5" y1="-12.7" x2="99.06" y2="-12.7" width="0.1524" layer="91"/>
  5742. <wire x1="54.61" y1="-17.78" x2="54.61" y2="-12.7" width="0.1524" layer="91"/>
  5743. <junction x="54.61" y="-12.7"/>
  5744. <pinref part="R13" gate="G$1" pin="2"/>
  5745. <wire x1="63.5" y1="-16.51" x2="63.5" y2="-12.7" width="0.1524" layer="91"/>
  5746. <junction x="63.5" y="-12.7"/>
  5747. </segment>
  5748. </net>
  5749. <net name="N$16" class="0">
  5750. <segment>
  5751. <pinref part="R5" gate="G$1" pin="2"/>
  5752. <wire x1="105.41" y1="-20.32" x2="120.65" y2="-20.32" width="0.1524" layer="91"/>
  5753. <wire x1="120.65" y1="-20.32" x2="120.65" y2="35.56" width="0.1524" layer="91"/>
  5754. <wire x1="120.65" y1="35.56" x2="186.69" y2="35.56" width="0.1524" layer="91"/>
  5755. <wire x1="186.69" y1="35.56" x2="186.69" y2="66.04" width="0.1524" layer="91"/>
  5756. <pinref part="JP2" gate="A" pin="1"/>
  5757. <wire x1="186.69" y1="66.04" x2="175.26" y2="66.04" width="0.1524" layer="91"/>
  5758. </segment>
  5759. </net>
  5760. <net name="N$17" class="0">
  5761. <segment>
  5762. <pinref part="R4" gate="G$1" pin="2"/>
  5763. <pinref part="JP2" gate="A" pin="2"/>
  5764. <wire x1="139.7" y1="-20.32" x2="139.7" y2="66.04" width="0.1524" layer="91"/>
  5765. <wire x1="139.7" y1="66.04" x2="167.64" y2="66.04" width="0.1524" layer="91"/>
  5766. </segment>
  5767. </net>
  5768. <net name="N$18" class="0">
  5769. <segment>
  5770. <pinref part="R3" gate="G$1" pin="2"/>
  5771. <wire x1="149.86" y1="-20.32" x2="149.86" y2="34.29" width="0.1524" layer="91"/>
  5772. <wire x1="149.86" y1="34.29" x2="187.96" y2="34.29" width="0.1524" layer="91"/>
  5773. <pinref part="JP2" gate="A" pin="3"/>
  5774. <wire x1="187.96" y1="34.29" x2="187.96" y2="68.58" width="0.1524" layer="91"/>
  5775. <wire x1="187.96" y1="68.58" x2="175.26" y2="68.58" width="0.1524" layer="91"/>
  5776. </segment>
  5777. </net>
  5778. <net name="N$19" class="0">
  5779. <segment>
  5780. <pinref part="R2" gate="G$1" pin="2"/>
  5781. <pinref part="JP2" gate="A" pin="4"/>
  5782. <wire x1="160.02" y1="-20.32" x2="160.02" y2="68.58" width="0.1524" layer="91"/>
  5783. <wire x1="160.02" y1="68.58" x2="167.64" y2="68.58" width="0.1524" layer="91"/>
  5784. </segment>
  5785. </net>
  5786. <net name="N$20" class="0">
  5787. <segment>
  5788. <pinref part="R1" gate="G$1" pin="2"/>
  5789. <wire x1="170.18" y1="-20.32" x2="170.18" y2="33.02" width="0.1524" layer="91"/>
  5790. <wire x1="170.18" y1="33.02" x2="189.23" y2="33.02" width="0.1524" layer="91"/>
  5791. <pinref part="JP2" gate="A" pin="5"/>
  5792. <wire x1="189.23" y1="33.02" x2="189.23" y2="71.12" width="0.1524" layer="91"/>
  5793. <wire x1="189.23" y1="71.12" x2="175.26" y2="71.12" width="0.1524" layer="91"/>
  5794. </segment>
  5795. </net>
  5796. <net name="N$21" class="0">
  5797. <segment>
  5798. <pinref part="U$1" gate="G$1" pin="P$9"/>
  5799. <wire x1="69.85" y1="-55.88" x2="69.85" y2="-83.82" width="0.1524" layer="91"/>
  5800. <wire x1="69.85" y1="-83.82" x2="78.74" y2="-83.82" width="0.1524" layer="91"/>
  5801. <pinref part="X2" gate="-1" pin="1A"/>
  5802. <wire x1="78.74" y1="-83.82" x2="78.74" y2="-91.44" width="0.1524" layer="91"/>
  5803. </segment>
  5804. </net>
  5805. <net name="N$15" class="0">
  5806. <segment>
  5807. <pinref part="U$1" gate="G$1" pin="P$11"/>
  5808. <wire x1="80.01" y1="-55.88" x2="80.01" y2="-83.82" width="0.1524" layer="91"/>
  5809. <wire x1="80.01" y1="-83.82" x2="86.36" y2="-83.82" width="0.1524" layer="91"/>
  5810. <pinref part="X2" gate="-2" pin="1A"/>
  5811. <wire x1="86.36" y1="-83.82" x2="86.36" y2="-91.44" width="0.1524" layer="91"/>
  5812. </segment>
  5813. </net>
  5814. <net name="N$22" class="0">
  5815. <segment>
  5816. <wire x1="90.17" y1="-54.61" x2="90.17" y2="-83.82" width="0.1524" layer="91"/>
  5817. <wire x1="90.17" y1="-83.82" x2="93.98" y2="-83.82" width="0.1524" layer="91"/>
  5818. <pinref part="X2" gate="-3" pin="1A"/>
  5819. <wire x1="93.98" y1="-83.82" x2="93.98" y2="-91.44" width="0.1524" layer="91"/>
  5820. </segment>
  5821. </net>
  5822. <net name="N$23" class="0">
  5823. <segment>
  5824. <pinref part="U$1" gate="G$1" pin="P$15"/>
  5825. <wire x1="100.33" y1="-55.88" x2="100.33" y2="-83.82" width="0.1524" layer="91"/>
  5826. <wire x1="100.33" y1="-83.82" x2="101.6" y2="-83.82" width="0.1524" layer="91"/>
  5827. <pinref part="X2" gate="-4" pin="1A"/>
  5828. <wire x1="101.6" y1="-83.82" x2="101.6" y2="-91.44" width="0.1524" layer="91"/>
  5829. </segment>
  5830. </net>
  5831. <net name="N$24" class="0">
  5832. <segment>
  5833. <pinref part="U$2" gate="G$1" pin="P$9"/>
  5834. <wire x1="134.62" y1="-55.88" x2="134.62" y2="-83.82" width="0.1524" layer="91"/>
  5835. <wire x1="134.62" y1="-83.82" x2="142.24" y2="-83.82" width="0.1524" layer="91"/>
  5836. <pinref part="X3" gate="-1" pin="1A"/>
  5837. <wire x1="142.24" y1="-83.82" x2="142.24" y2="-91.44" width="0.1524" layer="91"/>
  5838. </segment>
  5839. </net>
  5840. <net name="N$25" class="0">
  5841. <segment>
  5842. <wire x1="144.78" y1="-54.61" x2="144.78" y2="-83.82" width="0.1524" layer="91"/>
  5843. <wire x1="144.78" y1="-83.82" x2="149.86" y2="-83.82" width="0.1524" layer="91"/>
  5844. <pinref part="X3" gate="-2" pin="1A"/>
  5845. <wire x1="149.86" y1="-83.82" x2="149.86" y2="-91.44" width="0.1524" layer="91"/>
  5846. </segment>
  5847. </net>
  5848. <net name="N$26" class="0">
  5849. <segment>
  5850. <pinref part="U$2" gate="G$1" pin="P$13"/>
  5851. <wire x1="154.94" y1="-55.88" x2="154.94" y2="-83.82" width="0.1524" layer="91"/>
  5852. <wire x1="154.94" y1="-83.82" x2="157.48" y2="-83.82" width="0.1524" layer="91"/>
  5853. <pinref part="X3" gate="-3" pin="1A"/>
  5854. <wire x1="157.48" y1="-83.82" x2="157.48" y2="-91.44" width="0.1524" layer="91"/>
  5855. </segment>
  5856. </net>
  5857. <net name="N$27" class="0">
  5858. <segment>
  5859. <pinref part="U$2" gate="G$1" pin="P$15"/>
  5860. <pinref part="X3" gate="-4" pin="1A"/>
  5861. <wire x1="165.1" y1="-55.88" x2="165.1" y2="-91.44" width="0.1524" layer="91"/>
  5862. </segment>
  5863. </net>
  5864. <net name="N$28" class="0">
  5865. <segment>
  5866. <pinref part="JP3" gate="A" pin="1"/>
  5867. <wire x1="101.6" y1="129.54" x2="101.6" y2="140.97" width="0.1524" layer="91"/>
  5868. <wire x1="101.6" y1="140.97" x2="121.92" y2="140.97" width="0.1524" layer="91"/>
  5869. <wire x1="121.92" y1="140.97" x2="121.92" y2="163.83" width="0.1524" layer="91"/>
  5870. <pinref part="JP5" gate="A" pin="4"/>
  5871. </segment>
  5872. </net>
  5873. <net name="N$29" class="0">
  5874. <segment>
  5875. <pinref part="JP3" gate="A" pin="2"/>
  5876. <wire x1="101.6" y1="121.92" x2="119.38" y2="121.92" width="0.1524" layer="91"/>
  5877. <wire x1="119.38" y1="121.92" x2="119.38" y2="163.83" width="0.1524" layer="91"/>
  5878. <pinref part="JP5" gate="A" pin="3"/>
  5879. </segment>
  5880. </net>
  5881. <net name="N$30" class="0">
  5882. <segment>
  5883. <pinref part="JP3" gate="A" pin="3"/>
  5884. <wire x1="99.06" y1="129.54" x2="99.06" y2="142.24" width="0.1524" layer="91"/>
  5885. <wire x1="99.06" y1="142.24" x2="116.84" y2="142.24" width="0.1524" layer="91"/>
  5886. <wire x1="116.84" y1="142.24" x2="116.84" y2="163.83" width="0.1524" layer="91"/>
  5887. <pinref part="JP5" gate="A" pin="2"/>
  5888. </segment>
  5889. </net>
  5890. <net name="N$31" class="0">
  5891. <segment>
  5892. <pinref part="JP3" gate="A" pin="4"/>
  5893. <wire x1="99.06" y1="121.92" x2="99.06" y2="115.57" width="0.1524" layer="91"/>
  5894. <wire x1="99.06" y1="115.57" x2="114.3" y2="115.57" width="0.1524" layer="91"/>
  5895. <wire x1="114.3" y1="115.57" x2="114.3" y2="163.83" width="0.1524" layer="91"/>
  5896. <pinref part="JP5" gate="A" pin="1"/>
  5897. </segment>
  5898. </net>
  5899. <net name="N$32" class="0">
  5900. <segment>
  5901. <pinref part="JP3" gate="A" pin="8"/>
  5902. <wire x1="93.98" y1="121.92" x2="93.98" y2="114.3" width="0.1524" layer="91"/>
  5903. <wire x1="93.98" y1="114.3" x2="106.68" y2="114.3" width="0.1524" layer="91"/>
  5904. <wire x1="106.68" y1="114.3" x2="106.68" y2="151.13" width="0.1524" layer="91"/>
  5905. <wire x1="106.68" y1="151.13" x2="99.06" y2="151.13" width="0.1524" layer="91"/>
  5906. <pinref part="JP6" gate="A" pin="2"/>
  5907. <wire x1="99.06" y1="151.13" x2="99.06" y2="163.83" width="0.1524" layer="91"/>
  5908. </segment>
  5909. </net>
  5910. <net name="N$33" class="0">
  5911. <segment>
  5912. <pinref part="JP3" gate="A" pin="9"/>
  5913. <wire x1="91.44" y1="129.54" x2="91.44" y2="142.24" width="0.1524" layer="91"/>
  5914. <wire x1="91.44" y1="142.24" x2="96.52" y2="142.24" width="0.1524" layer="91"/>
  5915. <pinref part="JP6" gate="A" pin="1"/>
  5916. <wire x1="96.52" y1="142.24" x2="96.52" y2="163.83" width="0.1524" layer="91"/>
  5917. </segment>
  5918. </net>
  5919. <net name="N$34" class="0">
  5920. <segment>
  5921. <pinref part="X4" gate="-4" pin="1A"/>
  5922. <pinref part="R9" gate="G$1" pin="2"/>
  5923. <wire x1="-40.64" y1="63.5" x2="-31.75" y2="63.5" width="0.1524" layer="91"/>
  5924. <wire x1="-31.75" y1="63.5" x2="-31.75" y2="50.8" width="0.1524" layer="91"/>
  5925. <pinref part="R17" gate="G$1" pin="2"/>
  5926. <wire x1="6.35" y1="63.5" x2="-31.75" y2="63.5" width="0.1524" layer="91"/>
  5927. <junction x="-31.75" y="63.5"/>
  5928. </segment>
  5929. </net>
  5930. <net name="N$35" class="0">
  5931. <segment>
  5932. <pinref part="X4" gate="-3" pin="1A"/>
  5933. <pinref part="R10" gate="G$1" pin="2"/>
  5934. <wire x1="-40.64" y1="71.12" x2="-22.86" y2="71.12" width="0.1524" layer="91"/>
  5935. <wire x1="-22.86" y1="71.12" x2="-22.86" y2="50.8" width="0.1524" layer="91"/>
  5936. <pinref part="R16" gate="G$1" pin="2"/>
  5937. <wire x1="6.35" y1="71.12" x2="-22.86" y2="71.12" width="0.1524" layer="91"/>
  5938. <junction x="-22.86" y="71.12"/>
  5939. </segment>
  5940. </net>
  5941. <net name="N$36" class="0">
  5942. <segment>
  5943. <pinref part="X4" gate="-2" pin="1A"/>
  5944. <pinref part="R11" gate="G$1" pin="2"/>
  5945. <wire x1="-40.64" y1="78.74" x2="-13.97" y2="78.74" width="0.1524" layer="91"/>
  5946. <wire x1="-13.97" y1="78.74" x2="-13.97" y2="50.8" width="0.1524" layer="91"/>
  5947. <pinref part="R15" gate="G$1" pin="2"/>
  5948. <wire x1="6.35" y1="78.74" x2="-13.97" y2="78.74" width="0.1524" layer="91"/>
  5949. <junction x="-13.97" y="78.74"/>
  5950. </segment>
  5951. </net>
  5952. <net name="N$37" class="0">
  5953. <segment>
  5954. <pinref part="X4" gate="-1" pin="1A"/>
  5955. <pinref part="R12" gate="G$1" pin="2"/>
  5956. <wire x1="-40.64" y1="86.36" x2="-6.35" y2="86.36" width="0.1524" layer="91"/>
  5957. <wire x1="-6.35" y1="86.36" x2="-6.35" y2="50.8" width="0.1524" layer="91"/>
  5958. <pinref part="R14" gate="G$1" pin="2"/>
  5959. <wire x1="6.35" y1="86.36" x2="-6.35" y2="86.36" width="0.1524" layer="91"/>
  5960. <junction x="-6.35" y="86.36"/>
  5961. </segment>
  5962. </net>
  5963. <net name="N$38" class="0">
  5964. <segment>
  5965. <pinref part="R9" gate="G$1" pin="1"/>
  5966. <wire x1="-31.75" y1="40.64" x2="-31.75" y2="34.29" width="0.1524" layer="91"/>
  5967. <wire x1="-31.75" y1="34.29" x2="-22.86" y2="34.29" width="0.1524" layer="91"/>
  5968. <pinref part="R12" gate="G$1" pin="1"/>
  5969. <wire x1="-22.86" y1="34.29" x2="-13.97" y2="34.29" width="0.1524" layer="91"/>
  5970. <wire x1="-13.97" y1="34.29" x2="-6.35" y2="34.29" width="0.1524" layer="91"/>
  5971. <wire x1="-6.35" y1="34.29" x2="-6.35" y2="40.64" width="0.1524" layer="91"/>
  5972. <pinref part="R10" gate="G$1" pin="1"/>
  5973. <wire x1="-22.86" y1="40.64" x2="-22.86" y2="34.29" width="0.1524" layer="91"/>
  5974. <junction x="-22.86" y="34.29"/>
  5975. <pinref part="R11" gate="G$1" pin="1"/>
  5976. <wire x1="-13.97" y1="40.64" x2="-13.97" y2="34.29" width="0.1524" layer="91"/>
  5977. <junction x="-13.97" y="34.29"/>
  5978. <pinref part="X1" gate="-2" pin="1A"/>
  5979. <wire x1="-25.4" y1="-31.75" x2="-25.4" y2="-24.13" width="0.1524" layer="91"/>
  5980. <wire x1="-25.4" y1="-24.13" x2="-6.35" y2="-24.13" width="0.1524" layer="91"/>
  5981. <pinref part="U$1" gate="G$1" pin="P$1"/>
  5982. <wire x1="-6.35" y1="-24.13" x2="19.05" y2="-24.13" width="0.1524" layer="91"/>
  5983. <wire x1="19.05" y1="-24.13" x2="19.05" y2="-30.48" width="0.1524" layer="91"/>
  5984. <wire x1="19.05" y1="-30.48" x2="35.56" y2="-30.48" width="0.1524" layer="91"/>
  5985. <pinref part="U$1" gate="G$1" pin="P$3"/>
  5986. <wire x1="35.56" y1="-30.48" x2="54.61" y2="-30.48" width="0.1524" layer="91"/>
  5987. <wire x1="54.61" y1="-30.48" x2="63.5" y2="-30.48" width="0.1524" layer="91"/>
  5988. <wire x1="63.5" y1="-30.48" x2="69.85" y2="-30.48" width="0.1524" layer="91"/>
  5989. <wire x1="69.85" y1="-30.48" x2="80.01" y2="-30.48" width="0.1524" layer="91"/>
  5990. <junction x="69.85" y="-30.48"/>
  5991. <pinref part="U$1" gate="G$1" pin="P$5"/>
  5992. <wire x1="80.01" y1="-30.48" x2="90.17" y2="-30.48" width="0.1524" layer="91"/>
  5993. <junction x="80.01" y="-30.48"/>
  5994. <pinref part="U$1" gate="G$1" pin="P$7"/>
  5995. <wire x1="90.17" y1="-30.48" x2="100.33" y2="-30.48" width="0.1524" layer="91"/>
  5996. <junction x="90.17" y="-30.48"/>
  5997. <pinref part="U$2" gate="G$1" pin="P$1"/>
  5998. <wire x1="100.33" y1="-30.48" x2="113.03" y2="-30.48" width="0.1524" layer="91"/>
  5999. <junction x="100.33" y="-30.48"/>
  6000. <pinref part="U$2" gate="G$1" pin="P$3"/>
  6001. <wire x1="113.03" y1="-30.48" x2="134.62" y2="-30.48" width="0.1524" layer="91"/>
  6002. <wire x1="134.62" y1="-30.48" x2="144.78" y2="-30.48" width="0.1524" layer="91"/>
  6003. <junction x="134.62" y="-30.48"/>
  6004. <pinref part="U$2" gate="G$1" pin="P$5"/>
  6005. <wire x1="144.78" y1="-30.48" x2="154.94" y2="-30.48" width="0.1524" layer="91"/>
  6006. <junction x="144.78" y="-30.48"/>
  6007. <pinref part="U$2" gate="G$1" pin="P$7"/>
  6008. <wire x1="154.94" y1="-30.48" x2="165.1" y2="-30.48" width="0.1524" layer="91"/>
  6009. <junction x="154.94" y="-30.48"/>
  6010. <pinref part="JP1" gate="A" pin="8"/>
  6011. <wire x1="96.52" y1="20.32" x2="96.52" y2="27.94" width="0.1524" layer="91"/>
  6012. <wire x1="96.52" y1="27.94" x2="113.03" y2="27.94" width="0.1524" layer="91"/>
  6013. <wire x1="113.03" y1="27.94" x2="113.03" y2="-30.48" width="0.1524" layer="91"/>
  6014. <junction x="113.03" y="-30.48"/>
  6015. <wire x1="-6.35" y1="34.29" x2="-6.35" y2="-24.13" width="0.1524" layer="91"/>
  6016. <junction x="-6.35" y="34.29"/>
  6017. <junction x="-6.35" y="-24.13"/>
  6018. <wire x1="35.56" y1="-19.05" x2="35.56" y2="-30.48" width="0.1524" layer="91"/>
  6019. <junction x="35.56" y="-30.48"/>
  6020. <pinref part="C1" gate="G$1" pin="2"/>
  6021. <wire x1="54.61" y1="-25.4" x2="54.61" y2="-30.48" width="0.1524" layer="91"/>
  6022. <junction x="54.61" y="-30.48"/>
  6023. <pinref part="R13" gate="G$1" pin="1"/>
  6024. <wire x1="63.5" y1="-26.67" x2="63.5" y2="-30.48" width="0.1524" layer="91"/>
  6025. <junction x="63.5" y="-30.48"/>
  6026. </segment>
  6027. </net>
  6028. <net name="N$39" class="0">
  6029. <segment>
  6030. <pinref part="X1" gate="-1" pin="1A"/>
  6031. <wire x1="-33.02" y1="-7.62" x2="-33.02" y2="-31.75" width="0.1524" layer="91"/>
  6032. <pinref part="U$3" gate="G$1" pin="VIN"/>
  6033. <wire x1="-33.02" y1="-7.62" x2="22.86" y2="-7.62" width="0.1524" layer="91"/>
  6034. </segment>
  6035. </net>
  6036. <net name="N$9" class="0">
  6037. <segment>
  6038. <pinref part="JP4" gate="A" pin="3"/>
  6039. <wire x1="38.1" y1="78.74" x2="30.48" y2="78.74" width="0.1524" layer="91"/>
  6040. <wire x1="30.48" y1="78.74" x2="30.48" y2="86.36" width="0.1524" layer="91"/>
  6041. <pinref part="R14" gate="G$1" pin="1"/>
  6042. <wire x1="30.48" y1="86.36" x2="16.51" y2="86.36" width="0.1524" layer="91"/>
  6043. </segment>
  6044. </net>
  6045. <net name="N$40" class="0">
  6046. <segment>
  6047. <pinref part="JP4" gate="A" pin="4"/>
  6048. <wire x1="45.72" y1="78.74" x2="52.07" y2="78.74" width="0.1524" layer="91"/>
  6049. <wire x1="52.07" y1="78.74" x2="52.07" y2="87.63" width="0.1524" layer="91"/>
  6050. <wire x1="52.07" y1="87.63" x2="29.21" y2="87.63" width="0.1524" layer="91"/>
  6051. <wire x1="29.21" y1="87.63" x2="29.21" y2="78.74" width="0.1524" layer="91"/>
  6052. <pinref part="R15" gate="G$1" pin="1"/>
  6053. <wire x1="29.21" y1="78.74" x2="16.51" y2="78.74" width="0.1524" layer="91"/>
  6054. </segment>
  6055. </net>
  6056. <net name="N$41" class="0">
  6057. <segment>
  6058. <pinref part="JP4" gate="A" pin="5"/>
  6059. <wire x1="38.1" y1="76.2" x2="30.48" y2="76.2" width="0.1524" layer="91"/>
  6060. <wire x1="30.48" y1="76.2" x2="30.48" y2="71.12" width="0.1524" layer="91"/>
  6061. <pinref part="R16" gate="G$1" pin="1"/>
  6062. <wire x1="30.48" y1="71.12" x2="16.51" y2="71.12" width="0.1524" layer="91"/>
  6063. </segment>
  6064. </net>
  6065. <net name="N$42" class="0">
  6066. <segment>
  6067. <pinref part="JP4" gate="A" pin="6"/>
  6068. <wire x1="45.72" y1="76.2" x2="52.07" y2="76.2" width="0.1524" layer="91"/>
  6069. <wire x1="52.07" y1="76.2" x2="52.07" y2="63.5" width="0.1524" layer="91"/>
  6070. <pinref part="R17" gate="G$1" pin="1"/>
  6071. <wire x1="52.07" y1="63.5" x2="16.51" y2="63.5" width="0.1524" layer="91"/>
  6072. </segment>
  6073. </net>
  6074. </nets>
  6075. </sheet>
  6076. </sheets>
  6077. </schematic>
  6078. </drawing>
  6079. </eagle>