8051dumper.kicad_sch 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
  3. (paper "B")
  4. (title_block
  5. (title "8051dumper")
  6. (date "2022-01-23")
  7. (rev "1.0a")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "8051dumper-rescue:8051-MCU_8051" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  12. (property "Reference" "U" (id 0) (at 0 1.27 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "8051-MCU_8051" (id 1) (at 0 -1.27 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "Package_DIP:DIP-40_W15.24mm" (id 2) (at 1.27 -35.56 0)
  19. (effects (font (size 1.27 1.27)) (justify left) hide)
  20. )
  21. (property "Datasheet" "" (id 3) (at 15.24 8.89 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "MPN" "8051" (id 4) (at 1.27 -38.1 0)
  25. (effects (font (size 1.27 1.27)) (justify left) hide)
  26. )
  27. (property "IPN" "TBD" (id 5) (at 1.27 -40.64 0)
  28. (effects (font (size 1.27 1.27)) (justify left) hide)
  29. )
  30. (property "ki_fp_filters" "Package_DIP:DIP-40_W15.24mm*" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (symbol "8051-MCU_8051_0_0"
  34. (pin bidirectional line (at 15.24 8.89 180) (length 2.54)
  35. (name "P1.0" (effects (font (size 1.27 1.27))))
  36. (number "1" (effects (font (size 1.27 1.27))))
  37. )
  38. (pin bidirectional line (at -15.24 -13.97 0) (length 2.54)
  39. (name "RxD/P3.0" (effects (font (size 1.27 1.27))))
  40. (number "10" (effects (font (size 1.27 1.27))))
  41. )
  42. (pin bidirectional line (at -15.24 -16.51 0) (length 2.54)
  43. (name "TxD/P3.1" (effects (font (size 1.27 1.27))))
  44. (number "11" (effects (font (size 1.27 1.27))))
  45. )
  46. (pin bidirectional line (at -15.24 -19.05 0) (length 2.54)
  47. (name "~{INT0}/P3.2" (effects (font (size 1.27 1.27))))
  48. (number "12" (effects (font (size 1.27 1.27))))
  49. )
  50. (pin bidirectional line (at -15.24 -21.59 0) (length 2.54)
  51. (name "~{INT1}/P3.3" (effects (font (size 1.27 1.27))))
  52. (number "13" (effects (font (size 1.27 1.27))))
  53. )
  54. (pin bidirectional line (at -15.24 -24.13 0) (length 2.54)
  55. (name "T0/P3.4" (effects (font (size 1.27 1.27))))
  56. (number "14" (effects (font (size 1.27 1.27))))
  57. )
  58. (pin bidirectional line (at -15.24 -26.67 0) (length 2.54)
  59. (name "T1/P3.5" (effects (font (size 1.27 1.27))))
  60. (number "15" (effects (font (size 1.27 1.27))))
  61. )
  62. (pin bidirectional line (at -15.24 -29.21 0) (length 2.54)
  63. (name "~{WR}/P3.6" (effects (font (size 1.27 1.27))))
  64. (number "16" (effects (font (size 1.27 1.27))))
  65. )
  66. (pin bidirectional line (at -15.24 -31.75 0) (length 2.54)
  67. (name "~{RD}/P3.7" (effects (font (size 1.27 1.27))))
  68. (number "17" (effects (font (size 1.27 1.27))))
  69. )
  70. (pin bidirectional line (at -15.24 13.97 0) (length 2.54)
  71. (name "XTAL2" (effects (font (size 1.27 1.27))))
  72. (number "18" (effects (font (size 1.27 1.27))))
  73. )
  74. (pin input line (at -15.24 31.75 0) (length 2.54)
  75. (name "XTAL1" (effects (font (size 1.27 1.27))))
  76. (number "19" (effects (font (size 1.27 1.27))))
  77. )
  78. (pin bidirectional line (at 15.24 6.35 180) (length 2.54)
  79. (name "P1.1" (effects (font (size 1.27 1.27))))
  80. (number "2" (effects (font (size 1.27 1.27))))
  81. )
  82. (pin power_in line (at 0 -36.83 90) (length 2.54)
  83. (name "VSS" (effects (font (size 1.27 1.27))))
  84. (number "20" (effects (font (size 1.27 1.27))))
  85. )
  86. (pin bidirectional line (at 15.24 -13.97 180) (length 2.54)
  87. (name "P2.0/A8" (effects (font (size 1.27 1.27))))
  88. (number "21" (effects (font (size 1.27 1.27))))
  89. )
  90. (pin bidirectional line (at 15.24 -16.51 180) (length 2.54)
  91. (name "P2.1/A9" (effects (font (size 1.27 1.27))))
  92. (number "22" (effects (font (size 1.27 1.27))))
  93. )
  94. (pin bidirectional line (at 15.24 -19.05 180) (length 2.54)
  95. (name "P2.2/A10" (effects (font (size 1.27 1.27))))
  96. (number "23" (effects (font (size 1.27 1.27))))
  97. )
  98. (pin bidirectional line (at 15.24 -21.59 180) (length 2.54)
  99. (name "P2.3/A11" (effects (font (size 1.27 1.27))))
  100. (number "24" (effects (font (size 1.27 1.27))))
  101. )
  102. (pin bidirectional line (at 15.24 -24.13 180) (length 2.54)
  103. (name "P2.4/A12" (effects (font (size 1.27 1.27))))
  104. (number "25" (effects (font (size 1.27 1.27))))
  105. )
  106. (pin bidirectional line (at 15.24 -26.67 180) (length 2.54)
  107. (name "P2.5/A13" (effects (font (size 1.27 1.27))))
  108. (number "26" (effects (font (size 1.27 1.27))))
  109. )
  110. (pin bidirectional line (at 15.24 -29.21 180) (length 2.54)
  111. (name "P2.6/A14" (effects (font (size 1.27 1.27))))
  112. (number "27" (effects (font (size 1.27 1.27))))
  113. )
  114. (pin bidirectional line (at 15.24 -31.75 180) (length 2.54)
  115. (name "P2.7/A15" (effects (font (size 1.27 1.27))))
  116. (number "28" (effects (font (size 1.27 1.27))))
  117. )
  118. (pin output line (at -15.24 3.81 0) (length 2.54)
  119. (name "~{PSEN}" (effects (font (size 1.27 1.27))))
  120. (number "29" (effects (font (size 1.27 1.27))))
  121. )
  122. (pin bidirectional line (at 15.24 3.81 180) (length 2.54)
  123. (name "P1.2" (effects (font (size 1.27 1.27))))
  124. (number "3" (effects (font (size 1.27 1.27))))
  125. )
  126. (pin output line (at -15.24 -1.27 0) (length 2.54)
  127. (name "ALE" (effects (font (size 1.27 1.27))))
  128. (number "30" (effects (font (size 1.27 1.27))))
  129. )
  130. (pin input line (at -15.24 8.89 0) (length 2.54)
  131. (name "~{EA}" (effects (font (size 1.27 1.27))))
  132. (number "31" (effects (font (size 1.27 1.27))))
  133. )
  134. (pin bidirectional line (at 15.24 13.97 180) (length 2.54)
  135. (name "P0.7/AD7" (effects (font (size 1.27 1.27))))
  136. (number "32" (effects (font (size 1.27 1.27))))
  137. )
  138. (pin bidirectional line (at 15.24 16.51 180) (length 2.54)
  139. (name "P0.6/AD6" (effects (font (size 1.27 1.27))))
  140. (number "33" (effects (font (size 1.27 1.27))))
  141. )
  142. (pin bidirectional line (at 15.24 19.05 180) (length 2.54)
  143. (name "P0.5/AD5" (effects (font (size 1.27 1.27))))
  144. (number "34" (effects (font (size 1.27 1.27))))
  145. )
  146. (pin bidirectional line (at 15.24 21.59 180) (length 2.54)
  147. (name "P0.4/AD4" (effects (font (size 1.27 1.27))))
  148. (number "35" (effects (font (size 1.27 1.27))))
  149. )
  150. (pin bidirectional line (at 15.24 24.13 180) (length 2.54)
  151. (name "P0.3/AD3" (effects (font (size 1.27 1.27))))
  152. (number "36" (effects (font (size 1.27 1.27))))
  153. )
  154. (pin bidirectional line (at 15.24 26.67 180) (length 2.54)
  155. (name "P0.2/AD2" (effects (font (size 1.27 1.27))))
  156. (number "37" (effects (font (size 1.27 1.27))))
  157. )
  158. (pin bidirectional line (at 15.24 29.21 180) (length 2.54)
  159. (name "P0.1/AD1" (effects (font (size 1.27 1.27))))
  160. (number "38" (effects (font (size 1.27 1.27))))
  161. )
  162. (pin bidirectional line (at 15.24 31.75 180) (length 2.54)
  163. (name "P0.0/AD0" (effects (font (size 1.27 1.27))))
  164. (number "39" (effects (font (size 1.27 1.27))))
  165. )
  166. (pin bidirectional line (at 15.24 1.27 180) (length 2.54)
  167. (name "P1.3" (effects (font (size 1.27 1.27))))
  168. (number "4" (effects (font (size 1.27 1.27))))
  169. )
  170. (pin power_in line (at 0 36.83 270) (length 2.54)
  171. (name "VCC" (effects (font (size 1.27 1.27))))
  172. (number "40" (effects (font (size 1.27 1.27))))
  173. )
  174. (pin bidirectional line (at 15.24 -1.27 180) (length 2.54)
  175. (name "P1.4" (effects (font (size 1.27 1.27))))
  176. (number "5" (effects (font (size 1.27 1.27))))
  177. )
  178. (pin bidirectional line (at 15.24 -3.81 180) (length 2.54)
  179. (name "P1.5" (effects (font (size 1.27 1.27))))
  180. (number "6" (effects (font (size 1.27 1.27))))
  181. )
  182. (pin bidirectional line (at 15.24 -6.35 180) (length 2.54)
  183. (name "P1.6" (effects (font (size 1.27 1.27))))
  184. (number "7" (effects (font (size 1.27 1.27))))
  185. )
  186. (pin bidirectional line (at 15.24 -8.89 180) (length 2.54)
  187. (name "P1.7" (effects (font (size 1.27 1.27))))
  188. (number "8" (effects (font (size 1.27 1.27))))
  189. )
  190. (pin input line (at -15.24 -8.89 0) (length 2.54)
  191. (name "RST" (effects (font (size 1.27 1.27))))
  192. (number "9" (effects (font (size 1.27 1.27))))
  193. )
  194. )
  195. (symbol "8051-MCU_8051_0_1"
  196. (rectangle (start -12.7 34.29) (end 12.7 -34.29)
  197. (stroke (width 0) (type default) (color 0 0 0 0))
  198. (fill (type background))
  199. )
  200. )
  201. )
  202. (symbol "8051dumper-rescue:AT28C256-15PU-Memory_EEPROM" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  203. (property "Reference" "U" (id 0) (at 17.78 -54.61 0)
  204. (effects (font (size 1.524 1.524)) (justify left))
  205. )
  206. (property "Value" "AT28C256-15PU-Memory_EEPROM" (id 1) (at 17.78 -57.15 0)
  207. (effects (font (size 1.524 1.524)) (justify left))
  208. )
  209. (property "Footprint" "Package_DIP:DIP-28_W15.24mm" (id 2) (at 17.78 -64.77 0)
  210. (effects (font (size 1.524 1.524)) (justify left) hide)
  211. )
  212. (property "Datasheet" "" (id 3) (at 0 0 0)
  213. (effects (font (size 1.524 1.524)))
  214. )
  215. (property "MPN" "Microchip:AT28C256-15PU" (id 4) (at 17.78 -59.69 0)
  216. (effects (font (size 1.524 1.524)) (justify left) hide)
  217. )
  218. (property "IPN" "TBD" (id 5) (at 17.78 -62.23 0)
  219. (effects (font (size 1.524 1.524)) (justify left) hide)
  220. )
  221. (property "ki_fp_filters" "DIP-28_W15.24mm*" (id 6) (at 0 0 0)
  222. (effects (font (size 1.27 1.27)) hide)
  223. )
  224. (symbol "AT28C256-15PU-Memory_EEPROM_0_1"
  225. (rectangle (start 5.08 2.54) (end 25.4 -53.34)
  226. (stroke (width 0) (type default) (color 0 0 0 0))
  227. (fill (type background))
  228. )
  229. )
  230. (symbol "AT28C256-15PU-Memory_EEPROM_1_1"
  231. (pin input line (at 0 -35.56 0) (length 5.08)
  232. (name "A14" (effects (font (size 1.27 1.27))))
  233. (number "1" (effects (font (size 1.27 1.27))))
  234. )
  235. (pin input line (at 0 0 0) (length 5.08)
  236. (name "A0" (effects (font (size 1.27 1.27))))
  237. (number "10" (effects (font (size 1.27 1.27))))
  238. )
  239. (pin bidirectional line (at 30.48 0 180) (length 5.08)
  240. (name "I/O0" (effects (font (size 1.27 1.27))))
  241. (number "11" (effects (font (size 1.27 1.27))))
  242. )
  243. (pin bidirectional line (at 30.48 -2.54 180) (length 5.08)
  244. (name "I/O1" (effects (font (size 1.27 1.27))))
  245. (number "12" (effects (font (size 1.27 1.27))))
  246. )
  247. (pin bidirectional line (at 30.48 -5.08 180) (length 5.08)
  248. (name "I/O2" (effects (font (size 1.27 1.27))))
  249. (number "13" (effects (font (size 1.27 1.27))))
  250. )
  251. (pin power_in line (at 15.24 -58.42 90) (length 5.08)
  252. (name "GND" (effects (font (size 1.27 1.27))))
  253. (number "14" (effects (font (size 1.27 1.27))))
  254. )
  255. (pin bidirectional line (at 30.48 -7.62 180) (length 5.08)
  256. (name "I/O3" (effects (font (size 1.27 1.27))))
  257. (number "15" (effects (font (size 1.27 1.27))))
  258. )
  259. (pin bidirectional line (at 30.48 -10.16 180) (length 5.08)
  260. (name "I/O4" (effects (font (size 1.27 1.27))))
  261. (number "16" (effects (font (size 1.27 1.27))))
  262. )
  263. (pin bidirectional line (at 30.48 -12.7 180) (length 5.08)
  264. (name "I/O5" (effects (font (size 1.27 1.27))))
  265. (number "17" (effects (font (size 1.27 1.27))))
  266. )
  267. (pin bidirectional line (at 30.48 -15.24 180) (length 5.08)
  268. (name "I/O6" (effects (font (size 1.27 1.27))))
  269. (number "18" (effects (font (size 1.27 1.27))))
  270. )
  271. (pin bidirectional line (at 30.48 -17.78 180) (length 5.08)
  272. (name "I/O7" (effects (font (size 1.27 1.27))))
  273. (number "19" (effects (font (size 1.27 1.27))))
  274. )
  275. (pin input line (at 0 -30.48 0) (length 5.08)
  276. (name "A12" (effects (font (size 1.27 1.27))))
  277. (number "2" (effects (font (size 1.27 1.27))))
  278. )
  279. (pin input line (at 0 -45.72 0) (length 5.08)
  280. (name "~{CE}" (effects (font (size 1.27 1.27))))
  281. (number "20" (effects (font (size 1.27 1.27))))
  282. )
  283. (pin input line (at 0 -25.4 0) (length 5.08)
  284. (name "A10" (effects (font (size 1.27 1.27))))
  285. (number "21" (effects (font (size 1.27 1.27))))
  286. )
  287. (pin input line (at 0 -48.26 0) (length 5.08)
  288. (name "~{OE}" (effects (font (size 1.27 1.27))))
  289. (number "22" (effects (font (size 1.27 1.27))))
  290. )
  291. (pin input line (at 0 -27.94 0) (length 5.08)
  292. (name "A11" (effects (font (size 1.27 1.27))))
  293. (number "23" (effects (font (size 1.27 1.27))))
  294. )
  295. (pin input line (at 0 -22.86 0) (length 5.08)
  296. (name "A9" (effects (font (size 1.27 1.27))))
  297. (number "24" (effects (font (size 1.27 1.27))))
  298. )
  299. (pin input line (at 0 -20.32 0) (length 5.08)
  300. (name "A8" (effects (font (size 1.27 1.27))))
  301. (number "25" (effects (font (size 1.27 1.27))))
  302. )
  303. (pin input line (at 0 -33.02 0) (length 5.08)
  304. (name "A13" (effects (font (size 1.27 1.27))))
  305. (number "26" (effects (font (size 1.27 1.27))))
  306. )
  307. (pin input line (at 0 -50.8 0) (length 5.08)
  308. (name "~{WE}" (effects (font (size 1.27 1.27))))
  309. (number "27" (effects (font (size 1.27 1.27))))
  310. )
  311. (pin power_in line (at 15.24 7.62 270) (length 5.08)
  312. (name "VCC" (effects (font (size 1.27 1.27))))
  313. (number "28" (effects (font (size 1.27 1.27))))
  314. )
  315. (pin input line (at 0 -17.78 0) (length 5.08)
  316. (name "A7" (effects (font (size 1.27 1.27))))
  317. (number "3" (effects (font (size 1.27 1.27))))
  318. )
  319. (pin input line (at 0 -15.24 0) (length 5.08)
  320. (name "A6" (effects (font (size 1.27 1.27))))
  321. (number "4" (effects (font (size 1.27 1.27))))
  322. )
  323. (pin input line (at 0 -12.7 0) (length 5.08)
  324. (name "A5" (effects (font (size 1.27 1.27))))
  325. (number "5" (effects (font (size 1.27 1.27))))
  326. )
  327. (pin input line (at 0 -10.16 0) (length 5.08)
  328. (name "A4" (effects (font (size 1.27 1.27))))
  329. (number "6" (effects (font (size 1.27 1.27))))
  330. )
  331. (pin input line (at 0 -7.62 0) (length 5.08)
  332. (name "A3" (effects (font (size 1.27 1.27))))
  333. (number "7" (effects (font (size 1.27 1.27))))
  334. )
  335. (pin input line (at 0 -5.08 0) (length 5.08)
  336. (name "A2" (effects (font (size 1.27 1.27))))
  337. (number "8" (effects (font (size 1.27 1.27))))
  338. )
  339. (pin input line (at 0 -2.54 0) (length 5.08)
  340. (name "A1" (effects (font (size 1.27 1.27))))
  341. (number "9" (effects (font (size 1.27 1.27))))
  342. )
  343. )
  344. )
  345. (symbol "8051dumper-rescue:CK_1101M2S3CQE2-Switch" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  346. (property "Reference" "S" (id 0) (at 0 11.43 0)
  347. (effects (font (size 1.524 1.524)))
  348. )
  349. (property "Value" "CK_1101M2S3CQE2-Switch" (id 1) (at 0 8.89 0)
  350. (effects (font (size 1.524 1.524)))
  351. )
  352. (property "Footprint" "Button_Switch_THT:SW_CK_1101M2S3CQE2" (id 2) (at 0 -13.97 0)
  353. (effects (font (size 1.524 1.524)) hide)
  354. )
  355. (property "Datasheet" "" (id 3) (at 0 11.43 0)
  356. (effects (font (size 1.524 1.524)))
  357. )
  358. (property "IPN" "TBD" (id 4) (at 0 -8.89 0)
  359. (effects (font (size 1.524 1.524)) hide)
  360. )
  361. (property "MPN" "CK:1101M2S3CQE2" (id 5) (at 0 -11.43 0)
  362. (effects (font (size 1.524 1.524)) hide)
  363. )
  364. (symbol "CK_1101M2S3CQE2-Switch_0_1"
  365. (rectangle (start -3.81 7.62) (end 0 -7.62)
  366. (stroke (width 0) (type default) (color 0 0 0 0))
  367. (fill (type none))
  368. )
  369. (circle (center -2.54 -5.08) (radius 0.508)
  370. (stroke (width 0) (type default) (color 0 0 0 0))
  371. (fill (type outline))
  372. )
  373. (circle (center -2.54 0) (radius 0.508)
  374. (stroke (width 0) (type default) (color 0 0 0 0))
  375. (fill (type outline))
  376. )
  377. (circle (center -2.54 5.08) (radius 0.508)
  378. (stroke (width 0) (type default) (color 0 0 0 0))
  379. (fill (type outline))
  380. )
  381. (rectangle (start -1.27 -1.27) (end 2.54 -3.81)
  382. (stroke (width 0) (type default) (color 0 0 0 0))
  383. (fill (type outline))
  384. )
  385. (polyline
  386. (pts
  387. (xy -2.794 5.08)
  388. (xy -3.81 5.08)
  389. )
  390. (stroke (width 0) (type default) (color 0 0 0 0))
  391. (fill (type none))
  392. )
  393. (polyline
  394. (pts
  395. (xy -2.54 -5.08)
  396. (xy -3.81 -5.08)
  397. )
  398. (stroke (width 0) (type default) (color 0 0 0 0))
  399. (fill (type none))
  400. )
  401. (polyline
  402. (pts
  403. (xy -2.54 0)
  404. (xy -3.81 0)
  405. )
  406. (stroke (width 0) (type default) (color 0 0 0 0))
  407. (fill (type none))
  408. )
  409. (polyline
  410. (pts
  411. (xy -2.54 -5.08)
  412. (xy -1.27 -5.08)
  413. (xy -1.27 0)
  414. (xy -2.54 0)
  415. )
  416. (stroke (width 0.381) (type default) (color 0 0 0 0))
  417. (fill (type none))
  418. )
  419. )
  420. (symbol "CK_1101M2S3CQE2-Switch_1_1"
  421. (pin passive line (at -8.89 -5.08 0) (length 5.08)
  422. (name "1" (effects (font (size 1.27 1.27))))
  423. (number "1" (effects (font (size 1.27 1.27))))
  424. )
  425. (pin passive line (at -8.89 0 0) (length 5.08)
  426. (name "2" (effects (font (size 1.27 1.27))))
  427. (number "2" (effects (font (size 1.27 1.27))))
  428. )
  429. (pin passive line (at -8.89 5.08 0) (length 5.08)
  430. (name "3" (effects (font (size 1.27 1.27))))
  431. (number "3" (effects (font (size 1.27 1.27))))
  432. )
  433. )
  434. )
  435. (symbol "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  436. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  437. (effects (font (size 1.27 1.27)) (justify left))
  438. )
  439. (property "Value" "C_0.1uF_50V_X7R_radial-Capacitor" (id 1) (at 0.635 -2.54 0)
  440. (effects (font (size 1.27 1.27)) (justify left))
  441. )
  442. (property "Footprint" "Capacitor_THT:C_Disc_D3.8mm_W2.6mm_P2.50mm" (id 2) (at 0.635 -4.445 0)
  443. (effects (font (size 1.27 1.27)) (justify left) hide)
  444. )
  445. (property "Datasheet" "" (id 3) (at 0 0 0)
  446. (effects (font (size 1.27 1.27)) hide)
  447. )
  448. (property "IPN" "TBD" (id 4) (at 0.635 -6.35 0)
  449. (effects (font (size 1.27 1.27)) (justify left) hide)
  450. )
  451. (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 0.635 -8.255 0)
  452. (effects (font (size 1.27 1.27)) (justify left) hide)
  453. )
  454. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  455. (effects (font (size 1.27 1.27)) hide)
  456. )
  457. (symbol "C_0.1uF_50V_X7R_radial-Capacitor_0_1"
  458. (polyline
  459. (pts
  460. (xy -2.032 -0.762)
  461. (xy 2.032 -0.762)
  462. )
  463. (stroke (width 0.508) (type default) (color 0 0 0 0))
  464. (fill (type none))
  465. )
  466. (polyline
  467. (pts
  468. (xy -2.032 0.762)
  469. (xy 2.032 0.762)
  470. )
  471. (stroke (width 0.508) (type default) (color 0 0 0 0))
  472. (fill (type none))
  473. )
  474. )
  475. (symbol "C_0.1uF_50V_X7R_radial-Capacitor_1_1"
  476. (pin passive line (at 0 3.81 270) (length 2.794)
  477. (name "~" (effects (font (size 1.27 1.27))))
  478. (number "1" (effects (font (size 1.27 1.27))))
  479. )
  480. (pin passive line (at 0 -3.81 90) (length 2.794)
  481. (name "~" (effects (font (size 1.27 1.27))))
  482. (number "2" (effects (font (size 1.27 1.27))))
  483. )
  484. )
  485. )
  486. (symbol "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  487. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  488. (effects (font (size 1.27 1.27)) (justify left))
  489. )
  490. (property "Value" "C_10uF_10V_X7R_radial-Capacitor" (id 1) (at 0.635 -2.54 0)
  491. (effects (font (size 1.27 1.27)) (justify left))
  492. )
  493. (property "Footprint" "Capacitor_THT:C_Disc_D5.1mm_W3.2mm_P5.00mm" (id 2) (at 0.635 -4.445 0)
  494. (effects (font (size 1.27 1.27)) (justify left) hide)
  495. )
  496. (property "Datasheet" "" (id 3) (at 0 0 0)
  497. (effects (font (size 1.27 1.27)) hide)
  498. )
  499. (property "IPN" "TBD" (id 4) (at 0.635 -6.35 0)
  500. (effects (font (size 1.27 1.27)) (justify left) hide)
  501. )
  502. (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 0.635 -8.255 0)
  503. (effects (font (size 1.27 1.27)) (justify left) hide)
  504. )
  505. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  506. (effects (font (size 1.27 1.27)) hide)
  507. )
  508. (symbol "C_10uF_10V_X7R_radial-Capacitor_0_1"
  509. (polyline
  510. (pts
  511. (xy -2.032 -0.762)
  512. (xy 2.032 -0.762)
  513. )
  514. (stroke (width 0.508) (type default) (color 0 0 0 0))
  515. (fill (type none))
  516. )
  517. (polyline
  518. (pts
  519. (xy -2.032 0.762)
  520. (xy 2.032 0.762)
  521. )
  522. (stroke (width 0.508) (type default) (color 0 0 0 0))
  523. (fill (type none))
  524. )
  525. )
  526. (symbol "C_10uF_10V_X7R_radial-Capacitor_1_1"
  527. (pin passive line (at 0 3.81 270) (length 2.794)
  528. (name "~" (effects (font (size 1.27 1.27))))
  529. (number "1" (effects (font (size 1.27 1.27))))
  530. )
  531. (pin passive line (at 0 -3.81 90) (length 2.794)
  532. (name "~" (effects (font (size 1.27 1.27))))
  533. (number "2" (effects (font (size 1.27 1.27))))
  534. )
  535. )
  536. )
  537. (symbol "8051dumper-rescue:LED-LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  538. (property "Reference" "D" (id 0) (at 0 2.54 0)
  539. (effects (font (size 1.27 1.27)))
  540. )
  541. (property "Value" "LED-LED" (id 1) (at 0 -2.54 0)
  542. (effects (font (size 1.27 1.27)))
  543. )
  544. (property "Footprint" "" (id 2) (at 0 0 0)
  545. (effects (font (size 1.27 1.27)) hide)
  546. )
  547. (property "Datasheet" "" (id 3) (at 0 2.54 0)
  548. (effects (font (size 1.27 1.27)) hide)
  549. )
  550. (property "IPN" "TBD" (id 4) (at 0 -5.08 0)
  551. (effects (font (size 1.524 1.524)) hide)
  552. )
  553. (property "MPN" "TBD:TBD" (id 5) (at 0 -7.62 0)
  554. (effects (font (size 1.524 1.524)) hide)
  555. )
  556. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  557. (effects (font (size 1.27 1.27)) hide)
  558. )
  559. (symbol "LED-LED_0_1"
  560. (polyline
  561. (pts
  562. (xy -1.27 -1.27)
  563. (xy -1.27 1.27)
  564. )
  565. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  566. (fill (type none))
  567. )
  568. (polyline
  569. (pts
  570. (xy 1.27 -1.27)
  571. (xy 1.27 1.27)
  572. (xy -1.27 0)
  573. (xy 1.27 -1.27)
  574. )
  575. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  576. (fill (type outline))
  577. )
  578. (polyline
  579. (pts
  580. (xy -3.048 -0.762)
  581. (xy -4.572 -2.286)
  582. (xy -3.81 -2.286)
  583. (xy -4.572 -2.286)
  584. (xy -4.572 -1.524)
  585. )
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. (polyline
  590. (pts
  591. (xy -1.778 -0.762)
  592. (xy -3.302 -2.286)
  593. (xy -2.54 -2.286)
  594. (xy -3.302 -2.286)
  595. (xy -3.302 -1.524)
  596. )
  597. (stroke (width 0) (type default) (color 0 0 0 0))
  598. (fill (type none))
  599. )
  600. )
  601. (symbol "LED-LED_1_1"
  602. (pin passive line (at -3.81 0 0) (length 2.54)
  603. (name "K" (effects (font (size 1.27 1.27))))
  604. (number "1" (effects (font (size 1.27 1.27))))
  605. )
  606. (pin passive line (at 3.81 0 180) (length 2.54)
  607. (name "A" (effects (font (size 1.27 1.27))))
  608. (number "2" (effects (font (size 1.27 1.27))))
  609. )
  610. )
  611. )
  612. (symbol "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  613. (property "Reference" "R" (id 0) (at 2.032 0 90)
  614. (effects (font (size 1.27 1.27)))
  615. )
  616. (property "Value" "R_10k_1%_0p25W_axial-Resistor" (id 1) (at 3.81 0 90)
  617. (effects (font (size 1.27 1.27)))
  618. )
  619. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 6.35 0 90)
  620. (effects (font (size 1.27 1.27)) hide)
  621. )
  622. (property "Datasheet" "" (id 3) (at 2.032 0 90)
  623. (effects (font (size 1.27 1.27)) hide)
  624. )
  625. (property "IPN" "TBD" (id 4) (at 7.62 0 90)
  626. (effects (font (size 1.27 1.27)) hide)
  627. )
  628. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 8.89 0 90)
  629. (effects (font (size 1.27 1.27)) hide)
  630. )
  631. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  632. (effects (font (size 1.27 1.27)) hide)
  633. )
  634. (symbol "R_10k_1%_0p25W_axial-Resistor_0_1"
  635. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  636. (stroke (width 0.254) (type default) (color 0 0 0 0))
  637. (fill (type none))
  638. )
  639. )
  640. (symbol "R_10k_1%_0p25W_axial-Resistor_1_1"
  641. (pin passive line (at 0 3.81 270) (length 1.27)
  642. (name "~" (effects (font (size 1.27 1.27))))
  643. (number "1" (effects (font (size 1.27 1.27))))
  644. )
  645. (pin passive line (at 0 -3.81 90) (length 1.27)
  646. (name "~" (effects (font (size 1.27 1.27))))
  647. (number "2" (effects (font (size 1.27 1.27))))
  648. )
  649. )
  650. )
  651. (symbol "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  652. (property "Reference" "R" (id 0) (at 2.032 0 90)
  653. (effects (font (size 1.27 1.27)))
  654. )
  655. (property "Value" "R_332_1%_0p25W_axial-Resistor" (id 1) (at 3.81 0 90)
  656. (effects (font (size 1.27 1.27)))
  657. )
  658. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 6.35 0 90)
  659. (effects (font (size 1.27 1.27)) hide)
  660. )
  661. (property "Datasheet" "" (id 3) (at 2.032 0 90)
  662. (effects (font (size 1.27 1.27)) hide)
  663. )
  664. (property "IPN" "TBD" (id 4) (at 7.62 0 90)
  665. (effects (font (size 1.27 1.27)) hide)
  666. )
  667. (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 8.89 0 90)
  668. (effects (font (size 1.27 1.27)) hide)
  669. )
  670. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  671. (effects (font (size 1.27 1.27)) hide)
  672. )
  673. (symbol "R_332_1%_0p25W_axial-Resistor_0_1"
  674. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  675. (stroke (width 0.254) (type default) (color 0 0 0 0))
  676. (fill (type none))
  677. )
  678. )
  679. (symbol "R_332_1%_0p25W_axial-Resistor_1_1"
  680. (pin passive line (at 0 3.81 270) (length 1.27)
  681. (name "~" (effects (font (size 1.27 1.27))))
  682. (number "1" (effects (font (size 1.27 1.27))))
  683. )
  684. (pin passive line (at 0 -3.81 90) (length 1.27)
  685. (name "~" (effects (font (size 1.27 1.27))))
  686. (number "2" (effects (font (size 1.27 1.27))))
  687. )
  688. )
  689. )
  690. (symbol "8051dumper-rescue:SN74LS373N-Logic" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  691. (property "Reference" "U" (id 0) (at 1.27 19.05 0)
  692. (effects (font (size 1.27 1.27)) (justify left))
  693. )
  694. (property "Value" "SN74LS373N-Logic" (id 1) (at 1.27 16.51 0)
  695. (effects (font (size 1.27 1.27)) (justify left))
  696. )
  697. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 1.27 -16.51 0)
  698. (effects (font (size 1.27 1.27)) (justify left) hide)
  699. )
  700. (property "Datasheet" "" (id 3) (at 0 0 0)
  701. (effects (font (size 1.27 1.27)) hide)
  702. )
  703. (property "MPN" "TI:SN74LS373N" (id 4) (at 1.27 -19.05 0)
  704. (effects (font (size 1.27 1.27)) (justify left) hide)
  705. )
  706. (property "IPN" "TBD" (id 5) (at 1.27 -21.59 0)
  707. (effects (font (size 1.27 1.27)) (justify left) hide)
  708. )
  709. (property "ki_fp_filters" "DIP-20_W7.62mm*" (id 6) (at 0 0 0)
  710. (effects (font (size 1.27 1.27)) hide)
  711. )
  712. (symbol "SN74LS373N-Logic_1_0"
  713. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  714. (name "OE" (effects (font (size 1.27 1.27))))
  715. (number "1" (effects (font (size 1.27 1.27))))
  716. )
  717. (pin power_in line (at 0 -20.32 90) (length 5.08)
  718. (name "GND" (effects (font (size 1.27 1.27))))
  719. (number "10" (effects (font (size 1.27 1.27))))
  720. )
  721. (pin input line (at -12.7 -10.16 0) (length 5.08)
  722. (name "LE" (effects (font (size 1.27 1.27))))
  723. (number "11" (effects (font (size 1.27 1.27))))
  724. )
  725. (pin tri_state line (at 12.7 2.54 180) (length 5.08)
  726. (name "O4" (effects (font (size 1.27 1.27))))
  727. (number "12" (effects (font (size 1.27 1.27))))
  728. )
  729. (pin input line (at -12.7 2.54 0) (length 5.08)
  730. (name "D4" (effects (font (size 1.27 1.27))))
  731. (number "13" (effects (font (size 1.27 1.27))))
  732. )
  733. (pin input line (at -12.7 0 0) (length 5.08)
  734. (name "D5" (effects (font (size 1.27 1.27))))
  735. (number "14" (effects (font (size 1.27 1.27))))
  736. )
  737. (pin tri_state line (at 12.7 0 180) (length 5.08)
  738. (name "O5" (effects (font (size 1.27 1.27))))
  739. (number "15" (effects (font (size 1.27 1.27))))
  740. )
  741. (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
  742. (name "O6" (effects (font (size 1.27 1.27))))
  743. (number "16" (effects (font (size 1.27 1.27))))
  744. )
  745. (pin input line (at -12.7 -2.54 0) (length 5.08)
  746. (name "D6" (effects (font (size 1.27 1.27))))
  747. (number "17" (effects (font (size 1.27 1.27))))
  748. )
  749. (pin input line (at -12.7 -5.08 0) (length 5.08)
  750. (name "D7" (effects (font (size 1.27 1.27))))
  751. (number "18" (effects (font (size 1.27 1.27))))
  752. )
  753. (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
  754. (name "O7" (effects (font (size 1.27 1.27))))
  755. (number "19" (effects (font (size 1.27 1.27))))
  756. )
  757. (pin tri_state line (at 12.7 12.7 180) (length 5.08)
  758. (name "O0" (effects (font (size 1.27 1.27))))
  759. (number "2" (effects (font (size 1.27 1.27))))
  760. )
  761. (pin power_in line (at 0 20.32 270) (length 5.08)
  762. (name "VCC" (effects (font (size 1.27 1.27))))
  763. (number "20" (effects (font (size 1.27 1.27))))
  764. )
  765. (pin input line (at -12.7 12.7 0) (length 5.08)
  766. (name "D0" (effects (font (size 1.27 1.27))))
  767. (number "3" (effects (font (size 1.27 1.27))))
  768. )
  769. (pin input line (at -12.7 10.16 0) (length 5.08)
  770. (name "D1" (effects (font (size 1.27 1.27))))
  771. (number "4" (effects (font (size 1.27 1.27))))
  772. )
  773. (pin tri_state line (at 12.7 10.16 180) (length 5.08)
  774. (name "O1" (effects (font (size 1.27 1.27))))
  775. (number "5" (effects (font (size 1.27 1.27))))
  776. )
  777. (pin tri_state line (at 12.7 7.62 180) (length 5.08)
  778. (name "O2" (effects (font (size 1.27 1.27))))
  779. (number "6" (effects (font (size 1.27 1.27))))
  780. )
  781. (pin input line (at -12.7 7.62 0) (length 5.08)
  782. (name "D2" (effects (font (size 1.27 1.27))))
  783. (number "7" (effects (font (size 1.27 1.27))))
  784. )
  785. (pin input line (at -12.7 5.08 0) (length 5.08)
  786. (name "D3" (effects (font (size 1.27 1.27))))
  787. (number "8" (effects (font (size 1.27 1.27))))
  788. )
  789. (pin tri_state line (at 12.7 5.08 180) (length 5.08)
  790. (name "O3" (effects (font (size 1.27 1.27))))
  791. (number "9" (effects (font (size 1.27 1.27))))
  792. )
  793. )
  794. (symbol "SN74LS373N-Logic_1_1"
  795. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  796. (stroke (width 0.254) (type default) (color 0 0 0 0))
  797. (fill (type background))
  798. )
  799. )
  800. )
  801. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  802. (property "Reference" "D" (id 0) (at 0 2.54 0)
  803. (effects (font (size 1.27 1.27)))
  804. )
  805. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  806. (effects (font (size 1.27 1.27)))
  807. )
  808. (property "Footprint" "" (id 2) (at 0 0 0)
  809. (effects (font (size 1.27 1.27)) hide)
  810. )
  811. (property "Datasheet" "~" (id 3) (at 0 0 0)
  812. (effects (font (size 1.27 1.27)) hide)
  813. )
  814. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  815. (effects (font (size 1.27 1.27)) hide)
  816. )
  817. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  818. (effects (font (size 1.27 1.27)) hide)
  819. )
  820. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  821. (effects (font (size 1.27 1.27)) hide)
  822. )
  823. (symbol "LED_0_1"
  824. (polyline
  825. (pts
  826. (xy -1.27 -1.27)
  827. (xy -1.27 1.27)
  828. )
  829. (stroke (width 0.254) (type default) (color 0 0 0 0))
  830. (fill (type none))
  831. )
  832. (polyline
  833. (pts
  834. (xy -1.27 0)
  835. (xy 1.27 0)
  836. )
  837. (stroke (width 0) (type default) (color 0 0 0 0))
  838. (fill (type none))
  839. )
  840. (polyline
  841. (pts
  842. (xy 1.27 -1.27)
  843. (xy 1.27 1.27)
  844. (xy -1.27 0)
  845. (xy 1.27 -1.27)
  846. )
  847. (stroke (width 0.254) (type default) (color 0 0 0 0))
  848. (fill (type none))
  849. )
  850. (polyline
  851. (pts
  852. (xy -3.048 -0.762)
  853. (xy -4.572 -2.286)
  854. (xy -3.81 -2.286)
  855. (xy -4.572 -2.286)
  856. (xy -4.572 -1.524)
  857. )
  858. (stroke (width 0) (type default) (color 0 0 0 0))
  859. (fill (type none))
  860. )
  861. (polyline
  862. (pts
  863. (xy -1.778 -0.762)
  864. (xy -3.302 -2.286)
  865. (xy -2.54 -2.286)
  866. (xy -3.302 -2.286)
  867. (xy -3.302 -1.524)
  868. )
  869. (stroke (width 0) (type default) (color 0 0 0 0))
  870. (fill (type none))
  871. )
  872. )
  873. (symbol "LED_1_1"
  874. (pin passive line (at -3.81 0 0) (length 2.54)
  875. (name "K" (effects (font (size 1.27 1.27))))
  876. (number "1" (effects (font (size 1.27 1.27))))
  877. )
  878. (pin passive line (at 3.81 0 180) (length 2.54)
  879. (name "A" (effects (font (size 1.27 1.27))))
  880. (number "2" (effects (font (size 1.27 1.27))))
  881. )
  882. )
  883. )
  884. (symbol "Device:Q_PNP_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  885. (property "Reference" "Q" (id 0) (at 5.08 1.27 0)
  886. (effects (font (size 1.27 1.27)) (justify left))
  887. )
  888. (property "Value" "Q_PNP_BEC" (id 1) (at 5.08 -1.27 0)
  889. (effects (font (size 1.27 1.27)) (justify left))
  890. )
  891. (property "Footprint" "" (id 2) (at 5.08 2.54 0)
  892. (effects (font (size 1.27 1.27)) hide)
  893. )
  894. (property "Datasheet" "~" (id 3) (at 0 0 0)
  895. (effects (font (size 1.27 1.27)) hide)
  896. )
  897. (property "ki_keywords" "transistor PNP" (id 4) (at 0 0 0)
  898. (effects (font (size 1.27 1.27)) hide)
  899. )
  900. (property "ki_description" "PNP transistor, base/emitter/collector" (id 5) (at 0 0 0)
  901. (effects (font (size 1.27 1.27)) hide)
  902. )
  903. (symbol "Q_PNP_BEC_0_1"
  904. (polyline
  905. (pts
  906. (xy 0.635 0.635)
  907. (xy 2.54 2.54)
  908. )
  909. (stroke (width 0) (type default) (color 0 0 0 0))
  910. (fill (type none))
  911. )
  912. (polyline
  913. (pts
  914. (xy 0.635 -0.635)
  915. (xy 2.54 -2.54)
  916. (xy 2.54 -2.54)
  917. )
  918. (stroke (width 0) (type default) (color 0 0 0 0))
  919. (fill (type none))
  920. )
  921. (polyline
  922. (pts
  923. (xy 0.635 1.905)
  924. (xy 0.635 -1.905)
  925. (xy 0.635 -1.905)
  926. )
  927. (stroke (width 0.508) (type default) (color 0 0 0 0))
  928. (fill (type none))
  929. )
  930. (polyline
  931. (pts
  932. (xy 2.286 -1.778)
  933. (xy 1.778 -2.286)
  934. (xy 1.27 -1.27)
  935. (xy 2.286 -1.778)
  936. (xy 2.286 -1.778)
  937. )
  938. (stroke (width 0) (type default) (color 0 0 0 0))
  939. (fill (type outline))
  940. )
  941. (circle (center 1.27 0) (radius 2.8194)
  942. (stroke (width 0.254) (type default) (color 0 0 0 0))
  943. (fill (type none))
  944. )
  945. )
  946. (symbol "Q_PNP_BEC_1_1"
  947. (pin input line (at -5.08 0 0) (length 5.715)
  948. (name "B" (effects (font (size 1.27 1.27))))
  949. (number "1" (effects (font (size 1.27 1.27))))
  950. )
  951. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  952. (name "E" (effects (font (size 1.27 1.27))))
  953. (number "2" (effects (font (size 1.27 1.27))))
  954. )
  955. (pin passive line (at 2.54 5.08 270) (length 2.54)
  956. (name "C" (effects (font (size 1.27 1.27))))
  957. (number "3" (effects (font (size 1.27 1.27))))
  958. )
  959. )
  960. )
  961. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  962. (property "Reference" "H" (id 0) (at 0 5.08 0)
  963. (effects (font (size 1.27 1.27)))
  964. )
  965. (property "Value" "MountingHole" (id 1) (at 0 3.175 0)
  966. (effects (font (size 1.27 1.27)))
  967. )
  968. (property "Footprint" "" (id 2) (at 0 0 0)
  969. (effects (font (size 1.27 1.27)) hide)
  970. )
  971. (property "Datasheet" "~" (id 3) (at 0 0 0)
  972. (effects (font (size 1.27 1.27)) hide)
  973. )
  974. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  975. (effects (font (size 1.27 1.27)) hide)
  976. )
  977. (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
  978. (effects (font (size 1.27 1.27)) hide)
  979. )
  980. (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
  981. (effects (font (size 1.27 1.27)) hide)
  982. )
  983. (symbol "MountingHole_0_1"
  984. (circle (center 0 0) (radius 1.27)
  985. (stroke (width 1.27) (type default) (color 0 0 0 0))
  986. (fill (type none))
  987. )
  988. )
  989. )
  990. (symbol "Oscillator:ASE-xxxMHz" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  991. (property "Reference" "X" (id 0) (at -5.08 6.35 0)
  992. (effects (font (size 1.27 1.27)) (justify left))
  993. )
  994. (property "Value" "ASE-xxxMHz" (id 1) (at 1.27 -6.35 0)
  995. (effects (font (size 1.27 1.27)) (justify left))
  996. )
  997. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 17.78 -8.89 0)
  998. (effects (font (size 1.27 1.27)) hide)
  999. )
  1000. (property "Datasheet" "http://www.abracon.com/Oscillators/ASV.pdf" (id 3) (at -2.54 0 0)
  1001. (effects (font (size 1.27 1.27)) hide)
  1002. )
  1003. (property "ki_keywords" "3.3V CMOS SMD Crystal Clock Oscillator" (id 4) (at 0 0 0)
  1004. (effects (font (size 1.27 1.27)) hide)
  1005. )
  1006. (property "ki_description" "3.3V CMOS SMD Crystal Clock Oscillator, Abracon" (id 5) (at 0 0 0)
  1007. (effects (font (size 1.27 1.27)) hide)
  1008. )
  1009. (property "ki_fp_filters" "Oscillator*SMD*Abracon*ASE*3.2x2.5mm*" (id 6) (at 0 0 0)
  1010. (effects (font (size 1.27 1.27)) hide)
  1011. )
  1012. (symbol "ASE-xxxMHz_0_1"
  1013. (rectangle (start -5.08 5.08) (end 5.08 -5.08)
  1014. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1015. (fill (type background))
  1016. )
  1017. (polyline
  1018. (pts
  1019. (xy -1.27 -0.762)
  1020. (xy -1.016 -0.762)
  1021. (xy -1.016 0.762)
  1022. (xy -0.508 0.762)
  1023. (xy -0.508 -0.762)
  1024. (xy 0 -0.762)
  1025. (xy 0 0.762)
  1026. (xy 0.508 0.762)
  1027. (xy 0.508 -0.762)
  1028. (xy 0.762 -0.762)
  1029. )
  1030. (stroke (width 0) (type default) (color 0 0 0 0))
  1031. (fill (type none))
  1032. )
  1033. )
  1034. (symbol "ASE-xxxMHz_1_1"
  1035. (pin input line (at -7.62 0 0) (length 2.54)
  1036. (name "EN" (effects (font (size 1.27 1.27))))
  1037. (number "1" (effects (font (size 1.27 1.27))))
  1038. )
  1039. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1040. (name "GND" (effects (font (size 1.27 1.27))))
  1041. (number "2" (effects (font (size 1.27 1.27))))
  1042. )
  1043. (pin output line (at 7.62 0 180) (length 2.54)
  1044. (name "OUT" (effects (font (size 1.27 1.27))))
  1045. (number "3" (effects (font (size 1.27 1.27))))
  1046. )
  1047. (pin power_in line (at 0 7.62 270) (length 2.54)
  1048. (name "Vdd" (effects (font (size 1.27 1.27))))
  1049. (number "4" (effects (font (size 1.27 1.27))))
  1050. )
  1051. )
  1052. )
  1053. (symbol "Switch:SW_DIP_x04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1054. (property "Reference" "SW" (id 0) (at 0 8.89 0)
  1055. (effects (font (size 1.27 1.27)))
  1056. )
  1057. (property "Value" "SW_DIP_x04" (id 1) (at 0 -6.35 0)
  1058. (effects (font (size 1.27 1.27)))
  1059. )
  1060. (property "Footprint" "" (id 2) (at 0 0 0)
  1061. (effects (font (size 1.27 1.27)) hide)
  1062. )
  1063. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1064. (effects (font (size 1.27 1.27)) hide)
  1065. )
  1066. (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
  1067. (effects (font (size 1.27 1.27)) hide)
  1068. )
  1069. (property "ki_description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
  1070. (effects (font (size 1.27 1.27)) hide)
  1071. )
  1072. (property "ki_fp_filters" "SW?DIP?x4*" (id 6) (at 0 0 0)
  1073. (effects (font (size 1.27 1.27)) hide)
  1074. )
  1075. (symbol "SW_DIP_x04_0_0"
  1076. (circle (center -2.032 -2.54) (radius 0.508)
  1077. (stroke (width 0) (type default) (color 0 0 0 0))
  1078. (fill (type none))
  1079. )
  1080. (circle (center -2.032 0) (radius 0.508)
  1081. (stroke (width 0) (type default) (color 0 0 0 0))
  1082. (fill (type none))
  1083. )
  1084. (circle (center -2.032 2.54) (radius 0.508)
  1085. (stroke (width 0) (type default) (color 0 0 0 0))
  1086. (fill (type none))
  1087. )
  1088. (circle (center -2.032 5.08) (radius 0.508)
  1089. (stroke (width 0) (type default) (color 0 0 0 0))
  1090. (fill (type none))
  1091. )
  1092. (polyline
  1093. (pts
  1094. (xy -1.524 -2.3876)
  1095. (xy 2.3622 -1.3462)
  1096. )
  1097. (stroke (width 0) (type default) (color 0 0 0 0))
  1098. (fill (type none))
  1099. )
  1100. (polyline
  1101. (pts
  1102. (xy -1.524 0.127)
  1103. (xy 2.3622 1.1684)
  1104. )
  1105. (stroke (width 0) (type default) (color 0 0 0 0))
  1106. (fill (type none))
  1107. )
  1108. (polyline
  1109. (pts
  1110. (xy -1.524 2.667)
  1111. (xy 2.3622 3.7084)
  1112. )
  1113. (stroke (width 0) (type default) (color 0 0 0 0))
  1114. (fill (type none))
  1115. )
  1116. (polyline
  1117. (pts
  1118. (xy -1.524 5.207)
  1119. (xy 2.3622 6.2484)
  1120. )
  1121. (stroke (width 0) (type default) (color 0 0 0 0))
  1122. (fill (type none))
  1123. )
  1124. (circle (center 2.032 -2.54) (radius 0.508)
  1125. (stroke (width 0) (type default) (color 0 0 0 0))
  1126. (fill (type none))
  1127. )
  1128. (circle (center 2.032 0) (radius 0.508)
  1129. (stroke (width 0) (type default) (color 0 0 0 0))
  1130. (fill (type none))
  1131. )
  1132. (circle (center 2.032 2.54) (radius 0.508)
  1133. (stroke (width 0) (type default) (color 0 0 0 0))
  1134. (fill (type none))
  1135. )
  1136. (circle (center 2.032 5.08) (radius 0.508)
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (fill (type none))
  1139. )
  1140. )
  1141. (symbol "SW_DIP_x04_0_1"
  1142. (rectangle (start -3.81 7.62) (end 3.81 -5.08)
  1143. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1144. (fill (type background))
  1145. )
  1146. )
  1147. (symbol "SW_DIP_x04_1_1"
  1148. (pin passive line (at -7.62 5.08 0) (length 5.08)
  1149. (name "~" (effects (font (size 1.27 1.27))))
  1150. (number "1" (effects (font (size 1.27 1.27))))
  1151. )
  1152. (pin passive line (at -7.62 2.54 0) (length 5.08)
  1153. (name "~" (effects (font (size 1.27 1.27))))
  1154. (number "2" (effects (font (size 1.27 1.27))))
  1155. )
  1156. (pin passive line (at -7.62 0 0) (length 5.08)
  1157. (name "~" (effects (font (size 1.27 1.27))))
  1158. (number "3" (effects (font (size 1.27 1.27))))
  1159. )
  1160. (pin passive line (at -7.62 -2.54 0) (length 5.08)
  1161. (name "~" (effects (font (size 1.27 1.27))))
  1162. (number "4" (effects (font (size 1.27 1.27))))
  1163. )
  1164. (pin passive line (at 7.62 -2.54 180) (length 5.08)
  1165. (name "~" (effects (font (size 1.27 1.27))))
  1166. (number "5" (effects (font (size 1.27 1.27))))
  1167. )
  1168. (pin passive line (at 7.62 0 180) (length 5.08)
  1169. (name "~" (effects (font (size 1.27 1.27))))
  1170. (number "6" (effects (font (size 1.27 1.27))))
  1171. )
  1172. (pin passive line (at 7.62 2.54 180) (length 5.08)
  1173. (name "~" (effects (font (size 1.27 1.27))))
  1174. (number "7" (effects (font (size 1.27 1.27))))
  1175. )
  1176. (pin passive line (at 7.62 5.08 180) (length 5.08)
  1177. (name "~" (effects (font (size 1.27 1.27))))
  1178. (number "8" (effects (font (size 1.27 1.27))))
  1179. )
  1180. )
  1181. )
  1182. (symbol "Switch:SW_DPST_x2" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1183. (property "Reference" "SW" (id 0) (at 0 3.175 0)
  1184. (effects (font (size 1.27 1.27)))
  1185. )
  1186. (property "Value" "SW_DPST_x2" (id 1) (at 0 -2.54 0)
  1187. (effects (font (size 1.27 1.27)))
  1188. )
  1189. (property "Footprint" "" (id 2) (at 0 0 0)
  1190. (effects (font (size 1.27 1.27)) hide)
  1191. )
  1192. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1193. (effects (font (size 1.27 1.27)) hide)
  1194. )
  1195. (property "ki_keywords" "switch lever" (id 4) (at 0 0 0)
  1196. (effects (font (size 1.27 1.27)) hide)
  1197. )
  1198. (property "ki_description" "Single Pole Single Throw (SPST) switch, separate symbol" (id 5) (at 0 0 0)
  1199. (effects (font (size 1.27 1.27)) hide)
  1200. )
  1201. (symbol "SW_DPST_x2_0_0"
  1202. (circle (center -2.032 0) (radius 0.508)
  1203. (stroke (width 0) (type default) (color 0 0 0 0))
  1204. (fill (type none))
  1205. )
  1206. (polyline
  1207. (pts
  1208. (xy -1.524 0.254)
  1209. (xy 1.524 1.778)
  1210. )
  1211. (stroke (width 0) (type default) (color 0 0 0 0))
  1212. (fill (type none))
  1213. )
  1214. (circle (center 2.032 0) (radius 0.508)
  1215. (stroke (width 0) (type default) (color 0 0 0 0))
  1216. (fill (type none))
  1217. )
  1218. )
  1219. (symbol "SW_DPST_x2_1_1"
  1220. (pin passive line (at -5.08 0 0) (length 2.54)
  1221. (name "A" (effects (font (size 1.27 1.27))))
  1222. (number "1" (effects (font (size 1.27 1.27))))
  1223. )
  1224. (pin passive line (at 5.08 0 180) (length 2.54)
  1225. (name "B" (effects (font (size 1.27 1.27))))
  1226. (number "2" (effects (font (size 1.27 1.27))))
  1227. )
  1228. )
  1229. (symbol "SW_DPST_x2_2_1"
  1230. (pin passive line (at -5.08 0 0) (length 2.54)
  1231. (name "A" (effects (font (size 1.27 1.27))))
  1232. (number "3" (effects (font (size 1.27 1.27))))
  1233. )
  1234. (pin passive line (at 5.08 0 180) (length 2.54)
  1235. (name "B" (effects (font (size 1.27 1.27))))
  1236. (number "4" (effects (font (size 1.27 1.27))))
  1237. )
  1238. )
  1239. )
  1240. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1241. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1242. (effects (font (size 1.27 1.27)) hide)
  1243. )
  1244. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1245. (effects (font (size 1.27 1.27)))
  1246. )
  1247. (property "Footprint" "" (id 2) (at 0 0 0)
  1248. (effects (font (size 1.27 1.27)) hide)
  1249. )
  1250. (property "Datasheet" "" (id 3) (at 0 0 0)
  1251. (effects (font (size 1.27 1.27)) hide)
  1252. )
  1253. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1254. (effects (font (size 1.27 1.27)) hide)
  1255. )
  1256. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1257. (effects (font (size 1.27 1.27)) hide)
  1258. )
  1259. (symbol "+5V_0_1"
  1260. (polyline
  1261. (pts
  1262. (xy -0.762 1.27)
  1263. (xy 0 2.54)
  1264. )
  1265. (stroke (width 0) (type default) (color 0 0 0 0))
  1266. (fill (type none))
  1267. )
  1268. (polyline
  1269. (pts
  1270. (xy 0 0)
  1271. (xy 0 2.54)
  1272. )
  1273. (stroke (width 0) (type default) (color 0 0 0 0))
  1274. (fill (type none))
  1275. )
  1276. (polyline
  1277. (pts
  1278. (xy 0 2.54)
  1279. (xy 0.762 1.27)
  1280. )
  1281. (stroke (width 0) (type default) (color 0 0 0 0))
  1282. (fill (type none))
  1283. )
  1284. )
  1285. (symbol "+5V_1_1"
  1286. (pin power_in line (at 0 0 90) (length 0) hide
  1287. (name "+5V" (effects (font (size 1.27 1.27))))
  1288. (number "1" (effects (font (size 1.27 1.27))))
  1289. )
  1290. )
  1291. )
  1292. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1293. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1294. (effects (font (size 1.27 1.27)) hide)
  1295. )
  1296. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1297. (effects (font (size 1.27 1.27)))
  1298. )
  1299. (property "Footprint" "" (id 2) (at 0 0 0)
  1300. (effects (font (size 1.27 1.27)) hide)
  1301. )
  1302. (property "Datasheet" "" (id 3) (at 0 0 0)
  1303. (effects (font (size 1.27 1.27)) hide)
  1304. )
  1305. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1306. (effects (font (size 1.27 1.27)) hide)
  1307. )
  1308. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1309. (effects (font (size 1.27 1.27)) hide)
  1310. )
  1311. (symbol "GND_0_1"
  1312. (polyline
  1313. (pts
  1314. (xy 0 0)
  1315. (xy 0 -1.27)
  1316. (xy 1.27 -1.27)
  1317. (xy 0 -2.54)
  1318. (xy -1.27 -1.27)
  1319. (xy 0 -1.27)
  1320. )
  1321. (stroke (width 0) (type default) (color 0 0 0 0))
  1322. (fill (type none))
  1323. )
  1324. )
  1325. (symbol "GND_1_1"
  1326. (pin power_in line (at 0 0 270) (length 0) hide
  1327. (name "GND" (effects (font (size 1.27 1.27))))
  1328. (number "1" (effects (font (size 1.27 1.27))))
  1329. )
  1330. )
  1331. )
  1332. (symbol "power:VBUS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1333. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1334. (effects (font (size 1.27 1.27)) hide)
  1335. )
  1336. (property "Value" "VBUS" (id 1) (at 0 3.81 0)
  1337. (effects (font (size 1.27 1.27)))
  1338. )
  1339. (property "Footprint" "" (id 2) (at 0 0 0)
  1340. (effects (font (size 1.27 1.27)) hide)
  1341. )
  1342. (property "Datasheet" "" (id 3) (at 0 0 0)
  1343. (effects (font (size 1.27 1.27)) hide)
  1344. )
  1345. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1346. (effects (font (size 1.27 1.27)) hide)
  1347. )
  1348. (property "ki_description" "Power symbol creates a global label with name \"VBUS\"" (id 5) (at 0 0 0)
  1349. (effects (font (size 1.27 1.27)) hide)
  1350. )
  1351. (symbol "VBUS_0_1"
  1352. (polyline
  1353. (pts
  1354. (xy -0.762 1.27)
  1355. (xy 0 2.54)
  1356. )
  1357. (stroke (width 0) (type default) (color 0 0 0 0))
  1358. (fill (type none))
  1359. )
  1360. (polyline
  1361. (pts
  1362. (xy 0 0)
  1363. (xy 0 2.54)
  1364. )
  1365. (stroke (width 0) (type default) (color 0 0 0 0))
  1366. (fill (type none))
  1367. )
  1368. (polyline
  1369. (pts
  1370. (xy 0 2.54)
  1371. (xy 0.762 1.27)
  1372. )
  1373. (stroke (width 0) (type default) (color 0 0 0 0))
  1374. (fill (type none))
  1375. )
  1376. )
  1377. (symbol "VBUS_1_1"
  1378. (pin power_in line (at 0 0 90) (length 0) hide
  1379. (name "VBUS" (effects (font (size 1.27 1.27))))
  1380. (number "1" (effects (font (size 1.27 1.27))))
  1381. )
  1382. )
  1383. )
  1384. )
  1385. (junction (at 302.26 146.05) (diameter 0) (color 0 0 0 0)
  1386. (uuid 00e38d63-5436-49db-81f5-697421f168fc)
  1387. )
  1388. (junction (at 96.52 210.82) (diameter 0) (color 0 0 0 0)
  1389. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  1390. )
  1391. (junction (at 66.04 52.07) (diameter 0) (color 0 0 0 0)
  1392. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  1393. )
  1394. (junction (at 64.77 210.82) (diameter 0) (color 0 0 0 0)
  1395. (uuid 275b6416-db29-42cc-9307-bf426917c3b4)
  1396. )
  1397. (junction (at 96.52 194.31) (diameter 0) (color 0 0 0 0)
  1398. (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
  1399. )
  1400. (junction (at 198.12 104.14) (diameter 0) (color 0 0 0 0)
  1401. (uuid 36d783e7-096f-4c97-9672-7e08c083b87b)
  1402. )
  1403. (junction (at 91.44 194.31) (diameter 0) (color 0 0 0 0)
  1404. (uuid 4344bc11-e822-474b-8d61-d12211e719b1)
  1405. )
  1406. (junction (at 66.04 41.91) (diameter 0) (color 0 0 0 0)
  1407. (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
  1408. )
  1409. (junction (at 91.44 208.28) (diameter 0) (color 0 0 0 0)
  1410. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  1411. )
  1412. (junction (at 135.89 129.54) (diameter 0) (color 0 0 0 0)
  1413. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  1414. )
  1415. (junction (at 68.58 129.54) (diameter 0) (color 0 0 0 0)
  1416. (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48)
  1417. )
  1418. (junction (at 101.6 213.36) (diameter 0) (color 0 0 0 0)
  1419. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  1420. )
  1421. (junction (at 204.47 134.62) (diameter 0) (color 0 0 0 0)
  1422. (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
  1423. )
  1424. (junction (at 111.76 137.16) (diameter 0) (color 0 0 0 0)
  1425. (uuid b13e8448-bf35-4ec0-9c70-3f2250718cc2)
  1426. )
  1427. (junction (at 64.77 208.28) (diameter 0) (color 0 0 0 0)
  1428. (uuid bb8162f0-99c8-4884-be5b-c0d0c7e81ff6)
  1429. )
  1430. (junction (at 64.77 213.36) (diameter 0) (color 0 0 0 0)
  1431. (uuid bd085057-7c0e-463a-982b-968a2dc1f0f8)
  1432. )
  1433. (junction (at 278.13 92.71) (diameter 0) (color 0 0 0 0)
  1434. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  1435. )
  1436. (junction (at 86.36 205.74) (diameter 0) (color 0 0 0 0)
  1437. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  1438. )
  1439. (junction (at 93.98 194.31) (diameter 0) (color 0 0 0 0)
  1440. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  1441. )
  1442. (no_connect (at 217.17 175.26) (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
  1443. (no_connect (at 217.17 172.72) (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
  1444. (no_connect (at 217.17 162.56) (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252))
  1445. (no_connect (at 217.17 165.1) (uuid 3a70978e-dcc2-4620-a99c-514362812927))
  1446. (no_connect (at 217.17 167.64) (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2))
  1447. (no_connect (at 247.65 175.26) (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
  1448. (no_connect (at 217.17 170.18) (uuid f447e585-df78-4239-b8cb-4653b3837bb1))
  1449. (bus_entry (at 278.13 114.3) (size 2.54 2.54)
  1450. (stroke (width 0) (type default) (color 0 0 0 0))
  1451. (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
  1452. )
  1453. (bus_entry (at 256.54 165.1) (size 2.54 -2.54)
  1454. (stroke (width 0) (type default) (color 0 0 0 0))
  1455. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  1456. )
  1457. (bus_entry (at 327.66 147.32) (size -2.54 2.54)
  1458. (stroke (width 0) (type default) (color 0 0 0 0))
  1459. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  1460. )
  1461. (bus_entry (at 256.54 124.46) (size 2.54 -2.54)
  1462. (stroke (width 0) (type default) (color 0 0 0 0))
  1463. (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
  1464. )
  1465. (bus_entry (at 256.54 162.56) (size 2.54 -2.54)
  1466. (stroke (width 0) (type default) (color 0 0 0 0))
  1467. (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
  1468. )
  1469. (bus_entry (at 328.93 124.46) (size 2.54 2.54)
  1470. (stroke (width 0) (type default) (color 0 0 0 0))
  1471. (uuid 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
  1472. )
  1473. (bus_entry (at 378.46 119.38) (size 2.54 -2.54)
  1474. (stroke (width 0) (type default) (color 0 0 0 0))
  1475. (uuid 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)
  1476. )
  1477. (bus_entry (at 256.54 121.92) (size 2.54 -2.54)
  1478. (stroke (width 0) (type default) (color 0 0 0 0))
  1479. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  1480. )
  1481. (bus_entry (at 378.46 121.92) (size 2.54 -2.54)
  1482. (stroke (width 0) (type default) (color 0 0 0 0))
  1483. (uuid 1c68b844-c861-46b7-b734-0242168a4220)
  1484. )
  1485. (bus_entry (at 256.54 157.48) (size 2.54 -2.54)
  1486. (stroke (width 0) (type default) (color 0 0 0 0))
  1487. (uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
  1488. )
  1489. (bus_entry (at 278.13 119.38) (size 2.54 2.54)
  1490. (stroke (width 0) (type default) (color 0 0 0 0))
  1491. (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
  1492. )
  1493. (bus_entry (at 256.54 170.18) (size 2.54 -2.54)
  1494. (stroke (width 0) (type default) (color 0 0 0 0))
  1495. (uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
  1496. )
  1497. (bus_entry (at 278.13 109.22) (size 2.54 2.54)
  1498. (stroke (width 0) (type default) (color 0 0 0 0))
  1499. (uuid 37f31dec-63fc-4634-a141-5dc5d2b60fe4)
  1500. )
  1501. (bus_entry (at 256.54 119.38) (size 2.54 -2.54)
  1502. (stroke (width 0) (type default) (color 0 0 0 0))
  1503. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  1504. )
  1505. (bus_entry (at 378.46 124.46) (size 2.54 -2.54)
  1506. (stroke (width 0) (type default) (color 0 0 0 0))
  1507. (uuid 4b03e854-02fe-44cc-bece-f8268b7cae54)
  1508. )
  1509. (bus_entry (at 378.46 111.76) (size 2.54 -2.54)
  1510. (stroke (width 0) (type default) (color 0 0 0 0))
  1511. (uuid 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
  1512. )
  1513. (bus_entry (at 320.04 124.46) (size 2.54 -2.54)
  1514. (stroke (width 0) (type default) (color 0 0 0 0))
  1515. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  1516. )
  1517. (bus_entry (at 328.93 116.84) (size 2.54 2.54)
  1518. (stroke (width 0) (type default) (color 0 0 0 0))
  1519. (uuid 6d0c9e39-9878-44c8-8283-9a59e45006fa)
  1520. )
  1521. (bus_entry (at 327.66 132.08) (size -2.54 2.54)
  1522. (stroke (width 0) (type default) (color 0 0 0 0))
  1523. (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
  1524. )
  1525. (bus_entry (at 278.13 124.46) (size 2.54 2.54)
  1526. (stroke (width 0) (type default) (color 0 0 0 0))
  1527. (uuid 70fb572d-d5ec-41e7-9482-63d4578b4f47)
  1528. )
  1529. (bus_entry (at 327.66 137.16) (size -2.54 2.54)
  1530. (stroke (width 0) (type default) (color 0 0 0 0))
  1531. (uuid 79e31048-072a-4a40-a625-26bb0b5f046b)
  1532. )
  1533. (bus_entry (at 278.13 127) (size 2.54 2.54)
  1534. (stroke (width 0) (type default) (color 0 0 0 0))
  1535. (uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)
  1536. )
  1537. (bus_entry (at 328.93 109.22) (size 2.54 2.54)
  1538. (stroke (width 0) (type default) (color 0 0 0 0))
  1539. (uuid 7c2008c8-0626-4a09-a873-065e83502a0e)
  1540. )
  1541. (bus_entry (at 328.93 114.3) (size 2.54 2.54)
  1542. (stroke (width 0) (type default) (color 0 0 0 0))
  1543. (uuid 7c411b3e-aca2-424f-b644-2d21c9d80fa7)
  1544. )
  1545. (bus_entry (at 320.04 116.84) (size 2.54 -2.54)
  1546. (stroke (width 0) (type default) (color 0 0 0 0))
  1547. (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
  1548. )
  1549. (bus_entry (at 256.54 129.54) (size 2.54 -2.54)
  1550. (stroke (width 0) (type default) (color 0 0 0 0))
  1551. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  1552. )
  1553. (bus_entry (at 320.04 119.38) (size 2.54 -2.54)
  1554. (stroke (width 0) (type default) (color 0 0 0 0))
  1555. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  1556. )
  1557. (bus_entry (at 278.13 111.76) (size 2.54 2.54)
  1558. (stroke (width 0) (type default) (color 0 0 0 0))
  1559. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  1560. )
  1561. (bus_entry (at 328.93 119.38) (size 2.54 2.54)
  1562. (stroke (width 0) (type default) (color 0 0 0 0))
  1563. (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
  1564. )
  1565. (bus_entry (at 325.12 137.16) (size 2.54 -2.54)
  1566. (stroke (width 0) (type default) (color 0 0 0 0))
  1567. (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc)
  1568. )
  1569. (bus_entry (at 378.46 127) (size 2.54 -2.54)
  1570. (stroke (width 0) (type default) (color 0 0 0 0))
  1571. (uuid b5071759-a4d7-4769-be02-251f23cd4454)
  1572. )
  1573. (bus_entry (at 325.12 147.32) (size 2.54 -2.54)
  1574. (stroke (width 0) (type default) (color 0 0 0 0))
  1575. (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120)
  1576. )
  1577. (bus_entry (at 256.54 116.84) (size 2.54 -2.54)
  1578. (stroke (width 0) (type default) (color 0 0 0 0))
  1579. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  1580. )
  1581. (bus_entry (at 256.54 114.3) (size 2.54 -2.54)
  1582. (stroke (width 0) (type default) (color 0 0 0 0))
  1583. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  1584. )
  1585. (bus_entry (at 256.54 172.72) (size 2.54 -2.54)
  1586. (stroke (width 0) (type default) (color 0 0 0 0))
  1587. (uuid c49d23ab-146d-4089-864f-2d22b5b414b9)
  1588. )
  1589. (bus_entry (at 325.12 142.24) (size 2.54 -2.54)
  1590. (stroke (width 0) (type default) (color 0 0 0 0))
  1591. (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb)
  1592. )
  1593. (bus_entry (at 378.46 129.54) (size 2.54 -2.54)
  1594. (stroke (width 0) (type default) (color 0 0 0 0))
  1595. (uuid cada57e2-1fa7-4b9d-a2a0-2218773d5c50)
  1596. )
  1597. (bus_entry (at 320.04 114.3) (size 2.54 -2.54)
  1598. (stroke (width 0) (type default) (color 0 0 0 0))
  1599. (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
  1600. )
  1601. (bus_entry (at 278.13 116.84) (size 2.54 2.54)
  1602. (stroke (width 0) (type default) (color 0 0 0 0))
  1603. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  1604. )
  1605. (bus_entry (at 320.04 129.54) (size 2.54 -2.54)
  1606. (stroke (width 0) (type default) (color 0 0 0 0))
  1607. (uuid d102186a-5b58-41d0-9985-3dbb3593f397)
  1608. )
  1609. (bus_entry (at 378.46 116.84) (size 2.54 -2.54)
  1610. (stroke (width 0) (type default) (color 0 0 0 0))
  1611. (uuid d2d7bea6-0c22-495f-8666-323b30e03150)
  1612. )
  1613. (bus_entry (at 256.54 167.64) (size 2.54 -2.54)
  1614. (stroke (width 0) (type default) (color 0 0 0 0))
  1615. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  1616. )
  1617. (bus_entry (at 256.54 127) (size 2.54 -2.54)
  1618. (stroke (width 0) (type default) (color 0 0 0 0))
  1619. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  1620. )
  1621. (bus_entry (at 320.04 121.92) (size 2.54 -2.54)
  1622. (stroke (width 0) (type default) (color 0 0 0 0))
  1623. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  1624. )
  1625. (bus_entry (at 256.54 160.02) (size 2.54 -2.54)
  1626. (stroke (width 0) (type default) (color 0 0 0 0))
  1627. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  1628. )
  1629. (bus_entry (at 320.04 127) (size 2.54 -2.54)
  1630. (stroke (width 0) (type default) (color 0 0 0 0))
  1631. (uuid e36988d2-ecb2-461b-a443-7006f447e828)
  1632. )
  1633. (bus_entry (at 256.54 111.76) (size 2.54 -2.54)
  1634. (stroke (width 0) (type default) (color 0 0 0 0))
  1635. (uuid e3fc1e69-a11c-4c84-8952-fefb9372474e)
  1636. )
  1637. (bus_entry (at 328.93 121.92) (size 2.54 2.54)
  1638. (stroke (width 0) (type default) (color 0 0 0 0))
  1639. (uuid e5e5220d-5b7e-47da-a902-b997ec8d4d58)
  1640. )
  1641. (bus_entry (at 320.04 111.76) (size 2.54 -2.54)
  1642. (stroke (width 0) (type default) (color 0 0 0 0))
  1643. (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
  1644. )
  1645. (bus_entry (at 378.46 114.3) (size 2.54 -2.54)
  1646. (stroke (width 0) (type default) (color 0 0 0 0))
  1647. (uuid e7bb7815-0d52-4bb8-b29a-8cf960bd2905)
  1648. )
  1649. (bus_entry (at 278.13 121.92) (size 2.54 2.54)
  1650. (stroke (width 0) (type default) (color 0 0 0 0))
  1651. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  1652. )
  1653. (bus_entry (at 328.93 127) (size 2.54 2.54)
  1654. (stroke (width 0) (type default) (color 0 0 0 0))
  1655. (uuid f345e52a-8e0a-425a-b438-90809dd3b799)
  1656. )
  1657. (bus_entry (at 328.93 111.76) (size 2.54 2.54)
  1658. (stroke (width 0) (type default) (color 0 0 0 0))
  1659. (uuid f4a8afbe-ed68-4253-959f-6be4d2cbf8c5)
  1660. )
  1661. (bus_entry (at 327.66 142.24) (size -2.54 2.54)
  1662. (stroke (width 0) (type default) (color 0 0 0 0))
  1663. (uuid f7667b23-296e-4362-a7e3-949632c8954b)
  1664. )
  1665. (wire (pts (xy 101.6 154.94) (xy 104.14 154.94))
  1666. (stroke (width 0) (type default) (color 0 0 0 0))
  1667. (uuid 008da5b9-6f95-4113-b7d0-d93ac62efd33)
  1668. )
  1669. (wire (pts (xy 337.82 111.76) (xy 331.47 111.76))
  1670. (stroke (width 0) (type default) (color 0 0 0 0))
  1671. (uuid 014d13cd-26ad-4d0e-86ad-a43b541cab14)
  1672. )
  1673. (wire (pts (xy 91.44 208.28) (xy 111.76 208.28))
  1674. (stroke (width 0) (type default) (color 0 0 0 0))
  1675. (uuid 015f5586-ba76-4a98-9114-f5cd2c67134d)
  1676. )
  1677. (wire (pts (xy 353.06 101.6) (xy 353.06 104.14))
  1678. (stroke (width 0) (type default) (color 0 0 0 0))
  1679. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  1680. )
  1681. (wire (pts (xy 91.44 203.2) (xy 91.44 208.28))
  1682. (stroke (width 0) (type default) (color 0 0 0 0))
  1683. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  1684. )
  1685. (wire (pts (xy 289.56 129.54) (xy 280.67 129.54))
  1686. (stroke (width 0) (type default) (color 0 0 0 0))
  1687. (uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
  1688. )
  1689. (wire (pts (xy 247.65 114.3) (xy 256.54 114.3))
  1690. (stroke (width 0) (type default) (color 0 0 0 0))
  1691. (uuid 071522c0-d0ed-49b9-906e-6295f67fb0dc)
  1692. )
  1693. (bus (pts (xy 322.58 109.22) (xy 322.58 111.76))
  1694. (stroke (width 0) (type default) (color 0 0 0 0))
  1695. (uuid 0808c593-81ba-4826-bbe5-f2679145e086)
  1696. )
  1697. (wire (pts (xy 82.55 213.36) (xy 101.6 213.36))
  1698. (stroke (width 0) (type default) (color 0 0 0 0))
  1699. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  1700. )
  1701. (wire (pts (xy 137.16 137.16) (xy 133.35 137.16))
  1702. (stroke (width 0) (type default) (color 0 0 0 0))
  1703. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  1704. )
  1705. (wire (pts (xy 86.36 195.58) (xy 86.36 194.31))
  1706. (stroke (width 0) (type default) (color 0 0 0 0))
  1707. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  1708. )
  1709. (wire (pts (xy 142.24 52.07) (xy 142.24 49.53))
  1710. (stroke (width 0) (type default) (color 0 0 0 0))
  1711. (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
  1712. )
  1713. (wire (pts (xy 135.89 116.84) (xy 135.89 119.38))
  1714. (stroke (width 0) (type default) (color 0 0 0 0))
  1715. (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
  1716. )
  1717. (wire (pts (xy 91.44 194.31) (xy 93.98 194.31))
  1718. (stroke (width 0) (type default) (color 0 0 0 0))
  1719. (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17)
  1720. )
  1721. (wire (pts (xy 93.98 193.04) (xy 93.98 194.31))
  1722. (stroke (width 0) (type default) (color 0 0 0 0))
  1723. (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43)
  1724. )
  1725. (wire (pts (xy 39.37 137.16) (xy 41.91 137.16))
  1726. (stroke (width 0) (type default) (color 0 0 0 0))
  1727. (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
  1728. )
  1729. (bus (pts (xy 259.08 154.94) (xy 259.08 157.48))
  1730. (stroke (width 0) (type default) (color 0 0 0 0))
  1731. (uuid 13ac7bad-9618-4d8a-b0b5-06c64c878b0c)
  1732. )
  1733. (wire (pts (xy 138.43 129.54) (xy 135.89 129.54))
  1734. (stroke (width 0) (type default) (color 0 0 0 0))
  1735. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  1736. )
  1737. (wire (pts (xy 302.26 144.78) (xy 302.26 146.05))
  1738. (stroke (width 0) (type default) (color 0 0 0 0))
  1739. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  1740. )
  1741. (bus (pts (xy 278.13 92.71) (xy 259.08 92.71))
  1742. (stroke (width 0) (type default) (color 0 0 0 0))
  1743. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  1744. )
  1745. (wire (pts (xy 119.38 41.91) (xy 119.38 39.37))
  1746. (stroke (width 0) (type default) (color 0 0 0 0))
  1747. (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
  1748. )
  1749. (wire (pts (xy 204.47 144.78) (xy 204.47 143.51))
  1750. (stroke (width 0) (type default) (color 0 0 0 0))
  1751. (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
  1752. )
  1753. (wire (pts (xy 353.06 171.45) (xy 353.06 170.18))
  1754. (stroke (width 0) (type default) (color 0 0 0 0))
  1755. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  1756. )
  1757. (wire (pts (xy 331.47 151.13) (xy 331.47 152.4))
  1758. (stroke (width 0) (type default) (color 0 0 0 0))
  1759. (uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb)
  1760. )
  1761. (wire (pts (xy 337.82 137.16) (xy 327.66 137.16))
  1762. (stroke (width 0) (type default) (color 0 0 0 0))
  1763. (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
  1764. )
  1765. (wire (pts (xy 64.77 208.28) (xy 67.31 208.28))
  1766. (stroke (width 0) (type default) (color 0 0 0 0))
  1767. (uuid 22962957-1efd-404d-83db-5b233b6c15b0)
  1768. )
  1769. (wire (pts (xy 184.15 130.81) (xy 184.15 134.62))
  1770. (stroke (width 0) (type default) (color 0 0 0 0))
  1771. (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
  1772. )
  1773. (wire (pts (xy 289.56 121.92) (xy 280.67 121.92))
  1774. (stroke (width 0) (type default) (color 0 0 0 0))
  1775. (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
  1776. )
  1777. (wire (pts (xy 82.55 208.28) (xy 91.44 208.28))
  1778. (stroke (width 0) (type default) (color 0 0 0 0))
  1779. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  1780. )
  1781. (wire (pts (xy 247.65 111.76) (xy 256.54 111.76))
  1782. (stroke (width 0) (type default) (color 0 0 0 0))
  1783. (uuid 2846428d-39de-4eae-8ce2-64955d56c493)
  1784. )
  1785. (wire (pts (xy 287.02 134.62) (xy 289.56 134.62))
  1786. (stroke (width 0) (type default) (color 0 0 0 0))
  1787. (uuid 2891767f-251c-48c4-91c0-deb1b368f45c)
  1788. )
  1789. (wire (pts (xy 198.12 104.14) (xy 198.12 102.87))
  1790. (stroke (width 0) (type default) (color 0 0 0 0))
  1791. (uuid 29bb7297-26fb-4776-9266-2355d022bab0)
  1792. )
  1793. (wire (pts (xy 68.58 129.54) (xy 68.58 132.08))
  1794. (stroke (width 0) (type default) (color 0 0 0 0))
  1795. (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
  1796. )
  1797. (wire (pts (xy 247.65 137.16) (xy 265.43 137.16))
  1798. (stroke (width 0) (type default) (color 0 0 0 0))
  1799. (uuid 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6)
  1800. )
  1801. (wire (pts (xy 247.65 149.86) (xy 256.54 149.86))
  1802. (stroke (width 0) (type default) (color 0 0 0 0))
  1803. (uuid 2f424da3-8fae-4941-bc6d-20044787372f)
  1804. )
  1805. (bus (pts (xy 381 124.46) (xy 381 127))
  1806. (stroke (width 0) (type default) (color 0 0 0 0))
  1807. (uuid 302ba6f9-09ed-47d6-ae75-b87f4c68166d)
  1808. )
  1809. (wire (pts (xy 205.74 113.03) (xy 209.55 113.03))
  1810. (stroke (width 0) (type default) (color 0 0 0 0))
  1811. (uuid 30c33e3e-fb78-498d-bffe-76273d527004)
  1812. )
  1813. (bus (pts (xy 259.08 111.76) (xy 259.08 114.3))
  1814. (stroke (width 0) (type default) (color 0 0 0 0))
  1815. (uuid 32ab9812-a740-4c89-b9ae-df323671b997)
  1816. )
  1817. (wire (pts (xy 130.81 41.91) (xy 130.81 39.37))
  1818. (stroke (width 0) (type default) (color 0 0 0 0))
  1819. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  1820. )
  1821. (wire (pts (xy 49.53 161.29) (xy 63.5 161.29))
  1822. (stroke (width 0) (type default) (color 0 0 0 0))
  1823. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  1824. )
  1825. (wire (pts (xy 247.65 165.1) (xy 256.54 165.1))
  1826. (stroke (width 0) (type default) (color 0 0 0 0))
  1827. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  1828. )
  1829. (bus (pts (xy 325.12 139.7) (xy 325.12 142.24))
  1830. (stroke (width 0) (type default) (color 0 0 0 0))
  1831. (uuid 35a6d796-b5b6-48f3-92ef-fb45306d24a3)
  1832. )
  1833. (wire (pts (xy 111.76 138.43) (xy 111.76 137.16))
  1834. (stroke (width 0) (type default) (color 0 0 0 0))
  1835. (uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
  1836. )
  1837. (wire (pts (xy 137.16 161.29) (xy 137.16 137.16))
  1838. (stroke (width 0) (type default) (color 0 0 0 0))
  1839. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  1840. )
  1841. (bus (pts (xy 328.93 114.3) (xy 328.93 116.84))
  1842. (stroke (width 0) (type default) (color 0 0 0 0))
  1843. (uuid 369be60c-c456-43eb-bda9-0ae1128f132b)
  1844. )
  1845. (bus (pts (xy 381 111.76) (xy 381 114.3))
  1846. (stroke (width 0) (type default) (color 0 0 0 0))
  1847. (uuid 377f1b96-81b5-4949-a2e7-416bb7db1297)
  1848. )
  1849. (wire (pts (xy 247.65 170.18) (xy 256.54 170.18))
  1850. (stroke (width 0) (type default) (color 0 0 0 0))
  1851. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  1852. )
  1853. (bus (pts (xy 259.08 153.67) (xy 325.12 153.67))
  1854. (stroke (width 0) (type default) (color 0 0 0 0))
  1855. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  1856. )
  1857. (wire (pts (xy 302.26 146.05) (xy 289.56 146.05))
  1858. (stroke (width 0) (type default) (color 0 0 0 0))
  1859. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  1860. )
  1861. (bus (pts (xy 259.08 92.71) (xy 259.08 109.22))
  1862. (stroke (width 0) (type default) (color 0 0 0 0))
  1863. (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38)
  1864. )
  1865. (wire (pts (xy 64.77 210.82) (xy 64.77 213.36))
  1866. (stroke (width 0) (type default) (color 0 0 0 0))
  1867. (uuid 3c22d605-7855-4cc6-8ad2-906cadbd02dc)
  1868. )
  1869. (wire (pts (xy 265.43 142.24) (xy 247.65 142.24))
  1870. (stroke (width 0) (type default) (color 0 0 0 0))
  1871. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  1872. )
  1873. (bus (pts (xy 322.58 114.3) (xy 322.58 116.84))
  1874. (stroke (width 0) (type default) (color 0 0 0 0))
  1875. (uuid 4079d7b6-51ac-457a-8ba0-f050459c02ae)
  1876. )
  1877. (wire (pts (xy 64.77 205.74) (xy 64.77 208.28))
  1878. (stroke (width 0) (type default) (color 0 0 0 0))
  1879. (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
  1880. )
  1881. (wire (pts (xy 66.04 52.07) (xy 80.01 52.07))
  1882. (stroke (width 0) (type default) (color 0 0 0 0))
  1883. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  1884. )
  1885. (wire (pts (xy 337.82 121.92) (xy 331.47 121.92))
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
  1888. )
  1889. (bus (pts (xy 322.58 111.76) (xy 322.58 114.3))
  1890. (stroke (width 0) (type default) (color 0 0 0 0))
  1891. (uuid 452d6e44-cb4a-4c1b-91d0-84a0a526a85e)
  1892. )
  1893. (wire (pts (xy 173.99 125.73) (xy 176.53 125.73))
  1894. (stroke (width 0) (type default) (color 0 0 0 0))
  1895. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  1896. )
  1897. (wire (pts (xy 190.5 113.03) (xy 189.23 113.03))
  1898. (stroke (width 0) (type default) (color 0 0 0 0))
  1899. (uuid 4c843bdb-6c9e-40dd-85e2-0567846e18ba)
  1900. )
  1901. (bus (pts (xy 381 92.71) (xy 278.13 92.71))
  1902. (stroke (width 0) (type default) (color 0 0 0 0))
  1903. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  1904. )
  1905. (wire (pts (xy 247.65 116.84) (xy 256.54 116.84))
  1906. (stroke (width 0) (type default) (color 0 0 0 0))
  1907. (uuid 4e315e69-0417-463a-8b7f-469a08d1496e)
  1908. )
  1909. (wire (pts (xy 130.81 52.07) (xy 130.81 49.53))
  1910. (stroke (width 0) (type default) (color 0 0 0 0))
  1911. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  1912. )
  1913. (wire (pts (xy 101.6 213.36) (xy 111.76 213.36))
  1914. (stroke (width 0) (type default) (color 0 0 0 0))
  1915. (uuid 541721d1-074b-496e-a833-813044b3e8ca)
  1916. )
  1917. (wire (pts (xy 119.38 52.07) (xy 119.38 49.53))
  1918. (stroke (width 0) (type default) (color 0 0 0 0))
  1919. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  1920. )
  1921. (bus (pts (xy 322.58 124.46) (xy 322.58 127))
  1922. (stroke (width 0) (type default) (color 0 0 0 0))
  1923. (uuid 544b8ab6-8acb-47af-8cf8-40b24f6c1ec6)
  1924. )
  1925. (wire (pts (xy 68.58 119.38) (xy 68.58 116.84))
  1926. (stroke (width 0) (type default) (color 0 0 0 0))
  1927. (uuid 582622a2-fad4-4737-9a80-be9fffbba8ab)
  1928. )
  1929. (wire (pts (xy 247.65 129.54) (xy 256.54 129.54))
  1930. (stroke (width 0) (type default) (color 0 0 0 0))
  1931. (uuid 597a11f2-5d2c-4a65-ac95-38ad106e1367)
  1932. )
  1933. (wire (pts (xy 247.65 124.46) (xy 256.54 124.46))
  1934. (stroke (width 0) (type default) (color 0 0 0 0))
  1935. (uuid 59ec3156-036e-4049-89db-91a9dd07095f)
  1936. )
  1937. (wire (pts (xy 198.12 123.19) (xy 198.12 120.65))
  1938. (stroke (width 0) (type default) (color 0 0 0 0))
  1939. (uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615)
  1940. )
  1941. (bus (pts (xy 328.93 106.68) (xy 328.93 109.22))
  1942. (stroke (width 0) (type default) (color 0 0 0 0))
  1943. (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
  1944. )
  1945. (wire (pts (xy 111.76 154.94) (xy 114.3 154.94))
  1946. (stroke (width 0) (type default) (color 0 0 0 0))
  1947. (uuid 5d3d7893-1d11-4f1d-9052-85cf0e07d281)
  1948. )
  1949. (bus (pts (xy 278.13 111.76) (xy 278.13 114.3))
  1950. (stroke (width 0) (type default) (color 0 0 0 0))
  1951. (uuid 5d3d866a-ac2c-4d64-8cb7-b79208e736c5)
  1952. )
  1953. (bus (pts (xy 325.12 147.32) (xy 325.12 149.86))
  1954. (stroke (width 0) (type default) (color 0 0 0 0))
  1955. (uuid 5dc6452f-5e77-4f9a-9d59-f563d24d87b0)
  1956. )
  1957. (wire (pts (xy 93.98 194.31) (xy 96.52 194.31))
  1958. (stroke (width 0) (type default) (color 0 0 0 0))
  1959. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  1960. )
  1961. (bus (pts (xy 381 109.22) (xy 381 111.76))
  1962. (stroke (width 0) (type default) (color 0 0 0 0))
  1963. (uuid 5f53dcca-84a1-48c5-b948-5bb5c954e666)
  1964. )
  1965. (wire (pts (xy 86.36 194.31) (xy 91.44 194.31))
  1966. (stroke (width 0) (type default) (color 0 0 0 0))
  1967. (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be)
  1968. )
  1969. (wire (pts (xy 289.56 111.76) (xy 280.67 111.76))
  1970. (stroke (width 0) (type default) (color 0 0 0 0))
  1971. (uuid 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)
  1972. )
  1973. (wire (pts (xy 314.96 127) (xy 320.04 127))
  1974. (stroke (width 0) (type default) (color 0 0 0 0))
  1975. (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
  1976. )
  1977. (bus (pts (xy 278.13 119.38) (xy 278.13 121.92))
  1978. (stroke (width 0) (type default) (color 0 0 0 0))
  1979. (uuid 65c1889f-6c31-4bfa-b925-bccebe70e0bd)
  1980. )
  1981. (bus (pts (xy 381 119.38) (xy 381 121.92))
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (uuid 65d4702b-88e4-4992-a6fe-53022259051a)
  1984. )
  1985. (wire (pts (xy 214.63 114.3) (xy 214.63 111.76))
  1986. (stroke (width 0) (type default) (color 0 0 0 0))
  1987. (uuid 66bc2bca-dab7-4947-a0ff-403cdaf9fb89)
  1988. )
  1989. (bus (pts (xy 278.13 124.46) (xy 278.13 127))
  1990. (stroke (width 0) (type default) (color 0 0 0 0))
  1991. (uuid 6934f963-a577-4c3a-80a3-278b664e1f61)
  1992. )
  1993. (bus (pts (xy 328.93 109.22) (xy 328.93 111.76))
  1994. (stroke (width 0) (type default) (color 0 0 0 0))
  1995. (uuid 69853def-a73a-4f09-a711-7f7570e5a75b)
  1996. )
  1997. (wire (pts (xy 214.63 144.78) (xy 217.17 144.78))
  1998. (stroke (width 0) (type default) (color 0 0 0 0))
  1999. (uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb)
  2000. )
  2001. (wire (pts (xy 214.63 157.48) (xy 217.17 157.48))
  2002. (stroke (width 0) (type default) (color 0 0 0 0))
  2003. (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
  2004. )
  2005. (wire (pts (xy 247.65 119.38) (xy 256.54 119.38))
  2006. (stroke (width 0) (type default) (color 0 0 0 0))
  2007. (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f)
  2008. )
  2009. (wire (pts (xy 76.2 49.53) (xy 80.01 49.53))
  2010. (stroke (width 0) (type default) (color 0 0 0 0))
  2011. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  2012. )
  2013. (bus (pts (xy 259.08 165.1) (xy 259.08 167.64))
  2014. (stroke (width 0) (type default) (color 0 0 0 0))
  2015. (uuid 6a5433ee-b187-4be9-8a27-92e9e208ccb9)
  2016. )
  2017. (wire (pts (xy 204.47 134.62) (xy 217.17 134.62))
  2018. (stroke (width 0) (type default) (color 0 0 0 0))
  2019. (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
  2020. )
  2021. (wire (pts (xy 289.56 119.38) (xy 280.67 119.38))
  2022. (stroke (width 0) (type default) (color 0 0 0 0))
  2023. (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)
  2024. )
  2025. (wire (pts (xy 63.5 161.29) (xy 63.5 137.16))
  2026. (stroke (width 0) (type default) (color 0 0 0 0))
  2027. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  2028. )
  2029. (wire (pts (xy 60.96 129.54) (xy 68.58 129.54))
  2030. (stroke (width 0) (type default) (color 0 0 0 0))
  2031. (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0)
  2032. )
  2033. (wire (pts (xy 232.41 181.61) (xy 232.41 180.34))
  2034. (stroke (width 0) (type default) (color 0 0 0 0))
  2035. (uuid 6e435cd4-da2b-4602-a0aa-5dd988834dff)
  2036. )
  2037. (wire (pts (xy 111.76 129.54) (xy 111.76 137.16))
  2038. (stroke (width 0) (type default) (color 0 0 0 0))
  2039. (uuid 6f580eb1-88cc-489d-a7ca-9efa5e590715)
  2040. )
  2041. (bus (pts (xy 259.08 160.02) (xy 259.08 162.56))
  2042. (stroke (width 0) (type default) (color 0 0 0 0))
  2043. (uuid 6fccd5e6-6583-48f0-a04d-0296494a13e5)
  2044. )
  2045. (wire (pts (xy 184.15 118.11) (xy 184.15 120.65))
  2046. (stroke (width 0) (type default) (color 0 0 0 0))
  2047. (uuid 701e1517-e8cf-46f4-b538-98e721c97380)
  2048. )
  2049. (bus (pts (xy 322.58 106.68) (xy 322.58 109.22))
  2050. (stroke (width 0) (type default) (color 0 0 0 0))
  2051. (uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
  2052. )
  2053. (wire (pts (xy 302.26 146.05) (xy 302.26 147.32))
  2054. (stroke (width 0) (type default) (color 0 0 0 0))
  2055. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  2056. )
  2057. (wire (pts (xy 189.23 113.03) (xy 189.23 104.14))
  2058. (stroke (width 0) (type default) (color 0 0 0 0))
  2059. (uuid 72b36951-3ec7-4569-9c88-cf9b4afe1cae)
  2060. )
  2061. (bus (pts (xy 259.08 121.92) (xy 259.08 124.46))
  2062. (stroke (width 0) (type default) (color 0 0 0 0))
  2063. (uuid 7313772f-068f-4838-8cd8-a00f602bc273)
  2064. )
  2065. (wire (pts (xy 135.89 129.54) (xy 135.89 127))
  2066. (stroke (width 0) (type default) (color 0 0 0 0))
  2067. (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
  2068. )
  2069. (wire (pts (xy 337.82 132.08) (xy 327.66 132.08))
  2070. (stroke (width 0) (type default) (color 0 0 0 0))
  2071. (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab)
  2072. )
  2073. (wire (pts (xy 314.96 129.54) (xy 320.04 129.54))
  2074. (stroke (width 0) (type default) (color 0 0 0 0))
  2075. (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
  2076. )
  2077. (wire (pts (xy 80.01 49.53) (xy 80.01 46.99))
  2078. (stroke (width 0) (type default) (color 0 0 0 0))
  2079. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  2080. )
  2081. (bus (pts (xy 322.58 106.68) (xy 328.93 106.68))
  2082. (stroke (width 0) (type default) (color 0 0 0 0))
  2083. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  2084. )
  2085. (wire (pts (xy 111.76 137.16) (xy 114.3 137.16))
  2086. (stroke (width 0) (type default) (color 0 0 0 0))
  2087. (uuid 7bea05d4-1dec-4cd6-aa53-302dde803254)
  2088. )
  2089. (wire (pts (xy 254 139.7) (xy 247.65 139.7))
  2090. (stroke (width 0) (type default) (color 0 0 0 0))
  2091. (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
  2092. )
  2093. (wire (pts (xy 53.34 129.54) (xy 50.8 129.54))
  2094. (stroke (width 0) (type default) (color 0 0 0 0))
  2095. (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111)
  2096. )
  2097. (wire (pts (xy 66.04 41.91) (xy 80.01 41.91))
  2098. (stroke (width 0) (type default) (color 0 0 0 0))
  2099. (uuid 7f9683c1-2203-43df-8fa1-719a0dc360df)
  2100. )
  2101. (wire (pts (xy 184.15 134.62) (xy 204.47 134.62))
  2102. (stroke (width 0) (type default) (color 0 0 0 0))
  2103. (uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
  2104. )
  2105. (wire (pts (xy 337.82 129.54) (xy 331.47 129.54))
  2106. (stroke (width 0) (type default) (color 0 0 0 0))
  2107. (uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
  2108. )
  2109. (wire (pts (xy 337.82 116.84) (xy 331.47 116.84))
  2110. (stroke (width 0) (type default) (color 0 0 0 0))
  2111. (uuid 83021f70-e61e-4ad3-bae7-b9f02b28be4f)
  2112. )
  2113. (wire (pts (xy 104.14 210.82) (xy 96.52 210.82))
  2114. (stroke (width 0) (type default) (color 0 0 0 0))
  2115. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  2116. )
  2117. (bus (pts (xy 328.93 111.76) (xy 328.93 114.3))
  2118. (stroke (width 0) (type default) (color 0 0 0 0))
  2119. (uuid 8555a851-d287-40dc-9175-561cb65355de)
  2120. )
  2121. (wire (pts (xy 247.65 172.72) (xy 256.54 172.72))
  2122. (stroke (width 0) (type default) (color 0 0 0 0))
  2123. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2124. )
  2125. (wire (pts (xy 29.21 154.94) (xy 31.75 154.94))
  2126. (stroke (width 0) (type default) (color 0 0 0 0))
  2127. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  2128. )
  2129. (wire (pts (xy 64.77 213.36) (xy 67.31 213.36))
  2130. (stroke (width 0) (type default) (color 0 0 0 0))
  2131. (uuid 88606262-3ac5-44a1-aacc-18b26cf4d396)
  2132. )
  2133. (wire (pts (xy 368.3 129.54) (xy 378.46 129.54))
  2134. (stroke (width 0) (type default) (color 0 0 0 0))
  2135. (uuid 88668202-3f0b-4d07-84d4-dcd790f57272)
  2136. )
  2137. (wire (pts (xy 153.67 52.07) (xy 153.67 49.53))
  2138. (stroke (width 0) (type default) (color 0 0 0 0))
  2139. (uuid 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)
  2140. )
  2141. (wire (pts (xy 247.65 157.48) (xy 256.54 157.48))
  2142. (stroke (width 0) (type default) (color 0 0 0 0))
  2143. (uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
  2144. )
  2145. (wire (pts (xy 66.04 38.1) (xy 66.04 41.91))
  2146. (stroke (width 0) (type default) (color 0 0 0 0))
  2147. (uuid 88deea08-baa5-4041-beb7-01c299cf00e6)
  2148. )
  2149. (wire (pts (xy 337.82 144.78) (xy 327.66 144.78))
  2150. (stroke (width 0) (type default) (color 0 0 0 0))
  2151. (uuid 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)
  2152. )
  2153. (wire (pts (xy 314.96 114.3) (xy 320.04 114.3))
  2154. (stroke (width 0) (type default) (color 0 0 0 0))
  2155. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  2156. )
  2157. (wire (pts (xy 121.92 160.02) (xy 121.92 161.29))
  2158. (stroke (width 0) (type default) (color 0 0 0 0))
  2159. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  2160. )
  2161. (bus (pts (xy 278.13 121.92) (xy 278.13 124.46))
  2162. (stroke (width 0) (type default) (color 0 0 0 0))
  2163. (uuid 8b26b427-5c95-4ed4-9360-47ff3a84c4a0)
  2164. )
  2165. (wire (pts (xy 314.96 111.76) (xy 320.04 111.76))
  2166. (stroke (width 0) (type default) (color 0 0 0 0))
  2167. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  2168. )
  2169. (wire (pts (xy 368.3 114.3) (xy 378.46 114.3))
  2170. (stroke (width 0) (type default) (color 0 0 0 0))
  2171. (uuid 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
  2172. )
  2173. (wire (pts (xy 162.56 125.73) (xy 166.37 125.73))
  2174. (stroke (width 0) (type default) (color 0 0 0 0))
  2175. (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
  2176. )
  2177. (wire (pts (xy 39.37 154.94) (xy 41.91 154.94))
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  2180. )
  2181. (wire (pts (xy 64.77 205.74) (xy 67.31 205.74))
  2182. (stroke (width 0) (type default) (color 0 0 0 0))
  2183. (uuid 8eb98c56-17e4-4de6-a3e3-06dcfa392040)
  2184. )
  2185. (wire (pts (xy 96.52 194.31) (xy 101.6 194.31))
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
  2188. )
  2189. (wire (pts (xy 331.47 167.64) (xy 331.47 168.91))
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  2192. )
  2193. (bus (pts (xy 328.93 116.84) (xy 328.93 119.38))
  2194. (stroke (width 0) (type default) (color 0 0 0 0))
  2195. (uuid 90ed4e8b-59e1-4358-98ce-d2989a4bbc0c)
  2196. )
  2197. (bus (pts (xy 322.58 121.92) (xy 322.58 124.46))
  2198. (stroke (width 0) (type default) (color 0 0 0 0))
  2199. (uuid 90fda119-0c39-4964-b578-66676a61b5e6)
  2200. )
  2201. (wire (pts (xy 64.77 208.28) (xy 64.77 210.82))
  2202. (stroke (width 0) (type default) (color 0 0 0 0))
  2203. (uuid 91fc5800-6029-46b1-848d-ca0091f97267)
  2204. )
  2205. (wire (pts (xy 39.37 138.43) (xy 39.37 137.16))
  2206. (stroke (width 0) (type default) (color 0 0 0 0))
  2207. (uuid 91fe070a-a49b-4bc5-805a-42f23e10d114)
  2208. )
  2209. (wire (pts (xy 247.65 127) (xy 256.54 127))
  2210. (stroke (width 0) (type default) (color 0 0 0 0))
  2211. (uuid 926001fd-2747-4639-8c0f-4fc46ff7218d)
  2212. )
  2213. (bus (pts (xy 259.08 153.67) (xy 259.08 154.94))
  2214. (stroke (width 0) (type default) (color 0 0 0 0))
  2215. (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6)
  2216. )
  2217. (wire (pts (xy 250.19 147.32) (xy 247.65 147.32))
  2218. (stroke (width 0) (type default) (color 0 0 0 0))
  2219. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  2220. )
  2221. (wire (pts (xy 34.29 129.54) (xy 40.64 129.54))
  2222. (stroke (width 0) (type default) (color 0 0 0 0))
  2223. (uuid 9529c01f-e1cd-40be-b7f0-83780a544249)
  2224. )
  2225. (wire (pts (xy 214.63 152.4) (xy 217.17 152.4))
  2226. (stroke (width 0) (type default) (color 0 0 0 0))
  2227. (uuid 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b)
  2228. )
  2229. (wire (pts (xy 331.47 151.13) (xy 337.82 151.13))
  2230. (stroke (width 0) (type default) (color 0 0 0 0))
  2231. (uuid 96315415-cfed-47d2-b3dd-d782358bd0df)
  2232. )
  2233. (bus (pts (xy 259.08 119.38) (xy 259.08 121.92))
  2234. (stroke (width 0) (type default) (color 0 0 0 0))
  2235. (uuid 969e3410-ef54-4f07-affc-63a1d00b7364)
  2236. )
  2237. (wire (pts (xy 34.29 128.27) (xy 34.29 129.54))
  2238. (stroke (width 0) (type default) (color 0 0 0 0))
  2239. (uuid 96db52e2-6336-4f5e-846e-528c594d0509)
  2240. )
  2241. (wire (pts (xy 121.92 161.29) (xy 137.16 161.29))
  2242. (stroke (width 0) (type default) (color 0 0 0 0))
  2243. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2244. )
  2245. (wire (pts (xy 101.6 194.31) (xy 101.6 195.58))
  2246. (stroke (width 0) (type default) (color 0 0 0 0))
  2247. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  2248. )
  2249. (wire (pts (xy 337.82 168.91) (xy 337.82 162.56))
  2250. (stroke (width 0) (type default) (color 0 0 0 0))
  2251. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  2252. )
  2253. (wire (pts (xy 214.63 111.76) (xy 217.17 111.76))
  2254. (stroke (width 0) (type default) (color 0 0 0 0))
  2255. (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7)
  2256. )
  2257. (wire (pts (xy 368.3 111.76) (xy 378.46 111.76))
  2258. (stroke (width 0) (type default) (color 0 0 0 0))
  2259. (uuid 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)
  2260. )
  2261. (bus (pts (xy 259.08 116.84) (xy 259.08 119.38))
  2262. (stroke (width 0) (type default) (color 0 0 0 0))
  2263. (uuid 9d38bcaa-16a0-4f54-a359-9973570cd751)
  2264. )
  2265. (wire (pts (xy 96.52 210.82) (xy 82.55 210.82))
  2266. (stroke (width 0) (type default) (color 0 0 0 0))
  2267. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  2268. )
  2269. (bus (pts (xy 278.13 116.84) (xy 278.13 119.38))
  2270. (stroke (width 0) (type default) (color 0 0 0 0))
  2271. (uuid 9ea0586a-1a38-405f-a9db-cc7c88b33927)
  2272. )
  2273. (bus (pts (xy 381 92.71) (xy 381 109.22))
  2274. (stroke (width 0) (type default) (color 0 0 0 0))
  2275. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  2276. )
  2277. (bus (pts (xy 259.08 109.22) (xy 259.08 111.76))
  2278. (stroke (width 0) (type default) (color 0 0 0 0))
  2279. (uuid 9f54b021-662d-4bb5-ae7d-bad3e2041b4e)
  2280. )
  2281. (wire (pts (xy 337.82 134.62) (xy 327.66 134.62))
  2282. (stroke (width 0) (type default) (color 0 0 0 0))
  2283. (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8)
  2284. )
  2285. (wire (pts (xy 289.56 124.46) (xy 280.67 124.46))
  2286. (stroke (width 0) (type default) (color 0 0 0 0))
  2287. (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)
  2288. )
  2289. (wire (pts (xy 337.82 114.3) (xy 331.47 114.3))
  2290. (stroke (width 0) (type default) (color 0 0 0 0))
  2291. (uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5)
  2292. )
  2293. (wire (pts (xy 121.92 137.16) (xy 125.73 137.16))
  2294. (stroke (width 0) (type default) (color 0 0 0 0))
  2295. (uuid a5362821-c161-4c7a-a00c-40e1d7472d56)
  2296. )
  2297. (wire (pts (xy 254 134.62) (xy 247.65 134.62))
  2298. (stroke (width 0) (type default) (color 0 0 0 0))
  2299. (uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
  2300. )
  2301. (wire (pts (xy 250.19 152.4) (xy 247.65 152.4))
  2302. (stroke (width 0) (type default) (color 0 0 0 0))
  2303. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  2304. )
  2305. (wire (pts (xy 289.56 127) (xy 280.67 127))
  2306. (stroke (width 0) (type default) (color 0 0 0 0))
  2307. (uuid a6ccc556-da88-4006-ae1a-cc35733efef3)
  2308. )
  2309. (wire (pts (xy 247.65 160.02) (xy 256.54 160.02))
  2310. (stroke (width 0) (type default) (color 0 0 0 0))
  2311. (uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
  2312. )
  2313. (wire (pts (xy 337.82 157.48) (xy 337.82 151.13))
  2314. (stroke (width 0) (type default) (color 0 0 0 0))
  2315. (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61)
  2316. )
  2317. (wire (pts (xy 49.53 147.32) (xy 49.53 149.86))
  2318. (stroke (width 0) (type default) (color 0 0 0 0))
  2319. (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
  2320. )
  2321. (bus (pts (xy 328.93 119.38) (xy 328.93 121.92))
  2322. (stroke (width 0) (type default) (color 0 0 0 0))
  2323. (uuid aad53ff4-6289-43f1-9787-415d5f604245)
  2324. )
  2325. (bus (pts (xy 325.12 134.62) (xy 325.12 137.16))
  2326. (stroke (width 0) (type default) (color 0 0 0 0))
  2327. (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485)
  2328. )
  2329. (bus (pts (xy 278.13 114.3) (xy 278.13 116.84))
  2330. (stroke (width 0) (type default) (color 0 0 0 0))
  2331. (uuid b1299430-0d43-44bf-bd6a-eac09d870db6)
  2332. )
  2333. (bus (pts (xy 381 116.84) (xy 381 119.38))
  2334. (stroke (width 0) (type default) (color 0 0 0 0))
  2335. (uuid b1a6c22d-c40e-40c7-91ce-6c8614e38fa1)
  2336. )
  2337. (wire (pts (xy 368.3 116.84) (xy 378.46 116.84))
  2338. (stroke (width 0) (type default) (color 0 0 0 0))
  2339. (uuid b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
  2340. )
  2341. (wire (pts (xy 232.41 104.14) (xy 232.41 106.68))
  2342. (stroke (width 0) (type default) (color 0 0 0 0))
  2343. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  2344. )
  2345. (wire (pts (xy 123.19 129.54) (xy 135.89 129.54))
  2346. (stroke (width 0) (type default) (color 0 0 0 0))
  2347. (uuid b54cae5b-c17c-4ed7-b249-2e7d5e83609a)
  2348. )
  2349. (bus (pts (xy 259.08 114.3) (xy 259.08 116.84))
  2350. (stroke (width 0) (type default) (color 0 0 0 0))
  2351. (uuid b57f5173-83a4-43f2-8b60-0cfdaa48e60e)
  2352. )
  2353. (wire (pts (xy 289.56 116.84) (xy 280.67 116.84))
  2354. (stroke (width 0) (type default) (color 0 0 0 0))
  2355. (uuid b7867831-ef82-4f33-a926-59e5c1c09b91)
  2356. )
  2357. (wire (pts (xy 101.6 203.2) (xy 101.6 213.36))
  2358. (stroke (width 0) (type default) (color 0 0 0 0))
  2359. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  2360. )
  2361. (wire (pts (xy 314.96 119.38) (xy 320.04 119.38))
  2362. (stroke (width 0) (type default) (color 0 0 0 0))
  2363. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  2364. )
  2365. (wire (pts (xy 332.74 160.02) (xy 337.82 160.02))
  2366. (stroke (width 0) (type default) (color 0 0 0 0))
  2367. (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e)
  2368. )
  2369. (wire (pts (xy 247.65 167.64) (xy 256.54 167.64))
  2370. (stroke (width 0) (type default) (color 0 0 0 0))
  2371. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  2372. )
  2373. (bus (pts (xy 259.08 124.46) (xy 259.08 127))
  2374. (stroke (width 0) (type default) (color 0 0 0 0))
  2375. (uuid bc090dc5-154c-4e02-8197-313661d9dd7d)
  2376. )
  2377. (wire (pts (xy 66.04 50.8) (xy 66.04 52.07))
  2378. (stroke (width 0) (type default) (color 0 0 0 0))
  2379. (uuid be2983fa-f06e-485e-bea1-3dd96b916ec5)
  2380. )
  2381. (wire (pts (xy 96.52 203.2) (xy 96.52 210.82))
  2382. (stroke (width 0) (type default) (color 0 0 0 0))
  2383. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  2384. )
  2385. (bus (pts (xy 381 121.92) (xy 381 124.46))
  2386. (stroke (width 0) (type default) (color 0 0 0 0))
  2387. (uuid bf3efcef-5692-4912-bc43-222716f9654b)
  2388. )
  2389. (wire (pts (xy 142.24 41.91) (xy 142.24 39.37))
  2390. (stroke (width 0) (type default) (color 0 0 0 0))
  2391. (uuid c088f712-1abe-4cac-9a8b-d564931395aa)
  2392. )
  2393. (wire (pts (xy 368.3 124.46) (xy 378.46 124.46))
  2394. (stroke (width 0) (type default) (color 0 0 0 0))
  2395. (uuid c106154f-d948-43e5-abfa-e1b96055d91b)
  2396. )
  2397. (wire (pts (xy 368.3 127) (xy 378.46 127))
  2398. (stroke (width 0) (type default) (color 0 0 0 0))
  2399. (uuid c24d6ac8-802d-4df3-a210-9cb1f693e865)
  2400. )
  2401. (bus (pts (xy 325.12 142.24) (xy 325.12 144.78))
  2402. (stroke (width 0) (type default) (color 0 0 0 0))
  2403. (uuid c33e9a1c-e841-44ab-94b0-b02bcd9714c6)
  2404. )
  2405. (wire (pts (xy 209.55 113.03) (xy 209.55 129.54))
  2406. (stroke (width 0) (type default) (color 0 0 0 0))
  2407. (uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
  2408. )
  2409. (wire (pts (xy 64.77 213.36) (xy 64.77 217.17))
  2410. (stroke (width 0) (type default) (color 0 0 0 0))
  2411. (uuid c66a19ed-90c0-4502-ae75-6a4c4ab9f297)
  2412. )
  2413. (wire (pts (xy 96.52 195.58) (xy 96.52 194.31))
  2414. (stroke (width 0) (type default) (color 0 0 0 0))
  2415. (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
  2416. )
  2417. (wire (pts (xy 76.2 48.26) (xy 76.2 49.53))
  2418. (stroke (width 0) (type default) (color 0 0 0 0))
  2419. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  2420. )
  2421. (wire (pts (xy 86.36 203.2) (xy 86.36 205.74))
  2422. (stroke (width 0) (type default) (color 0 0 0 0))
  2423. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  2424. )
  2425. (bus (pts (xy 325.12 144.78) (xy 325.12 147.32))
  2426. (stroke (width 0) (type default) (color 0 0 0 0))
  2427. (uuid ca6dbfa0-f908-413a-a8b8-fb43356c0f83)
  2428. )
  2429. (wire (pts (xy 198.12 105.41) (xy 198.12 104.14))
  2430. (stroke (width 0) (type default) (color 0 0 0 0))
  2431. (uuid cb6062da-8dcd-4826-92fd-4071e9e97213)
  2432. )
  2433. (bus (pts (xy 328.93 124.46) (xy 328.93 127))
  2434. (stroke (width 0) (type default) (color 0 0 0 0))
  2435. (uuid cbb42f39-5d09-4c42-aff2-820cb4647944)
  2436. )
  2437. (bus (pts (xy 259.08 162.56) (xy 259.08 165.1))
  2438. (stroke (width 0) (type default) (color 0 0 0 0))
  2439. (uuid cc3eaf72-de85-473a-b1a3-1fd7329af266)
  2440. )
  2441. (wire (pts (xy 337.82 119.38) (xy 331.47 119.38))
  2442. (stroke (width 0) (type default) (color 0 0 0 0))
  2443. (uuid cc75e5ae-3348-4e7a-bd16-4df685ee47bd)
  2444. )
  2445. (wire (pts (xy 64.77 210.82) (xy 67.31 210.82))
  2446. (stroke (width 0) (type default) (color 0 0 0 0))
  2447. (uuid cd1cff81-9d8a-4511-96d6-4ddb79484001)
  2448. )
  2449. (bus (pts (xy 278.13 109.22) (xy 278.13 111.76))
  2450. (stroke (width 0) (type default) (color 0 0 0 0))
  2451. (uuid cda52a67-b1c9-4d44-bff7-b404dd2fb8be)
  2452. )
  2453. (wire (pts (xy 66.04 53.34) (xy 66.04 52.07))
  2454. (stroke (width 0) (type default) (color 0 0 0 0))
  2455. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2456. )
  2457. (wire (pts (xy 247.65 144.78) (xy 256.54 144.78))
  2458. (stroke (width 0) (type default) (color 0 0 0 0))
  2459. (uuid d05faa1f-5f69-41bf-86d3-2cd224432e1b)
  2460. )
  2461. (wire (pts (xy 204.47 135.89) (xy 204.47 134.62))
  2462. (stroke (width 0) (type default) (color 0 0 0 0))
  2463. (uuid d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)
  2464. )
  2465. (wire (pts (xy 314.96 121.92) (xy 320.04 121.92))
  2466. (stroke (width 0) (type default) (color 0 0 0 0))
  2467. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  2468. )
  2469. (wire (pts (xy 214.63 160.02) (xy 217.17 160.02))
  2470. (stroke (width 0) (type default) (color 0 0 0 0))
  2471. (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
  2472. )
  2473. (wire (pts (xy 337.82 142.24) (xy 327.66 142.24))
  2474. (stroke (width 0) (type default) (color 0 0 0 0))
  2475. (uuid d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
  2476. )
  2477. (wire (pts (xy 247.65 121.92) (xy 256.54 121.92))
  2478. (stroke (width 0) (type default) (color 0 0 0 0))
  2479. (uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
  2480. )
  2481. (wire (pts (xy 71.12 129.54) (xy 68.58 129.54))
  2482. (stroke (width 0) (type default) (color 0 0 0 0))
  2483. (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56)
  2484. )
  2485. (wire (pts (xy 113.03 129.54) (xy 111.76 129.54))
  2486. (stroke (width 0) (type default) (color 0 0 0 0))
  2487. (uuid d68e5ddb-039c-483f-88a3-1b0b7964b482)
  2488. )
  2489. (wire (pts (xy 104.14 205.74) (xy 86.36 205.74))
  2490. (stroke (width 0) (type default) (color 0 0 0 0))
  2491. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  2492. )
  2493. (wire (pts (xy 217.17 139.7) (xy 214.63 139.7))
  2494. (stroke (width 0) (type default) (color 0 0 0 0))
  2495. (uuid d88958ac-68cd-4955-a63f-0eaa329dec86)
  2496. )
  2497. (bus (pts (xy 325.12 137.16) (xy 325.12 139.7))
  2498. (stroke (width 0) (type default) (color 0 0 0 0))
  2499. (uuid d97e3707-fcbc-4198-85cc-a812eef10f9b)
  2500. )
  2501. (wire (pts (xy 68.58 142.24) (xy 68.58 139.7))
  2502. (stroke (width 0) (type default) (color 0 0 0 0))
  2503. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  2504. )
  2505. (wire (pts (xy 91.44 195.58) (xy 91.44 194.31))
  2506. (stroke (width 0) (type default) (color 0 0 0 0))
  2507. (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa)
  2508. )
  2509. (wire (pts (xy 66.04 43.18) (xy 66.04 41.91))
  2510. (stroke (width 0) (type default) (color 0 0 0 0))
  2511. (uuid dc1d84c8-33da-4489-be8e-2a1de3001779)
  2512. )
  2513. (wire (pts (xy 121.92 147.32) (xy 121.92 149.86))
  2514. (stroke (width 0) (type default) (color 0 0 0 0))
  2515. (uuid dca1d7db-c913-4d73-a2cc-fdc9651eda69)
  2516. )
  2517. (wire (pts (xy 314.96 124.46) (xy 320.04 124.46))
  2518. (stroke (width 0) (type default) (color 0 0 0 0))
  2519. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  2520. )
  2521. (bus (pts (xy 322.58 119.38) (xy 322.58 121.92))
  2522. (stroke (width 0) (type default) (color 0 0 0 0))
  2523. (uuid debcb360-ece1-4ba9-9019-34b48461c4bb)
  2524. )
  2525. (bus (pts (xy 259.08 157.48) (xy 259.08 160.02))
  2526. (stroke (width 0) (type default) (color 0 0 0 0))
  2527. (uuid e06140c2-6f59-4cac-a60a-49e917310252)
  2528. )
  2529. (wire (pts (xy 49.53 160.02) (xy 49.53 161.29))
  2530. (stroke (width 0) (type default) (color 0 0 0 0))
  2531. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  2532. )
  2533. (wire (pts (xy 337.82 147.32) (xy 327.66 147.32))
  2534. (stroke (width 0) (type default) (color 0 0 0 0))
  2535. (uuid e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
  2536. )
  2537. (wire (pts (xy 289.56 114.3) (xy 280.67 114.3))
  2538. (stroke (width 0) (type default) (color 0 0 0 0))
  2539. (uuid e54e5e19-1deb-49a9-8629-617db8e434c0)
  2540. )
  2541. (wire (pts (xy 153.67 41.91) (xy 153.67 39.37))
  2542. (stroke (width 0) (type default) (color 0 0 0 0))
  2543. (uuid e5b328f6-dc69-4905-ae98-2dc3200a51d6)
  2544. )
  2545. (bus (pts (xy 325.12 149.86) (xy 325.12 153.67))
  2546. (stroke (width 0) (type default) (color 0 0 0 0))
  2547. (uuid e9eaffbf-b4f2-43ca-ba28-81edd1ddfebc)
  2548. )
  2549. (wire (pts (xy 337.82 124.46) (xy 331.47 124.46))
  2550. (stroke (width 0) (type default) (color 0 0 0 0))
  2551. (uuid eac8d865-0226-4958-b547-6b5592f39713)
  2552. )
  2553. (bus (pts (xy 278.13 92.71) (xy 278.13 109.22))
  2554. (stroke (width 0) (type default) (color 0 0 0 0))
  2555. (uuid eb391a95-1c1d-4613-b508-c76b8bc13a73)
  2556. )
  2557. (wire (pts (xy 107.95 34.29) (xy 107.95 36.83))
  2558. (stroke (width 0) (type default) (color 0 0 0 0))
  2559. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  2560. )
  2561. (wire (pts (xy 189.23 104.14) (xy 198.12 104.14))
  2562. (stroke (width 0) (type default) (color 0 0 0 0))
  2563. (uuid eb8d02e9-145c-465d-b6a8-bae84d47a94b)
  2564. )
  2565. (wire (pts (xy 368.3 119.38) (xy 378.46 119.38))
  2566. (stroke (width 0) (type default) (color 0 0 0 0))
  2567. (uuid eee16674-2d21-45b6-ab5e-d669125df26c)
  2568. )
  2569. (bus (pts (xy 259.08 167.64) (xy 259.08 170.18))
  2570. (stroke (width 0) (type default) (color 0 0 0 0))
  2571. (uuid efaa2164-6b1a-466b-8052-b6d68eeffe81)
  2572. )
  2573. (bus (pts (xy 381 114.3) (xy 381 116.84))
  2574. (stroke (width 0) (type default) (color 0 0 0 0))
  2575. (uuid f21493bc-7539-494e-894d-50c7ee8c899b)
  2576. )
  2577. (wire (pts (xy 337.82 127) (xy 331.47 127))
  2578. (stroke (width 0) (type default) (color 0 0 0 0))
  2579. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  2580. )
  2581. (wire (pts (xy 368.3 121.92) (xy 378.46 121.92))
  2582. (stroke (width 0) (type default) (color 0 0 0 0))
  2583. (uuid f449bd37-cc90-4487-aee6-2a20b8d2843a)
  2584. )
  2585. (wire (pts (xy 49.53 137.16) (xy 53.34 137.16))
  2586. (stroke (width 0) (type default) (color 0 0 0 0))
  2587. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  2588. )
  2589. (wire (pts (xy 314.96 116.84) (xy 320.04 116.84))
  2590. (stroke (width 0) (type default) (color 0 0 0 0))
  2591. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  2592. )
  2593. (wire (pts (xy 63.5 137.16) (xy 60.96 137.16))
  2594. (stroke (width 0) (type default) (color 0 0 0 0))
  2595. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2596. )
  2597. (wire (pts (xy 209.55 129.54) (xy 217.17 129.54))
  2598. (stroke (width 0) (type default) (color 0 0 0 0))
  2599. (uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
  2600. )
  2601. (wire (pts (xy 86.36 205.74) (xy 82.55 205.74))
  2602. (stroke (width 0) (type default) (color 0 0 0 0))
  2603. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  2604. )
  2605. (bus (pts (xy 328.93 121.92) (xy 328.93 124.46))
  2606. (stroke (width 0) (type default) (color 0 0 0 0))
  2607. (uuid f7b6d619-740e-4145-8372-81cc426784ef)
  2608. )
  2609. (wire (pts (xy 247.65 162.56) (xy 256.54 162.56))
  2610. (stroke (width 0) (type default) (color 0 0 0 0))
  2611. (uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
  2612. )
  2613. (wire (pts (xy 68.58 127) (xy 68.58 129.54))
  2614. (stroke (width 0) (type default) (color 0 0 0 0))
  2615. (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6)
  2616. )
  2617. (wire (pts (xy 107.95 54.61) (xy 107.95 57.15))
  2618. (stroke (width 0) (type default) (color 0 0 0 0))
  2619. (uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
  2620. )
  2621. (wire (pts (xy 331.47 168.91) (xy 337.82 168.91))
  2622. (stroke (width 0) (type default) (color 0 0 0 0))
  2623. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  2624. )
  2625. (wire (pts (xy 107.95 44.45) (xy 107.95 46.99))
  2626. (stroke (width 0) (type default) (color 0 0 0 0))
  2627. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  2628. )
  2629. (wire (pts (xy 289.56 146.05) (xy 289.56 137.16))
  2630. (stroke (width 0) (type default) (color 0 0 0 0))
  2631. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  2632. )
  2633. (bus (pts (xy 322.58 116.84) (xy 322.58 119.38))
  2634. (stroke (width 0) (type default) (color 0 0 0 0))
  2635. (uuid fc643923-9f70-467c-a1db-a24c7ed8a4be)
  2636. )
  2637. (wire (pts (xy 302.26 101.6) (xy 302.26 104.14))
  2638. (stroke (width 0) (type default) (color 0 0 0 0))
  2639. (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
  2640. )
  2641. (wire (pts (xy 337.82 139.7) (xy 327.66 139.7))
  2642. (stroke (width 0) (type default) (color 0 0 0 0))
  2643. (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a)
  2644. )
  2645. (text "32k x8 EEPROM\nAliased at 0x0000 and 0x8000" (at 327.66 187.96 0)
  2646. (effects (font (size 2.54 2.54)) (justify left bottom))
  2647. (uuid 46cbe85d-ff47-428e-b187-4ebd50a66e0c)
  2648. )
  2649. (text "Reset button\nwith red LED." (at 43.18 171.45 0)
  2650. (effects (font (size 2.54 2.54)) (justify left bottom))
  2651. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  2652. )
  2653. (text "Dump Size:\n1: 8051 (4k)\n2: 8052 (8k)\n3: 8054 (16k)\n4: 8058 (32k)"
  2654. (at 73.66 247.65 0)
  2655. (effects (font (size 2.54 2.54)) (justify left bottom))
  2656. (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
  2657. )
  2658. (text "ZIF socket for\n8051 to be dumped." (at 237.49 189.23 0)
  2659. (effects (font (size 2.54 2.54)) (justify left bottom))
  2660. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  2661. )
  2662. (text "Start button\nwith green LED." (at 105.41 171.45 0)
  2663. (effects (font (size 2.54 2.54)) (justify left bottom))
  2664. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  2665. )
  2666. (text "5 VDC Power Input" (at 46.99 26.67 0)
  2667. (effects (font (size 2.54 2.54)) (justify left bottom))
  2668. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  2669. )
  2670. (label "A5" (at 334.01 124.46 0)
  2671. (effects (font (size 1.27 1.27)) (justify left bottom))
  2672. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  2673. )
  2674. (label "~{EA}" (at 210.82 134.62 0)
  2675. (effects (font (size 1.27 1.27)) (justify left bottom))
  2676. (uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
  2677. )
  2678. (label "A11" (at 251.46 165.1 0)
  2679. (effects (font (size 1.27 1.27)) (justify left bottom))
  2680. (uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916)
  2681. )
  2682. (label "A6" (at 334.01 127 0)
  2683. (effects (font (size 1.27 1.27)) (justify left bottom))
  2684. (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
  2685. )
  2686. (label "A9" (at 330.2 134.62 0)
  2687. (effects (font (size 1.27 1.27)) (justify left bottom))
  2688. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  2689. )
  2690. (label "A2" (at 334.01 116.84 0)
  2691. (effects (font (size 1.27 1.27)) (justify left bottom))
  2692. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  2693. )
  2694. (label "A8" (at 330.2 132.08 0)
  2695. (effects (font (size 1.27 1.27)) (justify left bottom))
  2696. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  2697. )
  2698. (label "AD4" (at 373.38 121.92 0)
  2699. (effects (font (size 1.27 1.27)) (justify left bottom))
  2700. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  2701. )
  2702. (label "AD2" (at 373.38 116.84 0)
  2703. (effects (font (size 1.27 1.27)) (justify left bottom))
  2704. (uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
  2705. )
  2706. (label "AD0" (at 283.21 111.76 0)
  2707. (effects (font (size 1.27 1.27)) (justify left bottom))
  2708. (uuid 22999e73-da32-43a5-9163-4b3a41614f25)
  2709. )
  2710. (label "AD6" (at 283.21 124.46 0)
  2711. (effects (font (size 1.27 1.27)) (justify left bottom))
  2712. (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
  2713. )
  2714. (label "AD1" (at 251.46 114.3 0)
  2715. (effects (font (size 1.27 1.27)) (justify left bottom))
  2716. (uuid 262f1ea9-0133-4b43-be36-456207ea857c)
  2717. )
  2718. (label "AD5" (at 283.21 127 0)
  2719. (effects (font (size 1.27 1.27)) (justify left bottom))
  2720. (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
  2721. )
  2722. (label "AD3" (at 283.21 119.38 0)
  2723. (effects (font (size 1.27 1.27)) (justify left bottom))
  2724. (uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
  2725. )
  2726. (label "CLK" (at 210.82 129.54 0)
  2727. (effects (font (size 1.27 1.27)) (justify left bottom))
  2728. (uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
  2729. )
  2730. (label "A13" (at 251.46 170.18 0)
  2731. (effects (font (size 1.27 1.27)) (justify left bottom))
  2732. (uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3)
  2733. )
  2734. (label "AD7" (at 283.21 121.92 0)
  2735. (effects (font (size 1.27 1.27)) (justify left bottom))
  2736. (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
  2737. )
  2738. (label "AD3" (at 373.38 119.38 0)
  2739. (effects (font (size 1.27 1.27)) (justify left bottom))
  2740. (uuid 5487601b-81d3-4c70-8f3d-cf9df9c63302)
  2741. )
  2742. (label "AD0" (at 373.38 111.76 0)
  2743. (effects (font (size 1.27 1.27)) (justify left bottom))
  2744. (uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
  2745. )
  2746. (label "AD4" (at 251.46 121.92 0)
  2747. (effects (font (size 1.27 1.27)) (justify left bottom))
  2748. (uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
  2749. )
  2750. (label "A7" (at 316.23 121.92 0)
  2751. (effects (font (size 1.27 1.27)) (justify left bottom))
  2752. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  2753. )
  2754. (label "A7" (at 334.01 129.54 0)
  2755. (effects (font (size 1.27 1.27)) (justify left bottom))
  2756. (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
  2757. )
  2758. (label "AD2" (at 283.21 116.84 0)
  2759. (effects (font (size 1.27 1.27)) (justify left bottom))
  2760. (uuid 658dad07-97fd-466c-8b49-21892ac96ea4)
  2761. )
  2762. (label "A12" (at 251.46 167.64 0)
  2763. (effects (font (size 1.27 1.27)) (justify left bottom))
  2764. (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
  2765. )
  2766. (label "A3" (at 316.23 119.38 0)
  2767. (effects (font (size 1.27 1.27)) (justify left bottom))
  2768. (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)
  2769. )
  2770. (label "AD1" (at 283.21 114.3 0)
  2771. (effects (font (size 1.27 1.27)) (justify left bottom))
  2772. (uuid 6e68f0cd-800e-4167-9553-71fc59da1eeb)
  2773. )
  2774. (label "A3" (at 334.01 119.38 0)
  2775. (effects (font (size 1.27 1.27)) (justify left bottom))
  2776. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  2777. )
  2778. (label "AD3" (at 251.46 119.38 0)
  2779. (effects (font (size 1.27 1.27)) (justify left bottom))
  2780. (uuid 721d1be9-236e-470b-ba69-f1cc6c43faf9)
  2781. )
  2782. (label "A4" (at 334.01 121.92 0)
  2783. (effects (font (size 1.27 1.27)) (justify left bottom))
  2784. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  2785. )
  2786. (label "A13" (at 330.2 144.78 0)
  2787. (effects (font (size 1.27 1.27)) (justify left bottom))
  2788. (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
  2789. )
  2790. (label "AD6" (at 251.46 127 0)
  2791. (effects (font (size 1.27 1.27)) (justify left bottom))
  2792. (uuid 81a15393-727e-448b-a777-b18773023d89)
  2793. )
  2794. (label "A8" (at 251.46 157.48 0)
  2795. (effects (font (size 1.27 1.27)) (justify left bottom))
  2796. (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
  2797. )
  2798. (label "A1" (at 316.23 114.3 0)
  2799. (effects (font (size 1.27 1.27)) (justify left bottom))
  2800. (uuid 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)
  2801. )
  2802. (label "A1" (at 334.01 114.3 0)
  2803. (effects (font (size 1.27 1.27)) (justify left bottom))
  2804. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  2805. )
  2806. (label "A10" (at 330.2 137.16 0)
  2807. (effects (font (size 1.27 1.27)) (justify left bottom))
  2808. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  2809. )
  2810. (label "AD7" (at 373.38 129.54 0)
  2811. (effects (font (size 1.27 1.27)) (justify left bottom))
  2812. (uuid a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)
  2813. )
  2814. (label "AD7" (at 251.46 129.54 0)
  2815. (effects (font (size 1.27 1.27)) (justify left bottom))
  2816. (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114)
  2817. )
  2818. (label "A6" (at 316.23 124.46 0)
  2819. (effects (font (size 1.27 1.27)) (justify left bottom))
  2820. (uuid a53767ed-bb28-4f90-abe0-e0ea734812a4)
  2821. )
  2822. (label "AD6" (at 373.38 127 0)
  2823. (effects (font (size 1.27 1.27)) (justify left bottom))
  2824. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  2825. )
  2826. (label "AD0" (at 251.46 111.76 0)
  2827. (effects (font (size 1.27 1.27)) (justify left bottom))
  2828. (uuid a5e521b9-814e-4853-a5ac-f158785c6269)
  2829. )
  2830. (label "A2" (at 316.23 116.84 0)
  2831. (effects (font (size 1.27 1.27)) (justify left bottom))
  2832. (uuid b6135480-ace6-42b2-9c47-856ef57cded1)
  2833. )
  2834. (label "AD4" (at 283.21 129.54 0)
  2835. (effects (font (size 1.27 1.27)) (justify left bottom))
  2836. (uuid c09938fd-06b9-4771-9f63-2311626243b3)
  2837. )
  2838. (label "AD2" (at 251.46 116.84 0)
  2839. (effects (font (size 1.27 1.27)) (justify left bottom))
  2840. (uuid c1c799a0-3c93-493a-9ad7-8a0561bc69ee)
  2841. )
  2842. (label "AD5" (at 373.38 124.46 0)
  2843. (effects (font (size 1.27 1.27)) (justify left bottom))
  2844. (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
  2845. )
  2846. (label "AD1" (at 373.38 114.3 0)
  2847. (effects (font (size 1.27 1.27)) (justify left bottom))
  2848. (uuid cb614b23-9af3-4aec-bed8-c1374e001510)
  2849. )
  2850. (label "A0" (at 334.01 111.76 0)
  2851. (effects (font (size 1.27 1.27)) (justify left bottom))
  2852. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  2853. )
  2854. (label "A0" (at 316.23 111.76 0)
  2855. (effects (font (size 1.27 1.27)) (justify left bottom))
  2856. (uuid dc2801a1-d539-4721-b31f-fe196b9f13df)
  2857. )
  2858. (label "A4" (at 316.23 129.54 0)
  2859. (effects (font (size 1.27 1.27)) (justify left bottom))
  2860. (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391)
  2861. )
  2862. (label "A11" (at 330.2 139.7 0)
  2863. (effects (font (size 1.27 1.27)) (justify left bottom))
  2864. (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
  2865. )
  2866. (label "A12" (at 330.2 142.24 0)
  2867. (effects (font (size 1.27 1.27)) (justify left bottom))
  2868. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  2869. )
  2870. (label "A14" (at 251.46 172.72 0)
  2871. (effects (font (size 1.27 1.27)) (justify left bottom))
  2872. (uuid e5203297-b913-4288-a576-12a92185cb52)
  2873. )
  2874. (label "A14" (at 330.2 147.32 0)
  2875. (effects (font (size 1.27 1.27)) (justify left bottom))
  2876. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  2877. )
  2878. (label "AD5" (at 251.46 124.46 0)
  2879. (effects (font (size 1.27 1.27)) (justify left bottom))
  2880. (uuid ec5c2062-3a41-4636-8803-069e60a1641a)
  2881. )
  2882. (label "A9" (at 251.46 160.02 0)
  2883. (effects (font (size 1.27 1.27)) (justify left bottom))
  2884. (uuid f1447ad6-651c-45be-a2d6-33bddf672c2c)
  2885. )
  2886. (label "A10" (at 251.46 162.56 0)
  2887. (effects (font (size 1.27 1.27)) (justify left bottom))
  2888. (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
  2889. )
  2890. (label "A5" (at 316.23 127 0)
  2891. (effects (font (size 1.27 1.27)) (justify left bottom))
  2892. (uuid f9403623-c00c-4b71-bc5c-d763ff009386)
  2893. )
  2894. (global_label "~{R8k}" (shape output) (at 111.76 208.28 0) (fields_autoplaced)
  2895. (effects (font (size 1.27 1.27)) (justify left))
  2896. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2897. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2898. (effects (font (size 1.27 1.27)) hide)
  2899. )
  2900. )
  2901. (global_label "~{GRNBTN}" (shape input) (at 265.43 142.24 0) (fields_autoplaced)
  2902. (effects (font (size 1.27 1.27)) (justify left))
  2903. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  2904. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2905. (effects (font (size 1.27 1.27)) hide)
  2906. )
  2907. )
  2908. (global_label "~{GRNLED}" (shape input) (at 101.6 154.94 180) (fields_autoplaced)
  2909. (effects (font (size 1.27 1.27)) (justify right))
  2910. (uuid 1bdd5841-68b7-42e2-9447-cbdb608d8a08)
  2911. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2912. (effects (font (size 1.27 1.27)) hide)
  2913. )
  2914. )
  2915. (global_label "TX" (shape input) (at 214.63 160.02 180) (fields_autoplaced)
  2916. (effects (font (size 1.27 1.27)) (justify right))
  2917. (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
  2918. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2919. (effects (font (size 1.27 1.27)) hide)
  2920. )
  2921. )
  2922. (global_label "~{R16k}" (shape output) (at 104.14 210.82 0) (fields_autoplaced)
  2923. (effects (font (size 1.27 1.27)) (justify left))
  2924. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  2925. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2926. (effects (font (size 1.27 1.27)) hide)
  2927. )
  2928. )
  2929. (global_label "~{GRNLED}" (shape output) (at 254 139.7 0) (fields_autoplaced)
  2930. (effects (font (size 1.27 1.27)) (justify left))
  2931. (uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
  2932. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2933. (effects (font (size 1.27 1.27)) hide)
  2934. )
  2935. )
  2936. (global_label "~{R4k}" (shape input) (at 250.19 152.4 0) (fields_autoplaced)
  2937. (effects (font (size 1.27 1.27)) (justify left))
  2938. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  2939. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2940. (effects (font (size 1.27 1.27)) hide)
  2941. )
  2942. )
  2943. (global_label "~{REDLED}" (shape output) (at 265.43 137.16 0) (fields_autoplaced)
  2944. (effects (font (size 1.27 1.27)) (justify left))
  2945. (uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
  2946. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2947. (effects (font (size 1.27 1.27)) hide)
  2948. )
  2949. )
  2950. (global_label "EA" (shape output) (at 254 134.62 0) (fields_autoplaced)
  2951. (effects (font (size 1.27 1.27)) (justify left))
  2952. (uuid 4e27930e-1827-4788-aa6b-487321d46602)
  2953. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2954. (effects (font (size 1.27 1.27)) hide)
  2955. )
  2956. )
  2957. (global_label "EA" (shape input) (at 162.56 125.73 180) (fields_autoplaced)
  2958. (effects (font (size 1.27 1.27)) (justify right))
  2959. (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
  2960. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2961. (effects (font (size 1.27 1.27)) hide)
  2962. )
  2963. )
  2964. (global_label "ALE" (shape output) (at 214.63 144.78 180) (fields_autoplaced)
  2965. (effects (font (size 1.27 1.27)) (justify right))
  2966. (uuid 61fe4c73-be59-4519-98f1-a634322a841d)
  2967. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2968. (effects (font (size 1.27 1.27)) hide)
  2969. )
  2970. )
  2971. (global_label "RX" (shape input) (at 214.63 157.48 180) (fields_autoplaced)
  2972. (effects (font (size 1.27 1.27)) (justify right))
  2973. (uuid 653a86ba-a1ae-4175-9d4c-c788087956d0)
  2974. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2975. (effects (font (size 1.27 1.27)) hide)
  2976. )
  2977. )
  2978. (global_label "~{R16k}" (shape input) (at 250.19 147.32 0) (fields_autoplaced)
  2979. (effects (font (size 1.27 1.27)) (justify left))
  2980. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  2981. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2982. (effects (font (size 1.27 1.27)) hide)
  2983. )
  2984. )
  2985. (global_label "~{R4k}" (shape output) (at 104.14 205.74 0) (fields_autoplaced)
  2986. (effects (font (size 1.27 1.27)) (justify left))
  2987. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  2988. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2989. (effects (font (size 1.27 1.27)) hide)
  2990. )
  2991. )
  2992. (global_label "RST" (shape input) (at 214.63 152.4 180) (fields_autoplaced)
  2993. (effects (font (size 1.27 1.27)) (justify right))
  2994. (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
  2995. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2996. (effects (font (size 1.27 1.27)) hide)
  2997. )
  2998. )
  2999. (global_label "~{R32k}" (shape output) (at 111.76 213.36 0) (fields_autoplaced)
  3000. (effects (font (size 1.27 1.27)) (justify left))
  3001. (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae)
  3002. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3003. (effects (font (size 1.27 1.27)) hide)
  3004. )
  3005. )
  3006. (global_label "~{REDLED}" (shape input) (at 29.21 154.94 180) (fields_autoplaced)
  3007. (effects (font (size 1.27 1.27)) (justify right))
  3008. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  3009. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3010. (effects (font (size 1.27 1.27)) hide)
  3011. )
  3012. )
  3013. (global_label "~{R32k}" (shape input) (at 256.54 144.78 0) (fields_autoplaced)
  3014. (effects (font (size 1.27 1.27)) (justify left))
  3015. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  3016. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3017. (effects (font (size 1.27 1.27)) hide)
  3018. )
  3019. )
  3020. (global_label "~{PSEN}" (shape input) (at 332.74 160.02 180) (fields_autoplaced)
  3021. (effects (font (size 1.27 1.27)) (justify right))
  3022. (uuid b6cd701f-4223-4e72-a305-466869ccb250)
  3023. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3024. (effects (font (size 1.27 1.27)) hide)
  3025. )
  3026. )
  3027. (global_label "RST" (shape output) (at 71.12 129.54 0) (fields_autoplaced)
  3028. (effects (font (size 1.27 1.27)) (justify left))
  3029. (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
  3030. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 -2.54 0)
  3031. (effects (font (size 1.27 1.27)) hide)
  3032. )
  3033. )
  3034. (global_label "~{PSEN}" (shape output) (at 214.63 139.7 180) (fields_autoplaced)
  3035. (effects (font (size 1.27 1.27)) (justify right))
  3036. (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)
  3037. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3038. (effects (font (size 1.27 1.27)) hide)
  3039. )
  3040. )
  3041. (global_label "~{R8k}" (shape input) (at 256.54 149.86 0) (fields_autoplaced)
  3042. (effects (font (size 1.27 1.27)) (justify left))
  3043. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  3044. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3045. (effects (font (size 1.27 1.27)) hide)
  3046. )
  3047. )
  3048. (global_label "~{GRNBTN}" (shape output) (at 138.43 129.54 0) (fields_autoplaced)
  3049. (effects (font (size 1.27 1.27)) (justify left))
  3050. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  3051. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 -2.54 0)
  3052. (effects (font (size 1.27 1.27)) hide)
  3053. )
  3054. )
  3055. (global_label "ALE" (shape input) (at 287.02 134.62 180) (fields_autoplaced)
  3056. (effects (font (size 1.27 1.27)) (justify right))
  3057. (uuid e7e08b48-3d04-49da-8349-6de530a20c67)
  3058. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3059. (effects (font (size 1.27 1.27)) hide)
  3060. )
  3061. )
  3062. (symbol (lib_id "8051dumper-rescue:8051-MCU_8051") (at 232.41 143.51 0) (unit 1)
  3063. (in_bom yes) (on_board yes)
  3064. (uuid 00000000-0000-0000-0000-00005e81c2bb)
  3065. (property "Reference" "U1" (id 0) (at 237.49 104.14 0)
  3066. (effects (font (size 1.27 1.27)) (justify left))
  3067. )
  3068. (property "Value" "8051" (id 1) (at 237.49 106.68 0)
  3069. (effects (font (size 1.27 1.27)) (justify left))
  3070. )
  3071. (property "Footprint" "Package_DIP:DIP-40_W15.24mm_ZIF_Socket_Aries_40-6554-10" (id 2) (at 233.68 179.07 0)
  3072. (effects (font (size 1.27 1.27)) (justify left) hide)
  3073. )
  3074. (property "Datasheet" "" (id 3) (at 247.65 134.62 0)
  3075. (effects (font (size 1.27 1.27)) hide)
  3076. )
  3077. (property "MPN" "Aries:40-6554-10" (id 4) (at 233.68 181.61 0)
  3078. (effects (font (size 1.27 1.27)) (justify left) hide)
  3079. )
  3080. (property "IPN" "TBD" (id 5) (at 233.68 184.15 0)
  3081. (effects (font (size 1.27 1.27)) (justify left) hide)
  3082. )
  3083. (pin "1" (uuid aa15663b-6dcb-4b55-bccd-b3daf4fc9f59))
  3084. (pin "10" (uuid b9f1296a-d256-4e78-b80c-b75b4234e3b2))
  3085. (pin "11" (uuid bc1b4092-984b-436c-911b-e65cf64bf604))
  3086. (pin "12" (uuid b1c291a9-2a73-4c20-81e1-4152dbb414b1))
  3087. (pin "13" (uuid 4a01bd22-73b7-4601-8293-f9e17a44f8be))
  3088. (pin "14" (uuid 332cc31b-6cdb-47a5-b648-2acad749f29a))
  3089. (pin "15" (uuid 856d8097-fff2-488e-b67e-40ea394497ec))
  3090. (pin "16" (uuid 399d11d4-d0af-4ff8-91bb-3100a25539e3))
  3091. (pin "17" (uuid 6e13e8a8-917d-47d6-a620-6d34d444fc79))
  3092. (pin "18" (uuid 459f86e1-248b-45db-95f9-c74da5aee646))
  3093. (pin "19" (uuid f2e20119-a880-4c24-ac47-b1161e2cf47f))
  3094. (pin "2" (uuid 08b5285c-e6ac-4fd5-89f1-751e1b10041c))
  3095. (pin "20" (uuid be56bb85-ebac-481c-a743-f598ed561e0a))
  3096. (pin "21" (uuid 964e9395-8fe1-432b-a91d-dc3d552e3e54))
  3097. (pin "22" (uuid 8439d7a3-b496-4677-a990-230332b5384d))
  3098. (pin "23" (uuid 0c8e07e4-e2fc-44da-866b-168f9fa1c55d))
  3099. (pin "24" (uuid 2963c968-e38f-42e2-9931-63b33fdbec0a))
  3100. (pin "25" (uuid a160dc76-f415-41d3-a422-b0720c49fddf))
  3101. (pin "26" (uuid 3390d9e1-2304-43bf-ba81-2dfa76d200e4))
  3102. (pin "27" (uuid 2a6c8797-0bb0-4781-98b9-9e9e049651c1))
  3103. (pin "28" (uuid de1444b0-ee05-4391-ae2c-670051a2e5f2))
  3104. (pin "29" (uuid de14f809-414a-40e7-91c6-8cc69eff023b))
  3105. (pin "3" (uuid 2e98b1eb-67be-474b-a79c-d0a536546f86))
  3106. (pin "30" (uuid 21642ca1-be87-45d4-97fa-b1927ddb822d))
  3107. (pin "31" (uuid a750d69e-cb65-4ed6-ad9d-5914969ea708))
  3108. (pin "32" (uuid 251c222f-47b1-4939-9663-915aa852f6d7))
  3109. (pin "33" (uuid 01247e1e-5b49-4c8e-8ea1-3edd1a26657e))
  3110. (pin "34" (uuid 613a8c68-dd03-404c-9ce0-0fd45408f807))
  3111. (pin "35" (uuid 63a7ff5e-b311-4ddd-9448-5add419a896d))
  3112. (pin "36" (uuid 08e06b48-b09c-4d54-9e7b-535eb81523f1))
  3113. (pin "37" (uuid bba63fe1-8f85-4a48-a229-be6ce294e7fd))
  3114. (pin "38" (uuid 5f568311-cf75-4b64-bf2a-24f069508cf5))
  3115. (pin "39" (uuid 86dc982f-3c1c-4a60-9b44-a3fbe3fd622a))
  3116. (pin "4" (uuid 9551e228-ddad-4e6f-b6b2-21ddb1efec37))
  3117. (pin "40" (uuid 8f6452a4-f576-403e-b12d-634ebe6e21d1))
  3118. (pin "5" (uuid 79723206-240f-41fa-bfc2-b0f2d66a86d3))
  3119. (pin "6" (uuid 51aca591-1051-4cfa-9b3d-fa41d02ea89d))
  3120. (pin "7" (uuid 98e3a82a-4e69-40aa-836c-ba7089edc682))
  3121. (pin "8" (uuid 1d2c2a2e-9602-47da-a45e-551210998edd))
  3122. (pin "9" (uuid d1abb560-45b1-43bc-94a0-0c73c6aab2ca))
  3123. )
  3124. (symbol (lib_id "8051dumper-rescue:SN74LS373N-Logic") (at 302.26 124.46 0) (unit 1)
  3125. (in_bom yes) (on_board yes)
  3126. (uuid 00000000-0000-0000-0000-00005e81dcb8)
  3127. (property "Reference" "U2" (id 0) (at 303.53 104.14 0)
  3128. (effects (font (size 1.27 1.27)) (justify left))
  3129. )
  3130. (property "Value" "SN74LS373N" (id 1) (at 303.53 106.68 0)
  3131. (effects (font (size 1.27 1.27)) (justify left))
  3132. )
  3133. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 303.53 140.97 0)
  3134. (effects (font (size 1.27 1.27)) (justify left) hide)
  3135. )
  3136. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS373" (id 3) (at 302.26 124.46 0)
  3137. (effects (font (size 1.27 1.27)) hide)
  3138. )
  3139. (property "MPN" "TI:SN74LS373N" (id 4) (at 303.53 143.51 0)
  3140. (effects (font (size 1.27 1.27)) (justify left) hide)
  3141. )
  3142. (property "IPN" "TBD" (id 5) (at 303.53 146.05 0)
  3143. (effects (font (size 1.27 1.27)) (justify left) hide)
  3144. )
  3145. (pin "1" (uuid fbc6c91d-80ca-43fd-90a3-781cbdb71243))
  3146. (pin "10" (uuid ac21dadf-ee51-42ab-8cac-a451eeb7ebd5))
  3147. (pin "11" (uuid 47f85bfb-0077-4714-a665-9ef9622304b6))
  3148. (pin "12" (uuid 2660c866-d3d0-4912-8149-9bf66a7073b0))
  3149. (pin "13" (uuid a2be9f1c-f49f-48c6-9b82-fe513848f8c2))
  3150. (pin "14" (uuid a0b83dff-95fb-4a94-b937-76a9b128457a))
  3151. (pin "15" (uuid 1a1ae468-a772-4e3f-8cb1-1536f03ea476))
  3152. (pin "16" (uuid 52b511f4-20fa-4b74-98da-f68593657639))
  3153. (pin "17" (uuid b9bd15f0-2588-4766-b744-8271bd55c3ec))
  3154. (pin "18" (uuid 3363a415-a61d-4b0a-a1ab-073cfca72e70))
  3155. (pin "19" (uuid c58b13c2-4d04-468c-93ce-456e99782ecb))
  3156. (pin "2" (uuid c42dae99-4d1b-4566-b7d6-c18adbc354ea))
  3157. (pin "20" (uuid 1b2f13b8-c832-4653-b67c-ec89c45078a6))
  3158. (pin "3" (uuid cbc1a1c2-5d5c-4668-b063-f4f54d697101))
  3159. (pin "4" (uuid 56ff6c91-3a68-43f3-8d4b-d164437f7438))
  3160. (pin "5" (uuid 4dfb291a-16cf-4f71-8036-ceb7df6ba1b2))
  3161. (pin "6" (uuid f3658926-2388-42cb-b634-9f420ae967f1))
  3162. (pin "7" (uuid 821327b3-1b91-4c27-8161-1995f1a78c3e))
  3163. (pin "8" (uuid 5009f5dd-c6af-499f-aba5-a258608ac580))
  3164. (pin "9" (uuid b17c80c7-8ca8-41eb-bd33-922d4ec1678f))
  3165. )
  3166. (symbol (lib_id "Oscillator:ASE-xxxMHz") (at 198.12 113.03 0) (unit 1)
  3167. (in_bom yes) (on_board yes)
  3168. (uuid 00000000-0000-0000-0000-00005e8234fd)
  3169. (property "Reference" "X1" (id 0) (at 199.39 104.14 0)
  3170. (effects (font (size 1.27 1.27)) (justify left))
  3171. )
  3172. (property "Value" "11.0592 MHz" (id 1) (at 199.39 106.68 0)
  3173. (effects (font (size 1.27 1.27)) (justify left))
  3174. )
  3175. (property "Footprint" "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm" (id 2) (at 209.55 121.92 0)
  3176. (effects (font (size 1.27 1.27)) hide)
  3177. )
  3178. (property "Datasheet" "http://www.ecsxtal.com/store/pdf/ecs-2200x.pdf" (id 3) (at 195.58 113.03 0)
  3179. (effects (font (size 1.27 1.27)) hide)
  3180. )
  3181. (property "MPN" "ECS:ECS-2200BX-110.5" (id 4) (at 205.74 116.84 0)
  3182. (effects (font (size 1.27 1.27)) hide)
  3183. )
  3184. (property "IPN" "" (id 5) (at 209.55 116.84 0)
  3185. (effects (font (size 1.27 1.27)) hide)
  3186. )
  3187. (property "LCSC" "C387216" (id 6) (at 198.12 113.03 0)
  3188. (effects (font (size 1.27 1.27)) hide)
  3189. )
  3190. (pin "1" (uuid f8884385-af1a-4fbc-baff-003573f2f33a))
  3191. (pin "2" (uuid a5c8611d-96af-4758-9681-1dc52d00b35f))
  3192. (pin "3" (uuid 5d64d5e2-7ae4-47ab-9695-e521a8efe139))
  3193. (pin "4" (uuid 264cb5bf-bc1f-460b-8aba-c2739882326d))
  3194. )
  3195. (symbol (lib_id "8051dumper-rescue:AT28C256-15PU-Memory_EEPROM") (at 337.82 111.76 0) (unit 1)
  3196. (in_bom yes) (on_board yes)
  3197. (uuid 00000000-0000-0000-0000-00005e824c31)
  3198. (property "Reference" "U3" (id 0) (at 354.33 104.14 0)
  3199. (effects (font (size 1.524 1.524)) (justify left))
  3200. )
  3201. (property "Value" "AT28C256-15PU" (id 1) (at 354.33 106.68 0)
  3202. (effects (font (size 1.524 1.524)) (justify left))
  3203. )
  3204. (property "Footprint" "Package_DIP:DIP-28_W15.24mm_Socket" (id 2) (at 355.6 176.53 0)
  3205. (effects (font (size 1.524 1.524)) (justify left) hide)
  3206. )
  3207. (property "Datasheet" "" (id 3) (at 337.82 111.76 0)
  3208. (effects (font (size 1.524 1.524)))
  3209. )
  3210. (property "MPN" "Microchip:AT28C256-15PU" (id 4) (at 355.6 171.45 0)
  3211. (effects (font (size 1.524 1.524)) (justify left) hide)
  3212. )
  3213. (property "IPN" "TBD" (id 5) (at 355.6 173.99 0)
  3214. (effects (font (size 1.524 1.524)) (justify left) hide)
  3215. )
  3216. (pin "1" (uuid e969e00d-3e12-4e89-b2e5-fa2da282f8a9))
  3217. (pin "10" (uuid 790dbd70-cad7-439d-a2fd-0f5c751d6f81))
  3218. (pin "11" (uuid ff1b1bb7-c1a1-47ad-9045-c2d349ce320f))
  3219. (pin "12" (uuid 4c81d6d5-ad24-4042-ab44-53c4a6bcd968))
  3220. (pin "13" (uuid c3ef99da-2b8a-4643-b96e-6ad392c313ee))
  3221. (pin "14" (uuid 5e26a5db-d7f3-4a6b-959d-6735112a36a6))
  3222. (pin "15" (uuid 6dd0c8db-e9ff-40a0-8b1a-e007d195ad07))
  3223. (pin "16" (uuid fac3c50b-7b17-4a39-8062-af8954b13534))
  3224. (pin "17" (uuid 41334b7d-d0c4-4f58-b084-db5b24dac967))
  3225. (pin "18" (uuid 13e76b50-6881-4466-92bf-2e647347bb2b))
  3226. (pin "19" (uuid a944b33b-f602-4bd6-9e2f-6ba51e401c25))
  3227. (pin "2" (uuid 598c5b27-7df0-4dad-ab18-5e5739cfa6d6))
  3228. (pin "20" (uuid 346336da-45ea-4778-a844-d2e98cc1d306))
  3229. (pin "21" (uuid 437e16fe-d82b-4564-a666-f25477c1e583))
  3230. (pin "22" (uuid 9d6e330f-006c-4c84-aa1c-770c79ab2ccd))
  3231. (pin "23" (uuid 86f1ce58-7241-4d4b-9f6d-1b2f1770aa2d))
  3232. (pin "24" (uuid 21b4a2e6-0e40-4192-943e-bb939e580e2b))
  3233. (pin "25" (uuid b6445f3a-dec2-4f51-9b1e-7a0208e84e23))
  3234. (pin "26" (uuid 466a58a5-4eb9-4c69-97e9-4fb9fe6988c9))
  3235. (pin "27" (uuid d3e4ea4f-e51c-45f4-8f0e-a294e95ffa49))
  3236. (pin "28" (uuid 50d9dbff-4aec-4f88-9cce-560c958faa51))
  3237. (pin "3" (uuid 8eef9d47-443a-4a8c-94bd-ad5d6b8994f9))
  3238. (pin "4" (uuid 3b639d5b-5b2b-48f3-a1c1-e26227c92a17))
  3239. (pin "5" (uuid 005a1ab2-ce64-4842-abf9-36bb47ceee5c))
  3240. (pin "6" (uuid deba8366-d5b2-42b8-89d2-68ae19603adb))
  3241. (pin "7" (uuid 11331dfc-94ab-41c8-aa3b-ac4ad5877ea9))
  3242. (pin "8" (uuid c63006f4-f9c8-46c7-9bb9-8175dd3f9e59))
  3243. (pin "9" (uuid 339af272-b753-45be-a8f1-5e3de643d818))
  3244. )
  3245. (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 119.38 45.72 0) (unit 1)
  3246. (in_bom yes) (on_board yes)
  3247. (uuid 00000000-0000-0000-0000-00005e8384e1)
  3248. (property "Reference" "C1" (id 0) (at 122.301 44.5516 0)
  3249. (effects (font (size 1.27 1.27)) (justify left))
  3250. )
  3251. (property "Value" "0.1uF" (id 1) (at 122.301 46.863 0)
  3252. (effects (font (size 1.27 1.27)) (justify left))
  3253. )
  3254. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 120.015 50.165 0)
  3255. (effects (font (size 1.27 1.27)) (justify left) hide)
  3256. )
  3257. (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 119.38 45.72 0)
  3258. (effects (font (size 1.27 1.27)) hide)
  3259. )
  3260. (property "IPN" "" (id 4) (at 120.015 52.07 0)
  3261. (effects (font (size 1.27 1.27)) (justify left) hide)
  3262. )
  3263. (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 120.015 53.975 0)
  3264. (effects (font (size 1.27 1.27)) (justify left) hide)
  3265. )
  3266. (property "LCSC" "C1525" (id 6) (at 119.38 45.72 0)
  3267. (effects (font (size 1.27 1.27)) hide)
  3268. )
  3269. (pin "1" (uuid c0ea8401-5770-44f1-86a5-f03597e947dd))
  3270. (pin "2" (uuid 1fc47158-c461-4100-92f3-fb082b1eb402))
  3271. )
  3272. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 204.47 139.7 0) (unit 1)
  3273. (in_bom yes) (on_board yes)
  3274. (uuid 00000000-0000-0000-0000-00005e838b64)
  3275. (property "Reference" "R2" (id 0) (at 201.93 139.7 90))
  3276. (property "Value" "10k" (id 1) (at 204.47 139.7 90))
  3277. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 210.82 139.7 90)
  3278. (effects (font (size 1.27 1.27)) hide)
  3279. )
  3280. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 206.502 139.7 90)
  3281. (effects (font (size 1.27 1.27)) hide)
  3282. )
  3283. (property "IPN" "" (id 4) (at 212.09 139.7 90)
  3284. (effects (font (size 1.27 1.27)) hide)
  3285. )
  3286. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 213.36 139.7 90)
  3287. (effects (font (size 1.27 1.27)) hide)
  3288. )
  3289. (property "LCSC" "C25744" (id 6) (at 204.47 139.7 0)
  3290. (effects (font (size 1.27 1.27)) hide)
  3291. )
  3292. (pin "1" (uuid 8b0ae9f5-5786-48f0-a888-41943240969c))
  3293. (pin "2" (uuid ac4ce5f6-0b87-4f08-aed1-76ff7b681bd3))
  3294. )
  3295. (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 129.54 137.16 270) (unit 1)
  3296. (in_bom yes) (on_board yes)
  3297. (uuid 00000000-0000-0000-0000-00005e83b63c)
  3298. (property "Reference" "R7" (id 0) (at 129.54 134.62 90))
  3299. (property "Value" "330" (id 1) (at 129.54 137.16 90))
  3300. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 129.54 143.51 90)
  3301. (effects (font (size 1.27 1.27)) hide)
  3302. )
  3303. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 129.54 139.192 90)
  3304. (effects (font (size 1.27 1.27)) hide)
  3305. )
  3306. (property "IPN" "" (id 4) (at 129.54 144.78 90)
  3307. (effects (font (size 1.27 1.27)) hide)
  3308. )
  3309. (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 129.54 146.05 90)
  3310. (effects (font (size 1.27 1.27)) hide)
  3311. )
  3312. (property "LCSC" "C25104" (id 6) (at 129.54 137.16 0)
  3313. (effects (font (size 1.27 1.27)) hide)
  3314. )
  3315. (pin "1" (uuid d60342b5-c60d-4f98-a4c6-a76ed9edde1b))
  3316. (pin "2" (uuid 59543de0-92c7-47ac-af02-56e54be08c42))
  3317. )
  3318. (symbol (lib_id "power:GND") (at 214.63 114.3 0) (unit 1)
  3319. (in_bom yes) (on_board yes)
  3320. (uuid 00000000-0000-0000-0000-00005e855078)
  3321. (property "Reference" "#PWR07" (id 0) (at 214.63 120.65 0)
  3322. (effects (font (size 1.27 1.27)) hide)
  3323. )
  3324. (property "Value" "GND" (id 1) (at 214.757 118.6942 0))
  3325. (property "Footprint" "" (id 2) (at 214.63 114.3 0)
  3326. (effects (font (size 1.27 1.27)) hide)
  3327. )
  3328. (property "Datasheet" "" (id 3) (at 214.63 114.3 0)
  3329. (effects (font (size 1.27 1.27)) hide)
  3330. )
  3331. (pin "1" (uuid 3a2cc43b-53b9-4f52-a08b-b8c3228b7852))
  3332. )
  3333. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 107.95 154.94 270) (unit 1)
  3334. (in_bom yes) (on_board yes)
  3335. (uuid 00000000-0000-0000-0000-00005e85bf4a)
  3336. (property "Reference" "R4" (id 0) (at 107.95 152.4 90))
  3337. (property "Value" "10k" (id 1) (at 107.95 154.94 90))
  3338. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.95 161.29 90)
  3339. (effects (font (size 1.27 1.27)) hide)
  3340. )
  3341. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 107.95 156.972 90)
  3342. (effects (font (size 1.27 1.27)) hide)
  3343. )
  3344. (property "IPN" "" (id 4) (at 107.95 162.56 90)
  3345. (effects (font (size 1.27 1.27)) hide)
  3346. )
  3347. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 107.95 163.83 90)
  3348. (effects (font (size 1.27 1.27)) hide)
  3349. )
  3350. (property "LCSC" "C25744" (id 6) (at 107.95 154.94 0)
  3351. (effects (font (size 1.27 1.27)) hide)
  3352. )
  3353. (pin "1" (uuid dd84aee3-9bb2-41a5-a1b3-5f40376c5839))
  3354. (pin "2" (uuid 6cb976c4-268a-4aef-8409-ad204ec8af6f))
  3355. )
  3356. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 170.18 125.73 270) (unit 1)
  3357. (in_bom yes) (on_board yes)
  3358. (uuid 00000000-0000-0000-0000-00005e865007)
  3359. (property "Reference" "R1" (id 0) (at 170.18 123.19 90))
  3360. (property "Value" "10k" (id 1) (at 170.18 125.73 90))
  3361. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 170.18 132.08 90)
  3362. (effects (font (size 1.27 1.27)) hide)
  3363. )
  3364. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 170.18 127.762 90)
  3365. (effects (font (size 1.27 1.27)) hide)
  3366. )
  3367. (property "IPN" "" (id 4) (at 170.18 133.35 90)
  3368. (effects (font (size 1.27 1.27)) hide)
  3369. )
  3370. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 170.18 134.62 90)
  3371. (effects (font (size 1.27 1.27)) hide)
  3372. )
  3373. (property "LCSC" "C25744" (id 6) (at 170.18 125.73 0)
  3374. (effects (font (size 1.27 1.27)) hide)
  3375. )
  3376. (pin "1" (uuid 81138b2d-6a69-4f81-94a4-8b22898091b6))
  3377. (pin "2" (uuid d8b41034-d9dc-4628-9a45-ed02184d47ed))
  3378. )
  3379. (symbol (lib_id "power:+5V") (at 121.92 147.32 0) (unit 1)
  3380. (in_bom yes) (on_board yes)
  3381. (uuid 00000000-0000-0000-0000-00005e868184)
  3382. (property "Reference" "#PWR016" (id 0) (at 121.92 151.13 0)
  3383. (effects (font (size 1.27 1.27)) hide)
  3384. )
  3385. (property "Value" "+5V" (id 1) (at 122.301 142.9258 0))
  3386. (property "Footprint" "" (id 2) (at 121.92 147.32 0)
  3387. (effects (font (size 1.27 1.27)) hide)
  3388. )
  3389. (property "Datasheet" "" (id 3) (at 121.92 147.32 0)
  3390. (effects (font (size 1.27 1.27)) hide)
  3391. )
  3392. (pin "1" (uuid 93d7abd4-41e1-4851-bded-301eeb454a23))
  3393. )
  3394. (symbol (lib_id "power:GND") (at 111.76 138.43 0) (unit 1)
  3395. (in_bom yes) (on_board yes)
  3396. (uuid 00000000-0000-0000-0000-00005e86e4e8)
  3397. (property "Reference" "#PWR029" (id 0) (at 111.76 144.78 0)
  3398. (effects (font (size 1.27 1.27)) hide)
  3399. )
  3400. (property "Value" "GND" (id 1) (at 111.887 142.8242 0))
  3401. (property "Footprint" "" (id 2) (at 111.76 138.43 0)
  3402. (effects (font (size 1.27 1.27)) hide)
  3403. )
  3404. (property "Datasheet" "" (id 3) (at 111.76 138.43 0)
  3405. (effects (font (size 1.27 1.27)) hide)
  3406. )
  3407. (pin "1" (uuid 813a4aa3-1438-4ed8-8682-303d1dc485af))
  3408. )
  3409. (symbol (lib_id "power:GND") (at 302.26 147.32 0) (unit 1)
  3410. (in_bom yes) (on_board yes)
  3411. (uuid 00000000-0000-0000-0000-00005e87ae28)
  3412. (property "Reference" "#PWR010" (id 0) (at 302.26 153.67 0)
  3413. (effects (font (size 1.27 1.27)) hide)
  3414. )
  3415. (property "Value" "GND" (id 1) (at 302.387 151.7142 0))
  3416. (property "Footprint" "" (id 2) (at 302.26 147.32 0)
  3417. (effects (font (size 1.27 1.27)) hide)
  3418. )
  3419. (property "Datasheet" "" (id 3) (at 302.26 147.32 0)
  3420. (effects (font (size 1.27 1.27)) hide)
  3421. )
  3422. (pin "1" (uuid 94411718-e83f-4ca6-ab66-879aa499256c))
  3423. )
  3424. (symbol (lib_id "power:GND") (at 232.41 181.61 0) (unit 1)
  3425. (in_bom yes) (on_board yes)
  3426. (uuid 00000000-0000-0000-0000-00005e87d0f6)
  3427. (property "Reference" "#PWR014" (id 0) (at 232.41 187.96 0)
  3428. (effects (font (size 1.27 1.27)) hide)
  3429. )
  3430. (property "Value" "GND" (id 1) (at 232.537 186.0042 0))
  3431. (property "Footprint" "" (id 2) (at 232.41 181.61 0)
  3432. (effects (font (size 1.27 1.27)) hide)
  3433. )
  3434. (property "Datasheet" "" (id 3) (at 232.41 181.61 0)
  3435. (effects (font (size 1.27 1.27)) hide)
  3436. )
  3437. (pin "1" (uuid a1c2ba6d-0f8e-4e6f-827e-a48244e91854))
  3438. )
  3439. (symbol (lib_id "power:GND") (at 353.06 171.45 0) (unit 1)
  3440. (in_bom yes) (on_board yes)
  3441. (uuid 00000000-0000-0000-0000-00005e88074a)
  3442. (property "Reference" "#PWR013" (id 0) (at 353.06 177.8 0)
  3443. (effects (font (size 1.27 1.27)) hide)
  3444. )
  3445. (property "Value" "GND" (id 1) (at 353.187 175.8442 0))
  3446. (property "Footprint" "" (id 2) (at 353.06 171.45 0)
  3447. (effects (font (size 1.27 1.27)) hide)
  3448. )
  3449. (property "Datasheet" "" (id 3) (at 353.06 171.45 0)
  3450. (effects (font (size 1.27 1.27)) hide)
  3451. )
  3452. (pin "1" (uuid cd8c5492-61d9-4250-a9b4-c2e015d13694))
  3453. )
  3454. (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 57.15 137.16 270) (unit 1)
  3455. (in_bom yes) (on_board yes)
  3456. (uuid 00000000-0000-0000-0000-00005e8827a7)
  3457. (property "Reference" "R6" (id 0) (at 57.15 134.62 90))
  3458. (property "Value" "330" (id 1) (at 57.15 137.16 90))
  3459. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 143.51 90)
  3460. (effects (font (size 1.27 1.27)) hide)
  3461. )
  3462. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 57.15 139.192 90)
  3463. (effects (font (size 1.27 1.27)) hide)
  3464. )
  3465. (property "IPN" "" (id 4) (at 57.15 144.78 90)
  3466. (effects (font (size 1.27 1.27)) hide)
  3467. )
  3468. (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 57.15 146.05 90)
  3469. (effects (font (size 1.27 1.27)) hide)
  3470. )
  3471. (property "LCSC" "C25104" (id 6) (at 57.15 137.16 0)
  3472. (effects (font (size 1.27 1.27)) hide)
  3473. )
  3474. (pin "1" (uuid e5c459d3-20b6-4833-8919-085434c3dc4d))
  3475. (pin "2" (uuid f2532b53-a19d-49d7-ae1f-5c27329629fb))
  3476. )
  3477. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 35.56 154.94 270) (unit 1)
  3478. (in_bom yes) (on_board yes)
  3479. (uuid 00000000-0000-0000-0000-00005e8827c0)
  3480. (property "Reference" "R3" (id 0) (at 35.56 152.4 90))
  3481. (property "Value" "10k" (id 1) (at 35.56 154.94 90))
  3482. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 35.56 161.29 90)
  3483. (effects (font (size 1.27 1.27)) hide)
  3484. )
  3485. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 35.56 156.972 90)
  3486. (effects (font (size 1.27 1.27)) hide)
  3487. )
  3488. (property "IPN" "" (id 4) (at 35.56 162.56 90)
  3489. (effects (font (size 1.27 1.27)) hide)
  3490. )
  3491. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 35.56 163.83 90)
  3492. (effects (font (size 1.27 1.27)) hide)
  3493. )
  3494. (property "LCSC" "C25744" (id 6) (at 35.56 154.94 0)
  3495. (effects (font (size 1.27 1.27)) hide)
  3496. )
  3497. (pin "1" (uuid ed4ec7d6-47ec-4264-88b2-6e59ea0a396f))
  3498. (pin "2" (uuid e13ce9a7-8af4-48dc-98a5-4dc025bf9cd3))
  3499. )
  3500. (symbol (lib_id "power:+5V") (at 49.53 147.32 0) (unit 1)
  3501. (in_bom yes) (on_board yes)
  3502. (uuid 00000000-0000-0000-0000-00005e8827cd)
  3503. (property "Reference" "#PWR015" (id 0) (at 49.53 151.13 0)
  3504. (effects (font (size 1.27 1.27)) hide)
  3505. )
  3506. (property "Value" "+5V" (id 1) (at 49.911 142.9258 0))
  3507. (property "Footprint" "" (id 2) (at 49.53 147.32 0)
  3508. (effects (font (size 1.27 1.27)) hide)
  3509. )
  3510. (property "Datasheet" "" (id 3) (at 49.53 147.32 0)
  3511. (effects (font (size 1.27 1.27)) hide)
  3512. )
  3513. (pin "1" (uuid e56d266a-2785-4eaa-96fb-00220a0e095a))
  3514. )
  3515. (symbol (lib_id "power:GND") (at 39.37 138.43 0) (unit 1)
  3516. (in_bom yes) (on_board yes)
  3517. (uuid 00000000-0000-0000-0000-00005e8827d8)
  3518. (property "Reference" "#PWR028" (id 0) (at 39.37 144.78 0)
  3519. (effects (font (size 1.27 1.27)) hide)
  3520. )
  3521. (property "Value" "GND" (id 1) (at 39.497 142.8242 0))
  3522. (property "Footprint" "" (id 2) (at 39.37 138.43 0)
  3523. (effects (font (size 1.27 1.27)) hide)
  3524. )
  3525. (property "Datasheet" "" (id 3) (at 39.37 138.43 0)
  3526. (effects (font (size 1.27 1.27)) hide)
  3527. )
  3528. (pin "1" (uuid 71378830-de3b-4b0a-8dcc-9f1696aa89d7))
  3529. )
  3530. (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 57.15 129.54 270) (unit 1)
  3531. (in_bom yes) (on_board yes)
  3532. (uuid 00000000-0000-0000-0000-00005e889540)
  3533. (property "Reference" "R9" (id 0) (at 57.15 127 90))
  3534. (property "Value" "330" (id 1) (at 57.15 129.54 90))
  3535. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 135.89 90)
  3536. (effects (font (size 1.27 1.27)) hide)
  3537. )
  3538. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 57.15 131.572 90)
  3539. (effects (font (size 1.27 1.27)) hide)
  3540. )
  3541. (property "IPN" "" (id 4) (at 57.15 137.16 90)
  3542. (effects (font (size 1.27 1.27)) hide)
  3543. )
  3544. (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 57.15 138.43 90)
  3545. (effects (font (size 1.27 1.27)) hide)
  3546. )
  3547. (property "LCSC" "C25104" (id 6) (at 57.15 129.54 0)
  3548. (effects (font (size 1.27 1.27)) hide)
  3549. )
  3550. (pin "1" (uuid a9c20e1b-3141-44a4-bf41-05b23c7b8717))
  3551. (pin "2" (uuid 2b0cdde0-d64a-4085-9853-69fb0ac10684))
  3552. )
  3553. (symbol (lib_id "power:+5V") (at 302.26 101.6 0) (unit 1)
  3554. (in_bom yes) (on_board yes)
  3555. (uuid 00000000-0000-0000-0000-00005e8a2c81)
  3556. (property "Reference" "#PWR03" (id 0) (at 302.26 105.41 0)
  3557. (effects (font (size 1.27 1.27)) hide)
  3558. )
  3559. (property "Value" "+5V" (id 1) (at 302.641 97.2058 0))
  3560. (property "Footprint" "" (id 2) (at 302.26 101.6 0)
  3561. (effects (font (size 1.27 1.27)) hide)
  3562. )
  3563. (property "Datasheet" "" (id 3) (at 302.26 101.6 0)
  3564. (effects (font (size 1.27 1.27)) hide)
  3565. )
  3566. (pin "1" (uuid 0a1c8dd3-79aa-4486-b130-3333f90ae4f8))
  3567. )
  3568. (symbol (lib_id "power:+5V") (at 353.06 101.6 0) (unit 1)
  3569. (in_bom yes) (on_board yes)
  3570. (uuid 00000000-0000-0000-0000-00005e8a33f4)
  3571. (property "Reference" "#PWR04" (id 0) (at 353.06 105.41 0)
  3572. (effects (font (size 1.27 1.27)) hide)
  3573. )
  3574. (property "Value" "+5V" (id 1) (at 353.441 97.2058 0))
  3575. (property "Footprint" "" (id 2) (at 353.06 101.6 0)
  3576. (effects (font (size 1.27 1.27)) hide)
  3577. )
  3578. (property "Datasheet" "" (id 3) (at 353.06 101.6 0)
  3579. (effects (font (size 1.27 1.27)) hide)
  3580. )
  3581. (pin "1" (uuid dbcbc980-21f6-4c6d-9727-55e1eb8299ce))
  3582. )
  3583. (symbol (lib_id "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor") (at 68.58 123.19 0) (unit 1)
  3584. (in_bom yes) (on_board yes)
  3585. (uuid 00000000-0000-0000-0000-00005e8a610b)
  3586. (property "Reference" "C5" (id 0) (at 71.501 122.0216 0)
  3587. (effects (font (size 1.27 1.27)) (justify left))
  3588. )
  3589. (property "Value" "10uF" (id 1) (at 71.501 124.333 0)
  3590. (effects (font (size 1.27 1.27)) (justify left))
  3591. )
  3592. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 69.215 127.635 0)
  3593. (effects (font (size 1.27 1.27)) (justify left) hide)
  3594. )
  3595. (property "Datasheet" "https://product.tdk.com/info/en/catalog/datasheets/leadmlcc_halogenfree_fg_en.pdf" (id 3) (at 68.58 123.19 0)
  3596. (effects (font (size 1.27 1.27)) hide)
  3597. )
  3598. (property "IPN" "" (id 4) (at 69.215 129.54 0)
  3599. (effects (font (size 1.27 1.27)) (justify left) hide)
  3600. )
  3601. (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 69.215 131.445 0)
  3602. (effects (font (size 1.27 1.27)) (justify left) hide)
  3603. )
  3604. (property "LCSC" "C15850" (id 6) (at 68.58 123.19 0)
  3605. (effects (font (size 1.27 1.27)) hide)
  3606. )
  3607. (pin "1" (uuid 08919123-72b5-496a-a0cd-461a7b473595))
  3608. (pin "2" (uuid 3c47307a-ad6b-457d-8440-ec1437fb2897))
  3609. )
  3610. (symbol (lib_id "power:+5V") (at 232.41 104.14 0) (unit 1)
  3611. (in_bom yes) (on_board yes)
  3612. (uuid 00000000-0000-0000-0000-00005e8a61a4)
  3613. (property "Reference" "#PWR06" (id 0) (at 232.41 107.95 0)
  3614. (effects (font (size 1.27 1.27)) hide)
  3615. )
  3616. (property "Value" "+5V" (id 1) (at 232.791 99.7458 0))
  3617. (property "Footprint" "" (id 2) (at 232.41 104.14 0)
  3618. (effects (font (size 1.27 1.27)) hide)
  3619. )
  3620. (property "Datasheet" "" (id 3) (at 232.41 104.14 0)
  3621. (effects (font (size 1.27 1.27)) hide)
  3622. )
  3623. (pin "1" (uuid 6d3fe2e2-f863-41e5-8e0c-e75fee38bb03))
  3624. )
  3625. (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 130.81 45.72 0) (unit 1)
  3626. (in_bom yes) (on_board yes)
  3627. (uuid 00000000-0000-0000-0000-00005e8a6cf3)
  3628. (property "Reference" "C2" (id 0) (at 133.731 44.5516 0)
  3629. (effects (font (size 1.27 1.27)) (justify left))
  3630. )
  3631. (property "Value" "0.1uF" (id 1) (at 133.731 46.863 0)
  3632. (effects (font (size 1.27 1.27)) (justify left))
  3633. )
  3634. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 131.445 50.165 0)
  3635. (effects (font (size 1.27 1.27)) (justify left) hide)
  3636. )
  3637. (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 130.81 45.72 0)
  3638. (effects (font (size 1.27 1.27)) hide)
  3639. )
  3640. (property "IPN" "" (id 4) (at 131.445 52.07 0)
  3641. (effects (font (size 1.27 1.27)) (justify left) hide)
  3642. )
  3643. (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 131.445 53.975 0)
  3644. (effects (font (size 1.27 1.27)) (justify left) hide)
  3645. )
  3646. (property "LCSC" "C1525" (id 6) (at 130.81 45.72 0)
  3647. (effects (font (size 1.27 1.27)) hide)
  3648. )
  3649. (pin "1" (uuid 150704fa-293a-4697-a5cf-8b313726b01c))
  3650. (pin "2" (uuid bb8291b8-5b85-43c5-8e30-b2436118ec3e))
  3651. )
  3652. (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 142.24 45.72 0) (unit 1)
  3653. (in_bom yes) (on_board yes)
  3654. (uuid 00000000-0000-0000-0000-00005e8a7160)
  3655. (property "Reference" "C3" (id 0) (at 145.161 44.5516 0)
  3656. (effects (font (size 1.27 1.27)) (justify left))
  3657. )
  3658. (property "Value" "0.1uF" (id 1) (at 145.161 46.863 0)
  3659. (effects (font (size 1.27 1.27)) (justify left))
  3660. )
  3661. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 142.875 50.165 0)
  3662. (effects (font (size 1.27 1.27)) (justify left) hide)
  3663. )
  3664. (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 142.24 45.72 0)
  3665. (effects (font (size 1.27 1.27)) hide)
  3666. )
  3667. (property "IPN" "" (id 4) (at 142.875 52.07 0)
  3668. (effects (font (size 1.27 1.27)) (justify left) hide)
  3669. )
  3670. (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 142.875 53.975 0)
  3671. (effects (font (size 1.27 1.27)) (justify left) hide)
  3672. )
  3673. (property "LCSC" "C1525" (id 6) (at 142.24 45.72 0)
  3674. (effects (font (size 1.27 1.27)) hide)
  3675. )
  3676. (pin "1" (uuid 5918d433-77ba-47d2-9b46-a1ab9722f357))
  3677. (pin "2" (uuid b8f34bd4-26e4-459e-a9ba-e24abf8e0d13))
  3678. )
  3679. (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 153.67 45.72 0) (unit 1)
  3680. (in_bom yes) (on_board yes)
  3681. (uuid 00000000-0000-0000-0000-00005e8a746f)
  3682. (property "Reference" "C4" (id 0) (at 156.591 44.5516 0)
  3683. (effects (font (size 1.27 1.27)) (justify left))
  3684. )
  3685. (property "Value" "0.1uF" (id 1) (at 156.591 46.863 0)
  3686. (effects (font (size 1.27 1.27)) (justify left))
  3687. )
  3688. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 154.305 50.165 0)
  3689. (effects (font (size 1.27 1.27)) (justify left) hide)
  3690. )
  3691. (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 153.67 45.72 0)
  3692. (effects (font (size 1.27 1.27)) hide)
  3693. )
  3694. (property "IPN" "" (id 4) (at 154.305 52.07 0)
  3695. (effects (font (size 1.27 1.27)) (justify left) hide)
  3696. )
  3697. (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 154.305 53.975 0)
  3698. (effects (font (size 1.27 1.27)) (justify left) hide)
  3699. )
  3700. (property "LCSC" "C1525" (id 6) (at 153.67 45.72 0)
  3701. (effects (font (size 1.27 1.27)) hide)
  3702. )
  3703. (pin "1" (uuid a017592d-ad56-4c95-aa0f-fb6211f86805))
  3704. (pin "2" (uuid 4b30ead3-1d42-46f1-ad3a-c9bc891ea896))
  3705. )
  3706. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 68.58 135.89 0) (unit 1)
  3707. (in_bom yes) (on_board yes)
  3708. (uuid 00000000-0000-0000-0000-00005e8a7e17)
  3709. (property "Reference" "R8" (id 0) (at 66.04 135.89 90))
  3710. (property "Value" "10k" (id 1) (at 68.58 135.89 90))
  3711. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 74.93 135.89 90)
  3712. (effects (font (size 1.27 1.27)) hide)
  3713. )
  3714. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 70.612 135.89 90)
  3715. (effects (font (size 1.27 1.27)) hide)
  3716. )
  3717. (property "IPN" "" (id 4) (at 76.2 135.89 90)
  3718. (effects (font (size 1.27 1.27)) hide)
  3719. )
  3720. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 77.47 135.89 90)
  3721. (effects (font (size 1.27 1.27)) hide)
  3722. )
  3723. (property "LCSC" "C25744" (id 6) (at 68.58 135.89 0)
  3724. (effects (font (size 1.27 1.27)) hide)
  3725. )
  3726. (pin "1" (uuid 17374b55-4a22-4efc-befe-7f4d463d6852))
  3727. (pin "2" (uuid d11aa384-b8aa-4c2a-93ce-e9c9918917b1))
  3728. )
  3729. (symbol (lib_id "power:+5V") (at 68.58 116.84 0) (unit 1)
  3730. (in_bom yes) (on_board yes)
  3731. (uuid 00000000-0000-0000-0000-00005e8a8e2e)
  3732. (property "Reference" "#PWR021" (id 0) (at 68.58 120.65 0)
  3733. (effects (font (size 1.27 1.27)) hide)
  3734. )
  3735. (property "Value" "+5V" (id 1) (at 68.961 112.4458 0))
  3736. (property "Footprint" "" (id 2) (at 68.58 116.84 0)
  3737. (effects (font (size 1.27 1.27)) hide)
  3738. )
  3739. (property "Datasheet" "" (id 3) (at 68.58 116.84 0)
  3740. (effects (font (size 1.27 1.27)) hide)
  3741. )
  3742. (pin "1" (uuid 75e40eac-348b-4303-99b0-79bb64d549f0))
  3743. )
  3744. (symbol (lib_id "power:+5V") (at 76.2 48.26 0) (unit 1)
  3745. (in_bom yes) (on_board yes)
  3746. (uuid 00000000-0000-0000-0000-00005e8a9340)
  3747. (property "Reference" "#PWR01" (id 0) (at 76.2 52.07 0)
  3748. (effects (font (size 1.27 1.27)) hide)
  3749. )
  3750. (property "Value" "+5V" (id 1) (at 76.581 43.8658 0))
  3751. (property "Footprint" "" (id 2) (at 76.2 48.26 0)
  3752. (effects (font (size 1.27 1.27)) hide)
  3753. )
  3754. (property "Datasheet" "" (id 3) (at 76.2 48.26 0)
  3755. (effects (font (size 1.27 1.27)) hide)
  3756. )
  3757. (pin "1" (uuid 329441cf-72e2-4c78-bebc-26c7cfb38bac))
  3758. )
  3759. (symbol (lib_id "power:GND") (at 66.04 53.34 0) (unit 1)
  3760. (in_bom yes) (on_board yes)
  3761. (uuid 00000000-0000-0000-0000-00005e8a95bc)
  3762. (property "Reference" "#PWR02" (id 0) (at 66.04 59.69 0)
  3763. (effects (font (size 1.27 1.27)) hide)
  3764. )
  3765. (property "Value" "GND" (id 1) (at 66.167 57.7342 0))
  3766. (property "Footprint" "" (id 2) (at 66.04 53.34 0)
  3767. (effects (font (size 1.27 1.27)) hide)
  3768. )
  3769. (property "Datasheet" "" (id 3) (at 66.04 53.34 0)
  3770. (effects (font (size 1.27 1.27)) hide)
  3771. )
  3772. (pin "1" (uuid 641b3225-6970-4b55-a402-60d53dfb3497))
  3773. )
  3774. (symbol (lib_id "power:GND") (at 68.58 142.24 0) (unit 1)
  3775. (in_bom yes) (on_board yes)
  3776. (uuid 00000000-0000-0000-0000-00005e8a973e)
  3777. (property "Reference" "#PWR030" (id 0) (at 68.58 148.59 0)
  3778. (effects (font (size 1.27 1.27)) hide)
  3779. )
  3780. (property "Value" "GND" (id 1) (at 68.707 146.6342 0))
  3781. (property "Footprint" "" (id 2) (at 68.58 142.24 0)
  3782. (effects (font (size 1.27 1.27)) hide)
  3783. )
  3784. (property "Datasheet" "" (id 3) (at 68.58 142.24 0)
  3785. (effects (font (size 1.27 1.27)) hide)
  3786. )
  3787. (pin "1" (uuid 6f45cfcd-af3f-4771-a924-04ea70626868))
  3788. )
  3789. (symbol (lib_id "power:+5V") (at 331.47 167.64 0) (unit 1)
  3790. (in_bom yes) (on_board yes)
  3791. (uuid 00000000-0000-0000-0000-00005e8b7dcb)
  3792. (property "Reference" "#PWR012" (id 0) (at 331.47 171.45 0)
  3793. (effects (font (size 1.27 1.27)) hide)
  3794. )
  3795. (property "Value" "+5V" (id 1) (at 331.851 163.2458 0))
  3796. (property "Footprint" "" (id 2) (at 331.47 167.64 0)
  3797. (effects (font (size 1.27 1.27)) hide)
  3798. )
  3799. (property "Datasheet" "" (id 3) (at 331.47 167.64 0)
  3800. (effects (font (size 1.27 1.27)) hide)
  3801. )
  3802. (pin "1" (uuid 168b75fc-110b-4067-98bf-b8bbc138f56e))
  3803. )
  3804. (symbol (lib_id "power:GND") (at 204.47 144.78 0) (unit 1)
  3805. (in_bom yes) (on_board yes)
  3806. (uuid 00000000-0000-0000-0000-00005e8c5663)
  3807. (property "Reference" "#PWR09" (id 0) (at 204.47 151.13 0)
  3808. (effects (font (size 1.27 1.27)) hide)
  3809. )
  3810. (property "Value" "GND" (id 1) (at 204.597 149.1742 0))
  3811. (property "Footprint" "" (id 2) (at 204.47 144.78 0)
  3812. (effects (font (size 1.27 1.27)) hide)
  3813. )
  3814. (property "Datasheet" "" (id 3) (at 204.47 144.78 0)
  3815. (effects (font (size 1.27 1.27)) hide)
  3816. )
  3817. (pin "1" (uuid 79f34c08-35d1-4e77-8438-e57cda12e435))
  3818. )
  3819. (symbol (lib_id "power:+5V") (at 34.29 128.27 0) (unit 1)
  3820. (in_bom yes) (on_board yes)
  3821. (uuid 00000000-0000-0000-0000-00005e8caeef)
  3822. (property "Reference" "#PWR027" (id 0) (at 34.29 132.08 0)
  3823. (effects (font (size 1.27 1.27)) hide)
  3824. )
  3825. (property "Value" "+5V" (id 1) (at 34.671 123.8758 0))
  3826. (property "Footprint" "" (id 2) (at 34.29 128.27 0)
  3827. (effects (font (size 1.27 1.27)) hide)
  3828. )
  3829. (property "Datasheet" "" (id 3) (at 34.29 128.27 0)
  3830. (effects (font (size 1.27 1.27)) hide)
  3831. )
  3832. (pin "1" (uuid 58377f22-fdac-4b4e-959d-9a75f98651c5))
  3833. )
  3834. (symbol (lib_id "power:+5V") (at 119.38 39.37 0) (unit 1)
  3835. (in_bom yes) (on_board yes)
  3836. (uuid 00000000-0000-0000-0000-00005e8cc15e)
  3837. (property "Reference" "#PWR017" (id 0) (at 119.38 43.18 0)
  3838. (effects (font (size 1.27 1.27)) hide)
  3839. )
  3840. (property "Value" "+5V" (id 1) (at 119.761 34.9758 0))
  3841. (property "Footprint" "" (id 2) (at 119.38 39.37 0)
  3842. (effects (font (size 1.27 1.27)) hide)
  3843. )
  3844. (property "Datasheet" "" (id 3) (at 119.38 39.37 0)
  3845. (effects (font (size 1.27 1.27)) hide)
  3846. )
  3847. (pin "1" (uuid b7bd2321-82dc-413a-bc00-9da8472e9fa6))
  3848. )
  3849. (symbol (lib_id "power:GND") (at 119.38 52.07 0) (unit 1)
  3850. (in_bom yes) (on_board yes)
  3851. (uuid 00000000-0000-0000-0000-00005e8cc7a0)
  3852. (property "Reference" "#PWR023" (id 0) (at 119.38 58.42 0)
  3853. (effects (font (size 1.27 1.27)) hide)
  3854. )
  3855. (property "Value" "GND" (id 1) (at 119.507 56.4642 0))
  3856. (property "Footprint" "" (id 2) (at 119.38 52.07 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (property "Datasheet" "" (id 3) (at 119.38 52.07 0)
  3860. (effects (font (size 1.27 1.27)) hide)
  3861. )
  3862. (pin "1" (uuid 1695447c-b14c-4eb8-81a8-7c5b425c89bd))
  3863. )
  3864. (symbol (lib_id "power:+5V") (at 130.81 39.37 0) (unit 1)
  3865. (in_bom yes) (on_board yes)
  3866. (uuid 00000000-0000-0000-0000-00005e8d2bb3)
  3867. (property "Reference" "#PWR018" (id 0) (at 130.81 43.18 0)
  3868. (effects (font (size 1.27 1.27)) hide)
  3869. )
  3870. (property "Value" "+5V" (id 1) (at 131.191 34.9758 0))
  3871. (property "Footprint" "" (id 2) (at 130.81 39.37 0)
  3872. (effects (font (size 1.27 1.27)) hide)
  3873. )
  3874. (property "Datasheet" "" (id 3) (at 130.81 39.37 0)
  3875. (effects (font (size 1.27 1.27)) hide)
  3876. )
  3877. (pin "1" (uuid 3808a36f-8661-457d-b134-4fa465464125))
  3878. )
  3879. (symbol (lib_id "power:GND") (at 130.81 52.07 0) (unit 1)
  3880. (in_bom yes) (on_board yes)
  3881. (uuid 00000000-0000-0000-0000-00005e8d2bbd)
  3882. (property "Reference" "#PWR024" (id 0) (at 130.81 58.42 0)
  3883. (effects (font (size 1.27 1.27)) hide)
  3884. )
  3885. (property "Value" "GND" (id 1) (at 130.937 56.4642 0))
  3886. (property "Footprint" "" (id 2) (at 130.81 52.07 0)
  3887. (effects (font (size 1.27 1.27)) hide)
  3888. )
  3889. (property "Datasheet" "" (id 3) (at 130.81 52.07 0)
  3890. (effects (font (size 1.27 1.27)) hide)
  3891. )
  3892. (pin "1" (uuid 0c23b7e2-2d65-432c-8530-e36755819c5a))
  3893. )
  3894. (symbol (lib_id "power:+5V") (at 142.24 39.37 0) (unit 1)
  3895. (in_bom yes) (on_board yes)
  3896. (uuid 00000000-0000-0000-0000-00005e8d7023)
  3897. (property "Reference" "#PWR019" (id 0) (at 142.24 43.18 0)
  3898. (effects (font (size 1.27 1.27)) hide)
  3899. )
  3900. (property "Value" "+5V" (id 1) (at 142.621 34.9758 0))
  3901. (property "Footprint" "" (id 2) (at 142.24 39.37 0)
  3902. (effects (font (size 1.27 1.27)) hide)
  3903. )
  3904. (property "Datasheet" "" (id 3) (at 142.24 39.37 0)
  3905. (effects (font (size 1.27 1.27)) hide)
  3906. )
  3907. (pin "1" (uuid 5db10976-de50-4f9d-a2c3-7ef6de3063a7))
  3908. )
  3909. (symbol (lib_id "power:GND") (at 142.24 52.07 0) (unit 1)
  3910. (in_bom yes) (on_board yes)
  3911. (uuid 00000000-0000-0000-0000-00005e8d702d)
  3912. (property "Reference" "#PWR025" (id 0) (at 142.24 58.42 0)
  3913. (effects (font (size 1.27 1.27)) hide)
  3914. )
  3915. (property "Value" "GND" (id 1) (at 142.367 56.4642 0))
  3916. (property "Footprint" "" (id 2) (at 142.24 52.07 0)
  3917. (effects (font (size 1.27 1.27)) hide)
  3918. )
  3919. (property "Datasheet" "" (id 3) (at 142.24 52.07 0)
  3920. (effects (font (size 1.27 1.27)) hide)
  3921. )
  3922. (pin "1" (uuid 3a611341-c0ba-45c5-92b9-926d037a5760))
  3923. )
  3924. (symbol (lib_id "power:+5V") (at 153.67 39.37 0) (unit 1)
  3925. (in_bom yes) (on_board yes)
  3926. (uuid 00000000-0000-0000-0000-00005e8d7045)
  3927. (property "Reference" "#PWR020" (id 0) (at 153.67 43.18 0)
  3928. (effects (font (size 1.27 1.27)) hide)
  3929. )
  3930. (property "Value" "+5V" (id 1) (at 154.051 34.9758 0))
  3931. (property "Footprint" "" (id 2) (at 153.67 39.37 0)
  3932. (effects (font (size 1.27 1.27)) hide)
  3933. )
  3934. (property "Datasheet" "" (id 3) (at 153.67 39.37 0)
  3935. (effects (font (size 1.27 1.27)) hide)
  3936. )
  3937. (pin "1" (uuid 84414a51-7c55-438f-afa1-e86f42e7659f))
  3938. )
  3939. (symbol (lib_id "power:GND") (at 153.67 52.07 0) (unit 1)
  3940. (in_bom yes) (on_board yes)
  3941. (uuid 00000000-0000-0000-0000-00005e8d704f)
  3942. (property "Reference" "#PWR026" (id 0) (at 153.67 58.42 0)
  3943. (effects (font (size 1.27 1.27)) hide)
  3944. )
  3945. (property "Value" "GND" (id 1) (at 153.797 56.4642 0))
  3946. (property "Footprint" "" (id 2) (at 153.67 52.07 0)
  3947. (effects (font (size 1.27 1.27)) hide)
  3948. )
  3949. (property "Datasheet" "" (id 3) (at 153.67 52.07 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (pin "1" (uuid 63db0235-0a71-4019-aca4-eb12592aeaf0))
  3953. )
  3954. (symbol (lib_id "power:+5V") (at 198.12 102.87 0) (unit 1)
  3955. (in_bom yes) (on_board yes)
  3956. (uuid 00000000-0000-0000-0000-00005e8e74d5)
  3957. (property "Reference" "#PWR05" (id 0) (at 198.12 106.68 0)
  3958. (effects (font (size 1.27 1.27)) hide)
  3959. )
  3960. (property "Value" "+5V" (id 1) (at 198.501 98.4758 0))
  3961. (property "Footprint" "" (id 2) (at 198.12 102.87 0)
  3962. (effects (font (size 1.27 1.27)) hide)
  3963. )
  3964. (property "Datasheet" "" (id 3) (at 198.12 102.87 0)
  3965. (effects (font (size 1.27 1.27)) hide)
  3966. )
  3967. (pin "1" (uuid dd2a3432-ff60-41d1-af28-d6a6595dae78))
  3968. )
  3969. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 135.89 123.19 0) (unit 1)
  3970. (in_bom yes) (on_board yes)
  3971. (uuid 00000000-0000-0000-0000-00005e8eb7eb)
  3972. (property "Reference" "R5" (id 0) (at 133.35 123.19 90))
  3973. (property "Value" "10k" (id 1) (at 135.89 123.19 90))
  3974. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 123.19 90)
  3975. (effects (font (size 1.27 1.27)) hide)
  3976. )
  3977. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 137.922 123.19 90)
  3978. (effects (font (size 1.27 1.27)) hide)
  3979. )
  3980. (property "IPN" "" (id 4) (at 143.51 123.19 90)
  3981. (effects (font (size 1.27 1.27)) hide)
  3982. )
  3983. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 144.78 123.19 90)
  3984. (effects (font (size 1.27 1.27)) hide)
  3985. )
  3986. (property "LCSC" "C25744" (id 6) (at 135.89 123.19 0)
  3987. (effects (font (size 1.27 1.27)) hide)
  3988. )
  3989. (pin "1" (uuid 28cacd2a-5925-4628-870a-347357e09c90))
  3990. (pin "2" (uuid dac46a3f-d5eb-47ac-9e3d-f3cacdc2efd5))
  3991. )
  3992. (symbol (lib_id "power:+5V") (at 135.89 116.84 0) (unit 1)
  3993. (in_bom yes) (on_board yes)
  3994. (uuid 00000000-0000-0000-0000-00005e8ebf21)
  3995. (property "Reference" "#PWR022" (id 0) (at 135.89 120.65 0)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (property "Value" "+5V" (id 1) (at 136.271 112.4458 0))
  3999. (property "Footprint" "" (id 2) (at 135.89 116.84 0)
  4000. (effects (font (size 1.27 1.27)) hide)
  4001. )
  4002. (property "Datasheet" "" (id 3) (at 135.89 116.84 0)
  4003. (effects (font (size 1.27 1.27)) hide)
  4004. )
  4005. (pin "1" (uuid c583b93a-6bc7-4b4c-bb20-dcbecc4b3766))
  4006. )
  4007. (symbol (lib_id "power:GND") (at 198.12 123.19 0) (unit 1)
  4008. (in_bom yes) (on_board yes)
  4009. (uuid 00000000-0000-0000-0000-00005e8ee916)
  4010. (property "Reference" "#PWR08" (id 0) (at 198.12 129.54 0)
  4011. (effects (font (size 1.27 1.27)) hide)
  4012. )
  4013. (property "Value" "GND" (id 1) (at 198.247 127.5842 0))
  4014. (property "Footprint" "" (id 2) (at 198.12 123.19 0)
  4015. (effects (font (size 1.27 1.27)) hide)
  4016. )
  4017. (property "Datasheet" "" (id 3) (at 198.12 123.19 0)
  4018. (effects (font (size 1.27 1.27)) hide)
  4019. )
  4020. (pin "1" (uuid cd106792-d850-4ab2-a930-478cf30829dd))
  4021. )
  4022. (symbol (lib_id "8051dumper-rescue:CK_1101M2S3CQE2-Switch") (at 88.9 46.99 0) (mirror x) (unit 1)
  4023. (in_bom yes) (on_board yes)
  4024. (uuid 00000000-0000-0000-0000-00005e91843a)
  4025. (property "Reference" "S1" (id 0) (at 85.5218 37.3126 0)
  4026. (effects (font (size 1.524 1.524)))
  4027. )
  4028. (property "Value" "CK_1101M2S3CQE2" (id 1) (at 92.1512 45.6438 0)
  4029. (effects (font (size 1.524 1.524)) (justify left) hide)
  4030. )
  4031. (property "Footprint" "Button_Switch_THT:SW_CK_1101M2S3CQE2" (id 2) (at 88.9 33.02 0)
  4032. (effects (font (size 1.524 1.524)) hide)
  4033. )
  4034. (property "Datasheet" "" (id 3) (at 88.9 58.42 0)
  4035. (effects (font (size 1.524 1.524)))
  4036. )
  4037. (property "IPN" "TBD" (id 4) (at 88.9 38.1 0)
  4038. (effects (font (size 1.524 1.524)) hide)
  4039. )
  4040. (property "MPN" "CK:1101M2S3CQE2" (id 5) (at 88.9 35.56 0)
  4041. (effects (font (size 1.524 1.524)) hide)
  4042. )
  4043. (pin "1" (uuid 34784234-7545-4b65-b805-372f5cfc6f78))
  4044. (pin "2" (uuid bd3efddb-a394-4bfa-a7f4-e5056f729f47))
  4045. (pin "3" (uuid 727fe13a-31cb-4cd6-9f2a-3ac7da09e08c))
  4046. )
  4047. (symbol (lib_id "power:GND") (at 331.47 152.4 0) (unit 1)
  4048. (in_bom yes) (on_board yes)
  4049. (uuid 00000000-0000-0000-0000-00005e9192ee)
  4050. (property "Reference" "#PWR033" (id 0) (at 331.47 158.75 0)
  4051. (effects (font (size 1.27 1.27)) hide)
  4052. )
  4053. (property "Value" "GND" (id 1) (at 331.597 156.7942 0))
  4054. (property "Footprint" "" (id 2) (at 331.47 152.4 0)
  4055. (effects (font (size 1.27 1.27)) hide)
  4056. )
  4057. (property "Datasheet" "" (id 3) (at 331.47 152.4 0)
  4058. (effects (font (size 1.27 1.27)) hide)
  4059. )
  4060. (pin "1" (uuid 41c905a2-5cb3-4936-a8e5-c7c833a365ba))
  4061. )
  4062. (symbol (lib_id "power:GND") (at 64.77 217.17 0) (unit 1)
  4063. (in_bom yes) (on_board yes)
  4064. (uuid 00000000-0000-0000-0000-00005e92b1a7)
  4065. (property "Reference" "#PWR035" (id 0) (at 64.77 223.52 0)
  4066. (effects (font (size 1.27 1.27)) hide)
  4067. )
  4068. (property "Value" "GND" (id 1) (at 64.897 221.5642 0))
  4069. (property "Footprint" "" (id 2) (at 64.77 217.17 0)
  4070. (effects (font (size 1.27 1.27)) hide)
  4071. )
  4072. (property "Datasheet" "" (id 3) (at 64.77 217.17 0)
  4073. (effects (font (size 1.27 1.27)) hide)
  4074. )
  4075. (pin "1" (uuid 30431d7f-471e-4f87-9d2b-cac2f187a241))
  4076. )
  4077. (symbol (lib_id "8051dumper-rescue:LED-LED") (at 107.95 50.8 90) (unit 1)
  4078. (in_bom yes) (on_board yes)
  4079. (uuid 00000000-0000-0000-0000-00005e93c724)
  4080. (property "Reference" "D1" (id 0) (at 110.9472 50.9778 90)
  4081. (effects (font (size 1.27 1.27)) (justify right))
  4082. )
  4083. (property "Value" "LED" (id 1) (at 104.775 50.9778 0)
  4084. (effects (font (size 1.27 1.27)) hide)
  4085. )
  4086. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 107.95 50.8 0)
  4087. (effects (font (size 1.27 1.27)) hide)
  4088. )
  4089. (property "Datasheet" "~" (id 3) (at 105.41 50.8 0)
  4090. (effects (font (size 1.27 1.27)) hide)
  4091. )
  4092. (property "IPN" "" (id 4) (at 113.03 50.8 0)
  4093. (effects (font (size 1.524 1.524)) hide)
  4094. )
  4095. (property "MPN" "Kingbright:WP7113GD" (id 5) (at 115.57 50.8 0)
  4096. (effects (font (size 1.524 1.524)) hide)
  4097. )
  4098. (property "LCSC" "C72041" (id 6) (at 107.95 50.8 0)
  4099. (effects (font (size 1.27 1.27)) hide)
  4100. )
  4101. (pin "1" (uuid 927a8958-9bc3-4c0f-b85b-e1fa1b641777))
  4102. (pin "2" (uuid d36c4515-caf6-4826-9163-255fc3043cf3))
  4103. )
  4104. (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 107.95 40.64 0) (unit 1)
  4105. (in_bom yes) (on_board yes)
  4106. (uuid 00000000-0000-0000-0000-00005e9407f3)
  4107. (property "Reference" "R14" (id 0) (at 105.41 40.64 90))
  4108. (property "Value" "330" (id 1) (at 107.95 40.64 90))
  4109. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 114.3 40.64 90)
  4110. (effects (font (size 1.27 1.27)) hide)
  4111. )
  4112. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 109.982 40.64 90)
  4113. (effects (font (size 1.27 1.27)) hide)
  4114. )
  4115. (property "IPN" "" (id 4) (at 115.57 40.64 90)
  4116. (effects (font (size 1.27 1.27)) hide)
  4117. )
  4118. (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 116.84 40.64 90)
  4119. (effects (font (size 1.27 1.27)) hide)
  4120. )
  4121. (property "LCSC" "C25104" (id 6) (at 107.95 40.64 0)
  4122. (effects (font (size 1.27 1.27)) hide)
  4123. )
  4124. (pin "1" (uuid 0aaba41e-b0fe-441d-9c59-b8a0dcedc1dc))
  4125. (pin "2" (uuid a1b897f6-3bf5-4a87-8f4a-4b8e8bd738ef))
  4126. )
  4127. (symbol (lib_id "power:GND") (at 107.95 57.15 0) (unit 1)
  4128. (in_bom yes) (on_board yes)
  4129. (uuid 00000000-0000-0000-0000-00005e9418c0)
  4130. (property "Reference" "#PWR037" (id 0) (at 107.95 63.5 0)
  4131. (effects (font (size 1.27 1.27)) hide)
  4132. )
  4133. (property "Value" "GND" (id 1) (at 108.077 61.5442 0))
  4134. (property "Footprint" "" (id 2) (at 107.95 57.15 0)
  4135. (effects (font (size 1.27 1.27)) hide)
  4136. )
  4137. (property "Datasheet" "" (id 3) (at 107.95 57.15 0)
  4138. (effects (font (size 1.27 1.27)) hide)
  4139. )
  4140. (pin "1" (uuid db9f8450-3c6f-407c-97ed-c7200a0e472a))
  4141. )
  4142. (symbol (lib_id "power:+5V") (at 107.95 34.29 0) (unit 1)
  4143. (in_bom yes) (on_board yes)
  4144. (uuid 00000000-0000-0000-0000-00005e941e14)
  4145. (property "Reference" "#PWR036" (id 0) (at 107.95 38.1 0)
  4146. (effects (font (size 1.27 1.27)) hide)
  4147. )
  4148. (property "Value" "+5V" (id 1) (at 108.331 29.8958 0))
  4149. (property "Footprint" "" (id 2) (at 107.95 34.29 0)
  4150. (effects (font (size 1.27 1.27)) hide)
  4151. )
  4152. (property "Datasheet" "" (id 3) (at 107.95 34.29 0)
  4153. (effects (font (size 1.27 1.27)) hide)
  4154. )
  4155. (pin "1" (uuid 3ae6d83f-1a71-4c61-866a-d48cb3d7fe7f))
  4156. )
  4157. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 86.36 199.39 0) (unit 1)
  4158. (in_bom yes) (on_board yes)
  4159. (uuid 00000000-0000-0000-0000-00005e961a7f)
  4160. (property "Reference" "R10" (id 0) (at 83.82 199.39 90))
  4161. (property "Value" "10k" (id 1) (at 86.36 199.39 90))
  4162. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 92.71 199.39 90)
  4163. (effects (font (size 1.27 1.27)) hide)
  4164. )
  4165. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 88.392 199.39 90)
  4166. (effects (font (size 1.27 1.27)) hide)
  4167. )
  4168. (property "IPN" "" (id 4) (at 93.98 199.39 90)
  4169. (effects (font (size 1.27 1.27)) hide)
  4170. )
  4171. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 95.25 199.39 90)
  4172. (effects (font (size 1.27 1.27)) hide)
  4173. )
  4174. (property "LCSC" "C25744" (id 6) (at 86.36 199.39 0)
  4175. (effects (font (size 1.27 1.27)) hide)
  4176. )
  4177. (pin "1" (uuid e40a658e-5095-49ef-906c-b2d9ebca28bb))
  4178. (pin "2" (uuid b06665ba-7a4d-414f-b0a4-f93d2cb82c1e))
  4179. )
  4180. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 91.44 199.39 0) (unit 1)
  4181. (in_bom yes) (on_board yes)
  4182. (uuid 00000000-0000-0000-0000-00005e962690)
  4183. (property "Reference" "R11" (id 0) (at 88.9 199.39 90))
  4184. (property "Value" "10k" (id 1) (at 91.44 199.39 90))
  4185. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 199.39 90)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 93.472 199.39 90)
  4189. (effects (font (size 1.27 1.27)) hide)
  4190. )
  4191. (property "IPN" "" (id 4) (at 99.06 199.39 90)
  4192. (effects (font (size 1.27 1.27)) hide)
  4193. )
  4194. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 100.33 199.39 90)
  4195. (effects (font (size 1.27 1.27)) hide)
  4196. )
  4197. (property "LCSC" "C25744" (id 6) (at 91.44 199.39 0)
  4198. (effects (font (size 1.27 1.27)) hide)
  4199. )
  4200. (pin "1" (uuid a4de5b32-3fa5-4b00-b7a4-454fb46c1a37))
  4201. (pin "2" (uuid 9441c925-84dc-46bb-b90f-85a62f709352))
  4202. )
  4203. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 96.52 199.39 0) (unit 1)
  4204. (in_bom yes) (on_board yes)
  4205. (uuid 00000000-0000-0000-0000-00005e962c13)
  4206. (property "Reference" "R12" (id 0) (at 93.98 199.39 90))
  4207. (property "Value" "10k" (id 1) (at 96.52 199.39 90))
  4208. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 102.87 199.39 90)
  4209. (effects (font (size 1.27 1.27)) hide)
  4210. )
  4211. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 98.552 199.39 90)
  4212. (effects (font (size 1.27 1.27)) hide)
  4213. )
  4214. (property "IPN" "" (id 4) (at 104.14 199.39 90)
  4215. (effects (font (size 1.27 1.27)) hide)
  4216. )
  4217. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 105.41 199.39 90)
  4218. (effects (font (size 1.27 1.27)) hide)
  4219. )
  4220. (property "LCSC" "C25744" (id 6) (at 96.52 199.39 0)
  4221. (effects (font (size 1.27 1.27)) hide)
  4222. )
  4223. (pin "1" (uuid ae2ff78e-40d2-403f-9fd7-1d06c23286c1))
  4224. (pin "2" (uuid c376a890-e6f4-48d0-87db-0352d61b1d96))
  4225. )
  4226. (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 101.6 199.39 0) (unit 1)
  4227. (in_bom yes) (on_board yes)
  4228. (uuid 00000000-0000-0000-0000-00005e963026)
  4229. (property "Reference" "R13" (id 0) (at 99.06 199.39 90))
  4230. (property "Value" "10k" (id 1) (at 101.6 199.39 90))
  4231. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.95 199.39 90)
  4232. (effects (font (size 1.27 1.27)) hide)
  4233. )
  4234. (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 103.632 199.39 90)
  4235. (effects (font (size 1.27 1.27)) hide)
  4236. )
  4237. (property "IPN" "" (id 4) (at 109.22 199.39 90)
  4238. (effects (font (size 1.27 1.27)) hide)
  4239. )
  4240. (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 110.49 199.39 90)
  4241. (effects (font (size 1.27 1.27)) hide)
  4242. )
  4243. (property "LCSC" "C25744" (id 6) (at 101.6 199.39 0)
  4244. (effects (font (size 1.27 1.27)) hide)
  4245. )
  4246. (pin "1" (uuid ea7c2cdb-975a-464d-a2c3-ef7fb79f7b6d))
  4247. (pin "2" (uuid f59bff2e-0f4d-4f6a-b29b-37751e2bbc9a))
  4248. )
  4249. (symbol (lib_id "power:+5V") (at 93.98 193.04 0) (unit 1)
  4250. (in_bom yes) (on_board yes)
  4251. (uuid 00000000-0000-0000-0000-00005e963409)
  4252. (property "Reference" "#PWR034" (id 0) (at 93.98 196.85 0)
  4253. (effects (font (size 1.27 1.27)) hide)
  4254. )
  4255. (property "Value" "+5V" (id 1) (at 94.361 188.6458 0))
  4256. (property "Footprint" "" (id 2) (at 93.98 193.04 0)
  4257. (effects (font (size 1.27 1.27)) hide)
  4258. )
  4259. (property "Datasheet" "" (id 3) (at 93.98 193.04 0)
  4260. (effects (font (size 1.27 1.27)) hide)
  4261. )
  4262. (pin "1" (uuid 9e31afea-0dd3-4784-b3df-cda163e8ee3e))
  4263. )
  4264. (symbol (lib_id "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor") (at 66.04 46.99 0) (unit 1)
  4265. (in_bom yes) (on_board yes)
  4266. (uuid 00000000-0000-0000-0000-00005e97a766)
  4267. (property "Reference" "C6" (id 0) (at 68.961 45.8216 0)
  4268. (effects (font (size 1.27 1.27)) (justify left))
  4269. )
  4270. (property "Value" "10uF" (id 1) (at 68.961 48.133 0)
  4271. (effects (font (size 1.27 1.27)) (justify left))
  4272. )
  4273. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 66.675 51.435 0)
  4274. (effects (font (size 1.27 1.27)) (justify left) hide)
  4275. )
  4276. (property "Datasheet" "https://product.tdk.com/info/en/catalog/datasheets/leadmlcc_halogenfree_fg_en.pdf" (id 3) (at 66.04 46.99 0)
  4277. (effects (font (size 1.27 1.27)) hide)
  4278. )
  4279. (property "IPN" "" (id 4) (at 66.675 53.34 0)
  4280. (effects (font (size 1.27 1.27)) (justify left) hide)
  4281. )
  4282. (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 66.675 55.245 0)
  4283. (effects (font (size 1.27 1.27)) (justify left) hide)
  4284. )
  4285. (property "LCSC" "C15850" (id 6) (at 66.04 46.99 0)
  4286. (effects (font (size 1.27 1.27)) hide)
  4287. )
  4288. (pin "1" (uuid 9206fefa-d1c6-44cd-ba6a-1134a8ae496a))
  4289. (pin "2" (uuid 63d398a4-779d-43f2-937d-b177eb84fb43))
  4290. )
  4291. (symbol (lib_id "power:+5V") (at 184.15 118.11 0) (unit 1)
  4292. (in_bom yes) (on_board yes)
  4293. (uuid 00000000-0000-0000-0000-00005e9deb57)
  4294. (property "Reference" "#PWR031" (id 0) (at 184.15 121.92 0)
  4295. (effects (font (size 1.27 1.27)) hide)
  4296. )
  4297. (property "Value" "+5V" (id 1) (at 184.531 113.7158 0))
  4298. (property "Footprint" "" (id 2) (at 184.15 118.11 0)
  4299. (effects (font (size 1.27 1.27)) hide)
  4300. )
  4301. (property "Datasheet" "" (id 3) (at 184.15 118.11 0)
  4302. (effects (font (size 1.27 1.27)) hide)
  4303. )
  4304. (pin "1" (uuid 72f4afbf-0722-4df9-99bb-8ff15fa3e9b6))
  4305. )
  4306. (symbol (lib_id "Device:LED") (at 118.11 137.16 0) (unit 1)
  4307. (in_bom yes) (on_board yes)
  4308. (uuid 00000000-0000-0000-0000-000061b6b9b3)
  4309. (property "Reference" "D3" (id 0) (at 117.9322 131.6482 0))
  4310. (property "Value" "LED" (id 1) (at 117.9322 133.9596 0))
  4311. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 118.11 137.16 0)
  4312. (effects (font (size 1.27 1.27)) hide)
  4313. )
  4314. (property "Datasheet" "~" (id 3) (at 118.11 137.16 0)
  4315. (effects (font (size 1.27 1.27)) hide)
  4316. )
  4317. (property "LCSC" "C72043" (id 4) (at 118.11 137.16 0)
  4318. (effects (font (size 1.27 1.27)) hide)
  4319. )
  4320. (pin "1" (uuid 2604f2dd-a5e9-4884-b0a3-f3a0008430f9))
  4321. (pin "2" (uuid a900f6c6-d9f1-47be-b5a3-0778b44425b1))
  4322. )
  4323. (symbol (lib_id "Device:LED") (at 45.72 137.16 0) (unit 1)
  4324. (in_bom yes) (on_board yes)
  4325. (uuid 00000000-0000-0000-0000-000061b8a3ab)
  4326. (property "Reference" "D2" (id 0) (at 45.5422 131.6482 0))
  4327. (property "Value" "LED" (id 1) (at 45.5422 133.9596 0))
  4328. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 45.72 137.16 0)
  4329. (effects (font (size 1.27 1.27)) hide)
  4330. )
  4331. (property "Datasheet" "~" (id 3) (at 45.72 137.16 0)
  4332. (effects (font (size 1.27 1.27)) hide)
  4333. )
  4334. (property "LCSC" "C2286" (id 4) (at 45.72 137.16 0)
  4335. (effects (font (size 1.27 1.27)) hide)
  4336. )
  4337. (pin "1" (uuid b8a83f4f-4d43-4c6b-9a7a-28a20638c581))
  4338. (pin "2" (uuid 1872f82c-846c-480c-9e6c-8c60c9005126))
  4339. )
  4340. (symbol (lib_id "Switch:SW_DPST_x2") (at 45.72 129.54 0) (unit 1)
  4341. (in_bom yes) (on_board yes)
  4342. (uuid 00000000-0000-0000-0000-000061ba7315)
  4343. (property "Reference" "SW1" (id 0) (at 45.72 123.571 0))
  4344. (property "Value" "SW_DPST_x2" (id 1) (at 45.72 125.8824 0))
  4345. (property "Footprint" "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 45.72 129.54 0)
  4346. (effects (font (size 1.27 1.27)) hide)
  4347. )
  4348. (property "Datasheet" "~" (id 3) (at 45.72 129.54 0)
  4349. (effects (font (size 1.27 1.27)) hide)
  4350. )
  4351. (property "LCSC" "C127509" (id 4) (at 45.72 129.54 0)
  4352. (effects (font (size 1.27 1.27)) hide)
  4353. )
  4354. (pin "1" (uuid 1d3e83b5-45f8-4158-b1e4-970f3d5fd2e8))
  4355. (pin "2" (uuid b1f854f5-7657-44bc-88db-ec79ef3ff95b))
  4356. )
  4357. (symbol (lib_id "Switch:SW_DPST_x2") (at 118.11 129.54 0) (unit 1)
  4358. (in_bom yes) (on_board yes)
  4359. (uuid 00000000-0000-0000-0000-000061be2ab1)
  4360. (property "Reference" "SW2" (id 0) (at 118.11 123.571 0))
  4361. (property "Value" "SW_DPST_x2" (id 1) (at 118.11 125.8824 0))
  4362. (property "Footprint" "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 118.11 129.54 0)
  4363. (effects (font (size 1.27 1.27)) hide)
  4364. )
  4365. (property "Datasheet" "~" (id 3) (at 118.11 129.54 0)
  4366. (effects (font (size 1.27 1.27)) hide)
  4367. )
  4368. (property "LCSC" "C127509" (id 4) (at 118.11 129.54 0)
  4369. (effects (font (size 1.27 1.27)) hide)
  4370. )
  4371. (pin "1" (uuid b73175c4-514f-4fcd-888b-07a3b1af842f))
  4372. (pin "2" (uuid 99d99005-5ce8-40a9-9df6-6a17c35b5489))
  4373. )
  4374. (symbol (lib_id "Switch:SW_DIP_x04") (at 74.93 210.82 0) (unit 1)
  4375. (in_bom yes) (on_board yes)
  4376. (uuid 00000000-0000-0000-0000-000061c5703c)
  4377. (property "Reference" "J1" (id 0) (at 74.93 198.9582 0))
  4378. (property "Value" "Conn_02x04_Odd_Even" (id 1) (at 74.93 201.2696 0))
  4379. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm" (id 2) (at 74.93 210.82 0)
  4380. (effects (font (size 1.27 1.27)) hide)
  4381. )
  4382. (property "Datasheet" "~" (id 3) (at 74.93 210.82 0)
  4383. (effects (font (size 1.27 1.27)) hide)
  4384. )
  4385. (pin "1" (uuid e9cbe3fd-4118-4a8e-aa72-fa737e46c859))
  4386. (pin "2" (uuid ed14e9ec-5091-4be6-836e-89757f8b6e94))
  4387. (pin "3" (uuid 3b0f7152-3895-451d-af55-3ad446576262))
  4388. (pin "4" (uuid e888e497-49a1-4762-a080-601d074dad4a))
  4389. (pin "5" (uuid e0fa2d15-17ce-4439-922d-4e68895bbf00))
  4390. (pin "6" (uuid 46523a41-a37c-4184-b0f0-37c06c0037c7))
  4391. (pin "7" (uuid 4e662efc-eb21-43c9-bde0-ef448e2789dd))
  4392. (pin "8" (uuid 55a6bd68-8a04-49f4-9ca3-4a38d1abe34a))
  4393. )
  4394. (symbol (lib_id "Device:Q_PNP_BEC") (at 46.99 154.94 0) (mirror x) (unit 1)
  4395. (in_bom yes) (on_board yes)
  4396. (uuid 00000000-0000-0000-0000-000061cf4156)
  4397. (property "Reference" "Q1" (id 0) (at 51.816 153.7716 0)
  4398. (effects (font (size 1.27 1.27)) (justify left))
  4399. )
  4400. (property "Value" "MMBT5401" (id 1) (at 51.816 156.083 0)
  4401. (effects (font (size 1.27 1.27)) (justify left))
  4402. )
  4403. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 52.07 151.13 0)
  4404. (effects (font (size 1.27 1.27)) (justify left) hide)
  4405. )
  4406. (property "Datasheet" "" (id 3) (at 52.07 156.21 0)
  4407. (effects (font (size 1.27 1.27)) hide)
  4408. )
  4409. (property "IPN" "" (id 4) (at 52.07 148.59 0)
  4410. (effects (font (size 1.27 1.27)) (justify left) hide)
  4411. )
  4412. (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 52.07 146.05 0)
  4413. (effects (font (size 1.27 1.27)) (justify left) hide)
  4414. )
  4415. (property "LCSC" "C8326" (id 6) (at 46.99 154.94 0)
  4416. (effects (font (size 1.27 1.27)) hide)
  4417. )
  4418. (pin "1" (uuid 1ba0b489-8f4c-40ae-9f60-1d3428afc073))
  4419. (pin "2" (uuid a14fc406-600c-4ea0-b386-12e73ad2dbed))
  4420. (pin "3" (uuid f2b0b7f0-1268-457b-a1c1-71fc5a20826e))
  4421. )
  4422. (symbol (lib_id "Device:Q_PNP_BEC") (at 119.38 154.94 0) (mirror x) (unit 1)
  4423. (in_bom yes) (on_board yes)
  4424. (uuid 00000000-0000-0000-0000-000061d10698)
  4425. (property "Reference" "Q2" (id 0) (at 124.206 153.7716 0)
  4426. (effects (font (size 1.27 1.27)) (justify left))
  4427. )
  4428. (property "Value" "MMBT5401" (id 1) (at 124.206 156.083 0)
  4429. (effects (font (size 1.27 1.27)) (justify left))
  4430. )
  4431. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 124.46 151.13 0)
  4432. (effects (font (size 1.27 1.27)) (justify left) hide)
  4433. )
  4434. (property "Datasheet" "" (id 3) (at 124.46 156.21 0)
  4435. (effects (font (size 1.27 1.27)) hide)
  4436. )
  4437. (property "IPN" "" (id 4) (at 124.46 148.59 0)
  4438. (effects (font (size 1.27 1.27)) (justify left) hide)
  4439. )
  4440. (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 124.46 146.05 0)
  4441. (effects (font (size 1.27 1.27)) (justify left) hide)
  4442. )
  4443. (property "LCSC" "C8326" (id 6) (at 119.38 154.94 0)
  4444. (effects (font (size 1.27 1.27)) hide)
  4445. )
  4446. (pin "1" (uuid dca2e3a7-2ba5-4b94-a023-2ce50f4cfd10))
  4447. (pin "2" (uuid b1f943a4-d091-4278-9eac-8068fc85da06))
  4448. (pin "3" (uuid 34484d47-2953-4d0e-9683-6502dfbfbe41))
  4449. )
  4450. (symbol (lib_id "Device:Q_PNP_BEC") (at 181.61 125.73 0) (mirror x) (unit 1)
  4451. (in_bom yes) (on_board yes)
  4452. (uuid 00000000-0000-0000-0000-000061d1198d)
  4453. (property "Reference" "Q3" (id 0) (at 176.53 120.65 0)
  4454. (effects (font (size 1.27 1.27)) (justify left))
  4455. )
  4456. (property "Value" "MMBT5401" (id 1) (at 173.99 130.81 0)
  4457. (effects (font (size 1.27 1.27)) (justify left))
  4458. )
  4459. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 121.92 0)
  4460. (effects (font (size 1.27 1.27)) (justify left) hide)
  4461. )
  4462. (property "Datasheet" "" (id 3) (at 186.69 127 0)
  4463. (effects (font (size 1.27 1.27)) hide)
  4464. )
  4465. (property "IPN" "" (id 4) (at 186.69 119.38 0)
  4466. (effects (font (size 1.27 1.27)) (justify left) hide)
  4467. )
  4468. (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 186.69 116.84 0)
  4469. (effects (font (size 1.27 1.27)) (justify left) hide)
  4470. )
  4471. (property "LCSC" "C8326" (id 6) (at 181.61 125.73 0)
  4472. (effects (font (size 1.27 1.27)) hide)
  4473. )
  4474. (pin "1" (uuid d5f6fe4e-01d3-4cee-a805-76d6131281b1))
  4475. (pin "2" (uuid 3d84df74-3b15-4d21-86c7-dc1411ed0df8))
  4476. (pin "3" (uuid ff0c8b1b-2c36-45ef-b3c3-6bfbeb05653c))
  4477. )
  4478. (symbol (lib_id "Mechanical:MountingHole") (at 381 26.67 0) (unit 1)
  4479. (in_bom yes) (on_board yes)
  4480. (uuid 00000000-0000-0000-0000-000061d18083)
  4481. (property "Reference" "H1" (id 0) (at 383.54 25.5016 0)
  4482. (effects (font (size 1.27 1.27)) (justify left))
  4483. )
  4484. (property "Value" "MountingHole" (id 1) (at 383.54 27.813 0)
  4485. (effects (font (size 1.27 1.27)) (justify left))
  4486. )
  4487. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 26.67 0)
  4488. (effects (font (size 1.27 1.27)) hide)
  4489. )
  4490. (property "Datasheet" "~" (id 3) (at 381 26.67 0)
  4491. (effects (font (size 1.27 1.27)) hide)
  4492. )
  4493. )
  4494. (symbol (lib_id "Mechanical:MountingHole") (at 381 31.75 0) (unit 1)
  4495. (in_bom yes) (on_board yes)
  4496. (uuid 00000000-0000-0000-0000-000061d1ae50)
  4497. (property "Reference" "H2" (id 0) (at 383.54 30.5816 0)
  4498. (effects (font (size 1.27 1.27)) (justify left))
  4499. )
  4500. (property "Value" "MountingHole" (id 1) (at 383.54 32.893 0)
  4501. (effects (font (size 1.27 1.27)) (justify left))
  4502. )
  4503. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 31.75 0)
  4504. (effects (font (size 1.27 1.27)) hide)
  4505. )
  4506. (property "Datasheet" "~" (id 3) (at 381 31.75 0)
  4507. (effects (font (size 1.27 1.27)) hide)
  4508. )
  4509. )
  4510. (symbol (lib_id "Mechanical:MountingHole") (at 381 36.83 0) (unit 1)
  4511. (in_bom yes) (on_board yes)
  4512. (uuid 00000000-0000-0000-0000-000061d1b213)
  4513. (property "Reference" "H3" (id 0) (at 383.54 35.6616 0)
  4514. (effects (font (size 1.27 1.27)) (justify left))
  4515. )
  4516. (property "Value" "MountingHole" (id 1) (at 383.54 37.973 0)
  4517. (effects (font (size 1.27 1.27)) (justify left))
  4518. )
  4519. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 36.83 0)
  4520. (effects (font (size 1.27 1.27)) hide)
  4521. )
  4522. (property "Datasheet" "~" (id 3) (at 381 36.83 0)
  4523. (effects (font (size 1.27 1.27)) hide)
  4524. )
  4525. )
  4526. (symbol (lib_id "Mechanical:MountingHole") (at 381 41.91 0) (unit 1)
  4527. (in_bom yes) (on_board yes)
  4528. (uuid 00000000-0000-0000-0000-000061d1b63b)
  4529. (property "Reference" "H4" (id 0) (at 383.54 40.7416 0)
  4530. (effects (font (size 1.27 1.27)) (justify left))
  4531. )
  4532. (property "Value" "MountingHole" (id 1) (at 383.54 43.053 0)
  4533. (effects (font (size 1.27 1.27)) (justify left))
  4534. )
  4535. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 41.91 0)
  4536. (effects (font (size 1.27 1.27)) hide)
  4537. )
  4538. (property "Datasheet" "~" (id 3) (at 381 41.91 0)
  4539. (effects (font (size 1.27 1.27)) hide)
  4540. )
  4541. )
  4542. (symbol (lib_id "power:VBUS") (at 66.04 38.1 0) (unit 1)
  4543. (in_bom yes) (on_board yes)
  4544. (uuid 00000000-0000-0000-0000-000061dba40b)
  4545. (property "Reference" "#PWR0107" (id 0) (at 66.04 41.91 0)
  4546. (effects (font (size 1.27 1.27)) hide)
  4547. )
  4548. (property "Value" "VBUS" (id 1) (at 66.421 33.7058 0))
  4549. (property "Footprint" "" (id 2) (at 66.04 38.1 0)
  4550. (effects (font (size 1.27 1.27)) hide)
  4551. )
  4552. (property "Datasheet" "" (id 3) (at 66.04 38.1 0)
  4553. (effects (font (size 1.27 1.27)) hide)
  4554. )
  4555. (pin "1" (uuid e7b9148e-692b-4cde-83d8-29df46023977))
  4556. )
  4557. (sheet (at 143.51 218.44) (size 49.53 29.21) (fields_autoplaced)
  4558. (stroke (width 0) (type solid) (color 0 0 0 0))
  4559. (fill (color 0 0 0 0.0000))
  4560. (uuid 00000000-0000-0000-0000-000061bf978d)
  4561. (property "Sheet name" "usb" (id 0) (at 143.51 217.7284 0)
  4562. (effects (font (size 1.27 1.27)) (justify left bottom))
  4563. )
  4564. (property "Sheet file" "usb.kicad_sch" (id 1) (at 143.51 248.2346 0)
  4565. (effects (font (size 1.27 1.27)) (justify left top))
  4566. )
  4567. )
  4568. (sheet_instances
  4569. (path "/" (page "1"))
  4570. (path "/00000000-0000-0000-0000-000061bf978d" (page "2"))
  4571. )
  4572. (symbol_instances
  4573. (path "/00000000-0000-0000-0000-00005e8a9340"
  4574. (reference "#PWR01") (unit 1) (value "+5V") (footprint "")
  4575. )
  4576. (path "/00000000-0000-0000-0000-00005e8a95bc"
  4577. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  4578. )
  4579. (path "/00000000-0000-0000-0000-00005e8a2c81"
  4580. (reference "#PWR03") (unit 1) (value "+5V") (footprint "")
  4581. )
  4582. (path "/00000000-0000-0000-0000-00005e8a33f4"
  4583. (reference "#PWR04") (unit 1) (value "+5V") (footprint "")
  4584. )
  4585. (path "/00000000-0000-0000-0000-00005e8e74d5"
  4586. (reference "#PWR05") (unit 1) (value "+5V") (footprint "")
  4587. )
  4588. (path "/00000000-0000-0000-0000-00005e8a61a4"
  4589. (reference "#PWR06") (unit 1) (value "+5V") (footprint "")
  4590. )
  4591. (path "/00000000-0000-0000-0000-00005e855078"
  4592. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  4593. )
  4594. (path "/00000000-0000-0000-0000-00005e8ee916"
  4595. (reference "#PWR08") (unit 1) (value "GND") (footprint "")
  4596. )
  4597. (path "/00000000-0000-0000-0000-00005e8c5663"
  4598. (reference "#PWR09") (unit 1) (value "GND") (footprint "")
  4599. )
  4600. (path "/00000000-0000-0000-0000-00005e87ae28"
  4601. (reference "#PWR010") (unit 1) (value "GND") (footprint "")
  4602. )
  4603. (path "/00000000-0000-0000-0000-00005e8b7dcb"
  4604. (reference "#PWR012") (unit 1) (value "+5V") (footprint "")
  4605. )
  4606. (path "/00000000-0000-0000-0000-00005e88074a"
  4607. (reference "#PWR013") (unit 1) (value "GND") (footprint "")
  4608. )
  4609. (path "/00000000-0000-0000-0000-00005e87d0f6"
  4610. (reference "#PWR014") (unit 1) (value "GND") (footprint "")
  4611. )
  4612. (path "/00000000-0000-0000-0000-00005e8827cd"
  4613. (reference "#PWR015") (unit 1) (value "+5V") (footprint "")
  4614. )
  4615. (path "/00000000-0000-0000-0000-00005e868184"
  4616. (reference "#PWR016") (unit 1) (value "+5V") (footprint "")
  4617. )
  4618. (path "/00000000-0000-0000-0000-00005e8cc15e"
  4619. (reference "#PWR017") (unit 1) (value "+5V") (footprint "")
  4620. )
  4621. (path "/00000000-0000-0000-0000-00005e8d2bb3"
  4622. (reference "#PWR018") (unit 1) (value "+5V") (footprint "")
  4623. )
  4624. (path "/00000000-0000-0000-0000-00005e8d7023"
  4625. (reference "#PWR019") (unit 1) (value "+5V") (footprint "")
  4626. )
  4627. (path "/00000000-0000-0000-0000-00005e8d7045"
  4628. (reference "#PWR020") (unit 1) (value "+5V") (footprint "")
  4629. )
  4630. (path "/00000000-0000-0000-0000-00005e8a8e2e"
  4631. (reference "#PWR021") (unit 1) (value "+5V") (footprint "")
  4632. )
  4633. (path "/00000000-0000-0000-0000-00005e8ebf21"
  4634. (reference "#PWR022") (unit 1) (value "+5V") (footprint "")
  4635. )
  4636. (path "/00000000-0000-0000-0000-00005e8cc7a0"
  4637. (reference "#PWR023") (unit 1) (value "GND") (footprint "")
  4638. )
  4639. (path "/00000000-0000-0000-0000-00005e8d2bbd"
  4640. (reference "#PWR024") (unit 1) (value "GND") (footprint "")
  4641. )
  4642. (path "/00000000-0000-0000-0000-00005e8d702d"
  4643. (reference "#PWR025") (unit 1) (value "GND") (footprint "")
  4644. )
  4645. (path "/00000000-0000-0000-0000-00005e8d704f"
  4646. (reference "#PWR026") (unit 1) (value "GND") (footprint "")
  4647. )
  4648. (path "/00000000-0000-0000-0000-00005e8caeef"
  4649. (reference "#PWR027") (unit 1) (value "+5V") (footprint "")
  4650. )
  4651. (path "/00000000-0000-0000-0000-00005e8827d8"
  4652. (reference "#PWR028") (unit 1) (value "GND") (footprint "")
  4653. )
  4654. (path "/00000000-0000-0000-0000-00005e86e4e8"
  4655. (reference "#PWR029") (unit 1) (value "GND") (footprint "")
  4656. )
  4657. (path "/00000000-0000-0000-0000-00005e8a973e"
  4658. (reference "#PWR030") (unit 1) (value "GND") (footprint "")
  4659. )
  4660. (path "/00000000-0000-0000-0000-00005e9deb57"
  4661. (reference "#PWR031") (unit 1) (value "+5V") (footprint "")
  4662. )
  4663. (path "/00000000-0000-0000-0000-00005e9192ee"
  4664. (reference "#PWR033") (unit 1) (value "GND") (footprint "")
  4665. )
  4666. (path "/00000000-0000-0000-0000-00005e963409"
  4667. (reference "#PWR034") (unit 1) (value "+5V") (footprint "")
  4668. )
  4669. (path "/00000000-0000-0000-0000-00005e92b1a7"
  4670. (reference "#PWR035") (unit 1) (value "GND") (footprint "")
  4671. )
  4672. (path "/00000000-0000-0000-0000-00005e941e14"
  4673. (reference "#PWR036") (unit 1) (value "+5V") (footprint "")
  4674. )
  4675. (path "/00000000-0000-0000-0000-00005e9418c0"
  4676. (reference "#PWR037") (unit 1) (value "GND") (footprint "")
  4677. )
  4678. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-000061d331f6"
  4679. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  4680. )
  4681. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc8b39c"
  4682. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  4683. )
  4684. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc7520b"
  4685. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  4686. )
  4687. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e671d3e"
  4688. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  4689. )
  4690. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e80db90"
  4691. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  4692. )
  4693. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e9ecde8"
  4694. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  4695. )
  4696. (path "/00000000-0000-0000-0000-000061dba40b"
  4697. (reference "#PWR0107") (unit 1) (value "VBUS") (footprint "")
  4698. )
  4699. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-000061db3af3"
  4700. (reference "#PWR0108") (unit 1) (value "VBUS") (footprint "")
  4701. )
  4702. (path "/00000000-0000-0000-0000-00005e8384e1"
  4703. (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  4704. )
  4705. (path "/00000000-0000-0000-0000-00005e8a6cf3"
  4706. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  4707. )
  4708. (path "/00000000-0000-0000-0000-00005e8a7160"
  4709. (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  4710. )
  4711. (path "/00000000-0000-0000-0000-00005e8a746f"
  4712. (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  4713. )
  4714. (path "/00000000-0000-0000-0000-00005e8a610b"
  4715. (reference "C5") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  4716. )
  4717. (path "/00000000-0000-0000-0000-00005e97a766"
  4718. (reference "C6") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  4719. )
  4720. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e7feac9"
  4721. (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  4722. )
  4723. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc8a742"
  4724. (reference "C8") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  4725. )
  4726. (path "/00000000-0000-0000-0000-00005e93c724"
  4727. (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  4728. )
  4729. (path "/00000000-0000-0000-0000-000061b8a3ab"
  4730. (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  4731. )
  4732. (path "/00000000-0000-0000-0000-000061b6b9b3"
  4733. (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  4734. )
  4735. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc74192"
  4736. (reference "F1") (unit 1) (value "Polyfuse 1A") (footprint "sm6uax:Fuse_1206_3216Metric")
  4737. )
  4738. (path "/00000000-0000-0000-0000-000061d18083"
  4739. (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  4740. )
  4741. (path "/00000000-0000-0000-0000-000061d1ae50"
  4742. (reference "H2") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  4743. )
  4744. (path "/00000000-0000-0000-0000-000061d1b213"
  4745. (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  4746. )
  4747. (path "/00000000-0000-0000-0000-000061d1b63b"
  4748. (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  4749. )
  4750. (path "/00000000-0000-0000-0000-000061c5703c"
  4751. (reference "J1") (unit 1) (value "Conn_02x04_Odd_Even") (footprint "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm")
  4752. )
  4753. (path "/00000000-0000-0000-0000-000061cf4156"
  4754. (reference "Q1") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
  4755. )
  4756. (path "/00000000-0000-0000-0000-000061d10698"
  4757. (reference "Q2") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
  4758. )
  4759. (path "/00000000-0000-0000-0000-000061d1198d"
  4760. (reference "Q3") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
  4761. )
  4762. (path "/00000000-0000-0000-0000-00005e865007"
  4763. (reference "R1") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4764. )
  4765. (path "/00000000-0000-0000-0000-00005e838b64"
  4766. (reference "R2") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4767. )
  4768. (path "/00000000-0000-0000-0000-00005e8827c0"
  4769. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4770. )
  4771. (path "/00000000-0000-0000-0000-00005e85bf4a"
  4772. (reference "R4") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4773. )
  4774. (path "/00000000-0000-0000-0000-00005e8eb7eb"
  4775. (reference "R5") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4776. )
  4777. (path "/00000000-0000-0000-0000-00005e8827a7"
  4778. (reference "R6") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
  4779. )
  4780. (path "/00000000-0000-0000-0000-00005e83b63c"
  4781. (reference "R7") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
  4782. )
  4783. (path "/00000000-0000-0000-0000-00005e8a7e17"
  4784. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4785. )
  4786. (path "/00000000-0000-0000-0000-00005e889540"
  4787. (reference "R9") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
  4788. )
  4789. (path "/00000000-0000-0000-0000-00005e961a7f"
  4790. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4791. )
  4792. (path "/00000000-0000-0000-0000-00005e962690"
  4793. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4794. )
  4795. (path "/00000000-0000-0000-0000-00005e962c13"
  4796. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4797. )
  4798. (path "/00000000-0000-0000-0000-00005e963026"
  4799. (reference "R13") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4800. )
  4801. (path "/00000000-0000-0000-0000-00005e9407f3"
  4802. (reference "R14") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
  4803. )
  4804. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e733708"
  4805. (reference "R15") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4806. )
  4807. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e79f20f"
  4808. (reference "R16") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4809. )
  4810. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e5fd9c5"
  4811. (reference "R17") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  4812. )
  4813. (path "/00000000-0000-0000-0000-00005e91843a"
  4814. (reference "S1") (unit 1) (value "CK_1101M2S3CQE2") (footprint "Button_Switch_THT:SW_CK_1101M2S3CQE2")
  4815. )
  4816. (path "/00000000-0000-0000-0000-000061ba7315"
  4817. (reference "SW1") (unit 1) (value "SW_DPST_x2") (footprint "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
  4818. )
  4819. (path "/00000000-0000-0000-0000-000061be2ab1"
  4820. (reference "SW2") (unit 1) (value "SW_DPST_x2") (footprint "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
  4821. )
  4822. (path "/00000000-0000-0000-0000-00005e81c2bb"
  4823. (reference "U1") (unit 1) (value "8051") (footprint "Package_DIP:DIP-40_W15.24mm_ZIF_Socket_Aries_40-6554-10")
  4824. )
  4825. (path "/00000000-0000-0000-0000-00005e81dcb8"
  4826. (reference "U2") (unit 1) (value "SN74LS373N") (footprint "Package_DIP:DIP-20_W7.62mm")
  4827. )
  4828. (path "/00000000-0000-0000-0000-00005e824c31"
  4829. (reference "U3") (unit 1) (value "AT28C256-15PU") (footprint "Package_DIP:DIP-28_W15.24mm_Socket")
  4830. )
  4831. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e95f9cd"
  4832. (reference "U4") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  4833. )
  4834. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e5d03c7"
  4835. (reference "U5") (unit 1) (value "CP2102N-A01-GQFN28") (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm")
  4836. )
  4837. (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e68a6b6"
  4838. (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "sm6uax:HRO-TYPE-C-31-M-12")
  4839. )
  4840. (path "/00000000-0000-0000-0000-00005e8234fd"
  4841. (reference "X1") (unit 1) (value "11.0592 MHz") (footprint "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm")
  4842. )
  4843. )
  4844. )