Dialer.s#5 353 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264
  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. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  72. </layers>
  73. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  74. <libraries>
  75. <library name="stm8s103">
  76. <description>&lt;b&gt;STM8S103 in TSSOP-20, SO-20 and LQFP32&lt;/b&gt;
  77. &lt;br /&gt;
  78. Source:
  79. &lt;a href="http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00226640.pdf"&gt;STM8S103K3, STM8S103F3, STM8S103F2 Datasheet&lt;/a&gt;</description>
  80. <packages>
  81. <package name="TSSOP20">
  82. <description>&lt;b&gt;Thin Shrink Small Outline Plastic 20&lt;/b&gt;&lt;p&gt;
  83. MAX3223-MAX3243.pdf</description>
  84. <wire x1="-3.1646" y1="-2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  85. <wire x1="3.1646" y1="2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  86. <wire x1="3.1646" y1="2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  87. <wire x1="-3.1646" y1="-2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  88. <wire x1="-2.936" y1="-2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  89. <wire x1="2.936" y1="2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  90. <wire x1="2.936" y1="2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  91. <wire x1="-2.936" y1="-2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  92. <circle x="-2.2756" y="-1.2192" radius="0.4572" width="0.1524" layer="21"/>
  93. <smd name="1" x="-2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  94. <smd name="2" x="-2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  95. <smd name="3" x="-1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  96. <smd name="4" x="-0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  97. <smd name="5" x="-0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  98. <smd name="6" x="0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  99. <smd name="7" x="0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  100. <smd name="8" x="1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  101. <smd name="9" x="2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  102. <smd name="10" x="2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  103. <smd name="11" x="2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  104. <smd name="12" x="2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  105. <smd name="13" x="1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  106. <smd name="14" x="0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  107. <smd name="15" x="0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  108. <smd name="16" x="-0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  109. <smd name="17" x="-0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  110. <smd name="18" x="-1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  111. <smd name="19" x="-2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  112. <smd name="20" x="-2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  113. <text x="-3.5456" y="-2.0828" size="1.016" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  114. <text x="4.5362" y="-2.0828" size="1.016" layer="27" ratio="10" rot="R90">&gt;VALUE</text>
  115. <rectangle x1="-3.0266" y1="-3.121" x2="-2.8234" y2="-2.2828" layer="51"/>
  116. <rectangle x1="-2.3766" y1="-3.121" x2="-2.1734" y2="-2.2828" layer="51"/>
  117. <rectangle x1="-1.7266" y1="-3.121" x2="-1.5234" y2="-2.2828" layer="51"/>
  118. <rectangle x1="-1.0766" y1="-3.121" x2="-0.8734" y2="-2.2828" layer="51"/>
  119. <rectangle x1="-0.4266" y1="-3.121" x2="-0.2234" y2="-2.2828" layer="51"/>
  120. <rectangle x1="0.2234" y1="-3.121" x2="0.4266" y2="-2.2828" layer="51"/>
  121. <rectangle x1="0.8734" y1="-3.121" x2="1.0766" y2="-2.2828" layer="51"/>
  122. <rectangle x1="1.5234" y1="-3.121" x2="1.7266" y2="-2.2828" layer="51"/>
  123. <rectangle x1="2.1734" y1="-3.121" x2="2.3766" y2="-2.2828" layer="51"/>
  124. <rectangle x1="2.8234" y1="-3.121" x2="3.0266" y2="-2.2828" layer="51"/>
  125. <rectangle x1="2.8234" y1="2.2828" x2="3.0266" y2="3.121" layer="51"/>
  126. <rectangle x1="2.1734" y1="2.2828" x2="2.3766" y2="3.121" layer="51"/>
  127. <rectangle x1="1.5234" y1="2.2828" x2="1.7266" y2="3.121" layer="51"/>
  128. <rectangle x1="0.8734" y1="2.2828" x2="1.0766" y2="3.121" layer="51"/>
  129. <rectangle x1="0.2234" y1="2.2828" x2="0.4266" y2="3.121" layer="51"/>
  130. <rectangle x1="-0.4266" y1="2.2828" x2="-0.2234" y2="3.121" layer="51"/>
  131. <rectangle x1="-1.0766" y1="2.2828" x2="-0.8734" y2="3.121" layer="51"/>
  132. <rectangle x1="-1.7266" y1="2.2828" x2="-1.5234" y2="3.121" layer="51"/>
  133. <rectangle x1="-2.3766" y1="2.2828" x2="-2.1734" y2="3.121" layer="51"/>
  134. <rectangle x1="-3.0266" y1="2.2828" x2="-2.8234" y2="3.121" layer="51"/>
  135. </package>
  136. <package name="SO20W">
  137. <description>&lt;b&gt;SMALL OUTLINE INTEGRATED CIRCUIT&lt;/b&gt;&lt;p&gt;
  138. wide body 7.5 mm/JEDEC MS-013AC</description>
  139. <wire x1="-6.895" y1="5.9" x2="6.895" y2="5.9" width="0.1998" layer="39"/>
  140. <wire x1="6.895" y1="-5.9" x2="-6.895" y2="-5.9" width="0.1998" layer="39"/>
  141. <wire x1="-6.895" y1="-5.9" x2="-6.895" y2="5.9" width="0.1998" layer="39"/>
  142. <wire x1="6.46" y1="-3.7" x2="-6.46" y2="-3.7" width="0.2032" layer="51"/>
  143. <wire x1="-6.46" y1="-3.7" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  144. <wire x1="-6.46" y1="-3.2" x2="-6.46" y2="3.7" width="0.2032" layer="51"/>
  145. <wire x1="-6.46" y1="3.7" x2="6.46" y2="3.7" width="0.2032" layer="51"/>
  146. <wire x1="6.46" y1="-3.2" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  147. <wire x1="6.46" y1="3.7" x2="6.46" y2="-3.2" width="0.2032" layer="51"/>
  148. <wire x1="6.46" y1="-3.2" x2="6.46" y2="-3.7" width="0.2032" layer="51"/>
  149. <wire x1="6.895" y1="5.9" x2="6.895" y2="-5.9" width="0.1998" layer="39"/>
  150. <smd name="2" x="-4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  151. <smd name="13" x="3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  152. <smd name="1" x="-5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  153. <smd name="3" x="-3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  154. <smd name="4" x="-1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  155. <smd name="14" x="1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  156. <smd name="12" x="4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  157. <smd name="11" x="5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  158. <smd name="6" x="0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  159. <smd name="9" x="4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  160. <smd name="5" x="-0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  161. <smd name="7" x="1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  162. <smd name="10" x="5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  163. <smd name="8" x="3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  164. <smd name="15" x="0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  165. <smd name="16" x="-0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  166. <smd name="17" x="-1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  167. <smd name="18" x="-3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  168. <smd name="19" x="-4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  169. <smd name="20" x="-5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  170. <text x="-5.715" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  171. <text x="-5.715" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  172. <rectangle x1="-5.9601" y1="-5.32" x2="-5.4699" y2="-3.8001" layer="51"/>
  173. <rectangle x1="-4.6901" y1="-5.32" x2="-4.1999" y2="-3.8001" layer="51"/>
  174. <rectangle x1="-3.4201" y1="-5.32" x2="-2.9299" y2="-3.8001" layer="51"/>
  175. <rectangle x1="-2.1501" y1="-5.32" x2="-1.6599" y2="-3.8001" layer="51"/>
  176. <rectangle x1="-0.8801" y1="-5.32" x2="-0.3899" y2="-3.8001" layer="51"/>
  177. <rectangle x1="0.3899" y1="-5.32" x2="0.8801" y2="-3.8001" layer="51"/>
  178. <rectangle x1="1.6599" y1="-5.32" x2="2.1501" y2="-3.8001" layer="51"/>
  179. <rectangle x1="2.9299" y1="-5.32" x2="3.4201" y2="-3.8001" layer="51"/>
  180. <rectangle x1="4.1999" y1="-5.32" x2="4.6901" y2="-3.8001" layer="51"/>
  181. <rectangle x1="5.4699" y1="-5.32" x2="5.9601" y2="-3.8001" layer="51"/>
  182. <rectangle x1="5.4699" y1="3.8001" x2="5.9601" y2="5.32" layer="51"/>
  183. <rectangle x1="4.1999" y1="3.8001" x2="4.6901" y2="5.32" layer="51"/>
  184. <rectangle x1="2.9299" y1="3.8001" x2="3.4201" y2="5.32" layer="51"/>
  185. <rectangle x1="1.6599" y1="3.8001" x2="2.1501" y2="5.32" layer="51"/>
  186. <rectangle x1="0.3899" y1="3.8001" x2="0.8801" y2="5.32" layer="51"/>
  187. <rectangle x1="-0.8801" y1="3.8001" x2="-0.3899" y2="5.32" layer="51"/>
  188. <rectangle x1="-2.1501" y1="3.8001" x2="-1.6599" y2="5.32" layer="51"/>
  189. <rectangle x1="-3.4201" y1="3.8001" x2="-2.9299" y2="5.32" layer="51"/>
  190. <rectangle x1="-4.6901" y1="3.8001" x2="-4.1999" y2="5.32" layer="51"/>
  191. <rectangle x1="-5.9601" y1="3.8001" x2="-5.4699" y2="5.32" layer="51"/>
  192. </package>
  193. </packages>
  194. <symbols>
  195. <symbol name="STM8S103F">
  196. <wire x1="-33.02" y1="27.94" x2="35.56" y2="27.94" width="0.254" layer="94"/>
  197. <wire x1="35.56" y1="27.94" x2="35.56" y2="-30.48" width="0.254" layer="94"/>
  198. <wire x1="35.56" y1="-30.48" x2="-33.02" y2="-30.48" width="0.254" layer="94"/>
  199. <wire x1="-33.02" y1="-30.48" x2="-33.02" y2="27.94" width="0.254" layer="94"/>
  200. <pin name="NRST" x="-38.1" y="22.86" length="middle" function="dot"/>
  201. <pin name="VDDA" x="-38.1" y="17.78" length="middle" direction="pwr"/>
  202. <pin name="PA0/USART1_CTS/ADC_IN0" x="-38.1" y="15.24" length="middle"/>
  203. <pin name="PA1/USART1_RTS/ADC_IN1" x="-38.1" y="7.62" length="middle"/>
  204. <pin name="PA3/USART1_RX/ADC_IN3" x="-38.1" y="5.08" length="middle"/>
  205. <pin name="PA2/USART1_TX/ADC_IN2" x="-38.1" y="-2.54" length="middle"/>
  206. <pin name="PA10" x="40.64" y="25.4" length="middle" rot="R180"/>
  207. <pin name="PA13/SWDIO" x="40.64" y="22.86" length="middle" rot="R180"/>
  208. <pin name="PA14/SWD_CLK" x="40.64" y="20.32" length="middle" rot="R180"/>
  209. <pin name="BOOT0" x="40.64" y="17.78" length="middle" rot="R180"/>
  210. <pin name="PF0-OSC_IN" x="40.64" y="15.24" length="middle" function="clk" rot="R180"/>
  211. <pin name="PF1-OSC_OUT" x="40.64" y="12.7" length="middle" function="clk" rot="R180"/>
  212. <pin name="PA4/SPI1_NSS/ADC_IN4" x="40.64" y="5.08" length="middle" rot="R180"/>
  213. <pin name="PA6/SPI_MISO/ADC_IN6" x="40.64" y="-2.54" length="middle" rot="R180"/>
  214. <pin name="PA5/SPI1_SCK/ADC_IN5" x="40.64" y="-5.08" length="middle" rot="R180"/>
  215. <pin name="PA7/SPI_MOSI/ADC_IN7" x="40.64" y="-15.24" length="middle" rot="R180"/>
  216. <pin name="PB0/ADC_IN8" x="40.64" y="-17.78" length="middle" rot="R180"/>
  217. <pin name="VSS" x="40.64" y="-20.32" length="middle" direction="pwr" rot="R180"/>
  218. <pin name="VDD" x="40.64" y="-22.86" length="middle" direction="pwr" rot="R180"/>
  219. <pin name="PA9" x="40.64" y="-25.4" length="middle" rot="R180"/>
  220. <text x="-33.02" y="27.94" size="1.27" layer="96">&gt;VALUE</text>
  221. <text x="-33.02" y="30.48" size="1.27" layer="95">&gt;NAME</text>
  222. </symbol>
  223. </symbols>
  224. <devicesets>
  225. <deviceset name="STM8S103F*" prefix="IC">
  226. <description>STM8S103F*</description>
  227. <gates>
  228. <gate name="G$1" symbol="STM8S103F" x="0" y="0"/>
  229. </gates>
  230. <devices>
  231. <device name="P" package="TSSOP20">
  232. <connects>
  233. <connect gate="G$1" pin="BOOT0" pad="1"/>
  234. <connect gate="G$1" pin="NRST" pad="4"/>
  235. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  236. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  237. <connect gate="G$1" pin="PA10" pad="18"/>
  238. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  239. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  240. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  241. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  242. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  243. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  244. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  245. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  246. <connect gate="G$1" pin="PA9" pad="17"/>
  247. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  248. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  249. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  250. <connect gate="G$1" pin="VDD" pad="16"/>
  251. <connect gate="G$1" pin="VDDA" pad="5"/>
  252. <connect gate="G$1" pin="VSS" pad="15"/>
  253. </connects>
  254. <technologies>
  255. <technology name=""/>
  256. </technologies>
  257. </device>
  258. <device name="M" package="SO20W">
  259. <connects>
  260. <connect gate="G$1" pin="BOOT0" pad="1"/>
  261. <connect gate="G$1" pin="NRST" pad="4"/>
  262. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  263. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  264. <connect gate="G$1" pin="PA10" pad="18"/>
  265. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  266. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  267. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  268. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  269. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  270. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  271. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  272. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  273. <connect gate="G$1" pin="PA9" pad="17"/>
  274. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  275. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  276. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  277. <connect gate="G$1" pin="VDD" pad="16"/>
  278. <connect gate="G$1" pin="VDDA" pad="5"/>
  279. <connect gate="G$1" pin="VSS" pad="15"/>
  280. </connects>
  281. <technologies>
  282. <technology name=""/>
  283. </technologies>
  284. </device>
  285. </devices>
  286. </deviceset>
  287. </devicesets>
  288. </library>
  289. <library name="mc33269dt">
  290. <packages>
  291. <package name="MC33269DT">
  292. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  293. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  294. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  295. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  296. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  297. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  298. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  299. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  300. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  301. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  302. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  303. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  304. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  305. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  306. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  307. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  308. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  309. </package>
  310. </packages>
  311. <symbols>
  312. <symbol name="MC33269DT">
  313. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  314. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  315. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  316. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  317. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  318. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  319. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  320. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  321. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  322. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  323. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  324. </symbol>
  325. </symbols>
  326. <devicesets>
  327. <deviceset name="MC33269DT">
  328. <gates>
  329. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  330. </gates>
  331. <devices>
  332. <device name="" package="MC33269DT">
  333. <connects>
  334. <connect gate="G$1" pin="GND" pad="P1"/>
  335. <connect gate="G$1" pin="VIN" pad="P3"/>
  336. <connect gate="G$1" pin="VOUT" pad="P2"/>
  337. </connects>
  338. <technologies>
  339. <technology name=""/>
  340. </technologies>
  341. </device>
  342. </devices>
  343. </deviceset>
  344. </devicesets>
  345. </library>
  346. <library name="optocoupler">
  347. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  348. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  349. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  350. <packages>
  351. <package name="DIL16">
  352. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  353. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  354. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  355. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  356. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  357. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  358. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  359. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  360. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  361. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  362. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  363. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  364. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  365. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  366. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  367. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  368. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  369. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  370. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  371. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  372. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  373. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  374. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  375. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  376. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  377. </package>
  378. </packages>
  379. <symbols>
  380. <symbol name="LTV847">
  381. <description>LTV847 4-opto DIP16</description>
  382. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  383. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  384. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  385. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  386. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  387. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  388. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  389. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  390. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  391. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  392. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  393. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  394. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  395. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  396. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  397. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  398. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  399. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  400. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  401. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  402. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  403. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  404. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  405. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  406. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  407. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  408. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  409. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  410. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  411. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  412. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  413. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  414. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  415. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  416. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  417. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  418. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  419. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  420. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  421. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  422. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  423. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  424. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  425. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  426. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  427. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  428. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  429. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  430. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  431. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  432. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  433. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  434. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  435. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  436. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  437. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  438. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  439. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  440. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  441. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  442. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  443. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  444. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  445. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  446. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  447. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  448. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  449. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  450. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  451. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  452. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  453. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  454. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  455. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  456. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  457. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  458. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  459. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  460. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  461. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  462. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  463. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  464. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  465. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  466. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  467. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  468. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  469. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  470. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  471. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  472. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  473. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  474. </symbol>
  475. </symbols>
  476. <devicesets>
  477. <deviceset name="LTV847">
  478. <description>LTV847 4-optocoupler DIP16</description>
  479. <gates>
  480. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  481. </gates>
  482. <devices>
  483. <device name="" package="DIL16">
  484. <connects>
  485. <connect gate="G$1" pin="P$1" pad="8"/>
  486. <connect gate="G$1" pin="P$10" pad="10"/>
  487. <connect gate="G$1" pin="P$11" pad="11"/>
  488. <connect gate="G$1" pin="P$12" pad="12"/>
  489. <connect gate="G$1" pin="P$13" pad="13"/>
  490. <connect gate="G$1" pin="P$14" pad="14"/>
  491. <connect gate="G$1" pin="P$15" pad="15"/>
  492. <connect gate="G$1" pin="P$16" pad="16"/>
  493. <connect gate="G$1" pin="P$2" pad="7"/>
  494. <connect gate="G$1" pin="P$3" pad="6"/>
  495. <connect gate="G$1" pin="P$4" pad="5"/>
  496. <connect gate="G$1" pin="P$5" pad="4"/>
  497. <connect gate="G$1" pin="P$6" pad="3"/>
  498. <connect gate="G$1" pin="P$7" pad="2"/>
  499. <connect gate="G$1" pin="P$8" pad="1"/>
  500. <connect gate="G$1" pin="P$9" pad="9"/>
  501. </connects>
  502. <technologies>
  503. <technology name=""/>
  504. </technologies>
  505. </device>
  506. </devices>
  507. </deviceset>
  508. </devicesets>
  509. </library>
  510. <library name="resistor">
  511. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  512. Based on the previous libraries:
  513. &lt;ul&gt;
  514. &lt;li&gt;r.lbr
  515. &lt;li&gt;cap.lbr
  516. &lt;li&gt;cap-fe.lbr
  517. &lt;li&gt;captant.lbr
  518. &lt;li&gt;polcap.lbr
  519. &lt;li&gt;ipc-smd.lbr
  520. &lt;/ul&gt;
  521. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  522. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  523. &lt;p&gt;
  524. for Electrolyt Capacitors see also :&lt;p&gt;
  525. www.bccomponents.com &lt;p&gt;
  526. www.panasonic.com&lt;p&gt;
  527. www.kemet.com&lt;p&gt;
  528. &lt;p&gt;
  529. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  530. &lt;map name="nav_main"&gt;
  531. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  532. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  533. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  534. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  535. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  536. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  537. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  538. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  539. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  540. &lt;area shape="default" nohref&gt;
  541. &lt;/map&gt;
  542. &lt;html&gt;
  543. &lt;title&gt;&lt;/title&gt;
  544. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  545. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  546. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  547. &lt;tr valign="top"&gt;
  548. &lt;/td&gt;
  549. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  550. &lt;td width="90%"&gt;
  551. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  552. &lt;P&gt;
  553. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  554. &lt;TR&gt;
  555. &lt;TD COLSPAN=8&gt;
  556. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  557. &lt;/TD&gt;
  558. &lt;/TR&gt;
  559. &lt;TR&gt;
  560. &lt;TD ALIGN=CENTER&gt;
  561. &lt;B&gt;
  562. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  563. &lt;/B&gt;
  564. &lt;/TD&gt;
  565. &lt;TD ALIGN=CENTER&gt;
  566. &lt;B&gt;
  567. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  568. &lt;/B&gt;
  569. &lt;/TD&gt;
  570. &lt;TD ALIGN=CENTER&gt;
  571. &lt;B&gt;
  572. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  573. &lt;/B&gt;
  574. &lt;/TD&gt;
  575. &lt;TD ALIGN=CENTER&gt;
  576. &lt;B&gt;
  577. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  578. &lt;/B&gt;
  579. &lt;/TD&gt;
  580. &lt;TD ALIGN=CENTER&gt;
  581. &lt;B&gt;
  582. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  583. &lt;/B&gt;
  584. &lt;/TD&gt;
  585. &lt;TD ALIGN=CENTER&gt;
  586. &lt;B&gt;
  587. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  588. &lt;/B&gt;
  589. &lt;/TD&gt;
  590. &lt;TD ALIGN=CENTER&gt;
  591. &lt;B&gt;
  592. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  593. &lt;/B&gt;
  594. &lt;/TD&gt;
  595. &lt;TD ALIGN=CENTER&gt;
  596. &lt;B&gt;
  597. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  598. &lt;/B&gt;
  599. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  600. &lt;/TR&gt;
  601. &lt;TR&gt;
  602. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  603. 3005P&lt;BR&gt;
  604. 3006P&lt;BR&gt;
  605. 3006W&lt;BR&gt;
  606. 3006Y&lt;BR&gt;
  607. 3009P&lt;BR&gt;
  608. 3009W&lt;BR&gt;
  609. 3009Y&lt;BR&gt;
  610. 3057J&lt;BR&gt;
  611. 3057L&lt;BR&gt;
  612. 3057P&lt;BR&gt;
  613. 3057Y&lt;BR&gt;
  614. 3059J&lt;BR&gt;
  615. 3059L&lt;BR&gt;
  616. 3059P&lt;BR&gt;
  617. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  618. &lt;/TD&gt;
  619. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  620. -&lt;BR&gt;
  621. 89P&lt;BR&gt;
  622. 89W&lt;BR&gt;
  623. 89X&lt;BR&gt;
  624. 89PH&lt;BR&gt;
  625. 76P&lt;BR&gt;
  626. 89XH&lt;BR&gt;
  627. 78SLT&lt;BR&gt;
  628. 78L&amp;nbsp;ALT&lt;BR&gt;
  629. 56P&amp;nbsp;ALT&lt;BR&gt;
  630. 78P&amp;nbsp;ALT&lt;BR&gt;
  631. T8S&lt;BR&gt;
  632. 78L&lt;BR&gt;
  633. 56P&lt;BR&gt;
  634. 78P&lt;BR&gt;&lt;/FONT&gt;
  635. &lt;/TD&gt;
  636. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  637. -&lt;BR&gt;
  638. T18/784&lt;BR&gt;
  639. 783&lt;BR&gt;
  640. 781&lt;BR&gt;
  641. -&lt;BR&gt;
  642. -&lt;BR&gt;
  643. -&lt;BR&gt;
  644. 2199&lt;BR&gt;
  645. 1697/1897&lt;BR&gt;
  646. 1680/1880&lt;BR&gt;
  647. 2187&lt;BR&gt;
  648. -&lt;BR&gt;
  649. -&lt;BR&gt;
  650. -&lt;BR&gt;
  651. -&lt;BR&gt;&lt;/FONT&gt;
  652. &lt;/TD&gt;
  653. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  654. -&lt;BR&gt;
  655. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  656. -&lt;BR&gt;
  657. RJ-20X&lt;BR&gt;
  658. -&lt;BR&gt;
  659. -&lt;BR&gt;
  660. -&lt;BR&gt;
  661. 1211L&lt;BR&gt;
  662. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  663. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  664. 1211P&lt;BR&gt;
  665. 8012EKJ&lt;BR&gt;
  666. 8012EKL&lt;BR&gt;
  667. 8012EKQ&lt;BR&gt;
  668. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  669. &lt;/TD&gt;
  670. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  671. -&lt;BR&gt;
  672. 2101P&lt;BR&gt;
  673. 2101W&lt;BR&gt;
  674. 2101Y&lt;BR&gt;
  675. -&lt;BR&gt;
  676. -&lt;BR&gt;
  677. -&lt;BR&gt;
  678. -&lt;BR&gt;
  679. -&lt;BR&gt;
  680. -&lt;BR&gt;
  681. -&lt;BR&gt;
  682. -&lt;BR&gt;
  683. 2102L&lt;BR&gt;
  684. 2102S&lt;BR&gt;
  685. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  686. &lt;/TD&gt;
  687. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  688. -&lt;BR&gt;
  689. EVMCOG&lt;BR&gt;
  690. -&lt;BR&gt;
  691. -&lt;BR&gt;
  692. -&lt;BR&gt;
  693. -&lt;BR&gt;
  694. -&lt;BR&gt;
  695. -&lt;BR&gt;
  696. -&lt;BR&gt;
  697. -&lt;BR&gt;
  698. -&lt;BR&gt;
  699. -&lt;BR&gt;
  700. -&lt;BR&gt;
  701. -&lt;BR&gt;
  702. -&lt;BR&gt;&lt;/FONT&gt;
  703. &lt;/TD&gt;
  704. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  705. -&lt;BR&gt;
  706. 43P&lt;BR&gt;
  707. 43W&lt;BR&gt;
  708. 43Y&lt;BR&gt;
  709. -&lt;BR&gt;
  710. -&lt;BR&gt;
  711. -&lt;BR&gt;
  712. -&lt;BR&gt;
  713. 40L&lt;BR&gt;
  714. 40P&lt;BR&gt;
  715. 40Y&lt;BR&gt;
  716. 70Y-T602&lt;BR&gt;
  717. 70L&lt;BR&gt;
  718. 70P&lt;BR&gt;
  719. 70Y&lt;BR&gt;&lt;/FONT&gt;
  720. &lt;/TD&gt;
  721. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  722. -&lt;BR&gt;
  723. -&lt;BR&gt;
  724. -&lt;BR&gt;
  725. -&lt;BR&gt;
  726. -&lt;BR&gt;
  727. -&lt;BR&gt;
  728. -&lt;BR&gt;
  729. -&lt;BR&gt;
  730. RT/RTR12&lt;BR&gt;
  731. RT/RTR12&lt;BR&gt;
  732. RT/RTR12&lt;BR&gt;
  733. -&lt;BR&gt;
  734. RJ/RJR12&lt;BR&gt;
  735. RJ/RJR12&lt;BR&gt;
  736. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  737. &lt;/TD&gt;
  738. &lt;/TR&gt;
  739. &lt;TR&gt;
  740. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  741. &lt;/TD&gt;
  742. &lt;/TR&gt;
  743. &lt;TR&gt;
  744. &lt;TD COLSPAN=8&gt;
  745. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  746. &lt;/TD&gt;
  747. &lt;/TR&gt;
  748. &lt;TR&gt;
  749. &lt;TD ALIGN=CENTER&gt;
  750. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  751. &lt;/TD&gt;
  752. &lt;TD ALIGN=CENTER&gt;
  753. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  754. &lt;/TD&gt;
  755. &lt;TD ALIGN=CENTER&gt;
  756. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  757. &lt;/TD&gt;
  758. &lt;TD ALIGN=CENTER&gt;
  759. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  760. &lt;/TD&gt;
  761. &lt;TD ALIGN=CENTER&gt;
  762. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  763. &lt;/TD&gt;
  764. &lt;TD ALIGN=CENTER&gt;
  765. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  766. &lt;/TD&gt;
  767. &lt;TD ALIGN=CENTER&gt;
  768. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  769. &lt;/TD&gt;
  770. &lt;TD ALIGN=CENTER&gt;
  771. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  772. &lt;/TD&gt;
  773. &lt;/TR&gt;
  774. &lt;TR&gt;
  775. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  776. 3250L&lt;BR&gt;
  777. 3250P&lt;BR&gt;
  778. 3250W&lt;BR&gt;
  779. 3250X&lt;BR&gt;
  780. 3252P&lt;BR&gt;
  781. 3252W&lt;BR&gt;
  782. 3252X&lt;BR&gt;
  783. 3260P&lt;BR&gt;
  784. 3260W&lt;BR&gt;
  785. 3260X&lt;BR&gt;
  786. 3262P&lt;BR&gt;
  787. 3262W&lt;BR&gt;
  788. 3262X&lt;BR&gt;
  789. 3266P&lt;BR&gt;
  790. 3266W&lt;BR&gt;
  791. 3266X&lt;BR&gt;
  792. 3290H&lt;BR&gt;
  793. 3290P&lt;BR&gt;
  794. 3290W&lt;BR&gt;
  795. 3292P&lt;BR&gt;
  796. 3292W&lt;BR&gt;
  797. 3292X&lt;BR&gt;
  798. 3296P&lt;BR&gt;
  799. 3296W&lt;BR&gt;
  800. 3296X&lt;BR&gt;
  801. 3296Y&lt;BR&gt;
  802. 3296Z&lt;BR&gt;
  803. 3299P&lt;BR&gt;
  804. 3299W&lt;BR&gt;
  805. 3299X&lt;BR&gt;
  806. 3299Y&lt;BR&gt;
  807. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  808. &lt;/TD&gt;
  809. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  810. -&lt;BR&gt;
  811. 66P&amp;nbsp;ALT&lt;BR&gt;
  812. 66W&amp;nbsp;ALT&lt;BR&gt;
  813. 66X&amp;nbsp;ALT&lt;BR&gt;
  814. 66P&amp;nbsp;ALT&lt;BR&gt;
  815. 66W&amp;nbsp;ALT&lt;BR&gt;
  816. 66X&amp;nbsp;ALT&lt;BR&gt;
  817. -&lt;BR&gt;
  818. 64W&amp;nbsp;ALT&lt;BR&gt;
  819. -&lt;BR&gt;
  820. 64P&amp;nbsp;ALT&lt;BR&gt;
  821. 64W&amp;nbsp;ALT&lt;BR&gt;
  822. 64X&amp;nbsp;ALT&lt;BR&gt;
  823. 64P&lt;BR&gt;
  824. 64W&lt;BR&gt;
  825. 64X&lt;BR&gt;
  826. 66X&amp;nbsp;ALT&lt;BR&gt;
  827. 66P&amp;nbsp;ALT&lt;BR&gt;
  828. 66W&amp;nbsp;ALT&lt;BR&gt;
  829. 66P&lt;BR&gt;
  830. 66W&lt;BR&gt;
  831. 66X&lt;BR&gt;
  832. 67P&lt;BR&gt;
  833. 67W&lt;BR&gt;
  834. 67X&lt;BR&gt;
  835. 67Y&lt;BR&gt;
  836. 67Z&lt;BR&gt;
  837. 68P&lt;BR&gt;
  838. 68W&lt;BR&gt;
  839. 68X&lt;BR&gt;
  840. 67Y&amp;nbsp;ALT&lt;BR&gt;
  841. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  842. &lt;/TD&gt;
  843. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  844. 5050&lt;BR&gt;
  845. 5091&lt;BR&gt;
  846. 5080&lt;BR&gt;
  847. 5087&lt;BR&gt;
  848. -&lt;BR&gt;
  849. -&lt;BR&gt;
  850. -&lt;BR&gt;
  851. -&lt;BR&gt;
  852. -&lt;BR&gt;
  853. -&lt;BR&gt;
  854. -&lt;BR&gt;
  855. T63YB&lt;BR&gt;
  856. T63XB&lt;BR&gt;
  857. -&lt;BR&gt;
  858. -&lt;BR&gt;
  859. -&lt;BR&gt;
  860. 5887&lt;BR&gt;
  861. 5891&lt;BR&gt;
  862. 5880&lt;BR&gt;
  863. -&lt;BR&gt;
  864. -&lt;BR&gt;
  865. -&lt;BR&gt;
  866. T93Z&lt;BR&gt;
  867. T93YA&lt;BR&gt;
  868. T93XA&lt;BR&gt;
  869. T93YB&lt;BR&gt;
  870. T93XB&lt;BR&gt;
  871. -&lt;BR&gt;
  872. -&lt;BR&gt;
  873. -&lt;BR&gt;
  874. -&lt;BR&gt;
  875. -&lt;BR&gt;&lt;/FONT&gt;
  876. &lt;/TD&gt;
  877. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  878. -&lt;BR&gt;
  879. -&lt;BR&gt;
  880. -&lt;BR&gt;
  881. -&lt;BR&gt;
  882. -&lt;BR&gt;
  883. -&lt;BR&gt;
  884. -&lt;BR&gt;
  885. -&lt;BR&gt;
  886. -&lt;BR&gt;
  887. -&lt;BR&gt;
  888. 8026EKP&lt;BR&gt;
  889. 8026EKW&lt;BR&gt;
  890. 8026EKM&lt;BR&gt;
  891. 8026EKP&lt;BR&gt;
  892. 8026EKB&lt;BR&gt;
  893. 8026EKM&lt;BR&gt;
  894. 1309X&lt;BR&gt;
  895. 1309P&lt;BR&gt;
  896. 1309W&lt;BR&gt;
  897. 8024EKP&lt;BR&gt;
  898. 8024EKW&lt;BR&gt;
  899. 8024EKN&lt;BR&gt;
  900. RJ-9P/CT9P&lt;BR&gt;
  901. RJ-9W&lt;BR&gt;
  902. RJ-9X&lt;BR&gt;
  903. -&lt;BR&gt;
  904. -&lt;BR&gt;
  905. -&lt;BR&gt;
  906. -&lt;BR&gt;
  907. -&lt;BR&gt;
  908. -&lt;BR&gt;
  909. -&lt;BR&gt;&lt;/FONT&gt;
  910. &lt;/TD&gt;
  911. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  912. -&lt;BR&gt;
  913. -&lt;BR&gt;
  914. -&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. 3103P&lt;BR&gt;
  923. 3103Y&lt;BR&gt;
  924. 3103Z&lt;BR&gt;
  925. 3103P&lt;BR&gt;
  926. 3103Y&lt;BR&gt;
  927. 3103Z&lt;BR&gt;
  928. -&lt;BR&gt;
  929. -&lt;BR&gt;
  930. -&lt;BR&gt;
  931. -&lt;BR&gt;
  932. -&lt;BR&gt;
  933. -&lt;BR&gt;
  934. 3105P/3106P&lt;BR&gt;
  935. 3105W/3106W&lt;BR&gt;
  936. 3105X/3106X&lt;BR&gt;
  937. 3105Y/3106Y&lt;BR&gt;
  938. 3105Z/3105Z&lt;BR&gt;
  939. 3102P&lt;BR&gt;
  940. 3102W&lt;BR&gt;
  941. 3102X&lt;BR&gt;
  942. 3102Y&lt;BR&gt;
  943. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  944. &lt;/TD&gt;
  945. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  946. -&lt;BR&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. -&lt;BR&gt;
  956. -&lt;BR&gt;
  957. -&lt;BR&gt;
  958. -&lt;BR&gt;
  959. -&lt;BR&gt;
  960. -&lt;BR&gt;
  961. -&lt;BR&gt;
  962. -&lt;BR&gt;
  963. -&lt;BR&gt;
  964. -&lt;BR&gt;
  965. -&lt;BR&gt;
  966. -&lt;BR&gt;
  967. -&lt;BR&gt;
  968. EVMCBG&lt;BR&gt;
  969. EVMCCG&lt;BR&gt;
  970. -&lt;BR&gt;
  971. -&lt;BR&gt;
  972. -&lt;BR&gt;
  973. -&lt;BR&gt;
  974. -&lt;BR&gt;
  975. -&lt;BR&gt;
  976. -&lt;BR&gt;
  977. -&lt;BR&gt;&lt;/FONT&gt;
  978. &lt;/TD&gt;
  979. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  980. 55-1-X&lt;BR&gt;
  981. 55-4-X&lt;BR&gt;
  982. 55-3-X&lt;BR&gt;
  983. 55-2-X&lt;BR&gt;
  984. -&lt;BR&gt;
  985. -&lt;BR&gt;
  986. -&lt;BR&gt;
  987. -&lt;BR&gt;
  988. -&lt;BR&gt;
  989. -&lt;BR&gt;
  990. -&lt;BR&gt;
  991. -&lt;BR&gt;
  992. -&lt;BR&gt;
  993. -&lt;BR&gt;
  994. -&lt;BR&gt;
  995. -&lt;BR&gt;
  996. 50-2-X&lt;BR&gt;
  997. 50-4-X&lt;BR&gt;
  998. 50-3-X&lt;BR&gt;
  999. -&lt;BR&gt;
  1000. -&lt;BR&gt;
  1001. -&lt;BR&gt;
  1002. 64P&lt;BR&gt;
  1003. 64W&lt;BR&gt;
  1004. 64X&lt;BR&gt;
  1005. 64Y&lt;BR&gt;
  1006. 64Z&lt;BR&gt;
  1007. -&lt;BR&gt;
  1008. -&lt;BR&gt;
  1009. -&lt;BR&gt;
  1010. -&lt;BR&gt;
  1011. -&lt;BR&gt;&lt;/FONT&gt;
  1012. &lt;/TD&gt;
  1013. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1014. RT/RTR22&lt;BR&gt;
  1015. RT/RTR22&lt;BR&gt;
  1016. RT/RTR22&lt;BR&gt;
  1017. RT/RTR22&lt;BR&gt;
  1018. RJ/RJR22&lt;BR&gt;
  1019. RJ/RJR22&lt;BR&gt;
  1020. RJ/RJR22&lt;BR&gt;
  1021. RT/RTR26&lt;BR&gt;
  1022. RT/RTR26&lt;BR&gt;
  1023. RT/RTR26&lt;BR&gt;
  1024. RJ/RJR26&lt;BR&gt;
  1025. RJ/RJR26&lt;BR&gt;
  1026. RJ/RJR26&lt;BR&gt;
  1027. RJ/RJR26&lt;BR&gt;
  1028. RJ/RJR26&lt;BR&gt;
  1029. RJ/RJR26&lt;BR&gt;
  1030. RT/RTR24&lt;BR&gt;
  1031. RT/RTR24&lt;BR&gt;
  1032. RT/RTR24&lt;BR&gt;
  1033. RJ/RJR24&lt;BR&gt;
  1034. RJ/RJR24&lt;BR&gt;
  1035. RJ/RJR24&lt;BR&gt;
  1036. RJ/RJR24&lt;BR&gt;
  1037. RJ/RJR24&lt;BR&gt;
  1038. RJ/RJR24&lt;BR&gt;
  1039. -&lt;BR&gt;
  1040. -&lt;BR&gt;
  1041. -&lt;BR&gt;
  1042. -&lt;BR&gt;
  1043. -&lt;BR&gt;
  1044. -&lt;BR&gt;
  1045. -&lt;BR&gt;&lt;/FONT&gt;
  1046. &lt;/TD&gt;
  1047. &lt;/TR&gt;
  1048. &lt;TR&gt;
  1049. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1050. &lt;/TD&gt;
  1051. &lt;/TR&gt;
  1052. &lt;TR&gt;
  1053. &lt;TD COLSPAN=8&gt;
  1054. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1055. &lt;/TD&gt;
  1056. &lt;/TR&gt;
  1057. &lt;TR&gt;
  1058. &lt;TD ALIGN=CENTER&gt;
  1059. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1060. &lt;/TD&gt;
  1061. &lt;TD ALIGN=CENTER&gt;
  1062. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1063. &lt;/TD&gt;
  1064. &lt;TD ALIGN=CENTER&gt;
  1065. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1066. &lt;/TD&gt;
  1067. &lt;TD ALIGN=CENTER&gt;
  1068. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1069. &lt;/TD&gt;
  1070. &lt;TD ALIGN=CENTER&gt;
  1071. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1072. &lt;/TD&gt;
  1073. &lt;TD ALIGN=CENTER&gt;
  1074. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1075. &lt;/TD&gt;
  1076. &lt;TD ALIGN=CENTER&gt;
  1077. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1078. &lt;/TD&gt;
  1079. &lt;TD ALIGN=CENTER&gt;
  1080. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1081. &lt;/TD&gt;
  1082. &lt;/TR&gt;
  1083. &lt;TR&gt;
  1084. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1085. 3323P&lt;BR&gt;
  1086. 3323S&lt;BR&gt;
  1087. 3323W&lt;BR&gt;
  1088. 3329H&lt;BR&gt;
  1089. 3329P&lt;BR&gt;
  1090. 3329W&lt;BR&gt;
  1091. 3339H&lt;BR&gt;
  1092. 3339P&lt;BR&gt;
  1093. 3339W&lt;BR&gt;
  1094. 3352E&lt;BR&gt;
  1095. 3352H&lt;BR&gt;
  1096. 3352K&lt;BR&gt;
  1097. 3352P&lt;BR&gt;
  1098. 3352T&lt;BR&gt;
  1099. 3352V&lt;BR&gt;
  1100. 3352W&lt;BR&gt;
  1101. 3362H&lt;BR&gt;
  1102. 3362M&lt;BR&gt;
  1103. 3362P&lt;BR&gt;
  1104. 3362R&lt;BR&gt;
  1105. 3362S&lt;BR&gt;
  1106. 3362U&lt;BR&gt;
  1107. 3362W&lt;BR&gt;
  1108. 3362X&lt;BR&gt;
  1109. 3386B&lt;BR&gt;
  1110. 3386C&lt;BR&gt;
  1111. 3386F&lt;BR&gt;
  1112. 3386H&lt;BR&gt;
  1113. 3386K&lt;BR&gt;
  1114. 3386M&lt;BR&gt;
  1115. 3386P&lt;BR&gt;
  1116. 3386S&lt;BR&gt;
  1117. 3386W&lt;BR&gt;
  1118. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1119. &lt;/TD&gt;
  1120. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1121. 25P&lt;BR&gt;
  1122. 25S&lt;BR&gt;
  1123. 25RX&lt;BR&gt;
  1124. 82P&lt;BR&gt;
  1125. 82M&lt;BR&gt;
  1126. 82PA&lt;BR&gt;
  1127. -&lt;BR&gt;
  1128. -&lt;BR&gt;
  1129. -&lt;BR&gt;
  1130. 91E&lt;BR&gt;
  1131. 91X&lt;BR&gt;
  1132. 91T&lt;BR&gt;
  1133. 91B&lt;BR&gt;
  1134. 91A&lt;BR&gt;
  1135. 91V&lt;BR&gt;
  1136. 91W&lt;BR&gt;
  1137. 25W&lt;BR&gt;
  1138. 25V&lt;BR&gt;
  1139. 25P&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. 25S&lt;BR&gt;
  1142. 25U&lt;BR&gt;
  1143. 25RX&lt;BR&gt;
  1144. 25X&lt;BR&gt;
  1145. 72XW&lt;BR&gt;
  1146. 72XL&lt;BR&gt;
  1147. 72PM&lt;BR&gt;
  1148. 72RX&lt;BR&gt;
  1149. -&lt;BR&gt;
  1150. 72PX&lt;BR&gt;
  1151. 72P&lt;BR&gt;
  1152. 72RXW&lt;BR&gt;
  1153. 72RXL&lt;BR&gt;
  1154. 72X&lt;BR&gt;&lt;/FONT&gt;
  1155. &lt;/TD&gt;
  1156. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. -&lt;BR&gt;
  1160. T7YB&lt;BR&gt;
  1161. T7YA&lt;BR&gt;
  1162. -&lt;BR&gt;
  1163. -&lt;BR&gt;
  1164. -&lt;BR&gt;
  1165. -&lt;BR&gt;
  1166. -&lt;BR&gt;
  1167. -&lt;BR&gt;
  1168. -&lt;BR&gt;
  1169. -&lt;BR&gt;
  1170. -&lt;BR&gt;
  1171. -&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. TXD&lt;BR&gt;
  1175. TYA&lt;BR&gt;
  1176. TYP&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. TYD&lt;BR&gt;
  1179. TX&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. 150SX&lt;BR&gt;
  1182. 100SX&lt;BR&gt;
  1183. 102T&lt;BR&gt;
  1184. 101S&lt;BR&gt;
  1185. 190T&lt;BR&gt;
  1186. 150TX&lt;BR&gt;
  1187. 101&lt;BR&gt;
  1188. -&lt;BR&gt;
  1189. -&lt;BR&gt;
  1190. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1191. &lt;/TD&gt;
  1192. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1193. ET6P&lt;BR&gt;
  1194. ET6S&lt;BR&gt;
  1195. ET6X&lt;BR&gt;
  1196. RJ-6W/8014EMW&lt;BR&gt;
  1197. RJ-6P/8014EMP&lt;BR&gt;
  1198. RJ-6X/8014EMX&lt;BR&gt;
  1199. TM7W&lt;BR&gt;
  1200. TM7P&lt;BR&gt;
  1201. TM7X&lt;BR&gt;
  1202. -&lt;BR&gt;
  1203. 8017SMS&lt;BR&gt;
  1204. -&lt;BR&gt;
  1205. 8017SMB&lt;BR&gt;
  1206. 8017SMA&lt;BR&gt;
  1207. -&lt;BR&gt;
  1208. -&lt;BR&gt;
  1209. CT-6W&lt;BR&gt;
  1210. CT-6H&lt;BR&gt;
  1211. CT-6P&lt;BR&gt;
  1212. CT-6R&lt;BR&gt;
  1213. -&lt;BR&gt;
  1214. CT-6V&lt;BR&gt;
  1215. CT-6X&lt;BR&gt;
  1216. -&lt;BR&gt;
  1217. -&lt;BR&gt;
  1218. 8038EKV&lt;BR&gt;
  1219. -&lt;BR&gt;
  1220. 8038EKX&lt;BR&gt;
  1221. -&lt;BR&gt;
  1222. -&lt;BR&gt;
  1223. 8038EKP&lt;BR&gt;
  1224. 8038EKZ&lt;BR&gt;
  1225. 8038EKW&lt;BR&gt;
  1226. -&lt;BR&gt;&lt;/FONT&gt;
  1227. &lt;/TD&gt;
  1228. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1229. -&lt;BR&gt;
  1230. -&lt;BR&gt;
  1231. -&lt;BR&gt;
  1232. 3321H&lt;BR&gt;
  1233. 3321P&lt;BR&gt;
  1234. 3321N&lt;BR&gt;
  1235. 1102H&lt;BR&gt;
  1236. 1102P&lt;BR&gt;
  1237. 1102T&lt;BR&gt;
  1238. RVA0911V304A&lt;BR&gt;
  1239. -&lt;BR&gt;
  1240. RVA0911H413A&lt;BR&gt;
  1241. RVG0707V100A&lt;BR&gt;
  1242. RVA0607V(H)306A&lt;BR&gt;
  1243. RVA1214H213A&lt;BR&gt;
  1244. -&lt;BR&gt;
  1245. -&lt;BR&gt;
  1246. -&lt;BR&gt;
  1247. -&lt;BR&gt;
  1248. -&lt;BR&gt;
  1249. -&lt;BR&gt;
  1250. -&lt;BR&gt;
  1251. -&lt;BR&gt;
  1252. -&lt;BR&gt;
  1253. 3104B&lt;BR&gt;
  1254. 3104C&lt;BR&gt;
  1255. 3104F&lt;BR&gt;
  1256. 3104H&lt;BR&gt;
  1257. -&lt;BR&gt;
  1258. 3104M&lt;BR&gt;
  1259. 3104P&lt;BR&gt;
  1260. 3104S&lt;BR&gt;
  1261. 3104W&lt;BR&gt;
  1262. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1263. &lt;/TD&gt;
  1264. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1265. EVMQ0G&lt;BR&gt;
  1266. EVMQIG&lt;BR&gt;
  1267. EVMQ3G&lt;BR&gt;
  1268. EVMS0G&lt;BR&gt;
  1269. EVMQ0G&lt;BR&gt;
  1270. EVMG0G&lt;BR&gt;
  1271. -&lt;BR&gt;
  1272. -&lt;BR&gt;
  1273. -&lt;BR&gt;
  1274. EVMK4GA00B&lt;BR&gt;
  1275. EVM30GA00B&lt;BR&gt;
  1276. EVMK0GA00B&lt;BR&gt;
  1277. EVM38GA00B&lt;BR&gt;
  1278. EVMB6&lt;BR&gt;
  1279. EVLQ0&lt;BR&gt;
  1280. -&lt;BR&gt;
  1281. EVMMSG&lt;BR&gt;
  1282. EVMMBG&lt;BR&gt;
  1283. EVMMAG&lt;BR&gt;
  1284. -&lt;BR&gt;
  1285. -&lt;BR&gt;
  1286. EVMMCS&lt;BR&gt;
  1287. -&lt;BR&gt;
  1288. -&lt;BR&gt;
  1289. -&lt;BR&gt;
  1290. -&lt;BR&gt;
  1291. -&lt;BR&gt;
  1292. EVMM1&lt;BR&gt;
  1293. -&lt;BR&gt;
  1294. -&lt;BR&gt;
  1295. EVMM0&lt;BR&gt;
  1296. -&lt;BR&gt;
  1297. -&lt;BR&gt;
  1298. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1299. &lt;/TD&gt;
  1300. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1301. -&lt;BR&gt;
  1302. -&lt;BR&gt;
  1303. -&lt;BR&gt;
  1304. 62-3-1&lt;BR&gt;
  1305. 62-1-2&lt;BR&gt;
  1306. -&lt;BR&gt;
  1307. -&lt;BR&gt;
  1308. -&lt;BR&gt;
  1309. -&lt;BR&gt;
  1310. -&lt;BR&gt;
  1311. -&lt;BR&gt;
  1312. -&lt;BR&gt;
  1313. -&lt;BR&gt;
  1314. -&lt;BR&gt;
  1315. -&lt;BR&gt;
  1316. -&lt;BR&gt;
  1317. 67R&lt;BR&gt;
  1318. -&lt;BR&gt;
  1319. 67P&lt;BR&gt;
  1320. -&lt;BR&gt;
  1321. -&lt;BR&gt;
  1322. -&lt;BR&gt;
  1323. -&lt;BR&gt;
  1324. 67X&lt;BR&gt;
  1325. 63V&lt;BR&gt;
  1326. 63S&lt;BR&gt;
  1327. 63M&lt;BR&gt;
  1328. -&lt;BR&gt;
  1329. -&lt;BR&gt;
  1330. 63H&lt;BR&gt;
  1331. 63P&lt;BR&gt;
  1332. -&lt;BR&gt;
  1333. -&lt;BR&gt;
  1334. 63X&lt;BR&gt;&lt;/FONT&gt;
  1335. &lt;/TD&gt;
  1336. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1337. -&lt;BR&gt;
  1338. -&lt;BR&gt;
  1339. -&lt;BR&gt;
  1340. RJ/RJR50&lt;BR&gt;
  1341. RJ/RJR50&lt;BR&gt;
  1342. RJ/RJR50&lt;BR&gt;
  1343. -&lt;BR&gt;
  1344. -&lt;BR&gt;
  1345. -&lt;BR&gt;
  1346. -&lt;BR&gt;
  1347. -&lt;BR&gt;
  1348. -&lt;BR&gt;
  1349. -&lt;BR&gt;
  1350. -&lt;BR&gt;
  1351. -&lt;BR&gt;
  1352. -&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. -&lt;BR&gt;
  1356. -&lt;BR&gt;
  1357. -&lt;BR&gt;
  1358. -&lt;BR&gt;
  1359. -&lt;BR&gt;
  1360. -&lt;BR&gt;
  1361. -&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. -&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. -&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. -&lt;BR&gt;
  1370. -&lt;BR&gt;&lt;/FONT&gt;
  1371. &lt;/TD&gt;
  1372. &lt;/TR&gt;
  1373. &lt;/TABLE&gt;
  1374. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1375. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1376. &lt;TR&gt;
  1377. &lt;TD COLSPAN=7&gt;
  1378. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1379. &lt;P&gt;
  1380. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1381. &lt;/TD&gt;
  1382. &lt;/TR&gt;
  1383. &lt;TR&gt;
  1384. &lt;TD&gt;
  1385. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1386. &lt;/TD&gt;
  1387. &lt;TD&gt;
  1388. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1389. &lt;/TD&gt;
  1390. &lt;TD&gt;
  1391. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1392. &lt;/TD&gt;
  1393. &lt;TD&gt;
  1394. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1395. &lt;/TD&gt;
  1396. &lt;TD&gt;
  1397. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1398. &lt;/TD&gt;
  1399. &lt;TD&gt;
  1400. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1401. &lt;/TD&gt;
  1402. &lt;TD&gt;
  1403. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1404. &lt;/TD&gt;
  1405. &lt;/TR&gt;
  1406. &lt;TR&gt;
  1407. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1408. 3224G&lt;BR&gt;
  1409. 3224J&lt;BR&gt;
  1410. 3224W&lt;BR&gt;
  1411. 3269P&lt;BR&gt;
  1412. 3269W&lt;BR&gt;
  1413. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1414. &lt;/TD&gt;
  1415. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1416. 44G&lt;BR&gt;
  1417. 44J&lt;BR&gt;
  1418. 44W&lt;BR&gt;
  1419. 84P&lt;BR&gt;
  1420. 84W&lt;BR&gt;
  1421. 84X&lt;BR&gt;&lt;/FONT&gt;
  1422. &lt;/TD&gt;
  1423. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1424. -&lt;BR&gt;
  1425. -&lt;BR&gt;
  1426. -&lt;BR&gt;
  1427. ST63Z&lt;BR&gt;
  1428. ST63Y&lt;BR&gt;
  1429. -&lt;BR&gt;&lt;/FONT&gt;
  1430. &lt;/TD&gt;
  1431. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. ST5P&lt;BR&gt;
  1436. ST5W&lt;BR&gt;
  1437. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1438. &lt;/TD&gt;
  1439. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1440. -&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. -&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. -&lt;BR&gt;&lt;/FONT&gt;
  1446. &lt;/TD&gt;
  1447. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1448. -&lt;BR&gt;
  1449. -&lt;BR&gt;
  1450. -&lt;BR&gt;
  1451. -&lt;BR&gt;
  1452. -&lt;BR&gt;
  1453. -&lt;BR&gt;&lt;/FONT&gt;
  1454. &lt;/TD&gt;
  1455. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1456. -&lt;BR&gt;
  1457. -&lt;BR&gt;
  1458. -&lt;BR&gt;
  1459. -&lt;BR&gt;
  1460. -&lt;BR&gt;
  1461. -&lt;BR&gt;&lt;/FONT&gt;
  1462. &lt;/TD&gt;
  1463. &lt;/TR&gt;
  1464. &lt;TR&gt;
  1465. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1466. &lt;/TD&gt;
  1467. &lt;/TR&gt;
  1468. &lt;TR&gt;
  1469. &lt;TD COLSPAN=7&gt;
  1470. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1471. &lt;/TD&gt;
  1472. &lt;/TR&gt;
  1473. &lt;TR&gt;
  1474. &lt;TD&gt;
  1475. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1476. &lt;/TD&gt;
  1477. &lt;TD&gt;
  1478. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1479. &lt;/TD&gt;
  1480. &lt;TD&gt;
  1481. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1482. &lt;/TD&gt;
  1483. &lt;TD&gt;
  1484. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1485. &lt;/TD&gt;
  1486. &lt;TD&gt;
  1487. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1488. &lt;/TD&gt;
  1489. &lt;TD&gt;
  1490. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1491. &lt;/TD&gt;
  1492. &lt;TD&gt;
  1493. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1494. &lt;/TD&gt;
  1495. &lt;/TR&gt;
  1496. &lt;TR&gt;
  1497. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1498. 3314G&lt;BR&gt;
  1499. 3314J&lt;BR&gt;
  1500. 3364A/B&lt;BR&gt;
  1501. 3364C/D&lt;BR&gt;
  1502. 3364W/X&lt;BR&gt;
  1503. 3313G&lt;BR&gt;
  1504. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1505. &lt;/TD&gt;
  1506. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1507. 23B&lt;BR&gt;
  1508. 23A&lt;BR&gt;
  1509. 21X&lt;BR&gt;
  1510. 21W&lt;BR&gt;
  1511. -&lt;BR&gt;
  1512. 22B&lt;BR&gt;
  1513. 22A&lt;BR&gt;&lt;/FONT&gt;
  1514. &lt;/TD&gt;
  1515. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1516. ST5YL/ST53YL&lt;BR&gt;
  1517. ST5YJ/5T53YJ&lt;BR&gt;
  1518. ST-23A&lt;BR&gt;
  1519. ST-22B&lt;BR&gt;
  1520. ST-22&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;&lt;/FONT&gt;
  1523. &lt;/TD&gt;
  1524. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1525. ST-4B&lt;BR&gt;
  1526. ST-4A&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;
  1529. -&lt;BR&gt;
  1530. ST-3B&lt;BR&gt;
  1531. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1532. &lt;/TD&gt;
  1533. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1534. -&lt;BR&gt;
  1535. EVM-6YS&lt;BR&gt;
  1536. EVM-1E&lt;BR&gt;
  1537. EVM-1G&lt;BR&gt;
  1538. EVM-1D&lt;BR&gt;
  1539. -&lt;BR&gt;
  1540. -&lt;BR&gt;&lt;/FONT&gt;
  1541. &lt;/TD&gt;
  1542. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1543. G4B&lt;BR&gt;
  1544. G4A&lt;BR&gt;
  1545. TR04-3S1&lt;BR&gt;
  1546. TRG04-2S1&lt;BR&gt;
  1547. -&lt;BR&gt;
  1548. -&lt;BR&gt;
  1549. -&lt;BR&gt;&lt;/FONT&gt;
  1550. &lt;/TD&gt;
  1551. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1552. -&lt;BR&gt;
  1553. -&lt;BR&gt;
  1554. DVR-43A&lt;BR&gt;
  1555. CVR-42C&lt;BR&gt;
  1556. CVR-42A/C&lt;BR&gt;
  1557. -&lt;BR&gt;
  1558. -&lt;BR&gt;&lt;/FONT&gt;
  1559. &lt;/TD&gt;
  1560. &lt;/TR&gt;
  1561. &lt;/TABLE&gt;
  1562. &lt;P&gt;
  1563. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1564. &lt;P&gt;
  1565. &amp;nbsp;
  1566. &lt;P&gt;
  1567. &lt;/td&gt;
  1568. &lt;/tr&gt;
  1569. &lt;/table&gt;
  1570. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  1571. <packages>
  1572. <package name="R0402">
  1573. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1574. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1575. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1576. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1577. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1578. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1579. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1580. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1581. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1582. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1583. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1584. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1585. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1586. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1587. </package>
  1588. <package name="R0603">
  1589. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1590. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1591. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1592. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1593. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1594. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1595. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1596. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1597. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1598. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1599. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1600. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1601. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1602. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1603. </package>
  1604. <package name="R0805">
  1605. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1606. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1607. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1608. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1609. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1610. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1611. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1612. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1613. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1614. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1615. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1616. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1617. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1618. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1619. </package>
  1620. <package name="R0805W">
  1621. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1622. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1623. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1624. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1625. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1626. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1627. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1628. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1629. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1630. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1631. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1632. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1633. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1634. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1635. </package>
  1636. <package name="R1206">
  1637. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1638. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1639. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1640. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1641. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1642. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1643. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1644. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1645. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1646. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1647. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1648. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1649. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1650. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1651. </package>
  1652. <package name="R1206W">
  1653. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1654. wave soldering</description>
  1655. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1656. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1657. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1658. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1659. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1660. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1661. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1662. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1663. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1664. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1665. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1666. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1667. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1668. </package>
  1669. <package name="R1210">
  1670. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1671. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1672. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1673. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1674. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1675. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1676. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1677. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1678. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1679. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1680. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1681. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1682. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1683. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1684. </package>
  1685. <package name="R1210W">
  1686. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1687. wave soldering</description>
  1688. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1689. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1690. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1691. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1692. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1693. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1694. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1695. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1696. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1697. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1698. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1699. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1700. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1701. </package>
  1702. <package name="R2010">
  1703. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1704. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1705. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1706. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1707. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1708. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1709. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1710. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1711. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1712. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1713. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1714. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1715. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1716. </package>
  1717. <package name="R2010W">
  1718. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1719. wave soldering</description>
  1720. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1721. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1722. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1723. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1724. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1725. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1726. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1727. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1728. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1729. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1730. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1731. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1732. </package>
  1733. <package name="R2012">
  1734. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1735. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1736. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1737. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1738. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1739. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1740. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1741. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1742. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1743. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1744. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1745. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1746. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1747. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1748. </package>
  1749. <package name="R2012W">
  1750. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1751. wave soldering</description>
  1752. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1753. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1754. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1755. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1756. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1757. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1758. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1759. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1760. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1761. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1762. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1763. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1764. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1765. </package>
  1766. <package name="R2512">
  1767. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1768. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1769. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1770. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1771. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1772. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1773. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1774. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1775. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1776. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1777. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1778. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1779. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1780. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1781. </package>
  1782. <package name="R2512W">
  1783. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1784. wave soldering</description>
  1785. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1786. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1787. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1788. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1789. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1790. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1791. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1792. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1793. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1794. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1795. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1796. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1797. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1798. </package>
  1799. <package name="R3216">
  1800. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1801. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1802. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1803. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1804. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1805. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1806. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1807. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1808. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1809. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1810. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1811. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1812. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1813. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1814. </package>
  1815. <package name="R3216W">
  1816. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1817. wave soldering</description>
  1818. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1819. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1820. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1821. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1822. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1823. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1824. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1825. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1826. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1827. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1828. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1829. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1830. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1831. </package>
  1832. <package name="R3225">
  1833. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1834. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1835. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1836. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1837. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1838. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1839. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1840. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1841. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1842. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1843. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1844. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1845. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1846. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1847. </package>
  1848. <package name="R3225W">
  1849. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1850. wave soldering</description>
  1851. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1852. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1853. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1854. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1855. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1856. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1857. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1858. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1859. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1860. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1861. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1862. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1863. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1864. </package>
  1865. <package name="R5025">
  1866. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1867. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1868. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1869. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1870. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1871. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1872. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1873. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1874. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1875. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1876. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1877. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1878. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1879. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1880. </package>
  1881. <package name="R5025W">
  1882. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1883. wave soldering</description>
  1884. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1885. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1886. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1887. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1888. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1889. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1890. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1891. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1892. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1893. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1894. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1895. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1896. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1897. </package>
  1898. <package name="R6332">
  1899. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1900. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1901. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1902. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1903. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1904. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1905. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1906. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1907. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1908. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1909. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1910. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1911. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1912. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1913. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1914. </package>
  1915. <package name="R6332W">
  1916. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  1917. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1918. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1919. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1920. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1921. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1922. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1923. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1924. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  1925. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  1926. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1927. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1928. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1929. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1930. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1931. </package>
  1932. <package name="M0805">
  1933. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1934. MELF 0.10 W</description>
  1935. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1936. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1937. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1938. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1939. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  1940. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  1941. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1942. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1943. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1944. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1945. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  1946. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  1947. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  1948. </package>
  1949. <package name="M1206">
  1950. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1951. MELF 0.25 W</description>
  1952. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1953. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1954. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1955. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1956. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  1957. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  1958. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  1959. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  1960. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1961. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1962. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  1963. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  1964. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1965. </package>
  1966. <package name="M1406">
  1967. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1968. MELF 0.12 W</description>
  1969. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  1970. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  1971. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  1972. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  1973. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  1974. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  1975. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  1976. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  1977. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1978. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1979. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  1980. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  1981. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1982. </package>
  1983. <package name="M2012">
  1984. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1985. MELF 0.10 W</description>
  1986. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1987. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1988. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1989. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1990. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  1991. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  1992. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1993. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1994. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1995. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1996. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  1997. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  1998. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  1999. </package>
  2000. <package name="M2309">
  2001. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2002. MELF 0.25 W</description>
  2003. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2004. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2005. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2006. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2007. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2008. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2009. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2010. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2011. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2012. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2013. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2014. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2015. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2016. </package>
  2017. <package name="M3216">
  2018. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2019. MELF 0.25 W</description>
  2020. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2021. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2022. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2023. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2024. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2025. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2026. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2027. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2028. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2029. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2030. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2031. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2032. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2033. </package>
  2034. <package name="M3516">
  2035. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2036. MELF 0.12 W</description>
  2037. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2038. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2039. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2040. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2041. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2042. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2043. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2044. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2045. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2046. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2047. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2048. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2049. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2050. </package>
  2051. <package name="M5923">
  2052. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2053. MELF 0.25 W</description>
  2054. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2055. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2056. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2057. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2058. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2059. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2060. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2061. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2062. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2063. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2064. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2065. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2066. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2067. </package>
  2068. <package name="0204/5">
  2069. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2070. type 0204, grid 5 mm</description>
  2071. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2072. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2073. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2074. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2075. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2076. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2077. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2078. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2079. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2080. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2081. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2082. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2083. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2084. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2085. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2086. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2087. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2088. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2089. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2090. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2091. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2092. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2093. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2094. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2095. </package>
  2096. <package name="0204/7">
  2097. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2098. type 0204, grid 7.5 mm</description>
  2099. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2100. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2101. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2102. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2103. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2104. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2105. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2106. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2107. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2108. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2109. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2110. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2111. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2112. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2113. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2114. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2115. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2116. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2117. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2118. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2119. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2120. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2121. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2122. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2123. </package>
  2124. <package name="0204V">
  2125. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2126. type 0204, grid 2.5 mm</description>
  2127. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2128. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2129. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2130. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2131. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2132. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2133. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2134. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2135. </package>
  2136. <package name="0207/10">
  2137. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2138. type 0207, grid 10 mm</description>
  2139. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2140. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2141. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2142. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2143. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2144. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2145. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2146. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2147. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2148. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2149. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2150. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2151. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2152. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2153. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2154. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2155. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2156. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2157. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2158. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2159. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2160. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2161. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2162. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2163. </package>
  2164. <package name="0207/12">
  2165. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2166. type 0207, grid 12 mm</description>
  2167. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2168. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2169. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2170. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2171. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2172. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2173. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2174. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2175. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2176. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2177. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2178. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2179. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2180. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2181. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2182. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2183. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2184. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2185. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2186. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2187. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2188. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2189. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2190. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2191. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2192. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2193. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2194. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2195. </package>
  2196. <package name="0207/15">
  2197. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2198. type 0207, grid 15mm</description>
  2199. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2200. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2201. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2202. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2203. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2204. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2205. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2206. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2207. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2208. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2209. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2210. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2211. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2212. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2213. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2214. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2215. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2216. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2217. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2218. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2219. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2220. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2221. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2222. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2223. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2224. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2225. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2226. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2227. </package>
  2228. <package name="0207/2V">
  2229. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2230. type 0207, grid 2.5 mm</description>
  2231. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2232. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2233. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2234. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2235. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2236. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2237. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2238. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2239. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2240. </package>
  2241. <package name="0207/5V">
  2242. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2243. type 0207, grid 5 mm</description>
  2244. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2245. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2246. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2247. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2248. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2249. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2250. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2251. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2252. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2253. </package>
  2254. <package name="0207/7">
  2255. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2256. type 0207, grid 7.5 mm</description>
  2257. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2258. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2259. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2260. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2261. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2262. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2263. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2264. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2265. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2266. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2267. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2268. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2269. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2270. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2271. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2272. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2273. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2274. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2275. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2276. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2277. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2278. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2279. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2280. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2281. </package>
  2282. <package name="0309/10">
  2283. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2284. type 0309, grid 10mm</description>
  2285. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2286. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2287. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2288. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2289. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2290. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2291. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2292. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2293. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2294. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2295. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2296. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2297. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2298. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2299. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2300. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2301. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2302. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2303. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2304. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2305. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2306. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2307. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2308. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2309. </package>
  2310. <package name="0309/12">
  2311. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2312. type 0309, grid 12.5 mm</description>
  2313. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2314. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2315. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2316. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2317. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2318. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2319. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2320. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2321. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2322. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2323. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2324. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2325. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2326. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2327. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2328. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2329. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2330. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2331. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2332. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2333. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2334. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2335. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2336. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2337. </package>
  2338. <package name="0309V">
  2339. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2340. type 0309, grid 2.5 mm</description>
  2341. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2342. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2343. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2344. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2345. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2346. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2347. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2348. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2349. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2350. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2351. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2352. </package>
  2353. <package name="0411/12">
  2354. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2355. type 0411, grid 12.5 mm</description>
  2356. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2357. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2358. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2359. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2360. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2361. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2362. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2363. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2364. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2365. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2366. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2367. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2368. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2369. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2370. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2371. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2372. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2373. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2374. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2375. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2376. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2377. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2378. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2379. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2380. </package>
  2381. <package name="0411/15">
  2382. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2383. type 0411, grid 15 mm</description>
  2384. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2385. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2386. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2387. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2388. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2389. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2390. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2391. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2392. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2393. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2394. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2395. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2396. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2397. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2398. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2399. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2400. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2401. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2402. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2403. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2404. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2405. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2406. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2407. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2408. </package>
  2409. <package name="0411V">
  2410. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2411. type 0411, grid 3.81 mm</description>
  2412. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2413. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2414. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2415. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2416. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2417. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2418. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2419. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2420. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2421. </package>
  2422. <package name="0414/15">
  2423. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2424. type 0414, grid 15 mm</description>
  2425. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2426. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2427. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2428. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2429. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2430. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2431. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2432. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2433. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2434. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2435. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2436. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2437. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2438. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2439. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2440. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2441. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2442. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2443. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2444. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2445. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2446. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2447. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2448. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2449. </package>
  2450. <package name="0414V">
  2451. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2452. type 0414, grid 5 mm</description>
  2453. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2454. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2455. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2456. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2457. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2458. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2459. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2460. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2461. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2462. </package>
  2463. <package name="0617/17">
  2464. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2465. type 0617, grid 17.5 mm</description>
  2466. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2467. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2468. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2469. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2470. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2471. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2472. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2473. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2474. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2475. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2476. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2477. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2478. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2479. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2480. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2481. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2482. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2483. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2484. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2485. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2486. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2487. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2488. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2489. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2490. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2491. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2492. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2493. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2494. </package>
  2495. <package name="0617/22">
  2496. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2497. type 0617, grid 22.5 mm</description>
  2498. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2499. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2500. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2501. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2502. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2503. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2504. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2505. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2506. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2507. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2508. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2509. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2510. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2511. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2512. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2513. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2514. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2515. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2516. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2517. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2518. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2519. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2520. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2521. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2522. </package>
  2523. <package name="0617V">
  2524. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2525. type 0617, grid 5 mm</description>
  2526. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2527. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2528. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2529. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2530. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2531. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2532. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2533. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2534. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2535. </package>
  2536. <package name="0922/22">
  2537. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2538. type 0922, grid 22.5 mm</description>
  2539. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2540. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2541. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2542. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2543. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2544. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2545. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2546. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2547. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2548. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2549. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2550. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2551. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2552. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2553. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2554. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2555. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2556. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2557. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2558. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2559. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2560. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2561. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2562. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2563. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2564. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2565. </package>
  2566. <package name="P0613V">
  2567. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2568. type 0613, grid 5 mm</description>
  2569. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2570. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2571. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2572. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2573. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2574. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2575. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2576. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2577. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2578. </package>
  2579. <package name="P0613/15">
  2580. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2581. type 0613, grid 15 mm</description>
  2582. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2583. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2584. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2585. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2587. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2588. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2589. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2590. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2591. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2592. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2593. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2594. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2595. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2596. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2597. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2598. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2599. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2600. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2601. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2602. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2603. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2604. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2605. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2606. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2607. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2608. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2609. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2610. </package>
  2611. <package name="P0817/22">
  2612. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2613. type 0817, grid 22.5 mm</description>
  2614. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2615. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2616. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2617. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2618. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2619. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2620. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2621. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2622. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2623. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2624. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2625. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2626. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2627. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2628. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2629. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2630. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2631. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2632. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2633. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2634. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2635. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2636. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2637. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2638. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2639. </package>
  2640. <package name="P0817V">
  2641. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2642. type 0817, grid 6.35 mm</description>
  2643. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2644. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2645. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2646. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2647. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2648. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2649. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2650. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2651. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2652. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2653. </package>
  2654. <package name="V234/12">
  2655. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2656. type V234, grid 12.5 mm</description>
  2657. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2658. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2659. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2660. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2661. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2662. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2663. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2664. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2665. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2666. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2667. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2668. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2669. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2670. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2671. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2672. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2673. </package>
  2674. <package name="V235/17">
  2675. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2676. type V235, grid 17.78 mm</description>
  2677. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2678. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2679. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2680. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2681. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2682. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2683. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2684. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2685. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2686. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2687. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2688. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2689. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2690. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2691. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2692. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2693. </package>
  2694. <package name="V526-0">
  2695. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2696. type V526-0, grid 2.5 mm</description>
  2697. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2698. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2699. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2700. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2701. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2702. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2703. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2704. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2705. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2706. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2707. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2708. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2709. </package>
  2710. <package name="MINI_MELF-0102R">
  2711. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2712. source Beyschlag</description>
  2713. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2714. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2715. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2716. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2717. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2718. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2719. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2720. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2721. </package>
  2722. <package name="MINI_MELF-0102W">
  2723. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2724. source Beyschlag</description>
  2725. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2726. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2727. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2728. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2729. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2730. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2731. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2732. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2733. </package>
  2734. <package name="MINI_MELF-0204R">
  2735. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2736. source Beyschlag</description>
  2737. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2738. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2739. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2740. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2741. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2742. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2743. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2744. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2745. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2746. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2747. </package>
  2748. <package name="MINI_MELF-0204W">
  2749. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2750. source Beyschlag</description>
  2751. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2752. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2753. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2754. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2755. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2756. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2757. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2758. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2759. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2760. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2761. </package>
  2762. <package name="MINI_MELF-0207R">
  2763. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2764. source Beyschlag</description>
  2765. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2766. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2767. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2768. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2769. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2770. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2771. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2772. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2773. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2774. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2775. </package>
  2776. <package name="MINI_MELF-0207W">
  2777. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  2778. source Beyschlag</description>
  2779. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2780. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2781. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2782. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2783. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  2784. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  2785. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2786. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2787. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2788. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2789. </package>
  2790. <package name="0922V">
  2791. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2792. type 0922, grid 7.5 mm</description>
  2793. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2794. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  2795. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  2796. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  2797. <pad name="1" x="-5.08" 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.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2800. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2801. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  2802. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2803. </package>
  2804. <package name="RDH/15">
  2805. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2806. type RDH, grid 15 mm</description>
  2807. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  2808. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2809. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2810. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2811. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2812. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2813. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  2814. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2815. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  2816. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2817. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2818. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  2819. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  2820. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  2821. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  2822. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  2823. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  2824. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  2825. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2826. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2827. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2828. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2829. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2830. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2831. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2832. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2833. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  2834. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  2835. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  2836. </package>
  2837. <package name="MINI_MELF-0102AX">
  2838. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  2839. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  2840. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  2841. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  2842. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  2843. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2844. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2845. <hole x="0" y="0" drill="1.3"/>
  2846. </package>
  2847. <package name="R0201">
  2848. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  2849. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2850. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2851. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2852. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2853. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2854. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  2855. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  2856. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  2857. </package>
  2858. <package name="VTA52">
  2859. <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;
  2860. MIL SIZE RBR52&lt;br&gt;
  2861. Source: VISHAY .. vta56.pdf</description>
  2862. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  2863. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  2864. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  2865. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  2866. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2867. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2868. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  2869. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  2870. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  2871. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  2872. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2873. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2874. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  2875. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  2876. </package>
  2877. <package name="VTA53">
  2878. <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;
  2879. MIL SIZE RBR53&lt;br&gt;
  2880. Source: VISHAY .. vta56.pdf</description>
  2881. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2882. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  2883. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  2884. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2885. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2886. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2887. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2888. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2889. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2890. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2891. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2892. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2893. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2894. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2895. </package>
  2896. <package name="VTA54">
  2897. <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;
  2898. MIL SIZE RBR54&lt;br&gt;
  2899. Source: VISHAY .. vta56.pdf</description>
  2900. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2901. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  2902. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  2903. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2904. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2905. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2906. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2907. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2908. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2909. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2910. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2911. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2912. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2913. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2914. </package>
  2915. <package name="VTA55">
  2916. <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;
  2917. MIL SIZE RBR55&lt;br&gt;
  2918. Source: VISHAY .. vta56.pdf</description>
  2919. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  2920. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  2921. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  2922. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  2923. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  2924. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  2925. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  2926. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  2927. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  2928. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  2929. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2930. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2931. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  2932. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  2933. </package>
  2934. <package name="VTA56">
  2935. <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;
  2936. MIL SIZE RBR56&lt;br&gt;
  2937. Source: VISHAY .. vta56.pdf</description>
  2938. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2939. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  2940. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  2941. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  2942. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  2943. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  2944. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  2945. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  2946. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  2947. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  2948. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2949. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2950. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2951. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  2952. </package>
  2953. <package name="VMTA55">
  2954. <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;
  2955. MIL SIZE RNC55&lt;br&gt;
  2956. Source: VISHAY .. vta56.pdf</description>
  2957. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  2958. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  2959. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  2960. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  2961. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  2962. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2963. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  2964. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  2965. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2966. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2967. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  2968. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  2969. </package>
  2970. <package name="VMTB60">
  2971. <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;
  2972. MIL SIZE RNC60&lt;br&gt;
  2973. Source: VISHAY .. vta56.pdf</description>
  2974. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  2975. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  2976. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  2977. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  2978. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  2979. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  2980. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  2981. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  2982. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2983. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2984. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  2985. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  2986. </package>
  2987. <package name="R4527">
  2988. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  2989. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2990. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  2991. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  2992. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  2993. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  2994. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2995. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2996. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  2997. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  2998. </package>
  2999. <package name="WSC0001">
  3000. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3001. Source: VISHAY wscwsn.pdf</description>
  3002. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3003. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3004. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3005. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3006. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3007. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3008. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3009. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3010. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3011. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3012. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3013. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3014. </package>
  3015. <package name="WSC0002">
  3016. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3017. Source: VISHAY wscwsn.pdf</description>
  3018. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3019. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3020. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3021. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3022. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3023. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3024. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3025. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3026. </package>
  3027. <package name="WSC01/2">
  3028. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3029. Source: VISHAY wscwsn.pdf</description>
  3030. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3031. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3032. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3033. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3034. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3035. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3036. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3037. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3038. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3039. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3040. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3041. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3042. </package>
  3043. <package name="WSC2515">
  3044. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3045. Source: VISHAY wscwsn.pdf</description>
  3046. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3047. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3048. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3049. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3050. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3051. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3052. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3053. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3054. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3055. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3056. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3057. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3058. </package>
  3059. <package name="WSC4527">
  3060. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3061. Source: VISHAY wscwsn.pdf</description>
  3062. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3063. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3064. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3065. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3066. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3067. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3068. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3069. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3070. </package>
  3071. <package name="WSC6927">
  3072. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3073. Source: VISHAY wscwsn.pdf</description>
  3074. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3075. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3076. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3077. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3078. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3079. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3080. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3081. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3082. </package>
  3083. <package name="R1218">
  3084. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3085. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3086. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3087. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3088. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3089. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3090. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3091. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3092. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3093. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3094. </package>
  3095. <package name="1812X7R">
  3096. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3097. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3098. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3099. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3100. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3101. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3102. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3103. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3104. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3105. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3106. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3107. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3108. </package>
  3109. <package name="PRL1632">
  3110. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3111. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3112. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3113. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3114. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3115. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3116. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3117. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3118. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3119. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3120. </package>
  3121. <package name="R01005">
  3122. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3123. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3124. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3125. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3126. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3127. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3128. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3129. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3130. </package>
  3131. <package name="C0402">
  3132. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3133. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  3134. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  3135. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  3136. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  3137. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  3138. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  3139. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3140. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3141. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3142. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3143. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  3144. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  3145. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3146. </package>
  3147. <package name="C0504">
  3148. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3149. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3150. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3151. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3152. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3153. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3154. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3155. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3156. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3157. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3158. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3159. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3160. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3161. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3162. </package>
  3163. <package name="C0603">
  3164. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3165. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3166. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3167. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3168. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3169. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3170. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3171. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3172. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3173. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3174. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3175. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3176. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3177. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3178. </package>
  3179. <package name="C0805">
  3180. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;</description>
  3181. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3182. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3183. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3184. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3185. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3186. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3187. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3188. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3189. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3190. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3191. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3192. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3193. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3194. </package>
  3195. <package name="C1206">
  3196. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3197. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3198. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3199. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3200. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3201. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3202. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3203. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3204. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3205. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3206. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3207. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3208. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3209. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3210. </package>
  3211. <package name="C1210">
  3212. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3213. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3214. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3215. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3216. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3217. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3218. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3219. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3220. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3221. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3222. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3223. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3224. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3225. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3226. </package>
  3227. <package name="C1310">
  3228. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3229. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3230. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3231. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3232. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3233. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3234. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3235. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3236. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3237. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3238. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3239. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3240. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3241. <rectangle x1="-0.1001" y1="-0.3" x2="0.1001" y2="0.3" layer="35"/>
  3242. </package>
  3243. <package name="C1608">
  3244. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3245. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3246. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3247. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3248. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3249. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3250. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3251. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3252. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3253. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3254. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3255. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3256. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3257. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3258. </package>
  3259. <package name="C1812">
  3260. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3261. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3262. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3263. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3264. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3265. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3266. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3267. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3268. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3269. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3270. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3271. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3272. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3273. <rectangle x1="-0.3" y1="-0.4001" x2="0.3" y2="0.4001" layer="35"/>
  3274. </package>
  3275. <package name="C1825">
  3276. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3277. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3278. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3279. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3280. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3281. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3282. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3283. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3284. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3285. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3286. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3287. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3288. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3289. <rectangle x1="-0.7" y1="-0.7" x2="0.7" y2="0.7" layer="35"/>
  3290. </package>
  3291. <package name="C2012">
  3292. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3293. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3294. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3295. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3296. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3297. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3298. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3299. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3300. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3301. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3302. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3303. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3304. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3305. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3306. </package>
  3307. <package name="C3216">
  3308. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3309. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3310. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3311. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3312. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3313. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3314. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3315. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3316. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3317. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3318. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3319. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3320. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3321. <rectangle x1="-0.3" y1="-0.5001" x2="0.3" y2="0.5001" layer="35"/>
  3322. </package>
  3323. <package name="C3225">
  3324. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3325. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3326. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3327. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3328. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3329. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3330. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3331. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3332. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3333. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3334. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3335. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3336. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3337. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  3338. </package>
  3339. <package name="C4532">
  3340. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3341. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3342. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3343. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3344. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3345. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3346. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3347. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3348. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3349. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3350. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3351. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3352. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3353. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  3354. </package>
  3355. <package name="C4564">
  3356. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3357. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3358. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3359. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3360. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3361. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3362. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3363. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3364. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3365. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3366. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3367. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3368. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3369. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  3370. </package>
  3371. <package name="C025-024X044">
  3372. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3373. grid 2.5 mm, outline 2.4 x 4.4 mm</description>
  3374. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
  3375. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3376. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3377. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3378. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
  3379. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3380. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3381. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3382. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3383. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3384. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3385. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3386. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3387. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3388. <text x="-1.778" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3389. <text x="-1.778" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3390. </package>
  3391. <package name="C025-025X050">
  3392. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3393. grid 2.5 mm, outline 2.5 x 5 mm</description>
  3394. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3395. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3396. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3397. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3398. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3399. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3400. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3401. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3402. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3403. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3404. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3405. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3406. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3407. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3408. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3409. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3410. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3411. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3412. <text x="-2.286" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3413. <text x="-2.286" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3414. </package>
  3415. <package name="C025-030X050">
  3416. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3417. grid 2.5 mm, outline 3 x 5 mm</description>
  3418. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  3419. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  3420. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  3421. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  3422. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3423. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3424. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3425. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3426. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3427. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3428. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3429. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3430. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3431. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3432. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3433. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3434. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3435. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3436. <text x="-2.286" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3437. <text x="-2.286" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3438. </package>
  3439. <package name="C025-040X050">
  3440. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3441. grid 2.5 mm, outline 4 x 5 mm</description>
  3442. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  3443. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  3444. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  3445. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  3446. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  3447. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  3448. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  3449. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  3450. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3451. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3452. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3453. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3454. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3455. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3456. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3457. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3458. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3459. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3460. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3461. <text x="-2.286" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3462. </package>
  3463. <package name="C025-050X050">
  3464. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3465. grid 2.5 mm, outline 5 x 5 mm</description>
  3466. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3467. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3468. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3469. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3470. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3471. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3472. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3473. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3474. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3475. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3476. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3477. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3478. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3479. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3480. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3481. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3482. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3483. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3484. <text x="-2.286" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3485. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3486. </package>
  3487. <package name="C025-060X050">
  3488. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3489. grid 2.5 mm, outline 6 x 5 mm</description>
  3490. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3491. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3492. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3493. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3494. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3495. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3496. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3497. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3498. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3499. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3500. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3501. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3502. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3503. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3504. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3505. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3506. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3507. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3508. <text x="-2.286" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3509. <text x="-2.032" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3510. </package>
  3511. <package name="C025_050-024X070">
  3512. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3513. grid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>
  3514. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3515. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3516. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3517. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3518. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3519. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3520. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3521. <wire x1="-4.191" y1="-1.143" x2="-3.9624" y2="-1.143" width="0.1524" layer="21"/>
  3522. <wire x1="-4.191" y1="1.143" x2="-3.9624" y2="1.143" width="0.1524" layer="21"/>
  3523. <wire x1="-4.699" y1="-0.635" x2="-4.191" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3524. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3525. <wire x1="-4.699" y1="0.635" x2="-4.191" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3526. <wire x1="-4.699" y1="-0.635" x2="-4.699" y2="0.635" width="0.1524" layer="21"/>
  3527. <wire x1="-3.429" y1="1.143" x2="-2.5654" y2="1.143" width="0.1524" layer="21"/>
  3528. <wire x1="-3.429" y1="-1.143" x2="-2.5654" y2="-1.143" width="0.1524" layer="21"/>
  3529. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3530. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3531. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3532. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3533. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  3534. <pad name="2" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3535. <pad name="3" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3536. <text x="-3.81" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3537. <text x="-3.81" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3538. </package>
  3539. <package name="C025_050-025X075">
  3540. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3541. grid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>
  3542. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3543. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3544. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3545. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3546. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3547. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3548. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3549. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3550. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3551. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3552. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3553. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3554. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3555. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3556. <wire x1="4.953" y1="1.016" x2="4.953" y2="-1.016" width="0.1524" layer="21"/>
  3557. <wire x1="4.699" y1="1.27" x2="4.953" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3558. <wire x1="4.699" y1="-1.27" x2="4.953" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3559. <wire x1="2.794" y1="1.27" x2="4.699" y2="1.27" width="0.1524" layer="21"/>
  3560. <wire x1="4.699" y1="-1.27" x2="2.794" y2="-1.27" width="0.1524" layer="21"/>
  3561. <wire x1="2.413" y1="1.016" x2="2.413" y2="0.762" width="0.1524" layer="21"/>
  3562. <wire x1="2.413" y1="-0.762" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3563. <wire x1="2.413" y1="0.254" x2="2.413" y2="-0.254" width="0.1524" layer="21"/>
  3564. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3565. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3566. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3567. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3568. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3569. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3570. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3571. <text x="-2.159" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3572. <text x="-2.159" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3573. </package>
  3574. <package name="C025_050-035X075">
  3575. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3576. grid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>
  3577. <wire x1="-2.159" y1="1.778" x2="2.159" y2="1.778" width="0.1524" layer="21"/>
  3578. <wire x1="2.159" y1="-1.778" x2="-2.159" y2="-1.778" width="0.1524" layer="21"/>
  3579. <wire x1="-2.413" y1="1.524" x2="-2.413" y2="-1.524" width="0.1524" layer="21"/>
  3580. <wire x1="2.159" y1="1.778" x2="2.413" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3581. <wire x1="-2.413" y1="1.524" x2="-2.159" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3582. <wire x1="2.159" y1="-1.778" x2="2.413" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3583. <wire x1="-2.413" y1="-1.524" x2="-2.159" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3584. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3585. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3586. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3587. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3588. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3589. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3590. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3591. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3592. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3593. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3594. <wire x1="2.794" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3595. <wire x1="4.699" y1="-1.778" x2="2.794" y2="-1.778" width="0.1524" layer="21"/>
  3596. <wire x1="2.413" y1="1.524" x2="2.413" y2="1.016" width="0.1524" layer="21"/>
  3597. <wire x1="2.413" y1="-1.016" x2="2.413" y2="-1.524" width="0.1524" layer="21"/>
  3598. <wire x1="2.413" y1="0.508" x2="2.413" y2="-0.508" width="0.1524" layer="21"/>
  3599. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3600. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3601. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3602. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3603. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3604. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3605. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3606. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3607. <text x="-2.286" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3608. </package>
  3609. <package name="C025_050-045X075">
  3610. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3611. grid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>
  3612. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3613. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3614. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3615. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3616. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3617. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3618. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3619. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3620. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3621. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3622. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3623. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3624. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3625. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3626. <wire x1="4.953" y1="2.032" x2="4.953" y2="-2.032" width="0.1524" layer="21"/>
  3627. <wire x1="4.699" y1="2.286" x2="4.953" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3628. <wire x1="4.699" y1="-2.286" x2="4.953" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3629. <wire x1="2.794" y1="2.286" x2="4.699" y2="2.286" width="0.1524" layer="21"/>
  3630. <wire x1="4.699" y1="-2.286" x2="2.794" y2="-2.286" width="0.1524" layer="21"/>
  3631. <wire x1="2.413" y1="2.032" x2="2.413" y2="1.397" width="0.1524" layer="21"/>
  3632. <wire x1="2.413" y1="-1.397" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3633. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3634. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3635. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3636. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3637. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3638. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3639. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3640. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3641. <text x="-2.286" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3642. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3643. </package>
  3644. <package name="C025_050-055X075">
  3645. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3646. grid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>
  3647. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3648. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3649. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3650. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3651. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3652. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3653. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3654. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3655. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3656. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3657. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3658. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3659. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3660. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3661. <wire x1="4.953" y1="2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3662. <wire x1="4.699" y1="2.794" x2="4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3663. <wire x1="4.699" y1="-2.794" x2="4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3664. <wire x1="2.794" y1="2.794" x2="4.699" y2="2.794" width="0.1524" layer="21"/>
  3665. <wire x1="4.699" y1="-2.794" x2="2.794" y2="-2.794" width="0.1524" layer="21"/>
  3666. <wire x1="2.413" y1="2.54" x2="2.413" y2="2.032" width="0.1524" layer="21"/>
  3667. <wire x1="2.413" y1="-2.032" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3668. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3669. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3670. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3671. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3672. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3673. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3674. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3675. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3676. <text x="-2.286" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3677. <text x="-2.032" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3678. </package>
  3679. <package name="C050-024X044">
  3680. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3681. grid 5 mm, outline 2.4 x 4.4 mm</description>
  3682. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3683. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3684. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3685. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3686. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3687. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3688. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3689. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3690. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3691. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3692. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3693. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3694. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
  3695. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
  3696. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3697. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3698. <text x="-2.159" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3699. <text x="-2.159" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3700. <rectangle x1="2.159" y1="-0.381" x2="2.54" y2="0.381" layer="51"/>
  3701. <rectangle x1="-2.54" y1="-0.381" x2="-2.159" y2="0.381" layer="51"/>
  3702. </package>
  3703. <package name="C050-025X075">
  3704. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3705. grid 5 mm, outline 2.5 x 7.5 mm</description>
  3706. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3707. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3708. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3709. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3710. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3711. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3712. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  3713. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  3714. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  3715. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  3716. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3717. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3718. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3719. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3720. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3721. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3722. <text x="-3.429" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3723. <text x="-3.429" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3724. </package>
  3725. <package name="C050-045X075">
  3726. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3727. grid 5 mm, outline 4.5 x 7.5 mm</description>
  3728. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3729. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3730. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3731. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3732. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3733. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3734. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  3735. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  3736. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  3737. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  3738. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3739. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3740. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3741. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3742. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3743. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3744. <text x="-3.556" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3745. <text x="-3.556" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3746. </package>
  3747. <package name="C050-030X075">
  3748. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3749. grid 5 mm, outline 3 x 7.5 mm</description>
  3750. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3751. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3752. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3753. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3754. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3755. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3756. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  3757. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3758. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  3759. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3760. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3761. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3762. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3763. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3764. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3765. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3766. <text x="-3.556" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3767. <text x="-3.556" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3768. </package>
  3769. <package name="C050-050X075">
  3770. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3771. grid 5 mm, outline 5 x 7.5 mm</description>
  3772. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3773. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3774. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3775. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3776. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3777. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3778. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  3779. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  3780. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  3781. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  3782. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3783. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3784. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3785. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3786. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3787. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3788. <text x="-3.429" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3789. <text x="-3.175" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3790. </package>
  3791. <package name="C050-055X075">
  3792. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3793. grid 5 mm, outline 5.5 x 7.5 mm</description>
  3794. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3795. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3796. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3797. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3798. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3799. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3800. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  3801. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  3802. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  3803. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  3804. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3805. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3806. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3807. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3808. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3809. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3810. <text x="-3.429" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3811. <text x="-3.302" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3812. </package>
  3813. <package name="C050-075X075">
  3814. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3815. grid 5 mm, outline 7.5 x 7.5 mm</description>
  3816. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  3817. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  3818. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  3819. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  3820. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3821. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  3822. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  3823. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  3824. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  3825. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  3826. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3827. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3828. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  3829. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  3830. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3831. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3832. <text x="-3.429" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3833. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3834. </package>
  3835. <package name="C050H075X075">
  3836. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3837. Horizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>
  3838. <wire x1="-3.683" y1="7.112" x2="-3.683" y2="0.508" width="0.1524" layer="21"/>
  3839. <wire x1="-3.683" y1="0.508" x2="-3.302" y2="0.508" width="0.1524" layer="21"/>
  3840. <wire x1="-3.302" y1="0.508" x2="-1.778" y2="0.508" width="0.1524" layer="51"/>
  3841. <wire x1="-1.778" y1="0.508" x2="1.778" y2="0.508" width="0.1524" layer="21"/>
  3842. <wire x1="1.778" y1="0.508" x2="3.302" y2="0.508" width="0.1524" layer="51"/>
  3843. <wire x1="3.302" y1="0.508" x2="3.683" y2="0.508" width="0.1524" layer="21"/>
  3844. <wire x1="3.683" y1="0.508" x2="3.683" y2="7.112" width="0.1524" layer="21"/>
  3845. <wire x1="3.175" y1="7.62" x2="-3.175" y2="7.62" width="0.1524" layer="21"/>
  3846. <wire x1="-0.3048" y1="2.413" x2="-0.3048" y2="1.778" width="0.3048" layer="21"/>
  3847. <wire x1="-0.3048" y1="1.778" x2="-0.3048" y2="1.143" width="0.3048" layer="21"/>
  3848. <wire x1="-0.3048" y1="1.778" x2="-1.651" y2="1.778" width="0.1524" layer="21"/>
  3849. <wire x1="0.3302" y1="2.413" x2="0.3302" y2="1.778" width="0.3048" layer="21"/>
  3850. <wire x1="0.3302" y1="1.778" x2="0.3302" y2="1.143" width="0.3048" layer="21"/>
  3851. <wire x1="0.3302" y1="1.778" x2="1.651" y2="1.778" width="0.1524" layer="21"/>
  3852. <wire x1="-3.683" y1="7.112" x2="-3.175" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  3853. <wire x1="3.175" y1="7.62" x2="3.683" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  3854. <wire x1="-2.54" y1="0" x2="-2.54" y2="0.254" width="0.508" layer="51"/>
  3855. <wire x1="2.54" y1="0" x2="2.54" y2="0.254" width="0.508" layer="51"/>
  3856. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3857. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3858. <text x="-3.302" y="8.001" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3859. <text x="-3.175" y="3.175" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3860. <rectangle x1="-2.794" y1="0.127" x2="-2.286" y2="0.508" layer="51"/>
  3861. <rectangle x1="2.286" y1="0.127" x2="2.794" y2="0.508" layer="51"/>
  3862. </package>
  3863. <package name="C075-032X103">
  3864. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3865. grid 7.5 mm, outline 3.2 x 10.3 mm</description>
  3866. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  3867. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  3868. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  3869. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  3870. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3871. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3872. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3873. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3874. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  3875. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  3876. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  3877. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  3878. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  3879. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  3880. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3881. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3882. <text x="-4.826" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3883. <text x="-4.826" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3884. </package>
  3885. <package name="C075-042X103">
  3886. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3887. grid 7.5 mm, outline 4.2 x 10.3 mm</description>
  3888. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  3889. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  3890. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  3891. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  3892. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3893. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3894. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3895. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3896. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3897. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3898. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3899. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3900. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3901. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3902. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3903. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3904. <text x="-4.699" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3905. <text x="-0.635" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3906. </package>
  3907. <package name="C075-052X106">
  3908. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3909. grid 7.5 mm, outline 5.2 x 10.6 mm</description>
  3910. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  3911. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  3912. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3913. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  3914. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3915. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3916. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3917. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3918. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3919. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3920. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3921. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3922. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3923. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3924. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3925. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3926. <text x="-4.826" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3927. <text x="-0.635" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3928. </package>
  3929. <package name="C102-043X133">
  3930. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3931. grid 10.2 mm, outline 4.3 x 13.3 mm</description>
  3932. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3933. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3934. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3935. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3936. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3937. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3938. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  3939. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  3940. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  3941. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  3942. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3943. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3944. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3945. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3946. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3947. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3948. <text x="-6.096" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3949. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3950. </package>
  3951. <package name="C102-054X133">
  3952. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3953. grid 10.2 mm, outline 5.4 x 13.3 mm</description>
  3954. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3955. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3956. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3957. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3958. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3959. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3960. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  3961. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  3962. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  3963. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  3964. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3965. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3966. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3967. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3968. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3969. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3970. <text x="-6.096" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3971. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3972. </package>
  3973. <package name="C102-064X133">
  3974. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3975. grid 10.2 mm, outline 6.4 x 13.3 mm</description>
  3976. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3977. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3978. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3979. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3980. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3981. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3982. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  3983. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  3984. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  3985. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  3986. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3987. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3988. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3989. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3990. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3991. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3992. <text x="-6.096" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3993. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3994. </package>
  3995. <package name="C102_152-062X184">
  3996. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3997. grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>
  3998. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3999. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4000. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4001. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4002. <wire x1="-3.683" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4003. <wire x1="-2.286" y1="0" x2="3.683" y2="0" width="0.1524" layer="21"/>
  4004. <wire x1="6.477" y1="0" x2="8.636" y2="0" width="0.1524" layer="21"/>
  4005. <wire x1="-6.096" y1="3.048" x2="6.223" y2="3.048" width="0.1524" layer="21"/>
  4006. <wire x1="6.223" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4007. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4008. <wire x1="6.223" y1="3.048" x2="6.731" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4009. <wire x1="6.223" y1="-3.048" x2="6.731" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4010. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4011. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4012. <wire x1="6.731" y1="2.54" x2="6.731" y2="-2.54" width="0.1524" layer="21"/>
  4013. <wire x1="11.176" y1="3.048" x2="11.684" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4014. <wire x1="11.176" y1="-3.048" x2="11.684" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4015. <wire x1="11.176" y1="-3.048" x2="7.112" y2="-3.048" width="0.1524" layer="21"/>
  4016. <wire x1="7.112" y1="3.048" x2="11.176" y2="3.048" width="0.1524" layer="21"/>
  4017. <wire x1="11.684" y1="2.54" x2="11.684" y2="-2.54" width="0.1524" layer="21"/>
  4018. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4019. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4020. <pad name="3" x="10.033" y="0" drill="1.016" shape="octagon"/>
  4021. <text x="-5.969" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4022. <text x="-1.524" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4023. </package>
  4024. <package name="C150-054X183">
  4025. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4026. grid 15 mm, outline 5.4 x 18.3 mm</description>
  4027. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4028. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4029. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4030. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4031. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4032. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4033. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  4034. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  4035. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  4036. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  4037. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4038. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4039. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4040. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4041. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4042. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4043. <text x="-8.382" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4044. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4045. </package>
  4046. <package name="C150-064X183">
  4047. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4048. grid 15 mm, outline 6.4 x 18.3 mm</description>
  4049. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4050. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4051. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4052. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4053. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4054. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4055. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  4056. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  4057. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  4058. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  4059. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4060. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4061. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4062. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4063. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4064. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4065. <text x="-8.509" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4066. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4067. </package>
  4068. <package name="C150-072X183">
  4069. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4070. grid 15 mm, outline 7.2 x 18.3 mm</description>
  4071. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4072. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4073. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4074. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4075. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4076. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4077. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  4078. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  4079. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  4080. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  4081. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4082. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4083. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4084. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4085. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4086. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4087. <text x="-8.509" y="3.937" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4088. <text x="-3.429" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4089. </package>
  4090. <package name="C150-084X183">
  4091. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4092. grid 15 mm, outline 8.4 x 18.3 mm</description>
  4093. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4094. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4095. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4096. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4097. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4098. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4099. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  4100. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  4101. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  4102. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  4103. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4104. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4105. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4106. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4107. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4108. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4109. <text x="-8.509" y="4.445" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4110. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4111. </package>
  4112. <package name="C150-091X182">
  4113. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4114. grid 15 mm, outline 9.1 x 18.2 mm</description>
  4115. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4116. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4117. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4118. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4119. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4120. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4121. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  4122. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  4123. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  4124. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  4125. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  4126. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  4127. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  4128. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  4129. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4130. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4131. <text x="-8.509" y="4.826" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4132. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4133. </package>
  4134. <package name="C225-062X268">
  4135. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4136. grid 22.5 mm, outline 6.2 x 26.8 mm</description>
  4137. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  4138. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  4139. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  4140. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  4141. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4142. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4143. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4144. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4145. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4146. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4147. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4148. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4149. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4150. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4151. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4152. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4153. <text x="-12.7" y="3.429" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4154. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4155. </package>
  4156. <package name="C225-074X268">
  4157. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4158. grid 22.5 mm, outline 7.4 x 26.8 mm</description>
  4159. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  4160. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  4161. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  4162. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  4163. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4164. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4165. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4166. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4167. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4168. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4169. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4170. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4171. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4172. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4173. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4174. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4175. <text x="-12.827" y="3.937" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4176. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4177. </package>
  4178. <package name="C225-087X268">
  4179. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4180. grid 22.5 mm, outline 8.7 x 26.8 mm</description>
  4181. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  4182. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  4183. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  4184. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  4185. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4186. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4187. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4188. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4189. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  4190. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  4191. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  4192. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  4193. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4194. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4195. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4196. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4197. <text x="-12.827" y="4.699" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4198. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4199. </package>
  4200. <package name="C225-108X268">
  4201. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4202. grid 22.5 mm, outline 10.8 x 26.8 mm</description>
  4203. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  4204. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  4205. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  4206. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  4207. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4208. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4209. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4210. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4211. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  4212. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  4213. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  4214. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  4215. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4216. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4217. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4218. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4219. <text x="-12.954" y="5.715" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4220. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4221. </package>
  4222. <package name="C225-113X268">
  4223. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4224. grid 22.5 mm, outline 11.3 x 26.8 mm</description>
  4225. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  4226. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  4227. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  4228. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  4229. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4230. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4231. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4232. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4233. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4234. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4235. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4236. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4237. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4238. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4239. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4240. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4241. <text x="-12.954" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4242. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4243. </package>
  4244. <package name="C275-093X316">
  4245. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4246. grid 27.5 mm, outline 9.3 x 31.6 mm</description>
  4247. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  4248. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  4249. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  4250. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  4251. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4252. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4253. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4254. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4255. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4256. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4257. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  4258. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  4259. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4260. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4261. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4262. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4263. <text x="-15.24" y="4.953" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4264. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4265. </package>
  4266. <package name="C275-113X316">
  4267. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4268. grid 27.5 mm, outline 11.3 x 31.6 mm</description>
  4269. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  4270. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  4271. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  4272. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  4273. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4274. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4275. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4276. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4277. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4278. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4279. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4280. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4281. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4282. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4283. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4284. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4285. <text x="-15.24" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4286. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4287. </package>
  4288. <package name="C275-134X316">
  4289. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4290. grid 27.5 mm, outline 13.4 x 31.6 mm</description>
  4291. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  4292. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  4293. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  4294. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  4295. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4296. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4297. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4298. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4299. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  4300. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  4301. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  4302. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  4303. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4304. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4305. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4306. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4307. <text x="-15.24" y="6.985" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4308. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4309. </package>
  4310. <package name="C275-205X316">
  4311. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4312. grid 27.5 mm, outline 20.5 x 31.6 mm</description>
  4313. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  4314. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  4315. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  4316. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  4317. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4318. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4319. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4320. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4321. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4322. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4323. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4324. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4325. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4326. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4327. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4328. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4329. <text x="-15.24" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4330. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4331. </package>
  4332. <package name="C325-137X374">
  4333. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4334. grid 32.5 mm, outline 13.7 x 37.4 mm</description>
  4335. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4336. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4337. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4338. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4339. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4340. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4341. <wire x1="18.542" y1="6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4342. <wire x1="-18.542" y1="6.731" x2="-18.542" y2="-6.731" width="0.1524" layer="21"/>
  4343. <wire x1="-18.542" y1="-6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4344. <wire x1="18.542" y1="6.731" x2="-18.542" y2="6.731" width="0.1524" layer="21"/>
  4345. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4346. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4347. <text x="-18.2372" y="7.0612" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4348. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4349. </package>
  4350. <package name="C325-162X374">
  4351. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4352. grid 32.5 mm, outline 16.2 x 37.4 mm</description>
  4353. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4354. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4355. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4356. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4357. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4358. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4359. <wire x1="18.542" y1="8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4360. <wire x1="-18.542" y1="8.001" x2="-18.542" y2="-8.001" width="0.1524" layer="21"/>
  4361. <wire x1="-18.542" y1="-8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4362. <wire x1="18.542" y1="8.001" x2="-18.542" y2="8.001" width="0.1524" layer="21"/>
  4363. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4364. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4365. <text x="-18.3642" y="8.3312" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4366. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4367. </package>
  4368. <package name="C325-182X374">
  4369. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4370. grid 32.5 mm, outline 18.2 x 37.4 mm</description>
  4371. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4372. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4373. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4374. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4375. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4376. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4377. <wire x1="18.542" y1="9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4378. <wire x1="-18.542" y1="9.017" x2="-18.542" y2="-9.017" width="0.1524" layer="21"/>
  4379. <wire x1="-18.542" y1="-9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4380. <wire x1="18.542" y1="9.017" x2="-18.542" y2="9.017" width="0.1524" layer="21"/>
  4381. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4382. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4383. <text x="-18.3642" y="9.3472" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4384. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4385. </package>
  4386. <package name="C375-192X418">
  4387. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4388. grid 37.5 mm, outline 19.2 x 41.8 mm</description>
  4389. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  4390. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  4391. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  4392. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  4393. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4394. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4395. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4396. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4397. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4398. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4399. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4400. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4401. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4402. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4403. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4404. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4405. <text x="-20.447" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4406. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4407. </package>
  4408. <package name="C375-203X418">
  4409. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4410. grid 37.5 mm, outline 20.3 x 41.8 mm</description>
  4411. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  4412. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  4413. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  4414. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  4415. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4416. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4417. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4418. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4419. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4420. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4421. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4422. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4423. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4424. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4425. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4426. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4427. <text x="-20.32" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4428. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4429. </package>
  4430. <package name="C050-035X075">
  4431. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4432. grid 5 mm, outline 3.5 x 7.5 mm</description>
  4433. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4434. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4435. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4436. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4437. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4438. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4439. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  4440. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  4441. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  4442. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  4443. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4444. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4445. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4446. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4447. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4448. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4449. <text x="-3.556" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4450. <text x="-3.556" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4451. </package>
  4452. <package name="C375-155X418">
  4453. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4454. grid 37.5 mm, outline 15.5 x 41.8 mm</description>
  4455. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  4456. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  4457. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  4458. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  4459. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4460. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4461. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4462. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4463. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4464. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4465. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4466. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4467. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4468. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4469. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4470. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4471. <text x="-20.447" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4472. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4473. </package>
  4474. <package name="C075-063X106">
  4475. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4476. grid 7.5 mm, outline 6.3 x 10.6 mm</description>
  4477. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  4478. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  4479. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  4480. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  4481. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4482. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4483. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4484. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4485. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  4486. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  4487. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  4488. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  4489. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  4490. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  4491. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  4492. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  4493. <text x="-4.826" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4494. <text x="-0.635" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4495. </package>
  4496. <package name="C275-154X316">
  4497. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4498. grid 27.5 mm, outline 15.4 x 31.6 mm</description>
  4499. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  4500. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  4501. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  4502. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  4503. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4504. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4505. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4506. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4507. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4508. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4509. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4510. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4511. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4512. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4513. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4514. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4515. <text x="-15.24" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4516. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4517. </package>
  4518. <package name="C275-173X316">
  4519. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4520. grid 27.5 mm, outline 17.3 x 31.6 mm</description>
  4521. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  4522. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  4523. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  4524. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  4525. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4526. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4527. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4528. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4529. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4530. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4531. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4532. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4533. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4534. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4535. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4536. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4537. <text x="-15.24" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4538. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4539. </package>
  4540. <package name="C0402K">
  4541. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 reflow solder&lt;/b&gt;&lt;p&gt;
  4542. Metric Code Size 1005</description>
  4543. <wire x1="-0.425" y1="0.2" x2="0.425" y2="0.2" width="0.1016" layer="51"/>
  4544. <wire x1="0.425" y1="-0.2" x2="-0.425" y2="-0.2" width="0.1016" layer="51"/>
  4545. <smd name="1" x="-0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4546. <smd name="2" x="0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4547. <text x="-0.5" y="0.425" size="1.016" layer="25">&gt;NAME</text>
  4548. <text x="-0.5" y="-1.45" size="1.016" layer="27">&gt;VALUE</text>
  4549. <rectangle x1="-0.5" y1="-0.25" x2="-0.225" y2="0.25" layer="51"/>
  4550. <rectangle x1="0.225" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
  4551. </package>
  4552. <package name="C0603K">
  4553. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0603 reflow solder&lt;/b&gt;&lt;p&gt;
  4554. Metric Code Size 1608</description>
  4555. <wire x1="-0.725" y1="0.35" x2="0.725" y2="0.35" width="0.1016" layer="51"/>
  4556. <wire x1="0.725" y1="-0.35" x2="-0.725" y2="-0.35" width="0.1016" layer="51"/>
  4557. <smd name="1" x="-0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4558. <smd name="2" x="0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4559. <text x="-0.8" y="0.65" size="1.016" layer="25">&gt;NAME</text>
  4560. <text x="-0.8" y="-1.65" size="1.016" layer="27">&gt;VALUE</text>
  4561. <rectangle x1="-0.8" y1="-0.4" x2="-0.45" y2="0.4" layer="51"/>
  4562. <rectangle x1="0.45" y1="-0.4" x2="0.8" y2="0.4" layer="51"/>
  4563. </package>
  4564. <package name="C0805K">
  4565. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0805 reflow solder&lt;/b&gt;&lt;p&gt;
  4566. Metric Code Size 2012</description>
  4567. <wire x1="-0.925" y1="0.6" x2="0.925" y2="0.6" width="0.1016" layer="51"/>
  4568. <wire x1="0.925" y1="-0.6" x2="-0.925" y2="-0.6" width="0.1016" layer="51"/>
  4569. <smd name="1" x="-1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4570. <smd name="2" x="1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4571. <text x="-1" y="0.875" size="1.016" layer="25">&gt;NAME</text>
  4572. <text x="-1" y="-1.9" size="1.016" layer="27">&gt;VALUE</text>
  4573. <rectangle x1="-1" y1="-0.65" x2="-0.5" y2="0.65" layer="51"/>
  4574. <rectangle x1="0.5" y1="-0.65" x2="1" y2="0.65" layer="51"/>
  4575. </package>
  4576. <package name="C1206K">
  4577. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1206 reflow solder&lt;/b&gt;&lt;p&gt;
  4578. Metric Code Size 3216</description>
  4579. <wire x1="-1.525" y1="0.75" x2="1.525" y2="0.75" width="0.1016" layer="51"/>
  4580. <wire x1="1.525" y1="-0.75" x2="-1.525" y2="-0.75" width="0.1016" layer="51"/>
  4581. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4582. <smd name="2" x="1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4583. <text x="-1.6" y="1.1" size="1.016" layer="25">&gt;NAME</text>
  4584. <text x="-1.6" y="-2.1" size="1.016" layer="27">&gt;VALUE</text>
  4585. <rectangle x1="-1.6" y1="-0.8" x2="-1.1" y2="0.8" layer="51"/>
  4586. <rectangle x1="1.1" y1="-0.8" x2="1.6" y2="0.8" layer="51"/>
  4587. </package>
  4588. <package name="C1210K">
  4589. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1210 reflow solder&lt;/b&gt;&lt;p&gt;
  4590. Metric Code Size 3225</description>
  4591. <wire x1="-1.525" y1="1.175" x2="1.525" y2="1.175" width="0.1016" layer="51"/>
  4592. <wire x1="1.525" y1="-1.175" x2="-1.525" y2="-1.175" width="0.1016" layer="51"/>
  4593. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4594. <smd name="2" x="1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4595. <text x="-1.6" y="1.55" size="1.016" layer="25">&gt;NAME</text>
  4596. <text x="-1.6" y="-2.575" size="1.016" layer="27">&gt;VALUE</text>
  4597. <rectangle x1="-1.6" y1="-1.25" x2="-1.1" y2="1.25" layer="51"/>
  4598. <rectangle x1="1.1" y1="-1.25" x2="1.6" y2="1.25" layer="51"/>
  4599. </package>
  4600. <package name="C1812K">
  4601. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1812 reflow solder&lt;/b&gt;&lt;p&gt;
  4602. Metric Code Size 4532</description>
  4603. <wire x1="-2.175" y1="1.525" x2="2.175" y2="1.525" width="0.1016" layer="51"/>
  4604. <wire x1="2.175" y1="-1.525" x2="-2.175" y2="-1.525" width="0.1016" layer="51"/>
  4605. <smd name="1" x="-2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4606. <smd name="2" x="2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4607. <text x="-2.25" y="1.95" size="1.016" layer="25">&gt;NAME</text>
  4608. <text x="-2.25" y="-2.975" size="1.016" layer="27">&gt;VALUE</text>
  4609. <rectangle x1="-2.25" y1="-1.6" x2="-1.65" y2="1.6" layer="51"/>
  4610. <rectangle x1="1.65" y1="-1.6" x2="2.25" y2="1.6" layer="51"/>
  4611. </package>
  4612. <package name="C1825K">
  4613. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1825 reflow solder&lt;/b&gt;&lt;p&gt;
  4614. Metric Code Size 4564</description>
  4615. <wire x1="-1.525" y1="3.125" x2="1.525" y2="3.125" width="0.1016" layer="51"/>
  4616. <wire x1="1.525" y1="-3.125" x2="-1.525" y2="-3.125" width="0.1016" layer="51"/>
  4617. <smd name="1" x="-1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4618. <smd name="2" x="1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4619. <text x="-1.6" y="3.55" size="1.016" layer="25">&gt;NAME</text>
  4620. <text x="-1.6" y="-4.625" size="1.016" layer="27">&gt;VALUE</text>
  4621. <rectangle x1="-1.6" y1="-3.2" x2="-1.1" y2="3.2" layer="51"/>
  4622. <rectangle x1="1.1" y1="-3.2" x2="1.6" y2="3.2" layer="51"/>
  4623. </package>
  4624. <package name="C2220K">
  4625. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2220 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5650</description>
  4626. <wire x1="-2.725" y1="2.425" x2="2.725" y2="2.425" width="0.1016" layer="51"/>
  4627. <wire x1="2.725" y1="-2.425" x2="-2.725" y2="-2.425" width="0.1016" layer="51"/>
  4628. <smd name="1" x="-2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4629. <smd name="2" x="2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4630. <text x="-2.8" y="2.95" size="1.016" layer="25">&gt;NAME</text>
  4631. <text x="-2.8" y="-3.975" size="1.016" layer="27">&gt;VALUE</text>
  4632. <rectangle x1="-2.8" y1="-2.5" x2="-2.2" y2="2.5" layer="51"/>
  4633. <rectangle x1="2.2" y1="-2.5" x2="2.8" y2="2.5" layer="51"/>
  4634. </package>
  4635. <package name="C2225K">
  4636. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2225 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5664</description>
  4637. <wire x1="-2.725" y1="3.075" x2="2.725" y2="3.075" width="0.1016" layer="51"/>
  4638. <wire x1="2.725" y1="-3.075" x2="-2.725" y2="-3.075" width="0.1016" layer="51"/>
  4639. <smd name="1" x="-2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4640. <smd name="2" x="2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4641. <text x="-2.8" y="3.6" size="1.016" layer="25">&gt;NAME</text>
  4642. <text x="-2.8" y="-4.575" size="1.016" layer="27">&gt;VALUE</text>
  4643. <rectangle x1="-2.8" y1="-3.15" x2="-2.2" y2="3.15" layer="51"/>
  4644. <rectangle x1="2.2" y1="-3.15" x2="2.8" y2="3.15" layer="51"/>
  4645. </package>
  4646. <package name="HPC0201">
  4647. <description>&lt;b&gt; &lt;/b&gt;&lt;p&gt;
  4648. Source: http://www.vishay.com/docs/10129/hpc0201a.pdf</description>
  4649. <smd name="1" x="-0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4650. <smd name="2" x="0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4651. <text x="-0.75" y="0.74" size="1.27" layer="25">&gt;NAME</text>
  4652. <text x="-0.785" y="-1.865" size="1.27" layer="27">&gt;VALUE</text>
  4653. <rectangle x1="-0.305" y1="-0.15" x2="0.305" y2="0.15" layer="51"/>
  4654. </package>
  4655. <package name="C0201">
  4656. <description>Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf</description>
  4657. <smd name="1" x="-0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4658. <smd name="2" x="0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4659. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  4660. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  4661. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  4662. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  4663. <rectangle x1="-0.15" y1="0.1" x2="0.15" y2="0.15" layer="51"/>
  4664. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="-0.1" layer="51"/>
  4665. </package>
  4666. <package name="C1808">
  4667. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4668. Source: AVX .. aphvc.pdf</description>
  4669. <wire x1="-1.4732" y1="0.9502" x2="1.4732" y2="0.9502" width="0.1016" layer="51"/>
  4670. <wire x1="-1.4478" y1="-0.9502" x2="1.4732" y2="-0.9502" width="0.1016" layer="51"/>
  4671. <smd name="1" x="-1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4672. <smd name="2" x="1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4673. <text x="-2.233" y="1.827" size="1.27" layer="25">&gt;NAME</text>
  4674. <text x="-2.233" y="-2.842" size="1.27" layer="27">&gt;VALUE</text>
  4675. <rectangle x1="-2.275" y1="-1.015" x2="-1.225" y2="1.015" layer="51"/>
  4676. <rectangle x1="1.225" y1="-1.015" x2="2.275" y2="1.015" layer="51"/>
  4677. </package>
  4678. <package name="C3640">
  4679. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4680. Source: AVX .. aphvc.pdf</description>
  4681. <wire x1="-3.8322" y1="5.0496" x2="3.8322" y2="5.0496" width="0.1016" layer="51"/>
  4682. <wire x1="-3.8322" y1="-5.0496" x2="3.8322" y2="-5.0496" width="0.1016" layer="51"/>
  4683. <smd name="1" x="-4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4684. <smd name="2" x="4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4685. <text x="-4.647" y="6.465" size="1.27" layer="25">&gt;NAME</text>
  4686. <text x="-4.647" y="-7.255" size="1.27" layer="27">&gt;VALUE</text>
  4687. <rectangle x1="-4.57" y1="-5.1" x2="-3.05" y2="5.1" layer="51"/>
  4688. <rectangle x1="3.05" y1="-5.1" x2="4.5688" y2="5.1" layer="51"/>
  4689. </package>
  4690. <package name="C01005">
  4691. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  4692. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  4693. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  4694. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  4695. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  4696. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4697. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4698. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4699. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  4700. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  4701. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  4702. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  4703. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  4704. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  4705. </package>
  4706. </packages>
  4707. <symbols>
  4708. <symbol name="R-EU-1">
  4709. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  4710. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4711. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  4712. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4713. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  4714. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  4715. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  4716. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  4717. </symbol>
  4718. <symbol name="C-EU-1">
  4719. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  4720. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  4721. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  4722. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  4723. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  4724. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  4725. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  4726. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  4727. </symbol>
  4728. </symbols>
  4729. <devicesets>
  4730. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  4731. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  4732. <gates>
  4733. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  4734. </gates>
  4735. <devices>
  4736. <device name="R0402" package="R0402">
  4737. <connects>
  4738. <connect gate="G$1" pin="1" pad="1"/>
  4739. <connect gate="G$1" pin="2" pad="2"/>
  4740. </connects>
  4741. <technologies>
  4742. <technology name=""/>
  4743. </technologies>
  4744. </device>
  4745. <device name="R0603" package="R0603">
  4746. <connects>
  4747. <connect gate="G$1" pin="1" pad="1"/>
  4748. <connect gate="G$1" pin="2" pad="2"/>
  4749. </connects>
  4750. <technologies>
  4751. <technology name=""/>
  4752. </technologies>
  4753. </device>
  4754. <device name="R0805" package="R0805">
  4755. <connects>
  4756. <connect gate="G$1" pin="1" pad="1"/>
  4757. <connect gate="G$1" pin="2" pad="2"/>
  4758. </connects>
  4759. <technologies>
  4760. <technology name=""/>
  4761. </technologies>
  4762. </device>
  4763. <device name="R0805W" package="R0805W">
  4764. <connects>
  4765. <connect gate="G$1" pin="1" pad="1"/>
  4766. <connect gate="G$1" pin="2" pad="2"/>
  4767. </connects>
  4768. <technologies>
  4769. <technology name=""/>
  4770. </technologies>
  4771. </device>
  4772. <device name="R1206" package="R1206">
  4773. <connects>
  4774. <connect gate="G$1" pin="1" pad="1"/>
  4775. <connect gate="G$1" pin="2" pad="2"/>
  4776. </connects>
  4777. <technologies>
  4778. <technology name=""/>
  4779. </technologies>
  4780. </device>
  4781. <device name="R1206W" package="R1206W">
  4782. <connects>
  4783. <connect gate="G$1" pin="1" pad="1"/>
  4784. <connect gate="G$1" pin="2" pad="2"/>
  4785. </connects>
  4786. <technologies>
  4787. <technology name=""/>
  4788. </technologies>
  4789. </device>
  4790. <device name="R1210" package="R1210">
  4791. <connects>
  4792. <connect gate="G$1" pin="1" pad="1"/>
  4793. <connect gate="G$1" pin="2" pad="2"/>
  4794. </connects>
  4795. <technologies>
  4796. <technology name=""/>
  4797. </technologies>
  4798. </device>
  4799. <device name="R1210W" package="R1210W">
  4800. <connects>
  4801. <connect gate="G$1" pin="1" pad="1"/>
  4802. <connect gate="G$1" pin="2" pad="2"/>
  4803. </connects>
  4804. <technologies>
  4805. <technology name=""/>
  4806. </technologies>
  4807. </device>
  4808. <device name="R2010" package="R2010">
  4809. <connects>
  4810. <connect gate="G$1" pin="1" pad="1"/>
  4811. <connect gate="G$1" pin="2" pad="2"/>
  4812. </connects>
  4813. <technologies>
  4814. <technology name=""/>
  4815. </technologies>
  4816. </device>
  4817. <device name="R2010W" package="R2010W">
  4818. <connects>
  4819. <connect gate="G$1" pin="1" pad="1"/>
  4820. <connect gate="G$1" pin="2" pad="2"/>
  4821. </connects>
  4822. <technologies>
  4823. <technology name=""/>
  4824. </technologies>
  4825. </device>
  4826. <device name="R2012" package="R2012">
  4827. <connects>
  4828. <connect gate="G$1" pin="1" pad="1"/>
  4829. <connect gate="G$1" pin="2" pad="2"/>
  4830. </connects>
  4831. <technologies>
  4832. <technology name=""/>
  4833. </technologies>
  4834. </device>
  4835. <device name="R2012W" package="R2012W">
  4836. <connects>
  4837. <connect gate="G$1" pin="1" pad="1"/>
  4838. <connect gate="G$1" pin="2" pad="2"/>
  4839. </connects>
  4840. <technologies>
  4841. <technology name=""/>
  4842. </technologies>
  4843. </device>
  4844. <device name="R2512" package="R2512">
  4845. <connects>
  4846. <connect gate="G$1" pin="1" pad="1"/>
  4847. <connect gate="G$1" pin="2" pad="2"/>
  4848. </connects>
  4849. <technologies>
  4850. <technology name=""/>
  4851. </technologies>
  4852. </device>
  4853. <device name="R2512W" package="R2512W">
  4854. <connects>
  4855. <connect gate="G$1" pin="1" pad="1"/>
  4856. <connect gate="G$1" pin="2" pad="2"/>
  4857. </connects>
  4858. <technologies>
  4859. <technology name=""/>
  4860. </technologies>
  4861. </device>
  4862. <device name="R3216" package="R3216">
  4863. <connects>
  4864. <connect gate="G$1" pin="1" pad="1"/>
  4865. <connect gate="G$1" pin="2" pad="2"/>
  4866. </connects>
  4867. <technologies>
  4868. <technology name=""/>
  4869. </technologies>
  4870. </device>
  4871. <device name="R3216W" package="R3216W">
  4872. <connects>
  4873. <connect gate="G$1" pin="1" pad="1"/>
  4874. <connect gate="G$1" pin="2" pad="2"/>
  4875. </connects>
  4876. <technologies>
  4877. <technology name=""/>
  4878. </technologies>
  4879. </device>
  4880. <device name="R3225" package="R3225">
  4881. <connects>
  4882. <connect gate="G$1" pin="1" pad="1"/>
  4883. <connect gate="G$1" pin="2" pad="2"/>
  4884. </connects>
  4885. <technologies>
  4886. <technology name=""/>
  4887. </technologies>
  4888. </device>
  4889. <device name="R3225W" package="R3225W">
  4890. <connects>
  4891. <connect gate="G$1" pin="1" pad="1"/>
  4892. <connect gate="G$1" pin="2" pad="2"/>
  4893. </connects>
  4894. <technologies>
  4895. <technology name=""/>
  4896. </technologies>
  4897. </device>
  4898. <device name="R5025" package="R5025">
  4899. <connects>
  4900. <connect gate="G$1" pin="1" pad="1"/>
  4901. <connect gate="G$1" pin="2" pad="2"/>
  4902. </connects>
  4903. <technologies>
  4904. <technology name=""/>
  4905. </technologies>
  4906. </device>
  4907. <device name="R5025W" package="R5025W">
  4908. <connects>
  4909. <connect gate="G$1" pin="1" pad="1"/>
  4910. <connect gate="G$1" pin="2" pad="2"/>
  4911. </connects>
  4912. <technologies>
  4913. <technology name=""/>
  4914. </technologies>
  4915. </device>
  4916. <device name="R6332" package="R6332">
  4917. <connects>
  4918. <connect gate="G$1" pin="1" pad="1"/>
  4919. <connect gate="G$1" pin="2" pad="2"/>
  4920. </connects>
  4921. <technologies>
  4922. <technology name=""/>
  4923. </technologies>
  4924. </device>
  4925. <device name="R6332W" package="R6332W">
  4926. <connects>
  4927. <connect gate="G$1" pin="1" pad="1"/>
  4928. <connect gate="G$1" pin="2" pad="2"/>
  4929. </connects>
  4930. <technologies>
  4931. <technology name=""/>
  4932. </technologies>
  4933. </device>
  4934. <device name="M0805" package="M0805">
  4935. <connects>
  4936. <connect gate="G$1" pin="1" pad="1"/>
  4937. <connect gate="G$1" pin="2" pad="2"/>
  4938. </connects>
  4939. <technologies>
  4940. <technology name=""/>
  4941. </technologies>
  4942. </device>
  4943. <device name="M1206" package="M1206">
  4944. <connects>
  4945. <connect gate="G$1" pin="1" pad="1"/>
  4946. <connect gate="G$1" pin="2" pad="2"/>
  4947. </connects>
  4948. <technologies>
  4949. <technology name=""/>
  4950. </technologies>
  4951. </device>
  4952. <device name="M1406" package="M1406">
  4953. <connects>
  4954. <connect gate="G$1" pin="1" pad="1"/>
  4955. <connect gate="G$1" pin="2" pad="2"/>
  4956. </connects>
  4957. <technologies>
  4958. <technology name=""/>
  4959. </technologies>
  4960. </device>
  4961. <device name="M2012" package="M2012">
  4962. <connects>
  4963. <connect gate="G$1" pin="1" pad="1"/>
  4964. <connect gate="G$1" pin="2" pad="2"/>
  4965. </connects>
  4966. <technologies>
  4967. <technology name=""/>
  4968. </technologies>
  4969. </device>
  4970. <device name="M2309" package="M2309">
  4971. <connects>
  4972. <connect gate="G$1" pin="1" pad="1"/>
  4973. <connect gate="G$1" pin="2" pad="2"/>
  4974. </connects>
  4975. <technologies>
  4976. <technology name=""/>
  4977. </technologies>
  4978. </device>
  4979. <device name="M3216" package="M3216">
  4980. <connects>
  4981. <connect gate="G$1" pin="1" pad="1"/>
  4982. <connect gate="G$1" pin="2" pad="2"/>
  4983. </connects>
  4984. <technologies>
  4985. <technology name=""/>
  4986. </technologies>
  4987. </device>
  4988. <device name="M3516" package="M3516">
  4989. <connects>
  4990. <connect gate="G$1" pin="1" pad="1"/>
  4991. <connect gate="G$1" pin="2" pad="2"/>
  4992. </connects>
  4993. <technologies>
  4994. <technology name=""/>
  4995. </technologies>
  4996. </device>
  4997. <device name="M5923" package="M5923">
  4998. <connects>
  4999. <connect gate="G$1" pin="1" pad="1"/>
  5000. <connect gate="G$1" pin="2" pad="2"/>
  5001. </connects>
  5002. <technologies>
  5003. <technology name=""/>
  5004. </technologies>
  5005. </device>
  5006. <device name="0204/5" package="0204/5">
  5007. <connects>
  5008. <connect gate="G$1" pin="1" pad="1"/>
  5009. <connect gate="G$1" pin="2" pad="2"/>
  5010. </connects>
  5011. <technologies>
  5012. <technology name=""/>
  5013. </technologies>
  5014. </device>
  5015. <device name="0204/7" package="0204/7">
  5016. <connects>
  5017. <connect gate="G$1" pin="1" pad="1"/>
  5018. <connect gate="G$1" pin="2" pad="2"/>
  5019. </connects>
  5020. <technologies>
  5021. <technology name=""/>
  5022. </technologies>
  5023. </device>
  5024. <device name="0204/2V" package="0204V">
  5025. <connects>
  5026. <connect gate="G$1" pin="1" pad="1"/>
  5027. <connect gate="G$1" pin="2" pad="2"/>
  5028. </connects>
  5029. <technologies>
  5030. <technology name=""/>
  5031. </technologies>
  5032. </device>
  5033. <device name="0207/10" package="0207/10">
  5034. <connects>
  5035. <connect gate="G$1" pin="1" pad="1"/>
  5036. <connect gate="G$1" pin="2" pad="2"/>
  5037. </connects>
  5038. <technologies>
  5039. <technology name=""/>
  5040. </technologies>
  5041. </device>
  5042. <device name="0207/12" package="0207/12">
  5043. <connects>
  5044. <connect gate="G$1" pin="1" pad="1"/>
  5045. <connect gate="G$1" pin="2" pad="2"/>
  5046. </connects>
  5047. <technologies>
  5048. <technology name=""/>
  5049. </technologies>
  5050. </device>
  5051. <device name="0207/15" package="0207/15">
  5052. <connects>
  5053. <connect gate="G$1" pin="1" pad="1"/>
  5054. <connect gate="G$1" pin="2" pad="2"/>
  5055. </connects>
  5056. <technologies>
  5057. <technology name=""/>
  5058. </technologies>
  5059. </device>
  5060. <device name="0207/2V" package="0207/2V">
  5061. <connects>
  5062. <connect gate="G$1" pin="1" pad="1"/>
  5063. <connect gate="G$1" pin="2" pad="2"/>
  5064. </connects>
  5065. <technologies>
  5066. <technology name=""/>
  5067. </technologies>
  5068. </device>
  5069. <device name="0207/5V" package="0207/5V">
  5070. <connects>
  5071. <connect gate="G$1" pin="1" pad="1"/>
  5072. <connect gate="G$1" pin="2" pad="2"/>
  5073. </connects>
  5074. <technologies>
  5075. <technology name=""/>
  5076. </technologies>
  5077. </device>
  5078. <device name="0207/7" package="0207/7">
  5079. <connects>
  5080. <connect gate="G$1" pin="1" pad="1"/>
  5081. <connect gate="G$1" pin="2" pad="2"/>
  5082. </connects>
  5083. <technologies>
  5084. <technology name=""/>
  5085. </technologies>
  5086. </device>
  5087. <device name="0309/10" package="0309/10">
  5088. <connects>
  5089. <connect gate="G$1" pin="1" pad="1"/>
  5090. <connect gate="G$1" pin="2" pad="2"/>
  5091. </connects>
  5092. <technologies>
  5093. <technology name=""/>
  5094. </technologies>
  5095. </device>
  5096. <device name="0309/12" package="0309/12">
  5097. <connects>
  5098. <connect gate="G$1" pin="1" pad="1"/>
  5099. <connect gate="G$1" pin="2" pad="2"/>
  5100. </connects>
  5101. <technologies>
  5102. <technology name=""/>
  5103. </technologies>
  5104. </device>
  5105. <device name="0309/V" package="0309V">
  5106. <connects>
  5107. <connect gate="G$1" pin="1" pad="1"/>
  5108. <connect gate="G$1" pin="2" pad="2"/>
  5109. </connects>
  5110. <technologies>
  5111. <technology name=""/>
  5112. </technologies>
  5113. </device>
  5114. <device name="0411/12" package="0411/12">
  5115. <connects>
  5116. <connect gate="G$1" pin="1" pad="1"/>
  5117. <connect gate="G$1" pin="2" pad="2"/>
  5118. </connects>
  5119. <technologies>
  5120. <technology name=""/>
  5121. </technologies>
  5122. </device>
  5123. <device name="0411/15" package="0411/15">
  5124. <connects>
  5125. <connect gate="G$1" pin="1" pad="1"/>
  5126. <connect gate="G$1" pin="2" pad="2"/>
  5127. </connects>
  5128. <technologies>
  5129. <technology name=""/>
  5130. </technologies>
  5131. </device>
  5132. <device name="0411/3V" package="0411V">
  5133. <connects>
  5134. <connect gate="G$1" pin="1" pad="1"/>
  5135. <connect gate="G$1" pin="2" pad="2"/>
  5136. </connects>
  5137. <technologies>
  5138. <technology name=""/>
  5139. </technologies>
  5140. </device>
  5141. <device name="0414/15" package="0414/15">
  5142. <connects>
  5143. <connect gate="G$1" pin="1" pad="1"/>
  5144. <connect gate="G$1" pin="2" pad="2"/>
  5145. </connects>
  5146. <technologies>
  5147. <technology name=""/>
  5148. </technologies>
  5149. </device>
  5150. <device name="0414/5V" package="0414V">
  5151. <connects>
  5152. <connect gate="G$1" pin="1" pad="1"/>
  5153. <connect gate="G$1" pin="2" pad="2"/>
  5154. </connects>
  5155. <technologies>
  5156. <technology name=""/>
  5157. </technologies>
  5158. </device>
  5159. <device name="0617/17" package="0617/17">
  5160. <connects>
  5161. <connect gate="G$1" pin="1" pad="1"/>
  5162. <connect gate="G$1" pin="2" pad="2"/>
  5163. </connects>
  5164. <technologies>
  5165. <technology name=""/>
  5166. </technologies>
  5167. </device>
  5168. <device name="0617/22" package="0617/22">
  5169. <connects>
  5170. <connect gate="G$1" pin="1" pad="1"/>
  5171. <connect gate="G$1" pin="2" pad="2"/>
  5172. </connects>
  5173. <technologies>
  5174. <technology name=""/>
  5175. </technologies>
  5176. </device>
  5177. <device name="0617/5V" package="0617V">
  5178. <connects>
  5179. <connect gate="G$1" pin="1" pad="1"/>
  5180. <connect gate="G$1" pin="2" pad="2"/>
  5181. </connects>
  5182. <technologies>
  5183. <technology name=""/>
  5184. </technologies>
  5185. </device>
  5186. <device name="0922/22" package="0922/22">
  5187. <connects>
  5188. <connect gate="G$1" pin="1" pad="1"/>
  5189. <connect gate="G$1" pin="2" pad="2"/>
  5190. </connects>
  5191. <technologies>
  5192. <technology name=""/>
  5193. </technologies>
  5194. </device>
  5195. <device name="0613/5V" package="P0613V">
  5196. <connects>
  5197. <connect gate="G$1" pin="1" pad="1"/>
  5198. <connect gate="G$1" pin="2" pad="2"/>
  5199. </connects>
  5200. <technologies>
  5201. <technology name=""/>
  5202. </technologies>
  5203. </device>
  5204. <device name="0613/15" package="P0613/15">
  5205. <connects>
  5206. <connect gate="G$1" pin="1" pad="1"/>
  5207. <connect gate="G$1" pin="2" pad="2"/>
  5208. </connects>
  5209. <technologies>
  5210. <technology name=""/>
  5211. </technologies>
  5212. </device>
  5213. <device name="0817/22" package="P0817/22">
  5214. <connects>
  5215. <connect gate="G$1" pin="1" pad="1"/>
  5216. <connect gate="G$1" pin="2" pad="2"/>
  5217. </connects>
  5218. <technologies>
  5219. <technology name=""/>
  5220. </technologies>
  5221. </device>
  5222. <device name="0817/7V" package="P0817V">
  5223. <connects>
  5224. <connect gate="G$1" pin="1" pad="1"/>
  5225. <connect gate="G$1" pin="2" pad="2"/>
  5226. </connects>
  5227. <technologies>
  5228. <technology name=""/>
  5229. </technologies>
  5230. </device>
  5231. <device name="V234/12" package="V234/12">
  5232. <connects>
  5233. <connect gate="G$1" pin="1" pad="1"/>
  5234. <connect gate="G$1" pin="2" pad="2"/>
  5235. </connects>
  5236. <technologies>
  5237. <technology name=""/>
  5238. </technologies>
  5239. </device>
  5240. <device name="V235/17" package="V235/17">
  5241. <connects>
  5242. <connect gate="G$1" pin="1" pad="1"/>
  5243. <connect gate="G$1" pin="2" pad="2"/>
  5244. </connects>
  5245. <technologies>
  5246. <technology name=""/>
  5247. </technologies>
  5248. </device>
  5249. <device name="V526-0" package="V526-0">
  5250. <connects>
  5251. <connect gate="G$1" pin="1" pad="1"/>
  5252. <connect gate="G$1" pin="2" pad="2"/>
  5253. </connects>
  5254. <technologies>
  5255. <technology name=""/>
  5256. </technologies>
  5257. </device>
  5258. <device name="MELF0102R" package="MINI_MELF-0102R">
  5259. <connects>
  5260. <connect gate="G$1" pin="1" pad="1"/>
  5261. <connect gate="G$1" pin="2" pad="2"/>
  5262. </connects>
  5263. <technologies>
  5264. <technology name=""/>
  5265. </technologies>
  5266. </device>
  5267. <device name="MELF0102W" package="MINI_MELF-0102W">
  5268. <connects>
  5269. <connect gate="G$1" pin="1" pad="1"/>
  5270. <connect gate="G$1" pin="2" pad="2"/>
  5271. </connects>
  5272. <technologies>
  5273. <technology name=""/>
  5274. </technologies>
  5275. </device>
  5276. <device name="MELF0204R" package="MINI_MELF-0204R">
  5277. <connects>
  5278. <connect gate="G$1" pin="1" pad="1"/>
  5279. <connect gate="G$1" pin="2" pad="2"/>
  5280. </connects>
  5281. <technologies>
  5282. <technology name=""/>
  5283. </technologies>
  5284. </device>
  5285. <device name="MELF0204W" package="MINI_MELF-0204W">
  5286. <connects>
  5287. <connect gate="G$1" pin="1" pad="1"/>
  5288. <connect gate="G$1" pin="2" pad="2"/>
  5289. </connects>
  5290. <technologies>
  5291. <technology name=""/>
  5292. </technologies>
  5293. </device>
  5294. <device name="MELF0207R" package="MINI_MELF-0207R">
  5295. <connects>
  5296. <connect gate="G$1" pin="1" pad="1"/>
  5297. <connect gate="G$1" pin="2" pad="2"/>
  5298. </connects>
  5299. <technologies>
  5300. <technology name=""/>
  5301. </technologies>
  5302. </device>
  5303. <device name="MELF0207W" package="MINI_MELF-0207W">
  5304. <connects>
  5305. <connect gate="G$1" pin="1" pad="1"/>
  5306. <connect gate="G$1" pin="2" pad="2"/>
  5307. </connects>
  5308. <technologies>
  5309. <technology name=""/>
  5310. </technologies>
  5311. </device>
  5312. <device name="0922V" package="0922V">
  5313. <connects>
  5314. <connect gate="G$1" pin="1" pad="1"/>
  5315. <connect gate="G$1" pin="2" pad="2"/>
  5316. </connects>
  5317. <technologies>
  5318. <technology name=""/>
  5319. </technologies>
  5320. </device>
  5321. <device name="RDH/15" package="RDH/15">
  5322. <connects>
  5323. <connect gate="G$1" pin="1" pad="1"/>
  5324. <connect gate="G$1" pin="2" pad="2"/>
  5325. </connects>
  5326. <technologies>
  5327. <technology name=""/>
  5328. </technologies>
  5329. </device>
  5330. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  5331. <connects>
  5332. <connect gate="G$1" pin="1" pad="1"/>
  5333. <connect gate="G$1" pin="2" pad="2"/>
  5334. </connects>
  5335. <technologies>
  5336. <technology name=""/>
  5337. </technologies>
  5338. </device>
  5339. <device name="R0201" package="R0201">
  5340. <connects>
  5341. <connect gate="G$1" pin="1" pad="1"/>
  5342. <connect gate="G$1" pin="2" pad="2"/>
  5343. </connects>
  5344. <technologies>
  5345. <technology name=""/>
  5346. </technologies>
  5347. </device>
  5348. <device name="VTA52" package="VTA52">
  5349. <connects>
  5350. <connect gate="G$1" pin="1" pad="1"/>
  5351. <connect gate="G$1" pin="2" pad="2"/>
  5352. </connects>
  5353. <technologies>
  5354. <technology name=""/>
  5355. </technologies>
  5356. </device>
  5357. <device name="VTA53" package="VTA53">
  5358. <connects>
  5359. <connect gate="G$1" pin="1" pad="1"/>
  5360. <connect gate="G$1" pin="2" pad="2"/>
  5361. </connects>
  5362. <technologies>
  5363. <technology name=""/>
  5364. </technologies>
  5365. </device>
  5366. <device name="VTA54" package="VTA54">
  5367. <connects>
  5368. <connect gate="G$1" pin="1" pad="1"/>
  5369. <connect gate="G$1" pin="2" pad="2"/>
  5370. </connects>
  5371. <technologies>
  5372. <technology name=""/>
  5373. </technologies>
  5374. </device>
  5375. <device name="VTA55" package="VTA55">
  5376. <connects>
  5377. <connect gate="G$1" pin="1" pad="1"/>
  5378. <connect gate="G$1" pin="2" pad="2"/>
  5379. </connects>
  5380. <technologies>
  5381. <technology name=""/>
  5382. </technologies>
  5383. </device>
  5384. <device name="VTA56" package="VTA56">
  5385. <connects>
  5386. <connect gate="G$1" pin="1" pad="1"/>
  5387. <connect gate="G$1" pin="2" pad="2"/>
  5388. </connects>
  5389. <technologies>
  5390. <technology name=""/>
  5391. </technologies>
  5392. </device>
  5393. <device name="VMTA55" package="VMTA55">
  5394. <connects>
  5395. <connect gate="G$1" pin="1" pad="1"/>
  5396. <connect gate="G$1" pin="2" pad="2"/>
  5397. </connects>
  5398. <technologies>
  5399. <technology name=""/>
  5400. </technologies>
  5401. </device>
  5402. <device name="VMTB60" package="VMTB60">
  5403. <connects>
  5404. <connect gate="G$1" pin="1" pad="1"/>
  5405. <connect gate="G$1" pin="2" pad="2"/>
  5406. </connects>
  5407. <technologies>
  5408. <technology name=""/>
  5409. </technologies>
  5410. </device>
  5411. <device name="R4527" package="R4527">
  5412. <connects>
  5413. <connect gate="G$1" pin="1" pad="1"/>
  5414. <connect gate="G$1" pin="2" pad="2"/>
  5415. </connects>
  5416. <technologies>
  5417. <technology name=""/>
  5418. </technologies>
  5419. </device>
  5420. <device name="WSC0001" package="WSC0001">
  5421. <connects>
  5422. <connect gate="G$1" pin="1" pad="1"/>
  5423. <connect gate="G$1" pin="2" pad="2"/>
  5424. </connects>
  5425. <technologies>
  5426. <technology name=""/>
  5427. </technologies>
  5428. </device>
  5429. <device name="WSC0002" package="WSC0002">
  5430. <connects>
  5431. <connect gate="G$1" pin="1" pad="1"/>
  5432. <connect gate="G$1" pin="2" pad="2"/>
  5433. </connects>
  5434. <technologies>
  5435. <technology name=""/>
  5436. </technologies>
  5437. </device>
  5438. <device name="WSC01/2" package="WSC01/2">
  5439. <connects>
  5440. <connect gate="G$1" pin="1" pad="1"/>
  5441. <connect gate="G$1" pin="2" pad="2"/>
  5442. </connects>
  5443. <technologies>
  5444. <technology name=""/>
  5445. </technologies>
  5446. </device>
  5447. <device name="WSC2515" package="WSC2515">
  5448. <connects>
  5449. <connect gate="G$1" pin="1" pad="1"/>
  5450. <connect gate="G$1" pin="2" pad="2"/>
  5451. </connects>
  5452. <technologies>
  5453. <technology name=""/>
  5454. </technologies>
  5455. </device>
  5456. <device name="WSC4527" package="WSC4527">
  5457. <connects>
  5458. <connect gate="G$1" pin="1" pad="1"/>
  5459. <connect gate="G$1" pin="2" pad="2"/>
  5460. </connects>
  5461. <technologies>
  5462. <technology name=""/>
  5463. </technologies>
  5464. </device>
  5465. <device name="WSC6927" package="WSC6927">
  5466. <connects>
  5467. <connect gate="G$1" pin="1" pad="1"/>
  5468. <connect gate="G$1" pin="2" pad="2"/>
  5469. </connects>
  5470. <technologies>
  5471. <technology name=""/>
  5472. </technologies>
  5473. </device>
  5474. <device name="R1218" package="R1218">
  5475. <connects>
  5476. <connect gate="G$1" pin="1" pad="1"/>
  5477. <connect gate="G$1" pin="2" pad="2"/>
  5478. </connects>
  5479. <technologies>
  5480. <technology name=""/>
  5481. </technologies>
  5482. </device>
  5483. <device name="1812X7R" package="1812X7R">
  5484. <connects>
  5485. <connect gate="G$1" pin="1" pad="1"/>
  5486. <connect gate="G$1" pin="2" pad="2"/>
  5487. </connects>
  5488. <technologies>
  5489. <technology name=""/>
  5490. </technologies>
  5491. </device>
  5492. <device name="PRL1632" package="PRL1632">
  5493. <connects>
  5494. <connect gate="G$1" pin="1" pad="1"/>
  5495. <connect gate="G$1" pin="2" pad="2"/>
  5496. </connects>
  5497. <technologies>
  5498. <technology name=""/>
  5499. </technologies>
  5500. </device>
  5501. <device name="01005" package="R01005">
  5502. <connects>
  5503. <connect gate="G$1" pin="1" pad="1"/>
  5504. <connect gate="G$1" pin="2" pad="2"/>
  5505. </connects>
  5506. <technologies>
  5507. <technology name=""/>
  5508. </technologies>
  5509. </device>
  5510. </devices>
  5511. </deviceset>
  5512. <deviceset name="C-EU" prefix="C" uservalue="yes">
  5513. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;, European symbol</description>
  5514. <gates>
  5515. <gate name="G$1" symbol="C-EU-1" x="0" y="0"/>
  5516. </gates>
  5517. <devices>
  5518. <device name="C0402" package="C0402">
  5519. <connects>
  5520. <connect gate="G$1" pin="1" pad="1"/>
  5521. <connect gate="G$1" pin="2" pad="2"/>
  5522. </connects>
  5523. <technologies>
  5524. <technology name=""/>
  5525. </technologies>
  5526. </device>
  5527. <device name="C0504" package="C0504">
  5528. <connects>
  5529. <connect gate="G$1" pin="1" pad="1"/>
  5530. <connect gate="G$1" pin="2" pad="2"/>
  5531. </connects>
  5532. <technologies>
  5533. <technology name=""/>
  5534. </technologies>
  5535. </device>
  5536. <device name="C0603" package="C0603">
  5537. <connects>
  5538. <connect gate="G$1" pin="1" pad="1"/>
  5539. <connect gate="G$1" pin="2" pad="2"/>
  5540. </connects>
  5541. <technologies>
  5542. <technology name=""/>
  5543. </technologies>
  5544. </device>
  5545. <device name="C0805" package="C0805">
  5546. <connects>
  5547. <connect gate="G$1" pin="1" pad="1"/>
  5548. <connect gate="G$1" pin="2" pad="2"/>
  5549. </connects>
  5550. <technologies>
  5551. <technology name=""/>
  5552. </technologies>
  5553. </device>
  5554. <device name="C1206" package="C1206">
  5555. <connects>
  5556. <connect gate="G$1" pin="1" pad="1"/>
  5557. <connect gate="G$1" pin="2" pad="2"/>
  5558. </connects>
  5559. <technologies>
  5560. <technology name=""/>
  5561. </technologies>
  5562. </device>
  5563. <device name="C1210" package="C1210">
  5564. <connects>
  5565. <connect gate="G$1" pin="1" pad="1"/>
  5566. <connect gate="G$1" pin="2" pad="2"/>
  5567. </connects>
  5568. <technologies>
  5569. <technology name=""/>
  5570. </technologies>
  5571. </device>
  5572. <device name="C1310" package="C1310">
  5573. <connects>
  5574. <connect gate="G$1" pin="1" pad="1"/>
  5575. <connect gate="G$1" pin="2" pad="2"/>
  5576. </connects>
  5577. <technologies>
  5578. <technology name=""/>
  5579. </technologies>
  5580. </device>
  5581. <device name="C1608" package="C1608">
  5582. <connects>
  5583. <connect gate="G$1" pin="1" pad="1"/>
  5584. <connect gate="G$1" pin="2" pad="2"/>
  5585. </connects>
  5586. <technologies>
  5587. <technology name=""/>
  5588. </technologies>
  5589. </device>
  5590. <device name="C1812" package="C1812">
  5591. <connects>
  5592. <connect gate="G$1" pin="1" pad="1"/>
  5593. <connect gate="G$1" pin="2" pad="2"/>
  5594. </connects>
  5595. <technologies>
  5596. <technology name=""/>
  5597. </technologies>
  5598. </device>
  5599. <device name="C1825" package="C1825">
  5600. <connects>
  5601. <connect gate="G$1" pin="1" pad="1"/>
  5602. <connect gate="G$1" pin="2" pad="2"/>
  5603. </connects>
  5604. <technologies>
  5605. <technology name=""/>
  5606. </technologies>
  5607. </device>
  5608. <device name="C2012" package="C2012">
  5609. <connects>
  5610. <connect gate="G$1" pin="1" pad="1"/>
  5611. <connect gate="G$1" pin="2" pad="2"/>
  5612. </connects>
  5613. <technologies>
  5614. <technology name=""/>
  5615. </technologies>
  5616. </device>
  5617. <device name="C3216" package="C3216">
  5618. <connects>
  5619. <connect gate="G$1" pin="1" pad="1"/>
  5620. <connect gate="G$1" pin="2" pad="2"/>
  5621. </connects>
  5622. <technologies>
  5623. <technology name=""/>
  5624. </technologies>
  5625. </device>
  5626. <device name="C3225" package="C3225">
  5627. <connects>
  5628. <connect gate="G$1" pin="1" pad="1"/>
  5629. <connect gate="G$1" pin="2" pad="2"/>
  5630. </connects>
  5631. <technologies>
  5632. <technology name=""/>
  5633. </technologies>
  5634. </device>
  5635. <device name="C4532" package="C4532">
  5636. <connects>
  5637. <connect gate="G$1" pin="1" pad="1"/>
  5638. <connect gate="G$1" pin="2" pad="2"/>
  5639. </connects>
  5640. <technologies>
  5641. <technology name=""/>
  5642. </technologies>
  5643. </device>
  5644. <device name="C4564" package="C4564">
  5645. <connects>
  5646. <connect gate="G$1" pin="1" pad="1"/>
  5647. <connect gate="G$1" pin="2" pad="2"/>
  5648. </connects>
  5649. <technologies>
  5650. <technology name=""/>
  5651. </technologies>
  5652. </device>
  5653. <device name="025-024X044" package="C025-024X044">
  5654. <connects>
  5655. <connect gate="G$1" pin="1" pad="1"/>
  5656. <connect gate="G$1" pin="2" pad="2"/>
  5657. </connects>
  5658. <technologies>
  5659. <technology name=""/>
  5660. </technologies>
  5661. </device>
  5662. <device name="025-025X050" package="C025-025X050">
  5663. <connects>
  5664. <connect gate="G$1" pin="1" pad="1"/>
  5665. <connect gate="G$1" pin="2" pad="2"/>
  5666. </connects>
  5667. <technologies>
  5668. <technology name=""/>
  5669. </technologies>
  5670. </device>
  5671. <device name="025-030X050" package="C025-030X050">
  5672. <connects>
  5673. <connect gate="G$1" pin="1" pad="1"/>
  5674. <connect gate="G$1" pin="2" pad="2"/>
  5675. </connects>
  5676. <technologies>
  5677. <technology name=""/>
  5678. </technologies>
  5679. </device>
  5680. <device name="025-040X050" package="C025-040X050">
  5681. <connects>
  5682. <connect gate="G$1" pin="1" pad="1"/>
  5683. <connect gate="G$1" pin="2" pad="2"/>
  5684. </connects>
  5685. <technologies>
  5686. <technology name=""/>
  5687. </technologies>
  5688. </device>
  5689. <device name="025-050X050" package="C025-050X050">
  5690. <connects>
  5691. <connect gate="G$1" pin="1" pad="1"/>
  5692. <connect gate="G$1" pin="2" pad="2"/>
  5693. </connects>
  5694. <technologies>
  5695. <technology name=""/>
  5696. </technologies>
  5697. </device>
  5698. <device name="025-060X050" package="C025-060X050">
  5699. <connects>
  5700. <connect gate="G$1" pin="1" pad="1"/>
  5701. <connect gate="G$1" pin="2" pad="2"/>
  5702. </connects>
  5703. <technologies>
  5704. <technology name=""/>
  5705. </technologies>
  5706. </device>
  5707. <device name="C025_050-024X070" package="C025_050-024X070">
  5708. <connects>
  5709. <connect gate="G$1" pin="1" pad="1"/>
  5710. <connect gate="G$1" pin="2" pad="2"/>
  5711. </connects>
  5712. <technologies>
  5713. <technology name=""/>
  5714. </technologies>
  5715. </device>
  5716. <device name="025_050-025X075" package="C025_050-025X075">
  5717. <connects>
  5718. <connect gate="G$1" pin="1" pad="1"/>
  5719. <connect gate="G$1" pin="2" pad="2"/>
  5720. </connects>
  5721. <technologies>
  5722. <technology name=""/>
  5723. </technologies>
  5724. </device>
  5725. <device name="025_050-035X075" package="C025_050-035X075">
  5726. <connects>
  5727. <connect gate="G$1" pin="1" pad="1"/>
  5728. <connect gate="G$1" pin="2" pad="2"/>
  5729. </connects>
  5730. <technologies>
  5731. <technology name=""/>
  5732. </technologies>
  5733. </device>
  5734. <device name="025_050-045X075" package="C025_050-045X075">
  5735. <connects>
  5736. <connect gate="G$1" pin="1" pad="1"/>
  5737. <connect gate="G$1" pin="2" pad="2"/>
  5738. </connects>
  5739. <technologies>
  5740. <technology name=""/>
  5741. </technologies>
  5742. </device>
  5743. <device name="025_050-055X075" package="C025_050-055X075">
  5744. <connects>
  5745. <connect gate="G$1" pin="1" pad="1"/>
  5746. <connect gate="G$1" pin="2" pad="2"/>
  5747. </connects>
  5748. <technologies>
  5749. <technology name=""/>
  5750. </technologies>
  5751. </device>
  5752. <device name="050-024X044" package="C050-024X044">
  5753. <connects>
  5754. <connect gate="G$1" pin="1" pad="1"/>
  5755. <connect gate="G$1" pin="2" pad="2"/>
  5756. </connects>
  5757. <technologies>
  5758. <technology name=""/>
  5759. </technologies>
  5760. </device>
  5761. <device name="050-025X075" package="C050-025X075">
  5762. <connects>
  5763. <connect gate="G$1" pin="1" pad="1"/>
  5764. <connect gate="G$1" pin="2" pad="2"/>
  5765. </connects>
  5766. <technologies>
  5767. <technology name=""/>
  5768. </technologies>
  5769. </device>
  5770. <device name="050-045X075" package="C050-045X075">
  5771. <connects>
  5772. <connect gate="G$1" pin="1" pad="1"/>
  5773. <connect gate="G$1" pin="2" pad="2"/>
  5774. </connects>
  5775. <technologies>
  5776. <technology name=""/>
  5777. </technologies>
  5778. </device>
  5779. <device name="050-030X075" package="C050-030X075">
  5780. <connects>
  5781. <connect gate="G$1" pin="1" pad="1"/>
  5782. <connect gate="G$1" pin="2" pad="2"/>
  5783. </connects>
  5784. <technologies>
  5785. <technology name=""/>
  5786. </technologies>
  5787. </device>
  5788. <device name="050-050X075" package="C050-050X075">
  5789. <connects>
  5790. <connect gate="G$1" pin="1" pad="1"/>
  5791. <connect gate="G$1" pin="2" pad="2"/>
  5792. </connects>
  5793. <technologies>
  5794. <technology name=""/>
  5795. </technologies>
  5796. </device>
  5797. <device name="050-055X075" package="C050-055X075">
  5798. <connects>
  5799. <connect gate="G$1" pin="1" pad="1"/>
  5800. <connect gate="G$1" pin="2" pad="2"/>
  5801. </connects>
  5802. <technologies>
  5803. <technology name=""/>
  5804. </technologies>
  5805. </device>
  5806. <device name="050-075X075" package="C050-075X075">
  5807. <connects>
  5808. <connect gate="G$1" pin="1" pad="1"/>
  5809. <connect gate="G$1" pin="2" pad="2"/>
  5810. </connects>
  5811. <technologies>
  5812. <technology name=""/>
  5813. </technologies>
  5814. </device>
  5815. <device name="050H075X075" package="C050H075X075">
  5816. <connects>
  5817. <connect gate="G$1" pin="1" pad="1"/>
  5818. <connect gate="G$1" pin="2" pad="2"/>
  5819. </connects>
  5820. <technologies>
  5821. <technology name=""/>
  5822. </technologies>
  5823. </device>
  5824. <device name="075-032X103" package="C075-032X103">
  5825. <connects>
  5826. <connect gate="G$1" pin="1" pad="1"/>
  5827. <connect gate="G$1" pin="2" pad="2"/>
  5828. </connects>
  5829. <technologies>
  5830. <technology name=""/>
  5831. </technologies>
  5832. </device>
  5833. <device name="075-042X103" package="C075-042X103">
  5834. <connects>
  5835. <connect gate="G$1" pin="1" pad="1"/>
  5836. <connect gate="G$1" pin="2" pad="2"/>
  5837. </connects>
  5838. <technologies>
  5839. <technology name=""/>
  5840. </technologies>
  5841. </device>
  5842. <device name="075-052X106" package="C075-052X106">
  5843. <connects>
  5844. <connect gate="G$1" pin="1" pad="1"/>
  5845. <connect gate="G$1" pin="2" pad="2"/>
  5846. </connects>
  5847. <technologies>
  5848. <technology name=""/>
  5849. </technologies>
  5850. </device>
  5851. <device name="102-043X133" package="C102-043X133">
  5852. <connects>
  5853. <connect gate="G$1" pin="1" pad="1"/>
  5854. <connect gate="G$1" pin="2" pad="2"/>
  5855. </connects>
  5856. <technologies>
  5857. <technology name=""/>
  5858. </technologies>
  5859. </device>
  5860. <device name="102-054X133" package="C102-054X133">
  5861. <connects>
  5862. <connect gate="G$1" pin="1" pad="1"/>
  5863. <connect gate="G$1" pin="2" pad="2"/>
  5864. </connects>
  5865. <technologies>
  5866. <technology name=""/>
  5867. </technologies>
  5868. </device>
  5869. <device name="102-064X133" package="C102-064X133">
  5870. <connects>
  5871. <connect gate="G$1" pin="1" pad="1"/>
  5872. <connect gate="G$1" pin="2" pad="2"/>
  5873. </connects>
  5874. <technologies>
  5875. <technology name=""/>
  5876. </technologies>
  5877. </device>
  5878. <device name="102_152-062X184" package="C102_152-062X184">
  5879. <connects>
  5880. <connect gate="G$1" pin="1" pad="1"/>
  5881. <connect gate="G$1" pin="2" pad="2"/>
  5882. </connects>
  5883. <technologies>
  5884. <technology name=""/>
  5885. </technologies>
  5886. </device>
  5887. <device name="150-054X183" package="C150-054X183">
  5888. <connects>
  5889. <connect gate="G$1" pin="1" pad="1"/>
  5890. <connect gate="G$1" pin="2" pad="2"/>
  5891. </connects>
  5892. <technologies>
  5893. <technology name=""/>
  5894. </technologies>
  5895. </device>
  5896. <device name="150-064X183" package="C150-064X183">
  5897. <connects>
  5898. <connect gate="G$1" pin="1" pad="1"/>
  5899. <connect gate="G$1" pin="2" pad="2"/>
  5900. </connects>
  5901. <technologies>
  5902. <technology name=""/>
  5903. </technologies>
  5904. </device>
  5905. <device name="150-072X183" package="C150-072X183">
  5906. <connects>
  5907. <connect gate="G$1" pin="1" pad="1"/>
  5908. <connect gate="G$1" pin="2" pad="2"/>
  5909. </connects>
  5910. <technologies>
  5911. <technology name=""/>
  5912. </technologies>
  5913. </device>
  5914. <device name="150-084X183" package="C150-084X183">
  5915. <connects>
  5916. <connect gate="G$1" pin="1" pad="1"/>
  5917. <connect gate="G$1" pin="2" pad="2"/>
  5918. </connects>
  5919. <technologies>
  5920. <technology name=""/>
  5921. </technologies>
  5922. </device>
  5923. <device name="150-091X182" package="C150-091X182">
  5924. <connects>
  5925. <connect gate="G$1" pin="1" pad="1"/>
  5926. <connect gate="G$1" pin="2" pad="2"/>
  5927. </connects>
  5928. <technologies>
  5929. <technology name=""/>
  5930. </technologies>
  5931. </device>
  5932. <device name="225-062X268" package="C225-062X268">
  5933. <connects>
  5934. <connect gate="G$1" pin="1" pad="1"/>
  5935. <connect gate="G$1" pin="2" pad="2"/>
  5936. </connects>
  5937. <technologies>
  5938. <technology name=""/>
  5939. </technologies>
  5940. </device>
  5941. <device name="225-074X268" package="C225-074X268">
  5942. <connects>
  5943. <connect gate="G$1" pin="1" pad="1"/>
  5944. <connect gate="G$1" pin="2" pad="2"/>
  5945. </connects>
  5946. <technologies>
  5947. <technology name=""/>
  5948. </technologies>
  5949. </device>
  5950. <device name="225-087X268" package="C225-087X268">
  5951. <connects>
  5952. <connect gate="G$1" pin="1" pad="1"/>
  5953. <connect gate="G$1" pin="2" pad="2"/>
  5954. </connects>
  5955. <technologies>
  5956. <technology name=""/>
  5957. </technologies>
  5958. </device>
  5959. <device name="225-108X268" package="C225-108X268">
  5960. <connects>
  5961. <connect gate="G$1" pin="1" pad="1"/>
  5962. <connect gate="G$1" pin="2" pad="2"/>
  5963. </connects>
  5964. <technologies>
  5965. <technology name=""/>
  5966. </technologies>
  5967. </device>
  5968. <device name="225-113X268" package="C225-113X268">
  5969. <connects>
  5970. <connect gate="G$1" pin="1" pad="1"/>
  5971. <connect gate="G$1" pin="2" pad="2"/>
  5972. </connects>
  5973. <technologies>
  5974. <technology name=""/>
  5975. </technologies>
  5976. </device>
  5977. <device name="275-093X316" package="C275-093X316">
  5978. <connects>
  5979. <connect gate="G$1" pin="1" pad="1"/>
  5980. <connect gate="G$1" pin="2" pad="2"/>
  5981. </connects>
  5982. <technologies>
  5983. <technology name=""/>
  5984. </technologies>
  5985. </device>
  5986. <device name="275-113X316" package="C275-113X316">
  5987. <connects>
  5988. <connect gate="G$1" pin="1" pad="1"/>
  5989. <connect gate="G$1" pin="2" pad="2"/>
  5990. </connects>
  5991. <technologies>
  5992. <technology name=""/>
  5993. </technologies>
  5994. </device>
  5995. <device name="275-134X316" package="C275-134X316">
  5996. <connects>
  5997. <connect gate="G$1" pin="1" pad="1"/>
  5998. <connect gate="G$1" pin="2" pad="2"/>
  5999. </connects>
  6000. <technologies>
  6001. <technology name=""/>
  6002. </technologies>
  6003. </device>
  6004. <device name="275-205X316" package="C275-205X316">
  6005. <connects>
  6006. <connect gate="G$1" pin="1" pad="1"/>
  6007. <connect gate="G$1" pin="2" pad="2"/>
  6008. </connects>
  6009. <technologies>
  6010. <technology name=""/>
  6011. </technologies>
  6012. </device>
  6013. <device name="325-137X374" package="C325-137X374">
  6014. <connects>
  6015. <connect gate="G$1" pin="1" pad="1"/>
  6016. <connect gate="G$1" pin="2" pad="2"/>
  6017. </connects>
  6018. <technologies>
  6019. <technology name=""/>
  6020. </technologies>
  6021. </device>
  6022. <device name="325-162X374" package="C325-162X374">
  6023. <connects>
  6024. <connect gate="G$1" pin="1" pad="1"/>
  6025. <connect gate="G$1" pin="2" pad="2"/>
  6026. </connects>
  6027. <technologies>
  6028. <technology name=""/>
  6029. </technologies>
  6030. </device>
  6031. <device name="325-182X374" package="C325-182X374">
  6032. <connects>
  6033. <connect gate="G$1" pin="1" pad="1"/>
  6034. <connect gate="G$1" pin="2" pad="2"/>
  6035. </connects>
  6036. <technologies>
  6037. <technology name=""/>
  6038. </technologies>
  6039. </device>
  6040. <device name="375-192X418" package="C375-192X418">
  6041. <connects>
  6042. <connect gate="G$1" pin="1" pad="1"/>
  6043. <connect gate="G$1" pin="2" pad="2"/>
  6044. </connects>
  6045. <technologies>
  6046. <technology name=""/>
  6047. </technologies>
  6048. </device>
  6049. <device name="375-203X418" package="C375-203X418">
  6050. <connects>
  6051. <connect gate="G$1" pin="1" pad="1"/>
  6052. <connect gate="G$1" pin="2" pad="2"/>
  6053. </connects>
  6054. <technologies>
  6055. <technology name=""/>
  6056. </technologies>
  6057. </device>
  6058. <device name="050-035X075" package="C050-035X075">
  6059. <connects>
  6060. <connect gate="G$1" pin="1" pad="1"/>
  6061. <connect gate="G$1" pin="2" pad="2"/>
  6062. </connects>
  6063. <technologies>
  6064. <technology name=""/>
  6065. </technologies>
  6066. </device>
  6067. <device name="375-155X418" package="C375-155X418">
  6068. <connects>
  6069. <connect gate="G$1" pin="1" pad="1"/>
  6070. <connect gate="G$1" pin="2" pad="2"/>
  6071. </connects>
  6072. <technologies>
  6073. <technology name=""/>
  6074. </technologies>
  6075. </device>
  6076. <device name="075-063X106" package="C075-063X106">
  6077. <connects>
  6078. <connect gate="G$1" pin="1" pad="1"/>
  6079. <connect gate="G$1" pin="2" pad="2"/>
  6080. </connects>
  6081. <technologies>
  6082. <technology name=""/>
  6083. </technologies>
  6084. </device>
  6085. <device name="275-154X316" package="C275-154X316">
  6086. <connects>
  6087. <connect gate="G$1" pin="1" pad="1"/>
  6088. <connect gate="G$1" pin="2" pad="2"/>
  6089. </connects>
  6090. <technologies>
  6091. <technology name=""/>
  6092. </technologies>
  6093. </device>
  6094. <device name="275-173X316" package="C275-173X316">
  6095. <connects>
  6096. <connect gate="G$1" pin="1" pad="1"/>
  6097. <connect gate="G$1" pin="2" pad="2"/>
  6098. </connects>
  6099. <technologies>
  6100. <technology name=""/>
  6101. </technologies>
  6102. </device>
  6103. <device name="C0402K" package="C0402K">
  6104. <connects>
  6105. <connect gate="G$1" pin="1" pad="1"/>
  6106. <connect gate="G$1" pin="2" pad="2"/>
  6107. </connects>
  6108. <technologies>
  6109. <technology name=""/>
  6110. </technologies>
  6111. </device>
  6112. <device name="C0603K" package="C0603K">
  6113. <connects>
  6114. <connect gate="G$1" pin="1" pad="1"/>
  6115. <connect gate="G$1" pin="2" pad="2"/>
  6116. </connects>
  6117. <technologies>
  6118. <technology name=""/>
  6119. </technologies>
  6120. </device>
  6121. <device name="C0805K" package="C0805K">
  6122. <connects>
  6123. <connect gate="G$1" pin="1" pad="1"/>
  6124. <connect gate="G$1" pin="2" pad="2"/>
  6125. </connects>
  6126. <technologies>
  6127. <technology name=""/>
  6128. </technologies>
  6129. </device>
  6130. <device name="C1206K" package="C1206K">
  6131. <connects>
  6132. <connect gate="G$1" pin="1" pad="1"/>
  6133. <connect gate="G$1" pin="2" pad="2"/>
  6134. </connects>
  6135. <technologies>
  6136. <technology name=""/>
  6137. </technologies>
  6138. </device>
  6139. <device name="C1210K" package="C1210K">
  6140. <connects>
  6141. <connect gate="G$1" pin="1" pad="1"/>
  6142. <connect gate="G$1" pin="2" pad="2"/>
  6143. </connects>
  6144. <technologies>
  6145. <technology name=""/>
  6146. </technologies>
  6147. </device>
  6148. <device name="C1812K" package="C1812K">
  6149. <connects>
  6150. <connect gate="G$1" pin="1" pad="1"/>
  6151. <connect gate="G$1" pin="2" pad="2"/>
  6152. </connects>
  6153. <technologies>
  6154. <technology name=""/>
  6155. </technologies>
  6156. </device>
  6157. <device name="C1825K" package="C1825K">
  6158. <connects>
  6159. <connect gate="G$1" pin="1" pad="1"/>
  6160. <connect gate="G$1" pin="2" pad="2"/>
  6161. </connects>
  6162. <technologies>
  6163. <technology name=""/>
  6164. </technologies>
  6165. </device>
  6166. <device name="C2220K" package="C2220K">
  6167. <connects>
  6168. <connect gate="G$1" pin="1" pad="1"/>
  6169. <connect gate="G$1" pin="2" pad="2"/>
  6170. </connects>
  6171. <technologies>
  6172. <technology name=""/>
  6173. </technologies>
  6174. </device>
  6175. <device name="C2225K" package="C2225K">
  6176. <connects>
  6177. <connect gate="G$1" pin="1" pad="1"/>
  6178. <connect gate="G$1" pin="2" pad="2"/>
  6179. </connects>
  6180. <technologies>
  6181. <technology name=""/>
  6182. </technologies>
  6183. </device>
  6184. <device name="HPC0201" package="HPC0201">
  6185. <connects>
  6186. <connect gate="G$1" pin="1" pad="1"/>
  6187. <connect gate="G$1" pin="2" pad="2"/>
  6188. </connects>
  6189. <technologies>
  6190. <technology name=""/>
  6191. </technologies>
  6192. </device>
  6193. <device name="C0201" package="C0201">
  6194. <connects>
  6195. <connect gate="G$1" pin="1" pad="1"/>
  6196. <connect gate="G$1" pin="2" pad="2"/>
  6197. </connects>
  6198. <technologies>
  6199. <technology name=""/>
  6200. </technologies>
  6201. </device>
  6202. <device name="C1808" package="C1808">
  6203. <connects>
  6204. <connect gate="G$1" pin="1" pad="1"/>
  6205. <connect gate="G$1" pin="2" pad="2"/>
  6206. </connects>
  6207. <technologies>
  6208. <technology name=""/>
  6209. </technologies>
  6210. </device>
  6211. <device name="C3640" package="C3640">
  6212. <connects>
  6213. <connect gate="G$1" pin="1" pad="1"/>
  6214. <connect gate="G$1" pin="2" pad="2"/>
  6215. </connects>
  6216. <technologies>
  6217. <technology name=""/>
  6218. </technologies>
  6219. </device>
  6220. <device name="01005" package="C01005">
  6221. <connects>
  6222. <connect gate="G$1" pin="1" pad="1"/>
  6223. <connect gate="G$1" pin="2" pad="2"/>
  6224. </connects>
  6225. <technologies>
  6226. <technology name=""/>
  6227. </technologies>
  6228. </device>
  6229. </devices>
  6230. </deviceset>
  6231. </devicesets>
  6232. </library>
  6233. <library name="pinhead">
  6234. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  6235. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  6236. <packages>
  6237. <package name="1X03">
  6238. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6239. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6240. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6241. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6242. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6243. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6244. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6245. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6246. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6247. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6248. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6249. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6250. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  6251. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6252. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6253. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6254. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6255. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6256. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6257. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  6258. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6259. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6260. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6261. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6262. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  6263. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6264. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6265. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6266. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  6267. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  6268. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  6269. </package>
  6270. <package name="1X03/90">
  6271. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6272. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  6273. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6274. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6275. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  6276. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  6277. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  6278. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6279. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6280. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  6281. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  6282. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6283. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6284. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  6285. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6286. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6287. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6288. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6289. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6290. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  6291. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  6292. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  6293. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  6294. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  6295. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  6296. </package>
  6297. <package name="1X06">
  6298. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6299. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6300. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6301. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6302. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6303. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6304. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  6305. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6306. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6307. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  6308. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6309. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6310. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6311. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6312. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6313. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6314. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6315. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6316. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6317. <wire x1="0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6318. <wire x1="0" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6319. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6320. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  6321. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6322. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6323. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  6324. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  6325. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  6326. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6327. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6328. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6329. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6330. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6331. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6332. <wire x1="-6.985" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6333. <wire x1="-7.62" y1="-0.635" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6334. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6335. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  6336. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6337. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6338. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  6339. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6340. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6341. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6342. <pad name="1" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6343. <pad name="2" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6344. <pad name="3" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6345. <pad name="4" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6346. <pad name="5" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6347. <pad name="6" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6348. <text x="-7.6962" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6349. <text x="-7.62" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6350. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  6351. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6352. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6353. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  6354. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  6355. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  6356. </package>
  6357. <package name="1X06/90">
  6358. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6359. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  6360. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6361. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6362. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  6363. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  6364. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6365. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6366. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6367. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  6368. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6369. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6370. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6371. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6372. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6373. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6374. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6375. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6376. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  6377. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6378. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6379. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  6380. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  6381. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6382. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6383. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  6384. <pad name="1" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6385. <pad name="2" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6386. <pad name="3" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6387. <pad name="4" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6388. <pad name="5" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6389. <pad name="6" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6390. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6391. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6392. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  6393. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  6394. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6395. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6396. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  6397. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  6398. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  6399. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  6400. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6401. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6402. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  6403. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  6404. </package>
  6405. <package name="1X02">
  6406. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6407. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6408. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6409. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6410. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6411. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6412. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6413. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6414. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6415. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6416. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6417. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6418. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6419. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6420. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6421. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6422. <pad name="1" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6423. <pad name="2" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6424. <text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6425. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6426. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6427. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6428. </package>
  6429. <package name="1X02/90">
  6430. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6431. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6432. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6433. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6434. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6435. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6436. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6437. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6438. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6439. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6440. <pad name="1" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6441. <pad name="2" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6442. <text x="-3.175" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6443. <text x="4.445" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6444. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6445. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6446. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6447. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6448. </package>
  6449. <package name="1X10">
  6450. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6451. <wire x1="7.62" y1="0.635" x2="8.255" y2="1.27" width="0.1524" layer="21"/>
  6452. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  6453. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6454. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  6455. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  6456. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  6457. <wire x1="8.255" y1="-1.27" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6458. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  6459. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6460. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6461. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  6462. <wire x1="5.08" y1="0.635" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  6463. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  6464. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6465. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6466. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  6467. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6468. <wire x1="5.715" y1="-1.27" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6469. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6470. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6471. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6472. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6473. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6474. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6475. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6476. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6477. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6478. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6479. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  6480. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6481. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6482. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6483. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6484. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6485. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6486. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6487. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6488. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6489. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6490. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  6491. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  6492. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6493. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6494. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  6495. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6496. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6497. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6498. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6499. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6500. <wire x1="-12.065" y1="1.27" x2="-10.795" y2="1.27" width="0.1524" layer="21"/>
  6501. <wire x1="-10.795" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6502. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  6503. <wire x1="-10.16" y1="-0.635" x2="-10.795" y2="-1.27" width="0.1524" layer="21"/>
  6504. <wire x1="-10.16" y1="0.635" x2="-9.525" y2="1.27" width="0.1524" layer="21"/>
  6505. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  6506. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6507. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6508. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  6509. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  6510. <wire x1="-9.525" y1="-1.27" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  6511. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.1524" layer="21"/>
  6512. <wire x1="-12.065" y1="1.27" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  6513. <wire x1="-12.7" y1="-0.635" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  6514. <wire x1="-10.795" y1="-1.27" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  6515. <wire x1="10.795" y1="1.27" x2="12.065" y2="1.27" width="0.1524" layer="21"/>
  6516. <wire x1="12.065" y1="1.27" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  6517. <wire x1="12.7" y1="0.635" x2="12.7" y2="-0.635" width="0.1524" layer="21"/>
  6518. <wire x1="12.7" y1="-0.635" x2="12.065" y2="-1.27" width="0.1524" layer="21"/>
  6519. <wire x1="10.795" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6520. <wire x1="10.16" y1="-0.635" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  6521. <wire x1="12.065" y1="-1.27" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  6522. <pad name="1" x="-11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  6523. <pad name="2" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  6524. <pad name="3" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6525. <pad name="4" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6526. <pad name="5" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6527. <pad name="6" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6528. <pad name="7" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6529. <pad name="8" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6530. <pad name="9" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  6531. <pad name="10" x="11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  6532. <text x="-12.7762" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6533. <text x="-12.7" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6534. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  6535. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  6536. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  6537. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6538. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6539. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  6540. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  6541. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  6542. <rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
  6543. <rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
  6544. </package>
  6545. <package name="1X10/90">
  6546. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6547. <wire x1="-12.7" y1="-1.905" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  6548. <wire x1="-10.16" y1="-1.905" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6549. <wire x1="-10.16" y1="0.635" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  6550. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-1.905" width="0.1524" layer="21"/>
  6551. <wire x1="-11.43" y1="6.985" x2="-11.43" y2="1.27" width="0.762" layer="21"/>
  6552. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  6553. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6554. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6555. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  6556. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  6557. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6558. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6559. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  6560. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6561. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6562. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6563. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  6564. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6565. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6566. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6567. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6568. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6569. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6570. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6571. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6572. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  6573. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6574. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6575. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  6576. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  6577. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6578. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6579. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  6580. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  6581. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6582. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6583. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  6584. <wire x1="10.16" y1="-1.905" x2="12.7" y2="-1.905" width="0.1524" layer="21"/>
  6585. <wire x1="12.7" y1="-1.905" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  6586. <wire x1="12.7" y1="0.635" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6587. <wire x1="11.43" y1="6.985" x2="11.43" y2="1.27" width="0.762" layer="21"/>
  6588. <pad name="1" x="-11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6589. <pad name="2" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6590. <pad name="3" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6591. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6592. <pad name="5" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6593. <pad name="6" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6594. <pad name="7" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6595. <pad name="8" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6596. <pad name="9" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6597. <pad name="10" x="11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6598. <text x="-13.335" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6599. <text x="14.605" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6600. <rectangle x1="-11.811" y1="0.635" x2="-11.049" y2="1.143" layer="21"/>
  6601. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  6602. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  6603. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  6604. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6605. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6606. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  6607. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  6608. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  6609. <rectangle x1="11.049" y1="0.635" x2="11.811" y2="1.143" layer="21"/>
  6610. <rectangle x1="-11.811" y1="-2.921" x2="-11.049" y2="-1.905" layer="21"/>
  6611. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  6612. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  6613. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  6614. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6615. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6616. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  6617. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  6618. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  6619. <rectangle x1="11.049" y1="-2.921" x2="11.811" y2="-1.905" layer="21"/>
  6620. </package>
  6621. </packages>
  6622. <symbols>
  6623. <symbol name="PINHD3">
  6624. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  6625. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6626. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6627. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  6628. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6629. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6630. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6631. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6632. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6633. </symbol>
  6634. <symbol name="PINHD6">
  6635. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  6636. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  6637. <wire x1="1.27" y1="10.16" x2="-6.35" y2="10.16" width="0.4064" layer="94"/>
  6638. <wire x1="-6.35" y1="10.16" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  6639. <text x="-6.35" y="10.795" size="1.778" layer="95">&gt;NAME</text>
  6640. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  6641. <pin name="1" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6642. <pin name="2" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6643. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6644. <pin name="4" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6645. <pin name="5" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6646. <pin name="6" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6647. </symbol>
  6648. <symbol name="PINHD2">
  6649. <wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
  6650. <wire x1="1.27" y1="-2.54" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6651. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6652. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
  6653. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6654. <text x="-6.35" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6655. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6656. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6657. </symbol>
  6658. <symbol name="PINHD10">
  6659. <wire x1="-6.35" y1="-15.24" x2="1.27" y2="-15.24" width="0.4064" layer="94"/>
  6660. <wire x1="1.27" y1="-15.24" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  6661. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  6662. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-15.24" width="0.4064" layer="94"/>
  6663. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  6664. <text x="-6.35" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  6665. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  6666. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6667. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6668. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6669. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6670. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6671. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6672. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6673. <pin name="9" x="-2.54" y="-10.16" visible="pad" length="short" direction="pas" function="dot"/>
  6674. <pin name="10" x="-2.54" y="-12.7" visible="pad" length="short" direction="pas" function="dot"/>
  6675. </symbol>
  6676. </symbols>
  6677. <devicesets>
  6678. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  6679. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6680. <gates>
  6681. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  6682. </gates>
  6683. <devices>
  6684. <device name="" package="1X03">
  6685. <connects>
  6686. <connect gate="A" pin="1" pad="1"/>
  6687. <connect gate="A" pin="2" pad="2"/>
  6688. <connect gate="A" pin="3" pad="3"/>
  6689. </connects>
  6690. <technologies>
  6691. <technology name=""/>
  6692. </technologies>
  6693. </device>
  6694. <device name="/90" package="1X03/90">
  6695. <connects>
  6696. <connect gate="A" pin="1" pad="1"/>
  6697. <connect gate="A" pin="2" pad="2"/>
  6698. <connect gate="A" pin="3" pad="3"/>
  6699. </connects>
  6700. <technologies>
  6701. <technology name=""/>
  6702. </technologies>
  6703. </device>
  6704. </devices>
  6705. </deviceset>
  6706. <deviceset name="PINHD-1X6" prefix="JP" uservalue="yes">
  6707. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6708. <gates>
  6709. <gate name="A" symbol="PINHD6" x="0" y="-2.54"/>
  6710. </gates>
  6711. <devices>
  6712. <device name="" package="1X06">
  6713. <connects>
  6714. <connect gate="A" pin="1" pad="1"/>
  6715. <connect gate="A" pin="2" pad="2"/>
  6716. <connect gate="A" pin="3" pad="3"/>
  6717. <connect gate="A" pin="4" pad="4"/>
  6718. <connect gate="A" pin="5" pad="5"/>
  6719. <connect gate="A" pin="6" pad="6"/>
  6720. </connects>
  6721. <technologies>
  6722. <technology name=""/>
  6723. </technologies>
  6724. </device>
  6725. <device name="/90" package="1X06/90">
  6726. <connects>
  6727. <connect gate="A" pin="1" pad="1"/>
  6728. <connect gate="A" pin="2" pad="2"/>
  6729. <connect gate="A" pin="3" pad="3"/>
  6730. <connect gate="A" pin="4" pad="4"/>
  6731. <connect gate="A" pin="5" pad="5"/>
  6732. <connect gate="A" pin="6" pad="6"/>
  6733. </connects>
  6734. <technologies>
  6735. <technology name=""/>
  6736. </technologies>
  6737. </device>
  6738. </devices>
  6739. </deviceset>
  6740. <deviceset name="PINHD-1X2" prefix="JP" uservalue="yes">
  6741. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6742. <gates>
  6743. <gate name="G$1" symbol="PINHD2" x="0" y="0"/>
  6744. </gates>
  6745. <devices>
  6746. <device name="" package="1X02">
  6747. <connects>
  6748. <connect gate="G$1" pin="1" pad="1"/>
  6749. <connect gate="G$1" pin="2" pad="2"/>
  6750. </connects>
  6751. <technologies>
  6752. <technology name=""/>
  6753. </technologies>
  6754. </device>
  6755. <device name="/90" package="1X02/90">
  6756. <connects>
  6757. <connect gate="G$1" pin="1" pad="1"/>
  6758. <connect gate="G$1" pin="2" pad="2"/>
  6759. </connects>
  6760. <technologies>
  6761. <technology name=""/>
  6762. </technologies>
  6763. </device>
  6764. </devices>
  6765. </deviceset>
  6766. <deviceset name="PINHD-1X10" prefix="JP" uservalue="yes">
  6767. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6768. <gates>
  6769. <gate name="A" symbol="PINHD10" x="0" y="0"/>
  6770. </gates>
  6771. <devices>
  6772. <device name="" package="1X10">
  6773. <connects>
  6774. <connect gate="A" pin="1" pad="1"/>
  6775. <connect gate="A" pin="10" pad="10"/>
  6776. <connect gate="A" pin="2" pad="2"/>
  6777. <connect gate="A" pin="3" pad="3"/>
  6778. <connect gate="A" pin="4" pad="4"/>
  6779. <connect gate="A" pin="5" pad="5"/>
  6780. <connect gate="A" pin="6" pad="6"/>
  6781. <connect gate="A" pin="7" pad="7"/>
  6782. <connect gate="A" pin="8" pad="8"/>
  6783. <connect gate="A" pin="9" pad="9"/>
  6784. </connects>
  6785. <technologies>
  6786. <technology name=""/>
  6787. </technologies>
  6788. </device>
  6789. <device name="/90" package="1X10/90">
  6790. <connects>
  6791. <connect gate="A" pin="1" pad="1"/>
  6792. <connect gate="A" pin="10" pad="10"/>
  6793. <connect gate="A" pin="2" pad="2"/>
  6794. <connect gate="A" pin="3" pad="3"/>
  6795. <connect gate="A" pin="4" pad="4"/>
  6796. <connect gate="A" pin="5" pad="5"/>
  6797. <connect gate="A" pin="6" pad="6"/>
  6798. <connect gate="A" pin="7" pad="7"/>
  6799. <connect gate="A" pin="8" pad="8"/>
  6800. <connect gate="A" pin="9" pad="9"/>
  6801. </connects>
  6802. <technologies>
  6803. <technology name=""/>
  6804. </technologies>
  6805. </device>
  6806. </devices>
  6807. </deviceset>
  6808. </devicesets>
  6809. </library>
  6810. </libraries>
  6811. <attributes>
  6812. </attributes>
  6813. <variantdefs>
  6814. </variantdefs>
  6815. <classes>
  6816. <class number="0" name="default" width="0" drill="0">
  6817. </class>
  6818. </classes>
  6819. <parts>
  6820. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  6821. <part name="R1" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6822. <part name="R2" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6823. <part name="R3" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6824. <part name="R4" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6825. <part name="C1" library="resistor" deviceset="C-EU" device="C1206" value="100mkF"/>
  6826. <part name="C2" library="resistor" deviceset="C-EU" device="C1206" value="10mkF"/>
  6827. <part name="JP1" library="pinhead" deviceset="PINHD-1X3" device="" value="CTL"/>
  6828. <part name="JP2" library="pinhead" deviceset="PINHD-1X6" device=""/>
  6829. <part name="R5" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6830. <part name="R6" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6831. <part name="C3" library="resistor" deviceset="C-EU" device="C1206" value="1mkF"/>
  6832. <part name="JP4" library="pinhead" deviceset="PINHD-1X3" device=""/>
  6833. <part name="R7" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6834. <part name="JP5" library="pinhead" deviceset="PINHD-1X2" device=""/>
  6835. <part name="R8" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6836. <part name="R9" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6837. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  6838. <part name="R10" library="resistor" deviceset="R-EU_" device="M1206" value="10"/>
  6839. <part name="R11" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6840. <part name="JP3" library="pinhead" deviceset="PINHD-1X3" device=""/>
  6841. <part name="IC2" library="stm8s103" deviceset="STM8S103F*" device="P"/>
  6842. <part name="JP6" library="pinhead" deviceset="PINHD-1X10" device=""/>
  6843. <part name="JP7" library="pinhead" deviceset="PINHD-1X10" device=""/>
  6844. </parts>
  6845. <sheets>
  6846. <sheet>
  6847. <plain>
  6848. <text x="11.43" y="-17.78" size="1.778" layer="95">2</text>
  6849. <text x="11.43" y="-20.32" size="1.778" layer="95">15</text>
  6850. <text x="11.43" y="-22.86" size="1.778" layer="95">14</text>
  6851. <text x="11.43" y="-25.4" size="1.778" layer="95">12</text>
  6852. <text x="11.43" y="-27.94" size="1.778" layer="95">10</text>
  6853. <text x="11.43" y="-30.48" size="1.778" layer="95">13</text>
  6854. <text x="132.08" y="-30.48" size="1.778" layer="95">CALL</text>
  6855. <text x="132.08" y="-33.02" size="1.778" layer="95">END</text>
  6856. <text x="132.08" y="-35.56" size="1.778" layer="95">+3.3V</text>
  6857. <text x="123.19" y="74.93" size="1.778" layer="95">SWDIO</text>
  6858. <text x="123.19" y="69.85" size="1.778" layer="95">SWDCLK</text>
  6859. <text x="123.19" y="72.39" size="1.778" layer="95">GND</text>
  6860. <text x="200.66" y="63.5" size="1.778" layer="95">+5V</text>
  6861. <text x="200.66" y="60.96" size="1.778" layer="95">GND</text>
  6862. <text x="49.53" y="59.69" size="1.778" layer="95">BOOT0</text>
  6863. <text x="49.53" y="52.07" size="1.778" layer="95">NRST</text>
  6864. <text x="49.53" y="49.53" size="1.778" layer="95">VDDa</text>
  6865. <text x="49.53" y="44.45" size="1.778" layer="95">PA1</text>
  6866. <text x="49.53" y="41.91" size="1.778" layer="95">PA2</text>
  6867. <text x="49.53" y="39.37" size="1.778" layer="95">PA3</text>
  6868. <text x="49.53" y="36.83" size="1.778" layer="95">PA4</text>
  6869. <text x="72.39" y="36.83" size="1.778" layer="95">PA5</text>
  6870. <text x="72.39" y="39.37" size="1.778" layer="95">PA6</text>
  6871. <text x="72.39" y="46.99" size="1.778" layer="95">VSS</text>
  6872. <text x="72.39" y="49.53" size="1.778" layer="95">VDD</text>
  6873. <text x="71.12" y="55.88" size="1.778" layer="95">SWDIO</text>
  6874. <text x="67.31" y="58.42" size="1.778" layer="95">SWDCLK</text>
  6875. </plain>
  6876. <instances>
  6877. <instance part="U$1" gate="G$1" x="53.34" y="-17.78" rot="R270"/>
  6878. <instance part="R1" gate="G$1" x="60.96" y="-10.16" rot="R90"/>
  6879. <instance part="R2" gate="G$1" x="71.12" y="-10.16" rot="R90"/>
  6880. <instance part="R3" gate="G$1" x="81.28" y="-10.16" rot="R90"/>
  6881. <instance part="R4" gate="G$1" x="91.44" y="-10.16" rot="R90"/>
  6882. <instance part="C1" gate="G$1" x="180.34" y="30.48" rot="R90"/>
  6883. <instance part="C2" gate="G$1" x="132.08" y="5.08"/>
  6884. <instance part="JP1" gate="A" x="129.54" y="-33.02"/>
  6885. <instance part="JP2" gate="A" x="17.78" y="-22.86" rot="R180"/>
  6886. <instance part="R5" gate="G$1" x="10.16" y="66.04" rot="R180"/>
  6887. <instance part="R6" gate="G$1" x="-5.08" y="66.04" rot="R180"/>
  6888. <instance part="C3" gate="G$1" x="2.54" y="55.88" rot="R180"/>
  6889. <instance part="JP4" gate="A" x="171.45" y="76.2"/>
  6890. <instance part="R7" gate="G$1" x="149.86" y="78.74" rot="R180"/>
  6891. <instance part="JP5" gate="G$1" x="198.12" y="60.96"/>
  6892. <instance part="R8" gate="G$1" x="135.89" y="-8.89" rot="R180"/>
  6893. <instance part="R9" gate="G$1" x="135.89" y="-19.05" rot="R180"/>
  6894. <instance part="U$3" gate="G$1" x="160.02" y="20.32" rot="R180"/>
  6895. <instance part="R10" gate="G$1" x="139.7" y="15.24" rot="R180"/>
  6896. <instance part="R11" gate="G$1" x="142.24" y="31.75" rot="R180"/>
  6897. <instance part="JP3" gate="A" x="120.65" y="72.39"/>
  6898. <instance part="IC2" gate="G$1" x="39.37" y="125.73"/>
  6899. <instance part="JP6" gate="A" x="46.99" y="49.53"/>
  6900. <instance part="JP7" gate="A" x="77.47" y="46.99" rot="R180"/>
  6901. </instances>
  6902. <busses>
  6903. </busses>
  6904. <nets>
  6905. <net name="N$3" class="0">
  6906. <segment>
  6907. <wire x1="15.24" y1="44.45" x2="15.24" y2="10.16" width="0.1524" layer="91"/>
  6908. <wire x1="15.24" y1="10.16" x2="91.44" y2="10.16" width="0.1524" layer="91"/>
  6909. <pinref part="R4" gate="G$1" pin="2"/>
  6910. <wire x1="91.44" y1="10.16" x2="91.44" y2="-5.08" width="0.1524" layer="91"/>
  6911. <wire x1="15.24" y1="44.45" x2="44.45" y2="44.45" width="0.1524" layer="91"/>
  6912. <pinref part="JP6" gate="A" pin="7"/>
  6913. </segment>
  6914. </net>
  6915. <net name="N$4" class="0">
  6916. <segment>
  6917. <wire x1="17.78" y1="41.91" x2="17.78" y2="7.62" width="0.1524" layer="91"/>
  6918. <wire x1="17.78" y1="7.62" x2="81.28" y2="7.62" width="0.1524" layer="91"/>
  6919. <pinref part="R3" gate="G$1" pin="2"/>
  6920. <wire x1="81.28" y1="7.62" x2="81.28" y2="-5.08" width="0.1524" layer="91"/>
  6921. <pinref part="JP6" gate="A" pin="8"/>
  6922. <wire x1="17.78" y1="41.91" x2="44.45" y2="41.91" width="0.1524" layer="91"/>
  6923. </segment>
  6924. </net>
  6925. <net name="N$5" class="0">
  6926. <segment>
  6927. <wire x1="20.32" y1="39.37" x2="20.32" y2="5.08" width="0.1524" layer="91"/>
  6928. <wire x1="20.32" y1="5.08" x2="71.12" y2="5.08" width="0.1524" layer="91"/>
  6929. <pinref part="R2" gate="G$1" pin="2"/>
  6930. <wire x1="71.12" y1="5.08" x2="71.12" y2="-5.08" width="0.1524" layer="91"/>
  6931. <pinref part="JP6" gate="A" pin="9"/>
  6932. <wire x1="20.32" y1="39.37" x2="44.45" y2="39.37" width="0.1524" layer="91"/>
  6933. </segment>
  6934. </net>
  6935. <net name="N$7" class="0">
  6936. <segment>
  6937. <pinref part="U$1" gate="G$1" pin="P$16"/>
  6938. <wire x1="91.44" y1="-40.64" x2="91.44" y2="-49.53" width="0.1524" layer="91"/>
  6939. <wire x1="91.44" y1="-49.53" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6940. <wire x1="81.28" y1="-49.53" x2="33.02" y2="-49.53" width="0.1524" layer="91"/>
  6941. <wire x1="33.02" y1="-49.53" x2="33.02" y2="-17.78" width="0.1524" layer="91"/>
  6942. <wire x1="33.02" y1="-17.78" x2="20.32" y2="-17.78" width="0.1524" layer="91"/>
  6943. <pinref part="U$1" gate="G$1" pin="P$14"/>
  6944. <wire x1="81.28" y1="-40.64" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6945. <junction x="81.28" y="-49.53"/>
  6946. <pinref part="JP2" gate="A" pin="6"/>
  6947. </segment>
  6948. </net>
  6949. <net name="N$8" class="0">
  6950. <segment>
  6951. <pinref part="U$1" gate="G$1" pin="P$15"/>
  6952. <wire x1="86.36" y1="-40.64" x2="86.36" y2="-48.26" width="0.1524" layer="91"/>
  6953. <wire x1="86.36" y1="-48.26" x2="35.56" y2="-48.26" width="0.1524" layer="91"/>
  6954. <wire x1="35.56" y1="-48.26" x2="35.56" y2="-20.32" width="0.1524" layer="91"/>
  6955. <wire x1="35.56" y1="-20.32" x2="20.32" y2="-20.32" width="0.1524" layer="91"/>
  6956. <pinref part="JP2" gate="A" pin="5"/>
  6957. </segment>
  6958. </net>
  6959. <net name="N$9" class="0">
  6960. <segment>
  6961. <pinref part="U$1" gate="G$1" pin="P$13"/>
  6962. <wire x1="76.2" y1="-40.64" x2="76.2" y2="-46.99" width="0.1524" layer="91"/>
  6963. <wire x1="76.2" y1="-46.99" x2="38.1" y2="-46.99" width="0.1524" layer="91"/>
  6964. <wire x1="38.1" y1="-46.99" x2="38.1" y2="-22.86" width="0.1524" layer="91"/>
  6965. <wire x1="38.1" y1="-22.86" x2="20.32" y2="-22.86" width="0.1524" layer="91"/>
  6966. <pinref part="JP2" gate="A" pin="4"/>
  6967. </segment>
  6968. </net>
  6969. <net name="N$10" class="0">
  6970. <segment>
  6971. <pinref part="U$1" gate="G$1" pin="P$12"/>
  6972. <wire x1="71.12" y1="-40.64" x2="71.12" y2="-45.72" width="0.1524" layer="91"/>
  6973. <wire x1="71.12" y1="-45.72" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6974. <wire x1="60.96" y1="-45.72" x2="40.64" y2="-45.72" width="0.1524" layer="91"/>
  6975. <wire x1="40.64" y1="-45.72" x2="40.64" y2="-25.4" width="0.1524" layer="91"/>
  6976. <wire x1="40.64" y1="-25.4" x2="20.32" y2="-25.4" width="0.1524" layer="91"/>
  6977. <pinref part="U$1" gate="G$1" pin="P$10"/>
  6978. <wire x1="60.96" y1="-40.64" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6979. <junction x="60.96" y="-45.72"/>
  6980. <pinref part="JP2" gate="A" pin="3"/>
  6981. </segment>
  6982. </net>
  6983. <net name="N$11" class="0">
  6984. <segment>
  6985. <pinref part="U$1" gate="G$1" pin="P$11"/>
  6986. <wire x1="66.04" y1="-40.64" x2="66.04" y2="-44.45" width="0.1524" layer="91"/>
  6987. <wire x1="66.04" y1="-44.45" x2="43.18" y2="-44.45" width="0.1524" layer="91"/>
  6988. <wire x1="43.18" y1="-44.45" x2="43.18" y2="-27.94" width="0.1524" layer="91"/>
  6989. <wire x1="43.18" y1="-27.94" x2="20.32" y2="-27.94" width="0.1524" layer="91"/>
  6990. <pinref part="JP2" gate="A" pin="2"/>
  6991. </segment>
  6992. </net>
  6993. <net name="N$12" class="0">
  6994. <segment>
  6995. <pinref part="U$1" gate="G$1" pin="P$9"/>
  6996. <wire x1="55.88" y1="-40.64" x2="55.88" y2="-43.18" width="0.1524" layer="91"/>
  6997. <wire x1="55.88" y1="-43.18" x2="45.72" y2="-43.18" width="0.1524" layer="91"/>
  6998. <wire x1="45.72" y1="-43.18" x2="45.72" y2="-30.48" width="0.1524" layer="91"/>
  6999. <wire x1="45.72" y1="-30.48" x2="20.32" y2="-30.48" width="0.1524" layer="91"/>
  7000. <pinref part="JP2" gate="A" pin="1"/>
  7001. </segment>
  7002. </net>
  7003. <net name="N$13" class="0">
  7004. <segment>
  7005. <wire x1="106.68" y1="-2.54" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  7006. <wire x1="132.08" y1="-2.54" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  7007. <wire x1="144.78" y1="-2.54" x2="185.42" y2="-2.54" width="0.1524" layer="91"/>
  7008. <wire x1="185.42" y1="-2.54" x2="185.42" y2="30.48" width="0.1524" layer="91"/>
  7009. <wire x1="185.42" y1="30.48" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  7010. <wire x1="185.42" y1="38.1" x2="185.42" y2="60.96" width="0.1524" layer="91"/>
  7011. <wire x1="185.42" y1="60.96" x2="195.58" y2="60.96" width="0.1524" layer="91"/>
  7012. <junction x="185.42" y="38.1"/>
  7013. <wire x1="149.86" y1="38.1" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  7014. <wire x1="160.02" y1="38.1" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  7015. <wire x1="106.68" y1="22.86" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  7016. <pinref part="U$1" gate="G$1" pin="P$1"/>
  7017. <wire x1="55.88" y1="-15.24" x2="55.88" y2="-2.54" width="0.1524" layer="91"/>
  7018. <wire x1="55.88" y1="-2.54" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  7019. <junction x="106.68" y="-2.54"/>
  7020. <pinref part="U$1" gate="G$1" pin="P$3"/>
  7021. <wire x1="66.04" y1="-2.54" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  7022. <wire x1="76.2" y1="-2.54" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  7023. <wire x1="86.36" y1="-2.54" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  7024. <wire x1="66.04" y1="-15.24" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  7025. <junction x="66.04" y="-2.54"/>
  7026. <pinref part="U$1" gate="G$1" pin="P$5"/>
  7027. <wire x1="76.2" y1="-15.24" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  7028. <junction x="76.2" y="-2.54"/>
  7029. <pinref part="U$1" gate="G$1" pin="P$7"/>
  7030. <wire x1="86.36" y1="-15.24" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  7031. <junction x="86.36" y="-2.54"/>
  7032. <pinref part="C1" gate="G$1" pin="2"/>
  7033. <junction x="185.42" y="30.48"/>
  7034. <pinref part="C2" gate="G$1" pin="2"/>
  7035. <wire x1="132.08" y1="0" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  7036. <junction x="132.08" y="-2.54"/>
  7037. <pinref part="C3" gate="G$1" pin="1"/>
  7038. <wire x1="55.88" y1="-2.54" x2="2.54" y2="-2.54" width="0.1524" layer="91"/>
  7039. <wire x1="2.54" y1="-2.54" x2="2.54" y2="53.34" width="0.1524" layer="91"/>
  7040. <junction x="55.88" y="-2.54"/>
  7041. <pinref part="JP4" gate="A" pin="3"/>
  7042. <wire x1="168.91" y1="73.66" x2="149.86" y2="73.66" width="0.1524" layer="91"/>
  7043. <wire x1="149.86" y1="73.66" x2="149.86" y2="64.77" width="0.1524" layer="91"/>
  7044. <pinref part="R8" gate="G$1" pin="1"/>
  7045. <wire x1="149.86" y1="64.77" x2="149.86" y2="38.1" width="0.1524" layer="91"/>
  7046. <wire x1="140.97" y1="-8.89" x2="144.78" y2="-8.89" width="0.1524" layer="91"/>
  7047. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  7048. <junction x="144.78" y="-2.54"/>
  7049. <pinref part="R9" gate="G$1" pin="1"/>
  7050. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-19.05" width="0.1524" layer="91"/>
  7051. <wire x1="144.78" y1="-19.05" x2="140.97" y2="-19.05" width="0.1524" layer="91"/>
  7052. <junction x="144.78" y="-8.89"/>
  7053. <pinref part="JP5" gate="G$1" pin="2"/>
  7054. <pinref part="U$3" gate="G$1" pin="GND"/>
  7055. <wire x1="160.02" y1="27.94" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  7056. <junction x="160.02" y="38.1"/>
  7057. <pinref part="R11" gate="G$1" pin="1"/>
  7058. <wire x1="160.02" y1="31.75" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  7059. <wire x1="147.32" y1="31.75" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  7060. <junction x="160.02" y="31.75"/>
  7061. <pinref part="JP3" gate="A" pin="2"/>
  7062. <wire x1="118.11" y1="72.39" x2="111.76" y2="72.39" width="0.1524" layer="91"/>
  7063. <wire x1="111.76" y1="72.39" x2="111.76" y2="64.77" width="0.1524" layer="91"/>
  7064. <wire x1="111.76" y1="64.77" x2="149.86" y2="64.77" width="0.1524" layer="91"/>
  7065. <junction x="149.86" y="64.77"/>
  7066. <wire x1="106.68" y1="22.86" x2="90.17" y2="22.86" width="0.1524" layer="91"/>
  7067. <wire x1="90.17" y1="22.86" x2="90.17" y2="46.99" width="0.1524" layer="91"/>
  7068. <pinref part="JP7" gate="A" pin="5"/>
  7069. <wire x1="90.17" y1="46.99" x2="80.01" y2="46.99" width="0.1524" layer="91"/>
  7070. </segment>
  7071. </net>
  7072. <net name="N$14" class="0">
  7073. <segment>
  7074. <wire x1="175.26" y1="30.48" x2="175.26" y2="63.5" width="0.1524" layer="91"/>
  7075. <wire x1="175.26" y1="63.5" x2="195.58" y2="63.5" width="0.1524" layer="91"/>
  7076. <pinref part="C1" gate="G$1" pin="1"/>
  7077. <wire x1="177.8" y1="30.48" x2="175.26" y2="30.48" width="0.1524" layer="91"/>
  7078. <junction x="175.26" y="30.48"/>
  7079. <pinref part="JP5" gate="G$1" pin="1"/>
  7080. <pinref part="U$3" gate="G$1" pin="VIN"/>
  7081. <wire x1="175.26" y1="30.48" x2="175.26" y2="15.24" width="0.1524" layer="91"/>
  7082. <wire x1="175.26" y1="15.24" x2="172.72" y2="15.24" width="0.1524" layer="91"/>
  7083. </segment>
  7084. </net>
  7085. <net name="N$15" class="0">
  7086. <segment>
  7087. <wire x1="109.22" y1="20.32" x2="127" y2="20.32" width="0.1524" layer="91"/>
  7088. <wire x1="127" y1="20.32" x2="127" y2="25.4" width="0.1524" layer="91"/>
  7089. <wire x1="127" y1="25.4" x2="127" y2="78.74" width="0.1524" layer="91"/>
  7090. <wire x1="127" y1="78.74" x2="20.32" y2="78.74" width="0.1524" layer="91"/>
  7091. <wire x1="20.32" y1="78.74" x2="20.32" y2="49.53" width="0.1524" layer="91"/>
  7092. <wire x1="132.08" y1="25.4" x2="127" y2="25.4" width="0.1524" layer="91"/>
  7093. <junction x="127" y="25.4"/>
  7094. <pinref part="C2" gate="G$1" pin="1"/>
  7095. <wire x1="132.08" y1="25.4" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  7096. <junction x="132.08" y="25.4"/>
  7097. <pinref part="JP1" gate="A" pin="3"/>
  7098. <wire x1="132.08" y1="15.24" x2="132.08" y2="7.62" width="0.1524" layer="91"/>
  7099. <wire x1="109.22" y1="20.32" x2="109.22" y2="-35.56" width="0.1524" layer="91"/>
  7100. <wire x1="109.22" y1="-35.56" x2="127" y2="-35.56" width="0.1524" layer="91"/>
  7101. <junction x="109.22" y="20.32"/>
  7102. <wire x1="-8.89" y1="66.04" x2="-13.97" y2="66.04" width="0.1524" layer="91"/>
  7103. <wire x1="-13.97" y1="66.04" x2="-13.97" y2="87.63" width="0.1524" layer="91"/>
  7104. <wire x1="-13.97" y1="87.63" x2="132.08" y2="87.63" width="0.1524" layer="91"/>
  7105. <wire x1="132.08" y1="87.63" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  7106. <pinref part="R7" gate="G$1" pin="2"/>
  7107. <wire x1="132.08" y1="78.74" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  7108. <wire x1="132.08" y1="31.75" x2="132.08" y2="25.4" width="0.1524" layer="91"/>
  7109. <wire x1="144.78" y1="78.74" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  7110. <junction x="132.08" y="78.74"/>
  7111. <pinref part="R10" gate="G$1" pin="2"/>
  7112. <wire x1="134.62" y1="15.24" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  7113. <junction x="132.08" y="15.24"/>
  7114. <pinref part="R11" gate="G$1" pin="2"/>
  7115. <wire x1="137.16" y1="31.75" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  7116. <junction x="132.08" y="31.75"/>
  7117. <wire x1="20.32" y1="49.53" x2="44.45" y2="49.53" width="0.1524" layer="91"/>
  7118. <pinref part="JP6" gate="A" pin="5"/>
  7119. <wire x1="109.22" y1="20.32" x2="88.9" y2="20.32" width="0.1524" layer="91"/>
  7120. <pinref part="JP7" gate="A" pin="6"/>
  7121. <wire x1="88.9" y1="20.32" x2="88.9" y2="49.53" width="0.1524" layer="91"/>
  7122. <wire x1="88.9" y1="49.53" x2="80.01" y2="49.53" width="0.1524" layer="91"/>
  7123. </segment>
  7124. </net>
  7125. <net name="N$16" class="0">
  7126. <segment>
  7127. <wire x1="106.68" y1="66.04" x2="106.68" y2="74.93" width="0.1524" layer="91"/>
  7128. <wire x1="106.68" y1="74.93" x2="118.11" y2="74.93" width="0.1524" layer="91"/>
  7129. <wire x1="80.01" y1="57.15" x2="96.52" y2="57.15" width="0.1524" layer="91"/>
  7130. <wire x1="96.52" y1="57.15" x2="96.52" y2="66.04" width="0.1524" layer="91"/>
  7131. <wire x1="96.52" y1="66.04" x2="106.68" y2="66.04" width="0.1524" layer="91"/>
  7132. </segment>
  7133. </net>
  7134. <net name="N$17" class="0">
  7135. <segment>
  7136. <wire x1="110.49" y1="63.5" x2="110.49" y2="69.85" width="0.1524" layer="91"/>
  7137. <wire x1="110.49" y1="69.85" x2="118.11" y2="69.85" width="0.1524" layer="91"/>
  7138. <wire x1="110.49" y1="63.5" x2="87.63" y2="63.5" width="0.1524" layer="91"/>
  7139. <pinref part="JP7" gate="A" pin="10"/>
  7140. <wire x1="87.63" y1="63.5" x2="87.63" y2="59.69" width="0.1524" layer="91"/>
  7141. <wire x1="87.63" y1="59.69" x2="80.01" y2="59.69" width="0.1524" layer="91"/>
  7142. </segment>
  7143. </net>
  7144. <net name="N$18" class="0">
  7145. <segment>
  7146. <pinref part="U$1" gate="G$1" pin="P$2"/>
  7147. <pinref part="R1" gate="G$1" pin="1"/>
  7148. </segment>
  7149. </net>
  7150. <net name="N$19" class="0">
  7151. <segment>
  7152. <pinref part="U$1" gate="G$1" pin="P$4"/>
  7153. <pinref part="R2" gate="G$1" pin="1"/>
  7154. </segment>
  7155. </net>
  7156. <net name="N$20" class="0">
  7157. <segment>
  7158. <pinref part="U$1" gate="G$1" pin="P$6"/>
  7159. <pinref part="R3" gate="G$1" pin="1"/>
  7160. </segment>
  7161. </net>
  7162. <net name="N$21" class="0">
  7163. <segment>
  7164. <pinref part="U$1" gate="G$1" pin="P$8"/>
  7165. <pinref part="R4" gate="G$1" pin="1"/>
  7166. </segment>
  7167. </net>
  7168. <net name="N$70" class="0">
  7169. <segment>
  7170. <pinref part="JP1" gate="A" pin="1"/>
  7171. <wire x1="127" y1="-30.48" x2="114.3" y2="-30.48" width="0.1524" layer="91"/>
  7172. <wire x1="114.3" y1="-30.48" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7173. <wire x1="114.3" y1="-19.05" x2="114.3" y2="36.83" width="0.1524" layer="91"/>
  7174. <pinref part="R9" gate="G$1" pin="2"/>
  7175. <wire x1="130.81" y1="-19.05" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7176. <junction x="114.3" y="-19.05"/>
  7177. <pinref part="JP7" gate="A" pin="1"/>
  7178. <wire x1="114.3" y1="36.83" x2="80.01" y2="36.83" width="0.1524" layer="91"/>
  7179. </segment>
  7180. </net>
  7181. <net name="N$71" class="0">
  7182. <segment>
  7183. <wire x1="80.01" y1="39.37" x2="119.38" y2="39.37" width="0.1524" layer="91"/>
  7184. <wire x1="119.38" y1="39.37" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7185. <pinref part="JP1" gate="A" pin="2"/>
  7186. <wire x1="119.38" y1="-8.89" x2="119.38" y2="-33.02" width="0.1524" layer="91"/>
  7187. <wire x1="119.38" y1="-33.02" x2="127" y2="-33.02" width="0.1524" layer="91"/>
  7188. <pinref part="R8" gate="G$1" pin="2"/>
  7189. <wire x1="130.81" y1="-8.89" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7190. <junction x="119.38" y="-8.89"/>
  7191. </segment>
  7192. </net>
  7193. <net name="N$72" class="0">
  7194. <segment>
  7195. <pinref part="R5" gate="G$1" pin="1"/>
  7196. <wire x1="15.24" y1="66.04" x2="34.29" y2="66.04" width="0.1524" layer="91"/>
  7197. <pinref part="JP6" gate="A" pin="4"/>
  7198. <wire x1="34.29" y1="66.04" x2="34.29" y2="52.07" width="0.1524" layer="91"/>
  7199. <wire x1="34.29" y1="52.07" x2="44.45" y2="52.07" width="0.1524" layer="91"/>
  7200. </segment>
  7201. </net>
  7202. <net name="N$73" class="0">
  7203. <segment>
  7204. <pinref part="R6" gate="G$1" pin="1"/>
  7205. <pinref part="R5" gate="G$1" pin="2"/>
  7206. <wire x1="0" y1="66.04" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7207. <pinref part="C3" gate="G$1" pin="2"/>
  7208. <wire x1="2.54" y1="66.04" x2="5.08" y2="66.04" width="0.1524" layer="91"/>
  7209. <wire x1="2.54" y1="60.96" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7210. <junction x="2.54" y="66.04"/>
  7211. </segment>
  7212. </net>
  7213. <net name="N$75" class="0">
  7214. <segment>
  7215. <pinref part="JP4" gate="A" pin="1"/>
  7216. <pinref part="R7" gate="G$1" pin="1"/>
  7217. <wire x1="168.91" y1="78.74" x2="154.94" y2="78.74" width="0.1524" layer="91"/>
  7218. </segment>
  7219. </net>
  7220. <net name="N$76" class="0">
  7221. <segment>
  7222. <wire x1="93.98" y1="60.96" x2="140.97" y2="60.96" width="0.1524" layer="91"/>
  7223. <wire x1="140.97" y1="60.96" x2="140.97" y2="76.2" width="0.1524" layer="91"/>
  7224. <pinref part="JP4" gate="A" pin="2"/>
  7225. <wire x1="140.97" y1="76.2" x2="168.91" y2="76.2" width="0.1524" layer="91"/>
  7226. <pinref part="JP6" gate="A" pin="1"/>
  7227. <wire x1="44.45" y1="59.69" x2="38.1" y2="59.69" width="0.1524" layer="91"/>
  7228. <wire x1="38.1" y1="59.69" x2="38.1" y2="66.04" width="0.1524" layer="91"/>
  7229. <wire x1="38.1" y1="66.04" x2="93.98" y2="66.04" width="0.1524" layer="91"/>
  7230. <wire x1="93.98" y1="66.04" x2="93.98" y2="60.96" width="0.1524" layer="91"/>
  7231. </segment>
  7232. </net>
  7233. <net name="N$74" class="0">
  7234. <segment>
  7235. <pinref part="R10" gate="G$1" pin="1"/>
  7236. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  7237. <wire x1="144.78" y1="15.24" x2="147.32" y2="15.24" width="0.1524" layer="91"/>
  7238. </segment>
  7239. </net>
  7240. <net name="N$2" class="0">
  7241. <segment>
  7242. <pinref part="R1" gate="G$1" pin="2"/>
  7243. <pinref part="JP6" gate="A" pin="10"/>
  7244. <wire x1="44.45" y1="36.83" x2="21.59" y2="36.83" width="0.1524" layer="91"/>
  7245. <wire x1="21.59" y1="36.83" x2="21.59" y2="12.7" width="0.1524" layer="91"/>
  7246. <wire x1="21.59" y1="12.7" x2="60.96" y2="12.7" width="0.1524" layer="91"/>
  7247. <wire x1="60.96" y1="12.7" x2="60.96" y2="-5.08" width="0.1524" layer="91"/>
  7248. </segment>
  7249. </net>
  7250. </nets>
  7251. </sheet>
  7252. </sheets>
  7253. </schematic>
  7254. </drawing>
  7255. </eagle>